Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=225
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=226", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=224" }, "data": [ { "id": "espoo_le:aghoc4ormu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api" } ], "created_time": "2024-04-08T07:34:30.187759Z", "last_modified_time": "2024-04-08T07:34:30.187783Z", "date_published": null, "start_time": "2024-06-05T10:00:00Z", "end_time": "2024-06-05T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://startuprefugees.com/", "sv": "http://startuprefugees.com/", "en": "http://startuprefugees.com/" }, "provider_contact_info": null, "provider": { "fi": "Startup Refugees", "sv": "Startup Refugees", "en": "Startup Refugees" }, "description": { "fi": "<p>Järjestämme Match-klinikoita säännöllisesti turvapaikanhakijoille, jotka haluavat töihin tai ovat kiinnostuneita yrittäjyydestä. Match-klinikoissa henkilö voi ilmoittautua meille työnhakijaksi luomalle profiilin Match-järjestelmäämme, josta pystymme yhdistämään hakijat sopiviin, käynnissä oleviin rekrytointeihimme tai eri kielisiin koulutuksiin ja yrittäjyys valmennuksiimme.</p><p>Startup Refugees on 2015 perustettu järjestö, joka edistää turvapaikanhakijoiden ja muiden maahanmuuttajien työllistymistä ja yrittäjyyttä. Olemme kartoittaneet yli 10200 henkilön osaamisen, tarjonneet yli 1750 työpaikkaa ja 12000 koulutus mahdollisuutta sekä tukeneet yli 80 yrityksen syntyä. Kaikki palvelumme ovat ilmaisia asiakkaille ja palvelemme työnhakijoita mm. suomeksi, englanniksi, arabiaksi, farsiksi, ukrainaksi, latviaksi, ja venäjäksi. Meillä on toimistot Helsingissä, Oulussa ja Rovaniemellä sekä osa-aikainen koordinaattori Tampereella, mutta toimintamme on valtakunnallista.</p>", "sv": "<p>Skapa ett CV och en arbetsprofil hos Startup Refugees, så hjälper vi dig att hitta lämpliga jobbmöjligheter, utbildningar i olika språk eller coachning i entreprenörskap. Startup Refugees är en ideell organisation som stöder flyktingar, asylsökande och andra migranter i sysselsättning, kompetensutveckling och entreprenörskap. Alla våra tjänster är kostnadsfria och vi betjänar arbetssökande på finska, engelska, arabiska, farsi, ukrainska, ryska och somaliska.<br></p>", "en": "<p>Come create a CV and a work profile with Startup Refugees, and we will assist you in finding suitable job opportunities, trainings in different languages or entrepreneurship coaching. Startup Refugees is a non-profit organization that supports refugees, asylum seekers, and other migrants in employment, skills development and entrepreneurship. All our services are free of charge and we serve job seekers in Finnish, English, Arabic, Farsi, Ukrainian, Russian and Somali.</p>" }, "name": { "fi": "Startup Refugees-järjestön järjestämä Match-klinikka", "sv": "Matchklinik organiserad av Startup Refugees", "en": "Match Clinic by Startup Refugees" }, "short_description": { "fi": "Järjestämme Match-klinikoita säännöllisesti turvapaikanhakijoille, jotka haluavat töihin tai ovat kiinnostuneita yrittäjyydestä. ", "sv": "Skapa ett CV och en arbetsprofil hos Startup Refugees, så hjälper vi dig att hitta lämpliga jobbmöjligheter.", "en": "Come create a CV and a work profile with Startup Refugees, and we will assist you in finding suitable job opportunities." }, "location_extra_info": { "fi": "Kajuutta", "sv": "Kajuutta", "en": "Kajuutta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ormu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4orqa", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2901/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-04-08T07:30:52.980471Z", "last_modified_time": "2024-04-08T07:30:52.980495Z", "date_published": null, "start_time": "2024-04-11T12:00:00Z", "end_time": "2024-04-11T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Hokkus pokkus! Tule askartelemaan oma taikasauvasi! Kirjasto tarjoaa materiaalit. </p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla<br>Maaginen viikko.</p>", "sv": "<p>Knack knack! Kom och skapa din egen trollstav! Biblioteket tillhandahåller materialet.</p><p>Evenemanget är en del av Hjälmbibliotekens Magiska vecka, som bjuder in fantasylitteraturfantaster i olika åldrar till biblioteket. Du kan hitta veckans alla händelser med sökordet<br>En magisk vecka.</p>", "en": "<p>Knock knock! Come and craft your own magic wand! The library provides the materials.</p><p>The event is part of the Helmet libraries' Magical Week, which invites fans of fantasy literature of different ages to the library. You can find all the events of the week with the search term<br>A magical week.</p>" }, "name": { "fi": "Taikasauvatyöpaja", "sv": "Trollstavsverkstad", "en": "Magic wand workshop" }, "short_description": { "fi": "Tule askartelemaan oma taikasauvasi! Kirjasto tarjoaa materiaalit. ", "sv": "Kom och skapa din egen trollstav! Biblioteket tillhandahåller materialet.", "en": "Come and craft your own magic wand! The library provides the materials." }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4orqa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4ortm", "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:p13084/?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:p2771/?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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-08T07:08:14.871962Z", "last_modified_time": "2024-04-08T07:08:14.871988Z", "date_published": "2024-04-08T07:06:00Z", "start_time": "2024-04-10T05:00:00Z", "end_time": "2024-04-10T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Toista kertaa toteutettava Espoon kirjastojen Ympäristökevät sisältää taas kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta. Esitysten sisällöistä vastaavat HSY, Omnia, Luontoliitto, Kestävän kehityksen osaamiskeskus, Villa Elfvik sekä Espoon ympäristöyhdistys. Ohjelma sijoittuu viiteen kirjastoon. </p><p>Entresse </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat Entressen kirjastoon yhteisnäyttelyn. Näyttelyssä kerrotaan hulevedestä ja siitä, miten se liittyy Itämeren roskaantumiseen. Omnia esittelee huleveden hyödyntämistä pihoissa ja puutarhoissa. Toinen osa näyttelystä kertoo typpikuormasta, eli kuinka liiallinen proteiinin syönti rehevöittää Itämerta. Omnian opiskelijat esittelevät proteiinipitoisten kasvien kaupunkiviljelyä. Näyttely on esillä Entressen kirjastossa 8.-29.4. </p><p>Lumoudu kaupunkiluonnosta -näyttely. 8. - 14.4. Järjestää Villa Elfvik. Lumoudu kaupunkiluonnosta -näyttely esittelee luontotekoja, joiden avulla voit auttaa luonnonkirjoa säilyttämään loistonsa. Pysäytetään yhdessä luontokato! </p><p>Tunnista pörriäiset. Ti 9.4. klo 17. Esityksen Entressen kirjaston Estradilla järjestää Espoon ympäristöyhdistys. Opitaan tunnistamaan kimalaiset ja muutkin kukissa pörräävät ötökät. </p><p>Luontoliiton Kevätseuranta ja tutustumista lepakonpönttöihin. Ke 10.4. klo 13-18. Kevätseuranta on tutkimusmatka kasvi- ja eläinlajien avulla kevään ihmeisiin. Kevätseurannan teemana vuonna 2024 on muuttuva metsä. Tule tutustumaan lähikirjastollesi Kevätseurannan lajeihin ja osallistumaan keväisiin haasteisiin. Järjestämme kirjastolla lisäksi lepankonpönttöihin tutustumista yhdessä Omnian kanssa. Tiesitkö, että Suomessa elää yhteensä yhdeksän eri lepakkolajia, jotka kaikki ovat rauhoitettuja. </p><p>Hulevesi- ja roskakävely. Ke 10.4. klo 17.00 lähdemme liikkeelle Entressen kirjastosta. Tule mukaan hulevesi- ja roskakävelylle! Kävelylle nappaamme mukaan roskienkeruuvälineet. Matkan varrella kuulemme ja keskustelemme yleisesti hulevedestä, sen hallinnasta ja laadusta, sekä siitä, miten hulevesi liittyy roskiin ja vesistöjen roskaantumiseen. Kävelemme Entressestä kohti Espoonjokea keräten samalla roskia. Kävelyn kesto on noin 1,5 tuntia. Tapahtuman järjestää HSY yhteistyössä Espoon kaupungin kanssa. </p><p>Lippulaiva </p><p>Energiakiertokävelyt Lippulaivassa ti 9.4. klo 12–13 ja ke 10.4. klo 16–17. Ilmoittaudu mukaan https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Espoon kaupungin energiailtama<br>ke 10.4. klo 17–19.30. Katso lisätiedot ja tarkempi ohjelma https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p><br>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 10. - 24.6. </p><p>Sello </p><p>Energiakiertokävelyt Sellossa to 11.4. klo 12–13.30 ja 16–17.30.<br>Ilmoittaudu mukaan:https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 24.6. - 15.7. </p><p>Iso Omena </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 29.4.-18.5. </p><p>Tapiola </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 20.5. - 10.6. </p>", "sv": "<p>Esbobibliotekens Miljövår, som hålls för andra gången, innehåller återigen ett intressant och underhållande program om en mer hållbar livsstil. HRM, Omnia, Luontoliitto, Centrum för hållbar utveckling, Villa Elfvik och Esbo Miljöförening ansvarar för innehållet i presentationerna. Programmet äger rum på fem bibliotek.</p><p>Entresse</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med en gemensam utställning till Entresse bibliotek. Utställningen berättar om dagvatten och hur det är relaterat till nedskräpningen av Östersjön. Omnia presenterar användningen av dagvatten i gårdar och trädgårdar. Den andra delen av utställningen berättar om kvävebelastningen, det vill säga hur överdriven proteinkonsumtion gör Östersjön frodig. Omnias elever presenterar urban odling av proteinrika växter. Utställningen visas på Entresse bibliotek 8-29 april.</p><p>Bli förtrollad av urban naturutställning. 8. - 14.4. Arrangeras av Villa Elfvik. Utställningen \"Bli förtrollad av urban natur\" visar verk av naturen som du kan använda för att hjälpa naturen att bevara sin prakt. Låt oss tillsammans stoppa naturens förstörelse!</p><p>Identifiera pälsen. Tis 9.4. kl 17. Föreställningen arrangeras av Esbo miljöförening på Entresse biblioteks Estradi. Låt oss lära oss att identifiera humlor och andra insekter som surrar runt blommor.</p><p>Luontoliittos Vårövervakning och bekantskap med fladdermusen. Ons 10.4. från 13:00 till 18:00. Kevätseuranta är ett utforskande av vårens under med hjälp av växt- och djurarter. Temat för vårbevakningen 2024 är den föränderliga skogen. Kom till ditt lokala bibliotek för att lära känna Våruppföljningens sporter och delta i vårens utmaningar. På biblioteket anordnar vi även en introduktion till fladdermushus tillsammans med Omnia. Visste du att totalt nio olika arter av fladdermöss lever i Finland, som alla är fridlysta.</p><p>Dagvatten och sopvandring. Ons 10.4. kl 17:00 går vi från Entresse bibliotek. Följ med till dagvatten och sopvandring! Till promenaden tar vi med oss sophämtningsutrustningen. Längs vägen kommer vi att höra och diskutera dagvatten i stort, dess hantering och kvalitet samt hur dagvatten är relaterat till sopor och nedskräpning av vattendrag. Vi går från Entresse mot Esbo å och samlar samtidigt sopor. Vandringens längd är ca 1,5 timme. Evenemanget arrangeras av HRM i samarbete med Esbo stad.</p><p>Lippulaiva</p><p>Energicykelvandringar i flaggskeppet tis 9.4. 12–13 och ons 10.4. kl 16–17. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energikväll i Esbo stad Ons 10.4. från 17:00 till 19:30. Se ytterligare information och ett mer detaljerat program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas 10-24 juni.</p><p>Sello</p><p>Energicykelvandringar i Sello tors 11.4. från 12:00 till 13:30 och från 16:00 till 17:30. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 24.6. - 15.7.</p><p>Iso Omena</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas från 29 april till 18 maj.</p><p>Tapiola</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 20.5. - 10.6.</p>", "en": "<p>The Espoo libraries' Environmental Spring, which will be held for the second time, again contains an interesting and entertaining program about a more sustainable lifestyle. HSY, Omnia, Luontoliitto, Center for Sustainable Development, Villa Elfvik and the Espoo Environmental Association are responsible for the content of the presentations. The program takes place in five libraries.</p><p>Entresse</p><p>Exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's educational municipality association Omnia are bringing a joint exhibition to the Entresse library. The exhibition tells about stormwater and how it is related to the littering of the Baltic Sea. Omnia presents the use of stormwater in yards and gardens. The second part of the exhibition tells about the nitrogen load, i.e. how excessive protein consumption makes the Baltic Sea lush. Omnia's students present the urban cultivation of protein-rich plants. The exhibition is on display at the Entresse library from 8 to 29 April.</p><p>Be enchanted by urban nature exhibition. 8. - 14.4. Organized by Villa Elfvik. The \"Be enchanted by urban nature\" exhibition presents works of nature that you can use to help the natural world preserve its splendor. Let's stop the destruction of nature together!</p><p>Identify the furries. Tue 9.4. at 5 p.m. The performance is organized by Espoo's environmental association at Entresse library's Estrada. Let's learn to identify bumblebees and other insects that buzz around flowers.</p><p>The Finnish Nature Association's Kevätseuranta and getting to know the bat roosts Wed 10.4. from 13:00 to 18:00. Kevätseuranta is an exploration of the wonders of spring with the help of plant and animal species. The theme of spring monitoring in 2024 is the changing forest. Come to your local library to get to know the sports of Spring Follow-up and participate in the spring challenges. In the library, we also organize an introduction to bat houses together with Omnia. Did you know that a total of nine different species of bats live in Finland, all of which are protected.</p><p>Stormwater and trash walk. Wed 10.4. at 17:00 we leave from Entresse library. Come along to the stormwater and trash walk! For the walk, we take the garbage collection equipment with us. Along the way, we will hear and discuss stormwater in general, its management and quality, as well as how stormwater is related to garbage and littering of waterways. We walk from Entresse towards the Espoonjoki, collecting garbage at the same time. The duration of the walk is about 1.5 hours. The event is organized by HSY in cooperation with the city of Espoo.</p><p>Lippulaiva</p><p>Energy cycle walks in Flagship Tue 9.4. 12–13 and Wed 10.4. at 16–17. sign up https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energy evening of the city of Espoo<br>Wed 10.4. from 17:00 to 19:30. See additional information and a more detailed program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 10 to 24 June.</p><p>Sello</p><p>Energy cycle walks in Sello Thu 11.4. from 12:00 p.m. to 1:30 p.m. and from 4:00 p.m. to 5:30 p.m.<br>Sign up: https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 24.6. - 15.7.</p><p>Iso Omena</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 29 April to 18 May.</p><p> Tapiola</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 20.5. - 10.6.</p>" }, "name": { "fi": "Espoon kirjastojen Ympäristökevät", "sv": "Esbobibliotekens Miljövår", "en": "The Espoo libraries' Environmental Spring" }, "short_description": { "fi": "Kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta.", "sv": "Ett intressant och underhållande program om en mer hållbar livsstil.", "en": "An interesting and entertaining program about a more sustainable lifestyle. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ortm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4orxe", "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:p13084/?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:p2771/?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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-08T06:47:13.093130Z", "last_modified_time": "2024-04-08T06:47:13.093155Z", "date_published": "2024-04-08T06:45:00Z", "start_time": "2024-04-09T05:00:00Z", "end_time": "2024-04-09T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Toista kertaa toteutettava Espoon kirjastojen Ympäristökevät sisältää taas kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta. Esitysten sisällöistä vastaavat HSY, Omnia, Luontoliitto, Kestävän kehityksen osaamiskeskus, Villa Elfvik sekä Espoon ympäristöyhdistys. Ohjelma sijoittuu viiteen kirjastoon. </p><p>Entresse </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat Entressen kirjastoon yhteisnäyttelyn. Näyttelyssä kerrotaan hulevedestä ja siitä, miten se liittyy Itämeren roskaantumiseen. Omnia esittelee huleveden hyödyntämistä pihoissa ja puutarhoissa. Toinen osa näyttelystä kertoo typpikuormasta, eli kuinka liiallinen proteiinin syönti rehevöittää Itämerta. Omnian opiskelijat esittelevät proteiinipitoisten kasvien kaupunkiviljelyä. Näyttely on esillä Entressen kirjastossa 8.-29.4. </p><p>Lumoudu kaupunkiluonnosta -näyttely. 8. - 14.4. Järjestää Villa Elfvik. Lumoudu kaupunkiluonnosta -näyttely esittelee luontotekoja, joiden avulla voit auttaa luonnonkirjoa säilyttämään loistonsa. Pysäytetään yhdessä luontokato! </p><p>Tunnista pörriäiset. Ti 9.4. klo 17. Esityksen Entressen kirjaston Estradilla järjestää Espoon ympäristöyhdistys. Opitaan tunnistamaan kimalaiset ja muutkin kukissa pörräävät ötökät. </p><p>Luontoliiton Kevätseuranta ja tutustumista lepakonpönttöihin. Ke 10.4. klo 13-18. Kevätseuranta on tutkimusmatka kasvi- ja eläinlajien avulla kevään ihmeisiin. Kevätseurannan teemana vuonna 2024 on muuttuva metsä. Tule tutustumaan lähikirjastollesi Kevätseurannan lajeihin ja osallistumaan keväisiin haasteisiin. Järjestämme kirjastolla lisäksi lepankonpönttöihin tutustumista yhdessä Omnian kanssa. Tiesitkö, että Suomessa elää yhteensä yhdeksän eri lepakkolajia, jotka kaikki ovat rauhoitettuja. </p><p>Hulevesi- ja roskakävely. Ke 10.4. klo 17.00 lähdemme liikkeelle Entressen kirjastosta. Tule mukaan hulevesi- ja roskakävelylle! Kävelylle nappaamme mukaan roskienkeruuvälineet. Matkan varrella kuulemme ja keskustelemme yleisesti hulevedestä, sen hallinnasta ja laadusta, sekä siitä, miten hulevesi liittyy roskiin ja vesistöjen roskaantumiseen. Kävelemme Entressestä kohti Espoonjokea keräten samalla roskia. Kävelyn kesto on noin 1,5 tuntia. Tapahtuman järjestää HSY yhteistyössä Espoon kaupungin kanssa. </p><p>Lippulaiva </p><p>Energiakiertokävelyt Lippulaivassa ti 9.4. klo 12–13 ja ke 10.4. klo 16–17. Ilmoittaudu mukaan https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Espoon kaupungin energiailtama<br>ke 10.4. klo 17–19.30. Katso lisätiedot ja tarkempi ohjelma https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p><br>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 10. - 24.6. </p><p>Sello </p><p>Energiakiertokävelyt Sellossa to 11.4. klo 12–13.30 ja 16–17.30.<br>Ilmoittaudu mukaan:https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 24.6. - 15.7. </p><p>Iso Omena </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 29.4.-18.5. </p><p>Tapiola </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 20.5. - 10.6. </p>", "sv": "<p>Esbobibliotekens Miljövår, som hålls för andra gången, innehåller återigen ett intressant och underhållande program om en mer hållbar livsstil. HRM, Omnia, Luontoliitto, Centrum för hållbar utveckling, Villa Elfvik och Esbo Miljöförening ansvarar för innehållet i presentationerna. Programmet äger rum på fem bibliotek.</p><p>Entresse</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med en gemensam utställning till Entresse bibliotek. Utställningen berättar om dagvatten och hur det är relaterat till nedskräpningen av Östersjön. Omnia presenterar användningen av dagvatten i gårdar och trädgårdar. Den andra delen av utställningen berättar om kvävebelastningen, det vill säga hur överdriven proteinkonsumtion gör Östersjön frodig. Omnias elever presenterar urban odling av proteinrika växter. Utställningen visas på Entresse bibliotek 8-29 april.</p><p>Bli förtrollad av urban naturutställning. 8. - 14.4. Arrangeras av Villa Elfvik. Utställningen \"Bli förtrollad av urban natur\" visar verk av naturen som du kan använda för att hjälpa naturen att bevara sin prakt. Låt oss tillsammans stoppa naturens förstörelse!</p><p>Identifiera pälsen. Tis 9.4. kl 17. Föreställningen arrangeras av Esbo miljöförening på Entresse biblioteks Estradi. Låt oss lära oss att identifiera humlor och andra insekter som surrar runt blommor.</p><p>Luontoliittos Vårövervakning och bekantskap med fladdermusen. Ons 10.4. från 13:00 till 18:00. Kevätseuranta är ett utforskande av vårens under med hjälp av växt- och djurarter. Temat för vårbevakningen 2024 är den föränderliga skogen. Kom till ditt lokala bibliotek för att lära känna Våruppföljningens sporter och delta i vårens utmaningar. På biblioteket anordnar vi även en introduktion till fladdermushus tillsammans med Omnia. Visste du att totalt nio olika arter av fladdermöss lever i Finland, som alla är fridlysta.</p><p>Dagvatten och sopvandring. Ons 10.4. kl 17:00 går vi från Entresse bibliotek. Följ med till dagvatten och sopvandring! Till promenaden tar vi med oss sophämtningsutrustningen. Längs vägen kommer vi att höra och diskutera dagvatten i stort, dess hantering och kvalitet samt hur dagvatten är relaterat till sopor och nedskräpning av vattendrag. Vi går från Entresse mot Esbo å och samlar samtidigt sopor. Vandringens längd är ca 1,5 timme. Evenemanget arrangeras av HRM i samarbete med Esbo stad.</p><p>Lippulaiva</p><p>Energicykelvandringar i flaggskeppet tis 9.4. 12–13 och ons 10.4. kl 16–17. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energikväll i Esbo stad Ons 10.4. från 17:00 till 19:30. Se ytterligare information och ett mer detaljerat program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas 10-24 juni.</p><p>Sello</p><p>Energicykelvandringar i Sello tors 11.4. från 12:00 till 13:30 och från 16:00 till 17:30. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 24.6. - 15.7.</p><p>Iso Omena</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas från 29 april till 18 maj.</p><p>Tapiola</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 20.5. - 10.6.</p>", "en": "<p>The Espoo libraries' Environmental Spring, which will be held for the second time, again contains an interesting and entertaining program about a more sustainable lifestyle. HSY, Omnia, Luontoliitto, Center for Sustainable Development, Villa Elfvik and the Espoo Environmental Association are responsible for the content of the presentations. The program takes place in five libraries.</p><p>Entresse</p><p>Exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's educational municipality association Omnia are bringing a joint exhibition to the Entresse library. The exhibition tells about stormwater and how it is related to the littering of the Baltic Sea. Omnia presents the use of stormwater in yards and gardens. The second part of the exhibition tells about the nitrogen load, i.e. how excessive protein consumption makes the Baltic Sea lush. Omnia's students present the urban cultivation of protein-rich plants. The exhibition is on display at the Entresse library from 8 to 29 April.</p><p>Be enchanted by urban nature exhibition. 8. - 14.4. Organized by Villa Elfvik. The \"Be enchanted by urban nature\" exhibition presents works of nature that you can use to help the natural world preserve its splendor. Let's stop the destruction of nature together!</p><p>Identify the furries. Tue 9.4. at 5 p.m. The performance is organized by Espoo's environmental association at Entresse library's Estrada. Let's learn to identify bumblebees and other insects that buzz around flowers.</p><p>The Finnish Nature Association's Kevätseuranta and getting to know the bat roosts Wed 10.4. from 13:00 to 18:00. Kevätseuranta is an exploration of the wonders of spring with the help of plant and animal species. The theme of spring monitoring in 2024 is the changing forest. Come to your local library to get to know the sports of Spring Follow-up and participate in the spring challenges. In the library, we also organize an introduction to bat houses together with Omnia. Did you know that a total of nine different species of bats live in Finland, all of which are protected.</p><p>Stormwater and trash walk. Wed 10.4. at 17:00 we leave from Entresse library. Come along to the stormwater and trash walk! For the walk, we take the garbage collection equipment with us. Along the way, we will hear and discuss stormwater in general, its management and quality, as well as how stormwater is related to garbage and littering of waterways. We walk from Entresse towards the Espoonjoki, collecting garbage at the same time. The duration of the walk is about 1.5 hours. The event is organized by HSY in cooperation with the city of Espoo.</p><p>Lippulaiva</p><p>Energy cycle walks in Flagship Tue 9.4. 12–13 and Wed 10.4. at 16–17. sign up https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energy evening of the city of Espoo<br>Wed 10.4. from 17:00 to 19:30. See additional information and a more detailed program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 10 to 24 June.</p><p>Sello</p><p>Energy cycle walks in Sello Thu 11.4. from 12:00 p.m. to 1:30 p.m. and from 4:00 p.m. to 5:30 p.m.<br>Sign up: https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 24.6. - 15.7.</p><p>Iso Omena</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 29 April to 18 May.</p><p> Tapiola</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 20.5. - 10.6.</p>" }, "name": { "fi": "Espoon kirjastojen Ympäristökevät", "sv": "Esbobibliotekens Miljövår", "en": "The Espoo libraries' Environmental Spring" }, "short_description": { "fi": "Kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta.", "sv": "Ett intressant och underhållande program om en mer hållbar livsstil.", "en": "An interesting and entertaining program about a more sustainable lifestyle. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4orxe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4or2y", "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:p13084/?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:p2771/?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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onhe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oo5e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4opbe/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-15T13:10:49.927746Z", "last_modified_time": "2024-04-08T06:23:51.970220Z", "date_published": "2024-03-19T23:00:00Z", "start_time": "2024-04-08T05:00:00Z", "end_time": "2024-04-14T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Toista kertaa toteutettava Espoon kirjastojen Ympäristökevät sisältää taas kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta. Esitysten sisällöistä vastaavat HSY, Omnia, Luontoliitto, Kestävän kehityksen osaamiskeskus, Villa Elfvik sekä Espoon ympäristöyhdistys. Ohjelma sijoittuu viiteen kirjastoon. </p><p>Entresse </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat Entressen kirjastoon yhteisnäyttelyn. Näyttelyssä kerrotaan hulevedestä ja siitä, miten se liittyy Itämeren roskaantumiseen. Omnia esittelee huleveden hyödyntämistä pihoissa ja puutarhoissa. Toinen osa näyttelystä kertoo typpikuormasta, eli kuinka liiallinen proteiinin syönti rehevöittää Itämerta. Omnian opiskelijat esittelevät proteiinipitoisten kasvien kaupunkiviljelyä. Näyttely on esillä Entressen kirjastossa 8.-29.4. </p><p>Lumoudu kaupunkiluonnosta -näyttely. 8. - 14.4. Järjestää Villa Elfvik. Lumoudu kaupunkiluonnosta -näyttely esittelee luontotekoja, joiden avulla voit auttaa luonnonkirjoa säilyttämään loistonsa. Pysäytetään yhdessä luontokato! </p><p>Tunnista pörriäiset. Ti 9.4. klo 17. Esityksen Entressen kirjaston Estradilla järjestää Espoon ympäristöyhdistys. Opitaan tunnistamaan kimalaiset ja muutkin kukissa pörräävät ötökät. </p><p>Luontoliiton Kevätseuranta ja tutustumista lepakonpönttöihin. Ke 10.4. klo 13-18. Kevätseuranta on tutkimusmatka kasvi- ja eläinlajien avulla kevään ihmeisiin. Kevätseurannan teemana vuonna 2024 on muuttuva metsä. Tule tutustumaan lähikirjastollesi Kevätseurannan lajeihin ja osallistumaan keväisiin haasteisiin. Järjestämme kirjastolla lisäksi lepankonpönttöihin tutustumista yhdessä Omnian kanssa. Tiesitkö, että Suomessa elää yhteensä yhdeksän eri lepakkolajia, jotka kaikki ovat rauhoitettuja. </p><p>Hulevesi- ja roskakävely. Ke 10.4. klo 17.00 lähdemme liikkeelle Entressen kirjastosta. Tule mukaan hulevesi- ja roskakävelylle! Kävelylle nappaamme mukaan roskienkeruuvälineet. Matkan varrella kuulemme ja keskustelemme yleisesti hulevedestä, sen hallinnasta ja laadusta, sekä siitä, miten hulevesi liittyy roskiin ja vesistöjen roskaantumiseen. Kävelemme Entressestä kohti Espoonjokea keräten samalla roskia. Kävelyn kesto on noin 1,5 tuntia. Tapahtuman järjestää HSY yhteistyössä Espoon kaupungin kanssa. </p><p>Lippulaiva </p><p>Energiakiertokävelyt Lippulaivassa ti 9.4. klo 12–13 ja ke 10.4. klo 16–17. Ilmoittaudu mukaan https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Espoon kaupungin energiailtama<br>ke 10.4. klo 17–19.30. Katso lisätiedot ja tarkempi ohjelma https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p><br>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 10. - 24.6. </p><p>Sello </p><p>Energiakiertokävelyt Sellossa to 11.4. klo 12–13.30 ja 16–17.30.<br>Ilmoittaudu mukaan:https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 24.6. - 15.7. </p><p>Iso Omena </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 29.4.-18.5. </p><p>Tapiola </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 20.5. - 10.6. </p>", "sv": "<p>Esbobibliotekens Miljövår, som hålls för andra gången, innehåller återigen ett intressant och underhållande program om en mer hållbar livsstil. HRM, Omnia, Luontoliitto, Centrum för hållbar utveckling, Villa Elfvik och Esbo Miljöförening ansvarar för innehållet i presentationerna. Programmet äger rum på fem bibliotek.</p><p>Entresse</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med en gemensam utställning till Entresse bibliotek. Utställningen berättar om dagvatten och hur det är relaterat till nedskräpningen av Östersjön. Omnia presenterar användningen av dagvatten i gårdar och trädgårdar. Den andra delen av utställningen berättar om kvävebelastningen, det vill säga hur överdriven proteinkonsumtion gör Östersjön frodig. Omnias elever presenterar urban odling av proteinrika växter. Utställningen visas på Entresse bibliotek 8-29 april.</p><p>Bli förtrollad av urban naturutställning. 8. - 14.4. Arrangeras av Villa Elfvik. Utställningen \"Bli förtrollad av urban natur\" visar verk av naturen som du kan använda för att hjälpa naturen att bevara sin prakt. Låt oss tillsammans stoppa naturens förstörelse!</p><p>Identifiera pälsen. Tis 9.4. kl 17. Föreställningen arrangeras av Esbo miljöförening på Entresse biblioteks Estradi. Låt oss lära oss att identifiera humlor och andra insekter som surrar runt blommor.</p><p>Luontoliittos Vårövervakning och bekantskap med fladdermusen. Ons 10.4. från 13:00 till 18:00. Kevätseuranta är ett utforskande av vårens under med hjälp av växt- och djurarter. Temat för vårbevakningen 2024 är den föränderliga skogen. Kom till ditt lokala bibliotek för att lära känna Våruppföljningens sporter och delta i vårens utmaningar. På biblioteket anordnar vi även en introduktion till fladdermushus tillsammans med Omnia. Visste du att totalt nio olika arter av fladdermöss lever i Finland, som alla är fridlysta.</p><p>Dagvatten och sopvandring. Ons 10.4. kl 17:00 går vi från Entresse bibliotek. Följ med till dagvatten och sopvandring! Till promenaden tar vi med oss sophämtningsutrustningen. Längs vägen kommer vi att höra och diskutera dagvatten i stort, dess hantering och kvalitet samt hur dagvatten är relaterat till sopor och nedskräpning av vattendrag. Vi går från Entresse mot Esbo å och samlar samtidigt sopor. Vandringens längd är ca 1,5 timme. Evenemanget arrangeras av HRM i samarbete med Esbo stad.</p><p>Lippulaiva</p><p>Energicykelvandringar i flaggskeppet tis 9.4. 12–13 och ons 10.4. kl 16–17. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energikväll i Esbo stad Ons 10.4. från 17:00 till 19:30. Se ytterligare information och ett mer detaljerat program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas 10-24 juni.</p><p>Sello</p><p>Energicykelvandringar i Sello tors 11.4. från 12:00 till 13:30 och från 16:00 till 17:30. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 24.6. - 15.7.</p><p>Iso Omena</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas från 29 april till 18 maj.</p><p>Tapiola</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 20.5. - 10.6.</p>", "en": "<p>The Espoo libraries' Environmental Spring, which will be held for the second time, again contains an interesting and entertaining program about a more sustainable lifestyle. HSY, Omnia, Luontoliitto, Center for Sustainable Development, Villa Elfvik and the Espoo Environmental Association are responsible for the content of the presentations. The program takes place in five libraries.</p><p>Entresse</p><p>Exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's educational municipality association Omnia are bringing a joint exhibition to the Entresse library. The exhibition tells about stormwater and how it is related to the littering of the Baltic Sea. Omnia presents the use of stormwater in yards and gardens. The second part of the exhibition tells about the nitrogen load, i.e. how excessive protein consumption makes the Baltic Sea lush. Omnia's students present the urban cultivation of protein-rich plants. The exhibition is on display at the Entresse library from 8 to 29 April.</p><p>Be enchanted by urban nature exhibition. 8. - 14.4. Organized by Villa Elfvik. The \"Be enchanted by urban nature\" exhibition presents works of nature that you can use to help the natural world preserve its splendor. Let's stop the destruction of nature together!</p><p>Identify the furries. Tue 9.4. at 5 p.m. The performance is organized by Espoo's environmental association at Entresse library's Estrada. Let's learn to identify bumblebees and other insects that buzz around flowers.</p><p>The Finnish Nature Association's Kevätseuranta and getting to know the bat roosts Wed 10.4. from 13:00 to 18:00. Kevätseuranta is an exploration of the wonders of spring with the help of plant and animal species. The theme of spring monitoring in 2024 is the changing forest. Come to your local library to get to know the sports of Spring Follow-up and participate in the spring challenges. In the library, we also organize an introduction to bat houses together with Omnia. Did you know that a total of nine different species of bats live in Finland, all of which are protected.</p><p>Stormwater and trash walk. Wed 10.4. at 17:00 we leave from Entresse library. Come along to the stormwater and trash walk! For the walk, we take the garbage collection equipment with us. Along the way, we will hear and discuss stormwater in general, its management and quality, as well as how stormwater is related to garbage and littering of waterways. We walk from Entresse towards the Espoonjoki, collecting garbage at the same time. The duration of the walk is about 1.5 hours. The event is organized by HSY in cooperation with the city of Espoo.</p><p>Lippulaiva</p><p>Energy cycle walks in Flagship Tue 9.4. 12–13 and Wed 10.4. at 16–17. sign up https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energy evening of the city of Espoo<br>Wed 10.4. from 17:00 to 19:30. See additional information and a more detailed program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 10 to 24 June.</p><p>Sello</p><p>Energy cycle walks in Sello Thu 11.4. from 12:00 p.m. to 1:30 p.m. and from 4:00 p.m. to 5:30 p.m.<br>Sign up: https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 24.6. - 15.7.</p><p>Iso Omena</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 29 April to 18 May.</p><p> Tapiola</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 20.5. - 10.6.</p>" }, "name": { "fi": "Espoon kirjastojen Ympäristökevät", "sv": "Esbobibliotekens Miljövår", "en": "The Espoo libraries' Environmental Spring" }, "short_description": { "fi": "Kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta.", "sv": "Ett intressant och underhållande program om en mer hållbar livsstil.", "en": "An interesting and entertaining program about a more sustainable lifestyle. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4or2y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4or6m", "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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-13T08:13:55.004564Z", "last_modified_time": "2024-04-07T13:37:25.504250Z", "date_published": "2024-03-19T23:00:00Z", "start_time": "2024-04-16T12:00:00Z", "end_time": "2024-04-16T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Entressen kirjasto järjestää Karaokeillat kaikille!</p><p>Kevään aikana lauletaan karaokea kerran kuussa, torstaisin.</p><p>Helmikuussa: torstaina 22.2. klo 16-18</p><p>Maaliskuussa: torstaina 21.3. klo 16-18</p><p>Huhtikuussa: tiistaina 16.4. klo 15-17</p><p>Toukokuussa: torstaina 16.5. klo 16-18</p><p>Tapahtumapaikkana on kirjaston estradi, paitsi 16.4. Jukeboksi.</p><p>Tule mukaan laulamaan tai nauttimaan laulusta yleisönä!</p>", "sv": "<p>Entresse bibliotek ordnar karaokekvällar för alla!</p><p>Under våren sjunger vi karaoke en gång i månaden</p><p>I februari: Torsdag 22.2. från 16 till 18</p><p>I mars: Torsdag 21.3. från 16 till 18</p><p>I april: Tisdag 16.4. från 15 till 17</p><p>I maj: Torsdag 16.5. från 16 till 18</p><p>Följ med och sjung eller njut av låten som publik!</p>", "en": "<p>Entresse library organizes Karaoke evenings for everyone!</p><p>During the spring, we sing karaoke once a month, on Thursdays.</p><p>In February: Thursday 22.2. from 4 to 6 p.m</p><p>In March: Thursday 21.3. from 4 to 6 p.m</p><p>In April: Tuesday 16.4. from 3 to 5 p.m</p><p>In May: Thursday 16.5. from 4 to 6 p.m</p><p><br>Come along to sing or enjoy the song as an audience!</p>" }, "name": { "fi": "Karaoke Jukebokissa", "sv": "Karaoke i Jukeboksi", "en": "Karaoke at Jukeboksi" }, "short_description": { "fi": "Entressen kirjasto järjestää Karaokea kaikille!\n\n", "sv": "\n\nUnder våren sjunger vi karaoke en gång i månaden", "en": "Entresse library organizes Karaoke evenings for everyone!\n\nDuring the spring, we sing karaoke once a month, on Thursdays." }, "location_extra_info": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4or6m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63141", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11185, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-04T10:15:05.955807Z", "last_modified_time": "2024-03-04T10:15:05.955828Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736803.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11185/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-04T10:15:05.920524Z", "last_modified_time": "2024-04-05T17:14:16.117421Z", "date_published": null, "start_time": "2024-06-10T07:00:00Z", "end_time": "2024-06-14T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/5F897A1478006E024A9C25DE6978872D/TAYNNA_Lavastettu_juttu", "en": "http://www.caisa.fi/en/events/event/5F897A1478006E024A9C25DE6978872D/FULL_A_Staged_Affair" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kurssilla pohditaan mediataiteen ja esitystaiteen keinoin medialukutaitoa ja suunnitellaan esitys, joka videoidaan.</p><p>Mitä medialukutaito tarkoittaa? Mistä tietää onko jokin asian totta? Miltä voi tuntua, kun jokin paljastuu valheeksi? Millä tavoilla meidän käsityksiämme todellisuudesta rakennetaan?</p><p>Kurssin aikana suunnitellaan ja toteutetaan leikin kautta esitys, jossa kesäkurssilaiset pohtivat medialukutaitoa ja omaa suhdettaan esitettyyn todellisuuteen. Esitys suunnitellaan ja käsikirjoitetaan yhdessä. Harjoiteltu esitys kuvataan ja editoidaan valmiiksi videoteokseksi.</p><p>Tutustumme esityksen valmistamisen päävaiheisiin, joihin kuuluu lavastus, puvustus, kuvaaminen ja videoeditointi helpoilla editointiohjelmilla. Tutustumme näyttelemiseen ja esiintymiseen kehollisten harjoitteiden ja leikin avulla.</p><p>Kurssi on tarkoitettu 7–12-vuotiaille. Kurssi ei edellytä ennakko-osaamista. Valmiit videoteokset jaetaan osallistujille kurssin päätteeksi. Kuvattuja materiaaleja ei käytetä tai säilytetä kurssin jälkeen. Osallistuminen edellyttää kuvauslupaa edellä mainittuun tarkoitukseen.</p><p>Kurssiin ei sisälly ruokailua, joten lapsilla tulee olla mukana omat eväät ja juomapullo.</p><p>Ohjaajina toimivat taidekasvattajat Andra Sarenius ja Saban Ramadani. <br> <br><b>Ilmoittautuminen</b> <br>Ilmoittaudu mukaan hauskalle ja leikkisälle Caisan kesäkurssille! Ilmoittautuminen on sitova. Mahdolliset peruutukset mahdollisimman ajoissa.</p><p>Kurssikokonaisuus on täynnä. Peruutuspaikkoja voi tiedustella lähempänä ajankohtaa teemu.savikurki@hel.fi</p><p>Kurssikokonaisuus vk 24, 10.–14.6. ma–pe klo 10–14 <br>ILMOITTAUDU TÄSTÄ LINKISTÄ:<br>https://forms.office.com/e/ZTJ561xbmF</p><p>Lisätietoja: teemu.savikurki@hel.fi <br>Kurssin kielet: suomi ja englanti</p>", "en": "<p>During the course, media literacy is explored through the means of media arts and performance art. Children will create a performance which is recorded and edited into a short movie.</p><p>What does media literacy mean? How do you know if something is true? How does it feel when something turns out to be a lie? In what ways are our perceptions of reality constructed?</p><p>During the course, a performance is planned and implemented through play. The summer course participants reflect on media literacy and their own relationship with represented reality. The performance is planned and scripted together. The rehearsed performance is filmed and edited into a finished video work.<br>We will get to know the main stages of making a show, which include staging, costuming, filming and video editing with easy editing programs. We get to know acting and performing through physical exercises and play.</p><p>The course is intended for 7-12 year olds. The course does not require prior knowledge. The finished video works will be distributed to the participants at the end of the course. The described materials are not used or stored after the course. Participation requires a photography permit for the aforementioned purpose.</p><p>The course does not include meals, so children must bring their own snacks and a drinking bottle.<br> <br>The instructors are art educators Andra Sarenius and Saban Ramadani.<br> <br><b>Registration</b> <br>Sign up for the fun and playful Caisa summer course! Registration is binding. Possible cancellations as early as possible.</p><p>Course is full. Openings due to cancellation can be inquired closer to date teemu.savikurki@hel.fi</p><p><b>Course 2, week 24, 10.–14.6. mon–fri 10 am–2 pm</b><br>REGISTER AT THIS LINK:<br>https://forms.office.com/e/ZTJ561xbmF</p>" }, "name": { "fi": "TÄYNNÄ Lavastettu juttu – kesäkurssi 7–12-vuotiaille lapsille", "en": "FULL A Staged Affair – summer course for children aged 7–12" }, "short_description": { "fi": "Kurssilla pohditaan mediataiteen ja esitystaiteen keinoin medialukutaitoa ja suunnitellaan esitys, joka videoidaan.", "en": "During the course, media literacy is explored through the means of media arts and performance art. Children will create a performance which is recorded and edited into a short movie." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63141/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63109", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "60 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3598989" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11014, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-23T13:13:19.316493Z", "last_modified_time": "2024-02-23T13:13:19.316511Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745069.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11014/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-23T13:13:19.295289Z", "last_modified_time": "2024-04-05T17:14:15.993673Z", "date_published": null, "start_time": "2024-06-05T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/91AF875A01DB54EF2D25477CDCF7691C/Canned_Heat_USA_" }, "provider_contact_info": null, "provider": { "fi": "Ramasound Oy" }, "description": { "fi": "<p>Blues-rock/boogie-yhtye Canned Heat sai alkunsa Los Angelesissa, Kaliforniassa vuonna 1965. Canned Heat tunnetaan bluestulkinnoistaan sekä ponnisteluistaan kiinnostuksen herättämiseksi lajityyppiä ja alkuperäisiä blues-artisteja kohtaan.</p><p>Esiinnyttyään Montereyssä ja Woodstockissa 1960-luvun lopulla yhtye nousi maailmanmaineeseen. Tuolloisessa kokoonpanossa olivat mukana Bob Hite - laulu, Alan ”Blind Owl” Wilson - kitara, huuliharppu ja laulu, Henry Vestine (tai Harvey Mandel) - kitara, Larry Taylor - basso sekä Adolfo ”Fito” de la Parra - rummut.</p><p>Canned Heating on musiikkinsa ja asenteensa voimalla koonnut suuren joukon seuraajia ja vakiinnuttanut asemansa yhtenä hippiajan suosituimmista nimistä.</p><p>1960-luvun loppupuolella Canned Heat esiintyi lähes kaikissa suurimmissa musiikkitapahtumissa esittäen sähköisiä, bluesstandardeja ja yhtyeen omaa materiaaleja yhdistäneitä performansseja, joissa toisinaan kuultiin myös pitkänpuoleisia ”psykedeelisiä” sooloja. Kappaleista kaksi, - ”Going Up the Country” ja ”On the Road Again” - nousivat kansainvälisiksi hiteiksi.</p><p>Sitten 1970-luvun kokoonpano on vaihtunut useasti. Yhtyeen viidennellä vuosikymmenellä mukana on alkuperäisjäsenistä Fito de la Parra.</p><p><b>Fito de la Parra</b>: rummut/laulu<br><b>Rick Reed</b>: basso/kitara<br><b>Jimmy Vivino</b>: kitara<br><b>Dale Spalding</b>: laulu/kitara/huuliharppu</p><p>”And don’t forget to boogie!”</p><p>Kesto n. 90 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>" }, "name": { "fi": "Canned Heat (USA) – On the road again" }, "short_description": { "fi": "Blues-rock/boogie-yhtye Canned Heat sai alkunsa Los Angelesissa, Kaliforniassa vuonna 1965. Canned Heat tunnetaan bluestulkinnoistaan sekä ponnisteluistaan kiinnostuksen herättämiseksi lajityyppiä ja alkuperäisiä blues-artisteja kohtaan." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63109/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61212", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6456, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-07T09:13:58.724145Z", "last_modified_time": "2024-02-06T13:23:44.121161Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739219.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6456/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-07T09:13:58.703397Z", "last_modified_time": "2024-04-05T17:14:15.690332Z", "date_published": null, "start_time": "2024-05-28T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9DD0E5386A12ADDF26E7E0351104C134/Iltapaivatanssit", "sv": "http://www.stoa.fi/sv/evenemang/event/9DD0E5386A12ADDF26E7E0351104C134/Eftermiddagsdans", "en": "http://www.stoa.fi/en/events/event/9DD0E5386A12ADDF26E7E0351104C134/Afternoon_dance" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Sään mukaan keväämmällä voidaan tanssia myös Stoan aukiolla. Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Ohjauskieli: suomi</p>", "sv": "<p>Danser under Katjas och Jussis järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska</p>", "en": "<p>Dancing with professional guidance from Katja and Jussi in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish</p>" }, "name": { "fi": "Iltapäivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa", "sv": "Eftermiddagsdans – Med Jussi Väänänen och Katja Koukkula", "en": "Afternoon dance – With Jussi Väänänen and Katja Koukkula" }, "short_description": { "fi": "Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan.", "sv": "Danser under Katjas och Jussis järnhårda och professionella ledning i Stoas aula.", "en": "Dancing with professional guidance from Katja and Jussi in the lobby of Stoa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61212/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61883", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7105, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-10T13:13:07.465404Z", "last_modified_time": "2024-02-06T13:23:43.938302Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736602.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7105/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-10T13:13:07.451826Z", "last_modified_time": "2024-04-05T17:14:15.581481Z", "date_published": null, "start_time": "2024-05-27T07:15:00Z", "end_time": "2024-05-27T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/F05BED16098D5A61D1AE250244834F85/Tanssi_ja_leikki_", "sv": "http://www.caisa.fi/sv/evenemang/event/F05BED16098D5A61D1AE250244834F85/Dans_och_lek", "en": "http://www.caisa.fi/en/events/event/F05BED16098D5A61D1AE250244834F85/The_dance_and_play" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b></p><p>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p>", "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.<br>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska</p>", "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p><b>Participation</b></p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p>" }, "name": { "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek – Verkstaden", "en": "The dance and play – Workshop" }, "short_description": { "fi": "Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61883/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61882", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7104, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-10T13:13:07.391940Z", "last_modified_time": "2024-02-06T13:23:43.844654Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736585.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7104/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-10T12:13:12.211911Z", "last_modified_time": "2024-04-05T17:14:15.522576Z", "date_published": null, "start_time": "2024-05-27T06:15:00Z", "end_time": "2024-05-27T07:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/2BD8A5F15F5B2B5B80FFAE058124EE3E/Tanssi_ja_leikki", "sv": "http://www.caisa.fi/sv/evenemang/event/2BD8A5F15F5B2B5B80FFAE058124EE3E/Dans_och_lek", "en": "http://www.caisa.fi/en/events/event/2BD8A5F15F5B2B5B80FFAE058124EE3E/The_dance_and_play" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p><p><b>Osallistuminen</b></p><p>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p><b>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</b></p>", "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid.</p><p><b>Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med. </b></p><p>Språk: finska</p>", "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p><p><b>Participation</b></p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p>" }, "name": { "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek – Verkstaden", "en": "The dance and play – Workshop" }, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61882/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61468", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "43 €", "sv": "43 €", "en": "43 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3540916", "sv": "https://www.lippu.fi/eventseries/name-3540916", "en": "https://www.lippu.fi/eventseries/name-3540916" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6310, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-28T18:13:56.103739Z", "last_modified_time": "2024-02-06T13:23:43.751358Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740377.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6310/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-28T18:13:56.056563Z", "last_modified_time": "2024-04-05T17:14:15.465002Z", "date_published": null, "start_time": "2024-05-26T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7ED025DD30DFB047491DD5CD5693430F/Sarah_Millican_-_Late_Bloomer", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/7ED025DD30DFB047491DD5CD5693430F/Sarah_Millican_-_Late_Bloomer", "en": "http://www.savoyteatteri.fi/en/events/event/7ED025DD30DFB047491DD5CD5693430F/Sarah_Millican_-_Late_Bloomer" }, "provider_contact_info": null, "provider": { "fi": "A Comic Soul ja W&T Comedy", "sv": "A Comic Soul ja W&T Comedy", "en": "A Comic Soul ja W&T Comedy" }, "description": { "fi": "<p>Loppuunmyyty! / Sold out!</p><p>Lapsena Sarah Millican oli arka ja hiljainen. Huomaamaton koulussa, ei paljon ystäviä, rinnatkin kasvoivat vasta 16-vuotiaana. Entä nyt? NYT hän on äänekäs, hänellä on paljon ystäviä eikä hän arastele mitään. Uudessa stand up -showssaan Late Bloomer Sarah käy läpi omaa muuttumistaan. Show sisältää myös paljon juttuja päivällisistä ja naisten puutarhoista . Tule mukaan Sarahin kolmannelle Euroopan-kiertueelle nauramaan hänelle, hänen kanssaan ja hänen mukanaan.</p><p>Verkkosivusto: sarahmillican.co.uk</p><p>Ikäraja: K-16</p><p>Esitys on englanninkielinen</p><p>Kesto noin 2,5 h, sisältää väliajan</p>", "sv": "<p>Slutsålt!</p><p>När Sarah Millican var liten gjorde hon inte en fluga förnär. Hon var blyg i skolan, hade knappt några kompisar och fick inte bröst tills hon var 16. Nu? Nu är hon högljudd, har goda vänner, schyssta rattar och flugsmällan i högsta hugg. I sin sprillans nya ståuppföreställning Late Bloomer undersöker hon hur det ena ledde till det andra. Plus en massa skämt om middagar och intimt buskage. Kom och se Sarahs tredje Europaturné. Skratta åt henne, med henne och bredvid henne.</p><p>Webbplats: sarahmillican.co.uk</p><p>Åldersgräns: K-16</p><p>Längd cirka 2,5 timmar inkl. paus</p>", "en": "<p>Sold out!</p><p>When Sarah Millican was a child, she wouldn’t say boo to a goose. Quiet at school, not many friends, no boobs til she was 16. Now? NOW she is loud, with good friends, a cracking rack and goose booing all over the shop. In Late Bloomer, Sarah’s brand-new stand-up show, she explores how one became the other. Plus, lots of stuff about dinners and lady gardens. Come along and join Sarah on her third European tour, laugh at her, with her, beside her.<br> <br>Website: sarahmillican.co.uk</p><p>Age limit: K-16</p><p>Duration about 2,5 h, including intermission</p>" }, "name": { "fi": "Sarah Millican - Late Bloomer – Chambers Touring Presents", "sv": "Sarah Millican - Late Bloomer – Chambers Touring Presents", "en": "Sarah Millican - Late Bloomer – Chambers Touring Presents" }, "short_description": { "fi": "Loppuunmyyty! / Sold out!", "sv": "Slutsålt!", "en": "Sold out!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61468/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61736", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6726, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-19T12:13:06.183064Z", "last_modified_time": "2024-02-06T13:23:43.461510Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741053.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6726/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-19T12:13:06.171729Z", "last_modified_time": "2024-04-05T17:14:15.212680Z", "date_published": null, "start_time": "2024-05-25T11:00:00Z", "end_time": "2024-05-25T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2BC2B2DCC502DEAE3282B000BBE0A22C/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/2BC2B2DCC502DEAE3282B000BBE0A22C/Barnens_DanceAbility_dansworkshops", "en": "http://www.annantalo.fi/en/events/event/2BC2B2DCC502DEAE3282B000BBE0A22C/Children_s_DanceAbility_workshops" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Muut inklusiiviset tanssitunnit: 3.2., 17.2., 2.3.,16.3., 30.3., 20.4., 11.5., 25.5. klo 14–15.</p><p>Ilmoittautuminen: daf@danceabilityfinland.com <br>max.18 osallistujaa</p>", "sv": "<p>DanceAbility-klasser erbjuder barn och deras närstående vuxna trevlig samvaro, rörelseglädje sig och möjligheten att lära känna nya människor av olika slag.</p><p>Klasserna är öppna för alla barn och deras närstående vuxna oavsett funktionsnedsättning eller inte.</p><p>Lokalerna är tillgängliga.</p><p>bokningar: daf@danceabilityfinland.com<br>max. 18 dansare</p>", "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com<br>max. 18 dancers</p>" }, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Barnens DanceAbility dansworkshops", "en": "Children's DanceAbility workshops" }, "short_description": { "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "DanceAbility-klasser erbjuder barn och deras närstående vuxna trevlig samvaro, rörelseglädje sig och möjligheten att lära känna nya människor av olika slag.", "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61736/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63275", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "9,50 € / 13,50 €", "sv": "9,50 € / 13,50 €", "en": "9,50 € / 13,50 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/roofaerialclub/", "sv": "https://www.lippu.fi/artist/roofaerialclub/", "en": "https://www.lippu.fi/artist/roofaerialclub/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 82542, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-04T10:13:48.670311Z", "last_modified_time": "2024-04-04T10:13:48.670323Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746398.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/82542/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-04T10:13:48.657666Z", "last_modified_time": "2024-04-05T17:14:15.067005Z", "date_published": null, "start_time": "2024-05-24T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3925593CFFC8D278F2546D6062AAC577/Roof_Aerial_Club_Kevatnaytos_2024", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3925593CFFC8D278F2546D6062AAC577/Roof_Aerial_Club_Varuppvisning_2024", "en": "http://www.malmitalo.fi/en/events/event/3925593CFFC8D278F2546D6062AAC577/Roof_Aerial_Club_Spring_Show_2024" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Roof Aerial Clubin kevätnäytöksissä nähdään lasten ja aikuisten harrasteryhmien akrobatia- ja ilma-akrobatiaesityksiä.</p><p>Lisäksi lavalla nähdään esiintyvän ryhmän kokonaisuus Valoon, jossa ystävyyden voima yhdistää erilaiset persoonat ja kuljettaa yksinäisen valoon.</p><p>Roof Aerial Club on Malmilla toimiva tankotanssi-, ilma-akrobatia ja sirkusstudio, joka tarjoaa monipuolisesti tunteja lapsille ja aikuisille.</p><p>Ohjaus ja koreografiat: Jerina Ferdani, Sanni Sarlin, Sky G. ertas, Helmi Pirkola, Iina Salmi ja Maria Husu.</p><p>Esityksen kesto 60 min.</p>", "sv": "<p>Roof Aerial Club är en poledance-, luftakrobatik- och cirkusstudio som erbjuder mångsidiga lektioner för barn och vuxna.</p><p>På Roof Aerial Clubs våruppvisning får vi se akrobatik och luftakrobatikföreställningar av hobbygrupper för barn och vuxna samt den framträdande gruppens helhet Valoon (Mot ljuset), där vänskapens kraft sammanför olika personligheter och tar den som är ensam mot ljuset.</p><p>Regi och koreografi: Jerina Ferdani, Sanni Sarlin, Sky G. ertas, Helmi Pirkola, Iina Salmi och Maria Husu.</p><p>Föreställningens längd 60 min.</p>", "en": "<p>Roof Aerial Club’s spring shows include acrobatics and aerial acrobatics from its child and adult amateur groups.</p><p>Roof Aerial Club’s spring shows include acrobatics and aerial acrobatics from its child and adult amateur groups. as well as the performance group’s show, Valo (“Light”), in which the power of friendship brings together various personalities, bringing a loner back into the light.</p><p>Roof Aerial Club is a Malmi-based pole dance, aerial acrobatics and circus studio that provides a variety of classes for children and adults.<br>Direction and choreography: Jerina Ferdani, Sanni Sarlin, Sky G. Ertas, Helmi Pirkola, Iina Salmi and Maria Husu.</p><p>Duration: 60 min.</p>" }, "name": { "fi": "Roof Aerial Club – Kevätnäytös 2024", "sv": "Roof Aerial Club – Våruppvisning 2024", "en": "Roof Aerial Club – Spring Show 2024" }, "short_description": { "fi": "Roof Aerial Clubin kevätnäytöksissä nähdään lasten ja aikuisten harrasteryhmien akrobatia- ja ilma-akrobatiaesityksiä.", "sv": "Roof Aerial Club är en poledance-, luftakrobatik- och cirkusstudio som erbjuder mångsidiga lektioner för barn och vuxna.", "en": "Roof Aerial Club’s spring shows include acrobatics and aerial acrobatics from its child and adult amateur groups." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63275/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63059", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "22 € / 17 € /14 €", "sv": "22 € / 17 € /14 €", "en": "22 € / 17 € /14 €" }, "info_url": { "fi": "https://www.lippu.fi/event/katjalundencompany-katja-lunden-company-flamencon-ilta-kanneltalo-18050557/", "sv": "https://www.lippu.fi/event/katjalundencompany-katja-lunden-company-flamencon-ilta-kanneltalo-18050557/", "en": "https://www.lippu.fi/event/katjalundencompany-katja-lunden-company-flamencon-ilta-kanneltalo-18050557/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11077, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-27T14:13:51.842915Z", "last_modified_time": "2024-02-27T14:13:51.842935Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739631.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11077/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-27T14:13:51.815175Z", "last_modified_time": "2024-04-05T17:14:15.021295Z", "date_published": null, "start_time": "2024-05-24T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/97159688CDC7D82BA300B98332350F60/Flamencon_ilta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/97159688CDC7D82BA300B98332350F60/Flamencokvall", "en": "http://www.kanneltalo.fi/en/events/event/97159688CDC7D82BA300B98332350F60/An_Evening_of_Flamenco" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Flamencon illassa monisävyistä ja sielukasta flamencoa tulkitsevat pohjoismaisen flamencon huippuihin kuuluvan Katja Lundénin edistyneet oppilaat.</p><p>Mukana illassa loistavat myös Blue Flamenco -koulun kehitysvammaiset oppilaat.</p><p>Kesto: 1 t 15 min</p><p>Liput: 22 € / 17 € /14 €</p><p>Alle 3-vuotiaat ilmaiseksi</p>", "sv": "<p>I flamencokvällen tolkas den tonrika och själfulla flamencomusiken av Katja Lundéns avancerade elever, som hör till topparna i nordisk flamenco.</p><p>I kvällen medverkar även de lysande eleverna med funktionsnedsättning från skolan Blue Flamenco.</p><p>Längd: 1 h 15 min.</p><p>Gratis inträde för under 3-åringar</p>", "en": "<p>Katja Lundén’s advanced students, considered to be among the best in Nordic flamenco, interpret multi-toned and soulful flamenco at An Evening of Flamenco.</p><p>The Blue Flamenco school’s disabled students will also get to shine at the event.</p><p>Duration: 1 hr. 15 mins.</p><p>Free for children under 3</p>" }, "name": { "fi": "Flamencon ilta – Katja Lundén Company", "sv": "Flamencokväll – Katja Lundén Company", "en": "An Evening of Flamenco – Katja Lundén Company" }, "short_description": { "fi": "Flamencon illassa monisävyistä ja sielukasta flamencoa tulkitsevat pohjoismaisen flamencon huippuihin kuuluvan Katja Lundénin edistyneet oppilaat.", "sv": "I flamencokvällen tolkas den tonrika och själfulla flamencomusiken av Katja Lundéns avancerade elever, som hör till topparna i nordisk flamenco.", "en": "Katja Lundén’s advanced students, considered to be among the best in Nordic flamenco, interpret multi-toned and soulful flamenco at An Evening of Flamenco." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63059/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61206", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923/", "sv": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923/", "en": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6192, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-23T12:13:20.148751Z", "last_modified_time": "2024-02-06T13:23:43.280052Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739149.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6192/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-23T12:13:20.129056Z", "last_modified_time": "2024-04-05T17:14:14.969003Z", "date_published": null, "start_time": "2024-05-24T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/AF671E7CFD181089B30E471105A2B891/Itakuskus_stand_up_-klubi", "sv": "http://www.stoa.fi/sv/evenemang/event/AF671E7CFD181089B30E471105A2B891/Itakuskus_stand_up-klubb", "en": "http://www.stoa.fi/en/events/event/AF671E7CFD181089B30E471105A2B891/Itakuskus_Stand-up_Club" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"</p><p>Klubilla unohdat murheet ja stressit. Tämä ainutlaatuinen show vie sinut idän matkalle ja tarjoaa hulvatonta komiikkaa, ainutlaatuisia havaintoja kulttuurieroista ja suomen kielestä. Joka keikalla on useampi vaihtuva maahanmuuttajataustainen koomikko – ja totta kai joka illassa esiintyy myös vaihtuva nimekäs kiintiösuomalainen koomikko.</p><p>Kaikilla klubeilla esiintyy viihdetähti <b>Fabe</b>. Et ole voinut välttyä Faben videoilta, sillä kuukausittain niitä katsotaan yli miljoonaa kertaa Suomessa ja jaetaan yli 50 000 kertaa. Miksi klubista on tullut ilmiö? Fabe vastaa: ”Koska suomalaiset rakastavat mun käsikarvoja ja niistä vitsailua. Huumorin avulla voi käsitellä kaikkia aiheita ja yhdistää kulttuureita. Tämä on jotain aivan ainutlaatuista ja uskomatonta. Kannattaa tulla paikalle!”</p><p>Klubi-iltojen isäntänä toimii yksi suomen monipuolisimpia koomikoita: <b>Koomikko Mebe</b>! Mebe on tuottaja, koomikko sekä MC! Hän on sympaattinen ja muistuttaa nallekarhua, joka hurmaa yleisön terävillä heitoilla ja vitseillä! ”Tätä ei näe ja kuule muualla, hulvaton Itäkuskus-show on täynnä ullatuksia ja ainutlaatuisia vitsejä ja havaintoja. Tämä on kuin Fazerin maitosuklaa, kerrasta jää koukkuun!! Tule ja koe ainutlaatuinen Itäkuskus-show, monet käy joka kerta.\"</p><p>Klubilla osansa saavat Verovirasto, Alko, Vantaa, maahanmuuttajien kulttuurierot sekä suomenkieliset fraasit, joita kantasuomalaisetkaan eivät osaa lausua itse oikein.</p><p>Yleisön suusta:<br>\"Haluamme tukea maahanmuuttajaesiintyjiä.\" <br>\"Täällä kuulen erinomaista läppää, mitä muualla en kuule.\" <br>\"Loistavaa konsepti ja ilta on täynnä hyviä esiintyjiä, jokainen esiintyjä on niin erilainen ja omalla tavalla hyvä.\"</p><p>Tule kokemaan itse ja tuo kaverit mukaan!<br>Liput kannattaa ostaa hyvissä ajoin ennen, kun ne myydään loppuun.<br> <br>IG: @comedyfabe, @mebekoomikko<br>TikTok: @comedyfabe</p><p>Kesto: n. 2,5 t <br>Ikäraja: K18 (salissa anniskelua)<br>Kieli: suomi, välillä huono soomi ja ehkä joskus yksi esiintyjä vetää englanniksi</p>", "sv": "<p>Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”</p><p>I klubben glömmer du dina bekymmer och stress. Denna unika show tar dig på en resa österut och bjuder på uppsluppen komedi, unika observationer av kulturskillnader och finska språket. Under varje show uppträder flera olika komiker med invandrarbakgrund – och givetvis uppträder även olika, kända kvotfinländska komiker under dessa kvällar.</p><p>I klubben skämtas det friskt om såväl Skatteförvaltningen som Alko, Vanda, invandrarnas kulturskillnader samt finska fraser, som inte ens infödda finländare kan uttala rätt.</p><p>Kom och upplev detta själv och ta med dig en kompis! Det lönar sig att köpa biljetter i god tid.</p><p>IG: @comedyfabe, @mebekoomikko<br>TikTok: @comedyfabe<br> <br>Längd: ca. 2,5 t. <br>Åldersgräns: 18 (servering av alkohol i teatersalen)<br>Språk: finska, ibland engelska</p>", "en": "<p>Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”</p><p>You will forget your worries and stresses at the club. This unique show will take you on a journey to the East, offering hilarious comedy and unique insights into cultural differences and the Finnish language. Each show will feature a different comedian from an immigrant background – and of course, each night will also feature a different renowned comedian from Finland.</p><p>The club will feature comedy about the Finnish Tax Administration, Alko, Vantaa, immigrants’ cultural differences and Finnish phrases that even native Finns can’t pronounce correctly themselves.</p><p>Come and experience the show for yourself and bring your friends! Make sure to buy your tickets in good time before they sell out.</p><p>servering av alkohol i teatersalen</p><p>IG: @comedyfabe, @mebekoomikko<br>TikTok: @comedyfabe</p><p>Duration: approx. 2,5 h<br>Age rating: 18 (alcohol service in the theatre)<br>Language: Finnish, occasionally featuring English-speaking performers</p>" }, "name": { "fi": "Itäkuskus stand up -klubi", "sv": "Itäkuskus stand up-klubb", "en": "Itäkuskus Stand-up Club" }, "short_description": { "fi": "Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"", "sv": "Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”", "en": "Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61206/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63274", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "9,50 € / 13,50 €", "sv": "9,50 € / 13,50 €", "en": "9,50 € / 13,50 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/roofaerialclub/", "sv": "https://www.lippu.fi/artist/roofaerialclub/", "en": "https://www.lippu.fi/artist/roofaerialclub/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 82541, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-04T10:13:48.499828Z", "last_modified_time": "2024-04-04T10:13:48.499843Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746397.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/82541/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-04T10:13:48.476456Z", "last_modified_time": "2024-04-05T17:14:14.865044Z", "date_published": null, "start_time": "2024-05-24T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/44F5BA69ED3D12B89A187947D00C2344/Roof_Aerial_Club_Kevatnaytos_2024", "sv": "http://www.malmitalo.fi/sv/evenemang/event/44F5BA69ED3D12B89A187947D00C2344/Roof_Aerial_Club_Varuppvisning_2024", "en": "http://www.malmitalo.fi/en/events/event/44F5BA69ED3D12B89A187947D00C2344/Roof_Aerial_Club_Spring_Show_2024" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Roof Aerial Clubin kevätnäytöksissä nähdään lasten ja aikuisten harrasteryhmien akrobatia- ja ilma-akrobatiaesityksiä.</p><p>Lisäksi lavalla nähdään esiintyvän ryhmän kokonaisuus Valoon, jossa ystävyyden voima yhdistää erilaiset persoonat ja kuljettaa yksinäisen valoon.</p><p>Roof Aerial Club on Malmilla toimiva tankotanssi-, ilma-akrobatia ja sirkusstudio, joka tarjoaa monipuolisesti tunteja lapsille ja aikuisille.</p><p>Ohjaus ja koreografiat: Jerina Ferdani, Sanni Sarlin, Sky G. ertas, Helmi Pirkola, Iina Salmi ja Maria Husu.</p><p>Esityksen kesto 60 min.</p>", "sv": "<p>Roof Aerial Club är en poledance-, luftakrobatik- och cirkusstudio som erbjuder mångsidiga lektioner för barn och vuxna.</p><p>På Roof Aerial Clubs våruppvisning får vi se akrobatik och luftakrobatikföreställningar av hobbygrupper för barn och vuxna samt den framträdande gruppens helhet Valoon (Mot ljuset), där vänskapens kraft sammanför olika personligheter och tar den som är ensam mot ljuset.</p><p>Regi och koreografi: Jerina Ferdani, Sanni Sarlin, Sky G. ertas, Helmi Pirkola, Iina Salmi och Maria Husu.</p><p>Föreställningens längd 60 min.</p>", "en": "<p>Roof Aerial Club’s spring shows include acrobatics and aerial acrobatics from its child and adult amateur groups.</p><p>Roof Aerial Club’s spring shows include acrobatics and aerial acrobatics from its child and adult amateur groups. as well as the performance group’s show, Valo (“Light”), in which the power of friendship brings together various personalities, bringing a loner back into the light.</p><p>Roof Aerial Club is a Malmi-based pole dance, aerial acrobatics and circus studio that provides a variety of classes for children and adults.<br>Direction and choreography: Jerina Ferdani, Sanni Sarlin, Sky G. Ertas, Helmi Pirkola, Iina Salmi and Maria Husu.</p><p>Duration: 60 min.</p>" }, "name": { "fi": "Roof Aerial Club – Kevätnäytös 2024", "sv": "Roof Aerial Club – Våruppvisning 2024", "en": "Roof Aerial Club – Spring Show 2024" }, "short_description": { "fi": "Roof Aerial Clubin kevätnäytöksissä nähdään lasten ja aikuisten harrasteryhmien akrobatia- ja ilma-akrobatiaesityksiä.", "sv": "Roof Aerial Club är en poledance-, luftakrobatik- och cirkusstudio som erbjuder mångsidiga lektioner för barn och vuxna.", "en": "Roof Aerial Club’s spring shows include acrobatics and aerial acrobatics from its child and adult amateur groups." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63274/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61678", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "33,50 €/48,50 € 2 pvä", "sv": "33,50 €/48,50 € 2 pvä", "en": "33,50 €/48,50 € 2 pvä" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/3554510", "sv": "https://www.lippu.fi/eventseries/3554510", "en": "https://www.lippu.fi/eventseries/3554510" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6644, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-15T12:13:54.511167Z", "last_modified_time": "2024-02-06T13:23:43.101459Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739294.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6644/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-13T17:13:41.435250Z", "last_modified_time": "2024-04-05T17:14:14.812749Z", "date_published": null, "start_time": "2024-05-24T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9A2605DCABA1E9E89940B3379644C489/Helsinki_Lit", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/9A2605DCABA1E9E89940B3379644C489/Helsinki_Lit", "en": "http://www.savoyteatteri.fi/en/events/event/9A2605DCABA1E9E89940B3379644C489/Helsinki_Lit" }, "provider_contact_info": null, "provider": { "fi": "Helsingin kirjallisuusfestivaali ry", "sv": "Helsingin kirjallisuusfestivaali ry", "en": "Helsingin kirjallisuusfestivaali ry" }, "description": { "fi": "<p>Helsinki Lit -käännöskirjallisuusfestavaali viettää toukokuussa 10-vuotisjuhliaan Savoy-teatterissa</p><p>Helsinki Lit -käännöskirjallisuusfestivaali juhlii tulevana keväänä kymmenvuotista taivaltaan. 10-vuotisjuhlafestivaali järjestetään 24.-25. toukokuuta Savoy-teatterissa, josta koko Helsinki Lit -festivaalin menestyksekäs taival vuosikymmen sitten alkoi.</p><p>Helsinki Litissä on kymmenen vuoden aikana vieraillut kymmeniä kansainvälisiä kirjalijatähtiä Nobel-voittajista Booker- ja Pulitzer-palkittuihin. Tänä vuonna Helsinki Lit sai vieraakseen muun muassa juuri kirjallisuuden Nobel-palkinnon voittaneen Annie Ernaux’n ja festivaalin liput myytiin ennakosta loppuun jo maaliskuun 2023 aikana.</p><p>10-vuotisjuhlavuoden koko ohjelma julkaistaan helmikuussa 2024. Mukana tulee tuttuun tapaan jälleen olemaan nimekkäitä kansainvälisiä kirjailijavieraita, joiden kanssa keskustelevat valitut kotimaiset kirjailijat, toimittajat ja vaikuttajat. Tänä vuonna luvassa on myös erityistä juhlaohjelmaa ja tunnelmakoosteita vuosien varrelta. <br>Juhlafestivaalilla mukana olevat kustantajat ja festivaalin muut yhteistyökumppanit ja tukijat julkaistaan helmikuun ohjelmajulkistuksen yhteydessä.</p><p>Permanto paikat ovat K18. Parveke on sallittu kaiken ikäisille.</p>", "sv": "<p>Litteraturfestivalen Helsinki Lit firar tioårsjubileum i maj på Savoyteatern</p><p>Den internationella litteraturfestivalen Helsinki Lit ordnas nästa år för tionde gången. Festivalen äger rum den 24-25 maj 2024, på Savoyteatern i Helsingfors, där också den första festivalen hölls 2015.</p><p>Under ett decennium har festivalen fått besök av en mängd internationella stjärnor, däribland tidigare Nobelpristagare, Pulitzer-, Booker- och Finlandiavinnare. I våras gästades Helsinki Lit av den färska nobelpristagaren Annie Ernaux, och då var festivalen var utsåld redan i mars.</p><p>Programmet för nästa år publiceras i februari 2024. Även denna gång bjuder Helsinki Lit på flera stora internationella författarnamn, som intervjuas av inhemska författare och journalister. Tioårsjubileet kommer även att uppmärksammas i programmet.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>The Helsinki Lit translation literature festival celebrates its 10th anniversary at Savoy Theatre in May – tickets now on sale</p><p>The Helsinki Lit translation literature festival will celebrate its 10th anniversary next spring. The 10th anniversary festival will take place at Savoy Theatre on 24–25 May, where Helsinki Lit’s successful run began a decade ago. The tickets are now on sale.</p><p>Over the past ten years, Helsinki Lit has hosted dozens of international literary stars, from Nobel Prize winners to Booker and Pulitzer Prize winners. In 2023, Helsinki Lit hosted Annie Ernaux, who had just won the Nobel Prize for Literature, and tickets for the festival sold out in advance during March 2023.</p><p>The full programme for the 10th anniversary will be published in February 2024. As usual, the festival will host internationally renowned author guests, who will participate in discussions with selected Finnish authors, journalists and influencers. This year, there will also be a special festive programme and atmospheric compilations from over the years.</p><p>The publishers and other partners and supporters of the festival will be announced when the programme is published in February.</p><p>The stalls will only be allowed for over 18s. The balcony will be allowed for people of all ages.</p>" }, "name": { "fi": "Helsinki Lit – Käännöskirjallisuusfestivaali 10 vuotta", "sv": "Helsinki Lit – Litteraturfestivalen", "en": "Helsinki Lit" }, "short_description": { "fi": "Helsinki Lit -käännöskirjallisuusfestavaali viettää toukokuussa 10-vuotisjuhliaan Savoy-teatterissa", "sv": "Litteraturfestivalen Helsinki Lit firar tioårsjubileum i maj på Savoyteatern" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61678/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61577", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "14,50 € / 11,50 €", "sv": "14,50 € / 11,50 €", "en": "14,50 € / 11,50 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/teatteri-hevosenkenka/konna-ja-konstaapeli-kerttu-3509332/?pnum=2", "sv": "https://www.lippu.fi/artist/teatteri-hevosenkenka/konna-ja-konstaapeli-kerttu-3509332/?pnum=2", "en": "https://www.lippu.fi/artist/teatteri-hevosenkenka/konna-ja-konstaapeli-kerttu-3509332/?pnum=2" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10750, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-09T12:13:53.748973Z", "last_modified_time": "2024-02-09T12:13:53.748991Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741520.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10750/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-02-09T12:13:53.726505Z", "last_modified_time": "2024-04-05T17:14:14.695746Z", "date_published": null, "start_time": "2024-05-23T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4505240BE4379A9E06AACCB45191DA74/Konna_ja_Konstaapeli_Kerttu", "sv": "http://www.annantalo.fi/sv/evenemang/event/4505240BE4379A9E06AACCB45191DA74/Konna_ja_Konstaapeli_Kerttu", "en": "http://www.annantalo.fi/en/events/event/4505240BE4379A9E06AACCB45191DA74/Konna_ja_Konstaapeli_Kerttu" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kerttu Kakkonen on iloinen ja hyväsydäminen poliisikonstaapeli, joka on päättänyt tehdä tyhjiksi konnien kepulikonstit.</p><p>Kertun poliisiasemalla on tärkeä tehtävä – säilyttää turvallisesti maailman arvokkainta timanttia ja estää kuuluisaa Konnaa saamasta sitä. Kertulla on työtovereinaan apulaiskonstaapelit Rattis ja Musu, ja kun joukkoon liittyy uusi apulainen, arka koira nimeltään Puppe Pelkonen, tiimi on valmis.</p><p>Lisävipellystä tapahtumiin tuovat ovela tikkarivaras Toukkanen, naapurin hupsahtava täti Tyyne Puputti sekä poliisikaksikko Jantunen ja Juntunen. Selvitettävää riittää ja vauhdikkaan rosvojahdin lopuksi Puppe huomaa, ettei enää ole niin pelokas.<br>Ikäsuositus: 3-vuotiaat ja ylöspäin.<br>Kesto: noin 45 min.<br>Ensi-ilta 8.2.2024</p><p>Liput: <br>aamuesitykset 11,50 €<br>ryhmän aikuiset 3,50 € <br>iltaesitykset 14,50 €</p><p>Edullisin tapa ostaa lippu on lippu.fi -verkkokaupan kautta, jossa tilausmaksu on 1,50 €/tilaus (pdf-lippuna).</p>", "sv": "<p>Kerttu Kakkonen är en glad och godhjärtad poliskonstapel som har bestämt sig för att lägga käppar i hjulen för skurkarnas tjuvtrick.</p><p>Kerttus polisstation har en viktig uppgift – de ska tryggt förvara världens mest värdefulla diamant och förhindra den berömde Konna från att lägga vantarna på den.</p>", "en": "<p>Kerttu Kakkonen is a cheerful and kind-hearted police officer who has decided to thwart the skulduggery of crooks.</p><p>Kerttu’s police station has an important mission – to safely store the world’s most valuable diamond and prevent the famous Crook from getting it.</p>" }, "name": { "fi": "Konna ja Konstaapeli Kerttu – Teatteri Hevosenkenkä", "sv": "Konna ja Konstaapeli Kerttu – Teatteri Hevosenkenkä", "en": "Konna ja Konstaapeli Kerttu – Teatteri Hevosenkenkä" }, "short_description": { "fi": "Kerttu Kakkonen on iloinen ja hyväsydäminen poliisikonstaapeli, joka on päättänyt tehdä tyhjiksi konnien kepulikonstit.", "sv": "Kerttu Kakkonen är en glad och godhjärtad poliskonstapel som har bestämt sig för att lägga käppar i hjulen för skurkarnas tjuvtrick.", "en": "Kerttu Kakkonen is a cheerful and kind-hearted police officer who has decided to thwart the skulduggery of crooks." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61577/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61692", "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: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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6931, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-29T12:13:14.638060Z", "last_modified_time": "2024-02-06T13:23:42.915350Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742562.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6931/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-29T12:13:14.622668Z", "last_modified_time": "2024-04-05T17:14:14.642748Z", "date_published": null, "start_time": "2024-05-23T08:45:00Z", "end_time": "2024-05-23T10:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/96B74C96B050E12BDF19D4C8AB7E44E7/Opi_suomea_laulaen_", "sv": "http://www.stoa.fi/sv/evenemang/event/96B74C96B050E12BDF19D4C8AB7E44E7/Lar_dig_finska_genom_att_sjunga_", "en": "http://www.stoa.fi/en/events/event/96B74C96B050E12BDF19D4C8AB7E44E7/Learn_Finnish_by_Singing_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea! <br>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Ryhmään mukaan on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Kevään muut laulupajakerrat: <br>to 14.3. klo 10 ja 11.45 <br>to 23.5. klo 10 & 11.45</p>", "sv": "<p>Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Kom med och sjung, även om du bara kan lite finska!</p><p>Registrering: sanna.nuutinen@hel.fi</p>", "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. Come and sing with us, even if you know just a little Finnish!</p><p>Registration via email at sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille", "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare", "en": "Learn Finnish by Singing – Song workshops for immigrants" }, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.", "sv": "Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.", "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61692/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19236, "next": "