Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=217®istration__remaining_waiting_list_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=218®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=216®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "id": "kulke:64824", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://www.lippu.fi/artist/malmitalo/vaippakansan-karnevaali-3857886/", "sv": "https://www.lippu.fi/artist/malmitalo/vaippakansan-karnevaali-3857886/", "en": "https://www.lippu.fi/artist/malmitalo/vaippakansan-karnevaali-3857886/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152911, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-30T11:15:08.660727Z", "last_modified_time": "2024-10-30T11:15:08.660741Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755422.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152911/?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-10-30T11:15:08.632836Z", "last_modified_time": "2025-04-02T14:13:32.115557Z", "date_published": null, "start_time": "2025-04-13T07:00:00Z", "end_time": "2025-04-13T11: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.malmitalo.fi/fi/tapahtumat/event/6CED50606B0050295AC3836FCB189B00/Vaippakansan_karnevaali", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6CED50606B0050295AC3836FCB189B00/Blojfolkets_karneval", "en": "http://www.malmitalo.fi/en/events/event/6CED50606B0050295AC3836FCB189B00/Vaippakansan_karnevaali" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Vaippakansan karnevaali eli Vaippis valtaa Malmitalon taas keväällä 2025!</p><p>Vaippis on vauvojen ja taaperoiden oma festari, joka tarjoaa koko päivälle hauskaa ohjelmaa: esityksiä, työpajoja, musiikkia, tanssia ja taidetta perheen pienimmille. Sukella salaisille saarille, tanssi lastendiskossa, osallistu muskareihin, sirkustyöpajoihin ja värikylpyihin – ja paljon muuta!</p><p><b>Esitykset</b><br>Klo 10 ja 13 Recover Laboratory: Salainen saari<br>Klo 10 ja 11 Pallottelua -runoesitys<br>Klo 10:30, 12 ja 13 Auraco: Syli (5 € sis. lapsi+aikuinen)<br>Klo 11 ja 13.30 Sukkalukko –konsertti</p><p><b>Muu ohjelma ja työpajat</b><br>Klo 10–14 Lastendisko<br>Klo 10–14 Tuntupolku -näyttely ja elämystila<br>Klo 10–13 PilttiPunttis -leikkituokiot ja elämystila <br>Klo 10–14 Grafiikkapaja<br>Klo 10, 11 ja 13 Perhemuskari (5 € lapsi+aikuinen)<br>Klo 10:15, 11:30 ja 12:45 Vauvojen värikylpy (5 € sis. lapsi+aikuinen)<br>Klo 10:30, 11:30 ja 12:30 Vauvasirkustyöpaja (5 € sis. lapsi+aikuinen)<br> <br><b>Recover Laboratory: Salainen saari</b> <br>Malmisali<br>klo 10 ja 13<br>Yksinäinen hahmo salaperäisellä saarella löytää pullopostin, joka kutsuu seikkailuun. Kiehtova matka täynnä yllätyksiä odottaa! <br>Ikäsuositus: yli 2-vuotiaille<br> <br><b>Pallottelua -runoesitys taaperoille </b><br>Kirjaston monitoimitila<br>klo 10<br>Huristellaan pallottelumatkalle pienten maailmaan! Tutkitaan pyöreitä juttuja, pompitaan ja pyöritään yhdessä oman aikuisen kanssa. <br>Ikäsuositus: 1–3-vuotta<br>Maksuttomat pääsyliput paikan päältä<br> <br><b>Pallottelua -runoesitys vauvoille</b><br>Kirjaston monitoimitila<br>klo 11<br>Toiminnallinen esitys kuljettaa lapsen ja vanhemman yhteiselle aistihetkelle ja mukavalle loruretkelle.<br>Ikäsuositus: alle 1-vuotiaat.<br>Maksuttomat pääsyliput paikan päältä<br> <br><b>Auraco: Syli</b><br>Pieni Sali<br>klo 10.30, 12 ja 13<br>Syli on tanssia ja musiikkia, iloa ja väriä. Ihmetystä ja hymyä. Vähän ehkä kummastustakin. Syli on monta sylillistä yleisön ja taiteilijoiden yhteistä, sanatonta vuorovaikutusta. <br>Ikäsuositus: 2-8 kk<br>Liput: 5 € / lapsi + aikuinen –pari<br> <br><b>Sukkalukko -orkesteri esiintyy</b><br>Malmitalon aula<br>klo 11 ja 13.30<br>Sukkalukko on keväällä 2023 perustettu lastenmusiikkiyhtye. Yhtyeen muodostavat television lastenohjelmista tuttu Susanna Volanto ja The Bätmäns -yhtyeestä tuttu Tomi Rajala.</p><p><b>Lastendisko</b><br>Kokoushuone 2, 2 krs.<br>klo 10–14<br>DJ Elviksen Äiti soittaa lasten suosikkimusiikkia ja toiveita Malmitalon toisessa kerroksessa.</p><p><b>Tuntupolku – näyttely ja elämystila</b><br>Galleria<br>klo 10–14<br>Tuntupolku tarjoaa vauva- ja taaperoikäisille kokemuksia erilaisten pintojen, tuntujen, materiaalien ja värien parissa.</p><p><b>PilttiPunttis!</b><br>Kokoushuone 3, 2. krs.<br>klo 10–13<br>Riemukas pikkupilttien punttis! Punttiksen leikkipisteillä vauvat ja taaperot voivat kipittää, ryömiä, vipeltää ja leikkiä! <br>Leikkituokiot alkavat klo 10, 10.30, 11, 11.30, 12 ja 12.30.<br>Ikäsuositus: alle 3-vuotiaat yhdessä oman aikuisen kanssa<br>Leikkituokion kesto: n. 30 min<br>Varaa oma punttisvuoro kokoushuone 3 edustalta, 2.krs.</p><p><b>Grafiikkapaja</b><br>Parvi, 2. krs.<br>klo 10–14<br>Painetaan iloisia palloja paperille. Sopii kaikelle vaippakansalle!<br> <br><b>Vauvojen värikylpy</b><br>Taideluokka 3, 2 krs.<br>klo 10.15, 11.30 ja 12.45<br>Tule mukaan kylpemään väreissä ja opeta vauvallesi lisää tapoja ilmaista itseään luovasti ja leikkisästi! Suosittelemme varaamaan liput ikäryhmittäin: klo 10 värikylpy 6–18 kk vauvoille, klo 11:30 ja 12:45 värikylvyt 18–24 kk taaperoille.<br>Liput: 5 € / lapsi + aikuinen –pari<br> <br><b>Perhemuskari</b><br>Musiikkiluokka 7, 2. krs.<br>klo 10, 11 ja 13<br>Tervetuloa laulamaan, soittamaan ja liikkumaan iloisiin perhemuskareihin. Suosittelemme varaamaan liput ikäryhmittäin: klo 10 muskariin 1–2-vuotiaille, klo 11 2–3-vuotiaille ja klo 13 0–1-vuotiaille.<br>Liput: 5 € / lapsi + aikuinen –pari<br> <br><b>Vauva- ja taaperosirkustyöpajat</b> <br>Tanssisali <br>klo 10.30, 11.30 ja 12.30<br>Vauvasirkuksessa vahvistamme vanhemman ja lapsen välistä suhdetta leikin ja ilon kautta.<br>Ikäsuositus: 6–18 kk<br>Liput: 5 € / lapsi + aikuinen –pari</p><p>Huom! Lastenvaunut ja rattaat tulee jättää Malmitalon edustalla sijaitsevaan vaunuparkkiin. Varaathan mukaasi kantovälineen tarvittaessa.</p>", "sv": "<p>Blöjfolkets karneval, det vill säga Vaippis eller bebisarnas och småbarnens egen festival återkommer!</p><p><b>Vaippis 2025 program</b></p><p><b>Uppträdanden</b><br>Kl. 10 och 13 Recover Laboratory: Salainen saari<br>Kl. 10 och 11 Pallottelua-diktföreställning<br>Kl. 10:30, 12 och 13 Auraco: Syli (5 € för barn+vuxen)<br>Kl. 11 och 13.30 Sukkalukko-konsert</p><p><b>Annat program och workshoppar</b><br>Kl. 10–14 Barndisko<br>Kl. 10–14 Tuntupolku-utställning och upplevelserum<br>Kl. 10–13 PilttiPunttis-lekstunder och uppelvelserum <br>Kl. 10–14 Grafikworkshop<br>Kl. 10, 11 och 13 Familjemusikskola (5 € för barn+vuxen)<br>Kl. 10:15, 11:30 och 12:45 Färgbad för bebisar (5 € för barn+vuxen)<br>Kl. 10:30, 11:30 och 12:30 Babycirkusworkshop (5 € för barn+vuxen)<br> <br> <br><b>Recover Laboratory: Salainen saari</b> <br>Malmsalen<br>kl. 10 och 13<br>En ensam figur på en mystisk ö hittar flaskpost som lockar ut på äventyr. En fascinerande resa full av överraskningar väntar! <br>Åldersrekommendation: barn över 2 år<br>Längd: 30 min<br>Fritt inträde<br> <br><b>Pallottelua-diktföreställning för småbarn </b><br>Bibliotekets allaktivitetsrum<br>kl. 10<br>Vi åker ut på en bollresa i småttingarnas värld! Vi undersöker runda ting, studsar och rullar dem tillsammans med vår vuxna person. <br>Åldersrekommendation: 1–3-år<br>Längd: ca 30 min.<br>Avgiftsfria inträdesbiljetter på plats<br> <br><b>Pallottelua-diktföreställning för bebisar</b><br>Bibliotekets allaktivitetsrum<br>kl. 11<br>Den funktionella föreställningen transporterar barnet och föräldern till en gemensam stund med sinnesupplevelser och trevliga ramsor.<br>Åldersrekommendation: under 1-åringar.<br>Längd: ca 30 min.<br>Avgiftsfria inträdesbiljetter på plats<br> <br><b>Auraco: Syli</b><br>Lilla Salen<br>kl. 10:30, 12 och 13<br>Syli, eller ”famnen”, är dans och musik, glädje och färg. Mirakel och leenden. Kanske lite förundran också. Famnen är många famnar fulla med gemensam ordlös dialog mellan publiken och konstnärerna. <br>Åldersrekommendation: 2–8 mån<br>Längd: ca 30 min.<br>Biljetter: 5 €/par, barn+vuxen<br> <br><b>Orkestern Sukkalukko uppträder</b><br>Scenen i foajén till Malms kulturhus<br>kl. 11 och 13:30<br>Sukkalukko är en barnmusikorkester som grundades våren 2023. Orkestern består av Susanna Volanto som är bekant från barnprogram och Tomi Rajala som är bekant från orkestern The Bätmäns. <br>Längd: ca 30 min.<br>Fritt inträde<br> <br><b>Barndisco</b><br>Mötesrum 2, 2:a vån.<br>kl. 10–14<br>DJ Elviksen Äiti spelar barnens favoritmusik och önskelåtar på andra våningen i Malms kulturhus. <br>En gång i timmen ordnas en gemensam dansstund: 10.30, 11.30, 12.30 & 13.30<br>Fritt inträde<br> <br><b>Tuntupolku-utställning och upplevelserum</b><br>Malms kulturhus galleri<br>kl. 10–14<br>Tuntupolku erbjuder bebisar och småbarn upplevelser med olika ytor, fingertoppskänslor, material och färger. <br>Fritt inträde<br> <br><b>PilttiPunttis!</b><br>Mötesrum 3, 2:a vån.<br>kl. 10–13<br>Glädjefyllt gym för småglin! På gymmets lekplats kan bebisar och småbarn springa, krypa, skutta och leka! <br>Lekstunderna börjar kl. 10, 10.30, 11, 11.30, 12 och 12.30.<br>Åldersrekommendation: under 3-åringar tillsammans med en egen vuxen<br>Lekstundens längd: ca 30 min<br>Boka en egen tid till gymmet framför mötesrum 3, 2:a våningen på Malms kulturhus</p><p><b>Grafikworkshop</b><br>Loftet 2:a vån.<br>kl. 10–14<br>Vi trycker glada bollar på papper. Passar för alla i blöjåldern!<br>Fritt inträde<br> <br><b>Färgbad för bebisar</b><br>Konstklass 3, 2:a vån.<br>kl. 10.15, 11.30 och 12.45<br>Kom med och bada i färger och lär ditt barn fler sätt att uttrycka sig kreativt och lekfullt! Vi rekommenderar bokning av biljetter enligt åldersgrupp: kl. 10 färgbad för 6–18 månaders bebisar, kl. 11:30 och 12:45 färgad för 18–24 månaders småbarn.<br>Biljetter: 5 €/par, barn+vuxen<br> <br><b>Familjemusikskola</b><br>Musikklass 7, 2:a vån.<br>kl. 10, 11 och 13<br>Välkommen att sjunga, ringa och röra på dig i den glada familjemusikskolan. Vi rekommenderar bokning av biljetter enligt åldersgrupp: kl. 10 för för 1–2-åringar, kl. 11 för 2–3-åringar och kl. 13 för 0–1-åringar.<br>Biljetter: 5 €/par, barn+vuxen<br> <br><b></b>Workshoppar med cirkus för bebisar och småbarn och småbarn <br>Danssalen <br>kl. 10.30, 11.30 och 12.30</p>", "en": "<p>Vaippakansan karnevaalit, or Vaippis (Carnival for the Diaper People), the festival for babies and toddlers, is back!</p><p><b>Vaippis 2025 programme</b></p><p><b>Shows and performances</b><br>At 10:00 and 13:00 Recover Laboratory: Salainen saari – Secret island<br>At 10:00 and 11:00 Pallottelua – Playing ball poetry performance<br>At 10:30, 12:00 and 13:00 Dance Theatre Auraco: Syli – Embrace (€5 per adult-child pair)<br>At 11:00 and 13:30 Concert by Sukkalukko</p><p><b>Other programme and workshops</b><br>10:00–14:00 Children’s disco<br>10:00–14:00 Tuntupolku – Sensation path exhibition and experience space<br>10:00–13:00 PilttiPunttis – Toddler gym play sessions and experience space<br>10:00–14:00 Graphics workshop<br>At 10:00, 11:00 and 13:00 Family music play school (€5 per adult-child pair)<br>At 10:15, 11:30 and 12:45 Baby colour bath (€5 per adult-child pair)<br>At 10:30, 11:30 and 12:30 Baby circus workshop (€5 per adult-child pair)<br> <br> <br><b>Recover Laboratory: Salainen saari – Secret island</b> <br>Malmi Hall<br>at 10:00 and 13:00<br>A lonely figure on a mysterious island finds a message in a bottle, inviting them on an adventure. An enchanting journey awaits, filled with surprises! <br>Recommended age: 2 and older<br>Duration: 30 min<br>Free entry<br> <br><b>Pallottelua (Playing ball) poetry performance for toddlers</b><br>Library’s multi-purpose room<br>at 10:00<br>Bounce your way into the world of ball games with toddlers!Explore round things and bounce and roll around together with your grown-up. <br>Recommended age: 1–3 years<br>Duration: approx. 30 min<br>Get your free-of-charge entrance tickets on site<br> <br><b>Pallottelua (Playing ball) poetry performance for babies</b><br>Library’s multi-purpose room<br>at 11:00<br>This active performance will take a parent and their child on a shared sensory journey with fun nursery rhymes.<br>Recommended age: under 12 months.<br>Duration: approx. 30 min<br>Get your free-of-charge entrance tickets on site<br> <br><b>Auraco: Syli (Embrace)</b><br>Small Auditorium<br>At 10:30, 12:00 and 13:00<br>Syli is a performance filled with dance, music, joy and colour. Wonder and smiles. Maybe a pinch of perplexion. Syli embraces the audience and the performers with their shared, wordless interactions. <br>Recommended age: 2-8 months<br>Duration: approx. 30 min<br>Tickets: €5 per adult-child pair<br> <br><b>Performance by Sukkalukko orchestra</b><br>Malmitalo hall stage<br>at 11:00 and 13:30<br>Sukkalukko is a children’s music group founded in spring 2023. The performers are Susanna Volanto, a familiar face from children’s television programmes, and Tomi Rajala, known from the band The Bätmäns. <br>Duration: approx. 30 min<br>Free entry<br> <br><b>Children’s disco</b><br>Meeting room 2, 2nd floor<br>10:00–14:00<br>DJ Elviksen Äiti plays children’s favourite records and requests on the second floor of Malmitalo. <br>The disco will also host a dance-along once an hour: at 10:30, 11:30, 12:30 & 13:30<br>Free entry<br> <br><b>Tuntupolku – Sensation path exhibition and experience space</b><br>Malmitalo gallery<br>10:00–14:00<br>Tuntupolku is a sensory path offering babies and toddlers experiences with different surfaces, textures, materials and colours. <br>Free entry<br> <br><b>PilttiPunttis! toddler gym</b><br>Meeting room 3, 2nd floor<br>10:00–13:00<br>A fun ‘gym’ for the youngest in the family! Babies and toddlers can run, crawl, zoom and play their way through the play areas of PilttiPunttis. <br>The play sessions start at 10:00, 10:30, 11:00, 11:30, 12:00 and 12:30.<br>Age recommendation: children under the age of 3 accompanied by an adult<br>Duration of a play session: approx. 30 min<br>Book your turn at the ‘gym’ in front of meeting room 3 on Malmitalo’s 2nd floor.</p><p><b>Graphics workshop</b><br>Balcony, 2nd floor<br>10:00–14:00<br>Print happy ball shapes on paper. Suitable for babies and toddlers of all ages!<br>Free entry<br> <br><b>Baby colour bath</b><br>Art class 3, 2nd floor<br>At 10:15, 11:30 and 12:45<br>Join us in bathing in colour and teach you baby new playful ways of expressing themselves creatively! We recommend booking your tickets by age group: at 10:00 colour bath for babies between 6 and 18 months; at 11:30 and 12:45 colour baths for toddlers be</p>" }, "name": { "fi": "Vaippakansan karnevaali", "sv": "Blöjfolkets karneval", "en": "Vaippakansan karnevaali" }, "short_description": { "fi": "Vaippakansan karnevaali eli Vaippis valtaa Malmitalon taas keväällä 2025!", "sv": "Blöjfolkets karneval, det vill säga Vaippis eller bebisarnas och småbarnens egen festival återkommer!", "en": "Vaippakansan karnevaalit, or Vaippis (Carnival for the Diaper People), the festival for babies and toddlers, is back!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64824/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64903", "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:351/?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:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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": "15 € / 10 €", "sv": "15 € / 10 €", "en": "15 € / 10 €" }, "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": 452353, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-02T11:13:46.390719Z", "last_modified_time": "2025-04-02T11:13:46.390740Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761458.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/452353/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-02T11:13:46.360513Z", "last_modified_time": "2025-04-02T11:13:46.443638Z", "date_published": null, "start_time": "2025-05-16T15: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/D5C38851C3C4E7B4DABE8442B14DFCDD/Roof_Aerial_Clubin_kevatnaytos", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D5C38851C3C4E7B4DABE8442B14DFCDD/Roof_Aerial_Clubs_varuppvisning", "en": "http://www.malmitalo.fi/en/events/event/D5C38851C3C4E7B4DABE8442B14DFCDD/Roof_Aerial_Club_Spring_Show" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Roof Aerial Clubin kevätnäytöksessä nähdään eri ikäisten sirkusharrastajien esityksiä.</p><p>Luvassa on akrobatiaa, pyramideja ja ilma-akrobatiaa useilla eri välineillä. Oppilaat ovat osallistuneet <br>esitysten ideointiin.</p><p>Lisäksi näytöksessä on Roofin esiintyvän ryhmän esitys, joka tullaan näkemään myös kesän 2025 Suomen Nuorisosirkusliiton Nurtsi Festivaaleilla.</p><p>Kesto: 1 tunti, 30 min</p>", "sv": "<p>På Roof Aerial Clubs våruppvisning får vi se uppvisningar av cirkusfantaster i olika åldrar.</p><p>Pyramider, akrobatik och luftakrobatik med olika typer av redskap utlovas. Eleverna har deltagit i utformningen av uppvisningen. <br> <br>Uppvisningen omfattar också ett framträdande av Roofs scenkonstgrupp, som vi även kommer att få se på Suomen Nuorisosirkusliittos Nurtsi-festival sommaren 2025.</p><p>Längd: 1 timme 30 min.</p>", "en": "<p>The Roof Aerial Club Spring Show will feature performances by circus enthusiasts of all ages.</p><p>You can expect acrobatics, pyramids and aerial acrobatics with a variety of equipment. Students helped brainstorm the content of the presentations.</p><p>The show will also feature a performance by the Roof Aerial Club’s performing group, which will also perform at the Nurtsi Festival of the Finnish Youth Circus Association in the summer of 2025.</p><p>Duration: 1 hour, 30 min</p>" }, "name": { "fi": "Roof Aerial Clubin kevätnäytös", "sv": "Roof Aerial Clubs våruppvisning", "en": "Roof Aerial Club Spring Show" }, "short_description": { "fi": "Roof Aerial Clubin kevätnäytöksessä nähdään eri ikäisten sirkusharrastajien esityksiä.", "sv": "På Roof Aerial Clubs våruppvisning får vi se uppvisningar av cirkusfantaster i olika åldrar.", "en": "The Roof Aerial Club Spring Show will feature performances by circus enthusiasts of all ages." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64903/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65885", "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:348/?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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "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": 452352, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-02T11:13:41.372713Z", "last_modified_time": "2025-04-02T11:13:41.372727Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767873.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/452352/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-02T11:13:41.342876Z", "last_modified_time": "2025-04-02T11:13:41.427811Z", "date_published": null, "start_time": "2025-04-10T10: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/9F3BF86A0CCA911D83A0D1CE25658C09/Entisten_nuorten_kuoro", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9F3BF86A0CCA911D83A0D1CE25658C09/Entisten_nuorten_kuoro", "en": "http://www.kanneltalo.fi/en/events/event/9F3BF86A0CCA911D83A0D1CE25658C09/Entisten_nuorten_kuoro" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Neljättä kertaa järjestettävä Kuorofestarit kokoaa yhteen työväenopiston kuorot ja lauluyhtyeet.</p><p>Viikon aikana kuullaan monipuolinen kattaus kuoromusiikkia useammassa eri sijainnissa, myös Kanneltalossa!</p><p>Lisätietoa kuorofestareiden konserteista löydät<br><u><a href=\"https://ilmonet.fi/course/H251334\"> Kuorofestareiden sivuilta.</a></u></p><p>Katja Vepsäläinen, kuoronjohto<br>Markus Holthoer, piano</p><p>Paikka: Kanneltalon auditorio<br>Maksuton, vapaa pääsy</p>" }, "name": { "fi": "Entisten nuorten kuoro", "sv": "Entisten nuorten kuoro", "en": "Entisten nuorten kuoro" }, "short_description": { "fi": "Neljättä kertaa järjestettävä Kuorofestarit kokoaa yhteen työväenopiston kuorot ja lauluyhtyeet." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65885/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65863", "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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "39,90 €, VIP 79,90 €" }, "info_url": { "fi": "https://www.lippu.fi/event/20038134" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 452087, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-02T10:13:40.472859Z", "last_modified_time": "2025-04-02T10:13:40.472875Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765974.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/452087/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-02T10:13:40.444906Z", "last_modified_time": "2025-04-02T10:13:40.519840Z", "date_published": null, "start_time": "2025-10-12T13: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/EB7648A698FBD377D931CE713CF12CF2/Evening_with_Ronn_Moss" }, "provider_contact_info": null, "provider": { "fi": "Dex Viihde Oy" }, "description": { "fi": "<p>Ronn Moss kiertueelle Suomeen – Mahdollisuus kokea legendaarinen tähti livenä!</p><p>Maailmantähti <b>Ronn Moss</b> saapuu Suomeen lokakuussa. Kiertue tarjoaa harvinaislaatuisen tilaisuuden nähdä Ronnin tunnelmallinen lavashow ja kokea hänen ikoninen karismansa livenä. <i>“An evening with Ronn Moss”</i> -show yhdistää musiikin ja tarinankerronnan, vieden yleisön Ronn Mossin elämän käännekohtiin ja uran huippuhetkiin.</p><p>Ronn Moss on yhdysvaltalainen näyttelijä ja muusikko, joka tunnetaan parhaiten roolistaan Ridge Forresterina suosituissa <i>The Bold and the Beautiful</i> -saippuasarjassa. Näyttelijäntyönsä lisäksi hän on Player-yhtyeen jäsen, jonka suurimpia hittejä ovat muun muassa <i>“Baby Come Back”</i> ja <i>“This Time I'm in It for Love”</i>.</p><p>Kovana Suomi-fanina Ronn Moss on vieraillut Suomessa useita kertoja. Huhtikuussa 2022 hän esiintyi MTV:n <i>Huomenta Suomi</i> -ohjelmassa ensimmäistä kertaa kymmeneen vuoteen, keskustellen terveellisistä elämäntavoistaan. Kesällä 2022 Moss vieraili Suomessa osallistuakseen <i>Vain elämää</i> -ohjelman kuvauksiin. Lisäksi hän yllätti suomalaiset lähettämällä videotervehdyksen <i>Huomenta Suomen</i> 35- vuotisjuhlalähetyksessä, jossa hän muisteli aikaisempia vierailujaan Suomessa ja kiitti fanejaan. Vuonna 2025 Ellen Jokikunnas vieraili <i>Talo Italiassa</i> -ohjelmassa Ronnin Italian kodissa.</p><p>Varmista paikkasi ja tule kokemaan tämä ainutlaatuinen ilta Ronn Mossin seurassa!</p><p><b>VIP-lippu</b> sisältää pääsylipun, fanituotelahjan ja tapaamisen artistin kanssa VIP-lipun lunastaneiden kesken.</p><p>Kesto n. 2 h, sisältää väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>" }, "name": { "fi": "Evening with Ronn Moss" }, "short_description": { "fi": "Ronn Moss kiertueelle Suomeen – Mahdollisuus kokea legendaarinen tähti livenä!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65863/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65838", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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": 415912, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-27T14:13:43.215395Z", "last_modified_time": "2025-03-27T14:13:43.215413Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767594.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/415912/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-27T14:13:43.188086Z", "last_modified_time": "2025-04-02T07:13:49.171637Z", "date_published": null, "start_time": "2025-04-15T15: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.caisa.fi/fi/tapahtumat/event/4E285A1BDE8074B5219F83CD80AB07AA/CaisaKallio_esittaa_puhetaidetta_ja_musaa", "sv": "http://www.caisa.fi/sv/evenemang/event/4E285A1BDE8074B5219F83CD80AB07AA/CaisaKallio_esittaa_puhetaidetta_ja_musaa", "en": "http://www.caisa.fi/en/events/event/4E285A1BDE8074B5219F83CD80AB07AA/CaisaKallio_esittaa_puhetaidetta_ja_musaa" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>CaisaKallion tiistaissa koetaan puheilmaisun lopputöitä sekä musiikin lukiodiplomiesitys.</p><p>Lopputyöt ja lukiodiplomit ovat opiskelijoille mahdollisuus näyttää osaamistaan ja kokeilla siipiensä kantavuutta taiteellisen produktion valmistamisessa.</p><p><b>Illan aikana nähdään seuraavat teokset:</p><p>Sumu Torkkel: Kadotettuja kasvukipuja (puheilmaisu)</b><br>Kadotettuja kasvukipuja kuvaa muutosta. Askelia lapsuuden kotien maisemista ja päättyneiden ihmissuhteiden kaipuusta kohti aikuistumista ja kylmiä lattialautoja. Oletko sinäkin joskus kokenut olevasi hukassa?</p><p><b>Aura Silventoinen: Saastunut meri (puheilmaisu)</b><br>Rehevöityvä meri velloo ja murehtii, rannalla simpukat kohisevat avunhuudoista. <br>Anteeksipyyntöjä, aaltoja.<br>Rakkolevää, rakkauskirjeitä.<br>11 034 metriä pinnan alla elää olio, joka vaihtaa asentoaan mannerlaattojen lailla.</p><p><b>Fanny-Matilda Kuusniemi: Tyhjä Taulu (musiikki)</b><br>Tyhjä Taulu on värikäs sekoitus progea, indietä, poppia ja hieman jazziakin. Yllättävät yhdistelmät saavat aikaan juuri oikeat sävyt. Kaiva ullakoltasi 70-luvun hippiasenteesi ja tule katsomaan Tyhjää Taulua!</p><p>Lavalla mukana Matilda Hakarinne, Pietari Kantonen, Elsi Kvest, Saimi Ollikainen, Dunja Saiyar, Roosa Tuutti ja Eero Vepsäläinen.</p><p>Kesto n. 1 tunti</p>" }, "name": { "fi": "CaisaKallio esittää: puhetaidetta ja musaa", "sv": "CaisaKallio esittää: puhetaidetta ja musaa", "en": "CaisaKallio esittää: puhetaidetta ja musaa" }, "short_description": { "fi": "CaisaKallion tiistaissa koetaan puheilmaisun lopputöitä sekä musiikin lukiodiplomiesitys." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65838/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19056281", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3613405/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-19056281/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-19056281/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-19056281/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235429, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:41.062378Z", "last_modified_time": "2025-02-17T11:16:41.062398Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/veljeni-leijonamieli-222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235429/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:01.839465Z", "last_modified_time": "2025-04-01T22:15:50.106450Z", "date_published": null, "start_time": "2025-04-01T15: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": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=en" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "description": { "fi": "<p>”Nyt me kerromme tarinan veljeksistä, Kaarle ja Joonatan Leijonasta, ja siitä kuinka heistä tuli Leijonamieliä. Tämä tarina on niin kuin satu, ja vähän myös kummitusjuttu, mutta kaikki on kuitenkin totta.” Astrid Lindgrenin Veljeni Leijonamieli on rakastettu klassikkosatu, maaginen fantasia veljeksistä, jotka kantavat toisiaan vaikeuksien yli. Se on tarina rohkeudesta, veljeydestä ja rakkaudesta. Se on huikea seikkailu, jossa jokainen löytää rohkeutensa.</p><p>Veljeni Leijonamieli kertoo kahdesta veljeksestä, Korpusta (Alexander Wendelin) ja Joonatanista (Mikko Kauppila). Isoveli Joonatan kuolee pelastaessaan sairasta veljeään Korppua tulipalolta, ja pian menehtyy myös Korppu. Veljekset matkaavat lyhyen maanpäällisen elämänsä jälkeen kauniiseen maahan, Nangijalaan, jossa he taistelevat yhdessä pahan voimia vastaan. Matkasta tulee huima ja jännittävä seikkailu, jonka aikana pelokkaasta Korpusta kasvaa rohkea Leijonamieli.</p><p>Veljeni Leijonamieli kertoo surusta kauniisti ja kasvaa maagiseksi fantasiaseikkailuksi, joka on täynnä rohkeutta ja toivoa. Se kertoo valtavasta rakkaudesta, joka voittaa pelot ja jopa kuoleman.</p><p>Astrid Lindgrenin Veljeni Leijonamielen suurelle näyttämölle ohjaa Jakob Höglund. Esitys yhdistelee musiikkiteatteria, nukketeatteria ja koreografiaa fantastiseksi, visuaalisesti henkeäsalpaavaksi kokonaisuudeksi.</p><p>Rooleissa: Mikko Kauppila, Alexander Wendelin, Ulriikka Heikinheimo, Sofia Hilli, Tuukka Leppänen, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Sanna Majuri, Kari Mattila, Reetta Moilanen, Unto Nuora, Samuli Pajunen, Mikko Paloniemi, Tiina Peltonen, Elena Rekola, Inka Tiitinen, Riina Tikkanen</p><p>Muusikko: Senni Valtonen<br>Dramatisointi: Alexander Mørk-Eidem<br>Ohjaus: Jakob Höglund<br>Koreografia: Jakob Höglund & työryhmä<br>Ohjaajan ja koreografin assistentti: Johanna Elovaara<br>Tekstin sovitus, käännös ja laulutekstit: Rasmus Arikka<br>Sävellys ja äänisuunnittelu: Stefan Johansson<br>Lavastus: Vilma Mattila<br>Pukusuunnittelu: Heidi Wikar<br>Valo- ja videosuunnittelu: Toni Haaranen ja William Iles<br>Naamioinnin suunnittelu: Milja Mensonen<br>Nukkien suunnittelu: Heini Maaranen<br>Dramaturgi: Ari-Pekka Lahti<br>Lauluvalmennus: Jukka Nylund<br>Apulaislavastaja: Riku Suvitie</p>", "sv": "<p>Astrid Lindgren<br><strong>VELJENI LEIJONAMIELI</strong></p>" }, "name": { "fi": "Veljeni Leijonamieli" }, "short_description": { "fi": "Astrid Lindgren VELJENI LEIJONAMIELI ”Nyt me kerromme tarinan veljeksistä, Kaarle ja Joonatan Leijonasta, ja siitä kuinka heistä tuli Leijonamieliä." }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19056281/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65548", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 176704, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-29T11:15:20.594255Z", "last_modified_time": "2025-01-29T11:15:20.594271Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/176704/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-29T11:15:20.555350Z", "last_modified_time": "2025-04-01T15:13:30.245391Z", "date_published": null, "start_time": "2025-04-07T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B01D5BF3F294EAE7C8813ADD677A18ED/TAYNNA_BUU-Klubben_LIVE", "sv": "http://www.vuotalo.fi/sv/evenemang/event/B01D5BF3F294EAE7C8813ADD677A18ED/FULLBOKAD_BUU-Klubben_LIVE", "en": "http://www.vuotalo.fi/en/events/event/B01D5BF3F294EAE7C8813ADD677A18ED/FULLYBOOKED_BUU-Klubben_LIVE" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan - hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!<br> <br>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill. <br> <br>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat. <br> <br>Må 7.4 Helsingfors, Nordhuset<br>18.00 Nordhuset<br>Bokningslänk https://yle-lv.creamailer.fi/survey/htmrkfjfeuve6<br> <br>Tisdag 8.4 Helsingfors och Esbo<br>09.00 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/m9dnkenbxwxpq<br> <br>10.30 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4hehekvcugnb<br> <br>18.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/l3gaaiamtytsl<br> <br>Onsdag 9.4 Esbo och Grankulla<br>09.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/8vdoxfk1yk4ip<br> <br>10.30 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/yvgtbreeyiiym<br> <br>18.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/rjasdvmxlxjn6<br> <br>Torsdag 10.4 Grankulla och Vanda<br> 09.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/pqdpidwsuaw9h<br> <br>10.30 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/somrhs7eznmj4</p><p>18.00 Dickursby skola, Vanda <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4vyo4ds3cw5m<br> <br>Fredag 11.4 Vanda<br>09.00 Dickursby skola <br>Bokningslänk https://yle-lv.creamailer.fi/survey/coin2kj67nnov</p>", "sv": "<p>BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan - hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!<br> <br>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill. <br> <br>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat. <br> <br>Må 7.4 Helsingfors, Nordhuset<br>18.00 Nordhuset<br>Bokningslänk https://yle-lv.creamailer.fi/survey/htmrkfjfeuve6<br> <br>Tisdag 8.4 Helsingfors och Esbo<br>09.00 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/m9dnkenbxwxpq<br> <br>10.30 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4hehekvcugnb<br> <br>18.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/l3gaaiamtytsl<br> <br>Onsdag 9.4 Esbo och Grankulla<br>09.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/8vdoxfk1yk4ip<br> <br>10.30 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/yvgtbreeyiiym<br> <br>18.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/rjasdvmxlxjn6<br> <br>Torsdag 10.4 Grankulla och Vanda<br> 09.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/pqdpidwsuaw9h<br> <br>10.30 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/somrhs7eznmj4</p><p>18.00 Dickursby skola, Vanda <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4vyo4ds3cw5m<br> <br>Fredag 11.4 Vanda<br>09.00 Dickursby skola <br>Bokningslänk https://yle-lv.creamailer.fi/survey/coin2kj67nnov</p>", "en": "<p>BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan - hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!<br> <br>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill. <br> <br>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat. <br> <br>Må 7.4 Helsingfors, Nordhuset<br>18.00 Nordhuset<br>Bokningslänk https://yle-lv.creamailer.fi/survey/htmrkfjfeuve6<br> <br>Tisdag 8.4 Helsingfors och Esbo<br>09.00 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/m9dnkenbxwxpq<br> <br>10.30 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4hehekvcugnb<br> <br>18.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/l3gaaiamtytsl<br> <br>Onsdag 9.4 Esbo och Grankulla<br>09.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/8vdoxfk1yk4ip<br> <br>10.30 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/yvgtbreeyiiym<br> <br>18.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/rjasdvmxlxjn6<br> <br>Torsdag 10.4 Grankulla och Vanda<br> 09.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/pqdpidwsuaw9h<br> <br>10.30 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/somrhs7eznmj4</p><p>18.00 Dickursby skola, Vanda <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4vyo4ds3cw5m<br> <br>Fredag 11.4 Vanda<br>09.00 Dickursby skola <br>Bokningslänk https://yle-lv.creamailer.fi/survey/coin2kj67nnov</p>" }, "name": { "fi": "TÄYNNÄ! BUU-Klubben LIVE", "sv": "FULLBOKAD! BUU-Klubben LIVE", "en": "FULLYBOOKED! BUU-Klubben LIVE" }, "short_description": { "fi": "BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).", "sv": "BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).", "en": "BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4)." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65548/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64957", "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:32/?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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153650, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-02T15:15:49.508568Z", "last_modified_time": "2025-01-02T15:15:49.508591Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761938.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153650/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-02T15:15:49.473920Z", "last_modified_time": "2025-04-01T10:13:42.752113Z", "date_published": null, "start_time": "2025-04-06T10:00:00Z", "end_time": "2025-04-06T16: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.stoa.fi/fi/tapahtumat/event/C85B1D682B1413846AE3AEF512F7BDF7/Metsienpuolustus-symposium", "sv": "http://www.stoa.fi/sv/evenemang/event/C85B1D682B1413846AE3AEF512F7BDF7/Symposium_om_forsvar_av_skogar", "en": "http://www.stoa.fi/en/events/event/C85B1D682B1413846AE3AEF512F7BDF7/Forest_Defence_Symposium" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Metsäliike kutsuu koolle Metsienpuolutus-symposiumin, joka tuo yhteen metsien suojelijoita keskustelemaan ja toimimaan luonnonmetsien puolesta.</p><p>Tapahtumassa on mukana tieteen tekijöitä, metsäasiantuntijoita, kansalaisaktivisteja, järjestöjä taiteilijoita sekä kaikkia niitä, jotka haluavat olla mukana puolustamassa vauhdilla hupenevia arvokkaita luonnonmetsiä.</p><p>Paneelikeskustelussa keskitytään erityisesti valtion luonnonmetsien tilanteeseen ja kysytään: kuinka puolustamme arvometsiämme, kun poliittinen vaikuttaminen tai tieteen vahvat viestit eivät tunnu purevan?</p><p>Puheohjelman lisäksi ohjelmaan katetaan musiikkiesityksiä, tanssia, lavarunoutta, sekä paljon muuta! Ohjelma tuo meidät kaikki yhteen metsän äärelle oppimaan, kokemaan, liikuttumaan, vaikuttumaan ja toimimaan!</p><p>Symposiumin lisäksi metsä valtaa Stoan koko huhtikuuksi, kun Metsäliike ja Maan puolustusvoimat -kollektiivi järjestävät karttojen ja metsiä asuttavien lajien kohtaamiseen keskittyvän Tukikohtaaminen-näyttelyn Stoan galleriassa. Näyttely esittelee niin merkittäviä metsäkartoitustuloksia kuin monitaiteellista ja kokeellista lähestymistapaa kartoitukseen. Esillä on myös muita maan ja metsien puolustamisen muotoja.</p><p>Näyttelyn avajaiset järjestetään symposiumia edeltävänä päivänä lauantaina 5.4. klo 17-20. Avajaistilaisuus Stoan teatterisalissa alkaa klo 17 Hiljaa..-tanssiryhmän esityksellä.</p><p><u><a href=\"https://www.stoa.fi/fi/tapahtumat/event/2B5212FF21D654B8A1B8AA9C33464D44/Maan_Puolustusvoimat_ja_Mets_liike__T_u_k_i_k_o_h_t_a_a_m_i_n_e_n_\">Lue lisää näyttelystä</a></u></p><p>Tapahtumiin on vapaa pääsy ja se on yleisölle avoin.</p><p>@stoahelsinki @metsanpuolella @koneensaatio @metsaryhma @climatemove #METSÄLIIKE</p><p>Metsäliike on ketterä kansanliike, joka puolustaa luonnonmetsiä pyrkien kohtuullistamaan hakkuumääriä ja palauttamaan laajojen yhtenäisten metsäekosysteemien eheyden. Työskentelemme pelastaaksemme akuutisti uhatut luonnonmetsät ja turvataksemme ekologisia käytäviä ja ekologista jälleenrakentamista.</p>", "sv": "<p>Under evenemanget som arrangeras av Metsäliike och Maan Puolustusvoimat utlovas föredrag om vetenskap och konst samt av influerare, för att inte glömma scenkonst!</p><p>På programmet står bland annat Metsäliikes utbildning och dansföreställningen ”Hiljaa...” som framförs av ett kollektiv från Jyväskylä och förkroppsligar ekologin i en gammal skog. Det blir också körframträdande, dans, estradpoesi och andra godsaker. Vi ses på evenemanget i förändringskraftens tecken.</p><p><u><a href=\"https://www.stoa.fi/sv/evenemangen/event/2B5212FF21D654B8A1B8AA9C33464D44/Maan_Puolustusvoimat_ja_Mets_liike__T_u_k_i_k_o_h_t_a_a_m_i_n_e_n_\">Evenemanget är en del av utställningsserien Stödträffar på Stoas galleri.</a></u></p><p><b>Maan Puolustusvoimat</b> är en organism, en idé och ett kollektiv bestående av många arter som bygger på antimilitarism, undviker hierarkier och väver samman konst och aktivism på ett multidisciplinärt sätt.</p><p><b>Metsäliike</b> är en folkrörelse som försvarar skogsnaturen i Finland och det samiska området och som omfattar alla typer av människor. Metsäliike bevakar bland annat värdefulla skogsnaturobjekt, driver kampanjer, påverkar och agerar för deras räkning på många olika sätt.</p>", "en": "<p>At an event by Metsäliike and Earth Forces, you can expect contributions from science, art and influencers, not forgetting performance art.</p><p>The programme includes training from Metsäliike, as well as the Silent... dance piece of a Jyväskylä-based collective, in which the ecology of the old forest is embodied. There will also be a choir performance, dancing, poetry slams and other things to nibble on. We will meet at the event, by dynamic forces.</p><p><u><a href=\"https://www.stoa.fi/en/events/event/2B5212FF21D654B8A1B8AA9C33464D44/Maan_Puolustusvoimat_ja_Mets_liike__T_u_k_i_k_o_h_t_a_a_m_i_n_e_n_\">The event is part of Stoa Gallery’s Tukikohtaaminen exhibition series.</a></u></p><p><b>Earth Forces</b> is a multidisciplinary and multi-sectoral antimilitaristic organism, thought and collective dodging hierarchies and intertwining art and activism.</p><p><b>Metsäliike</b> is a social movement defending the forest nature of Finland and the Sámi areas. All kinds of people participate in its activities. Among other things, Metsäliike watches over valuable forest nature sites as well as campaigns, influences and acts on their behalf in various ways.</p>" }, "name": { "fi": "Metsienpuolustus-symposium", "sv": "Symposium om försvar av skogar", "en": "Forest Defence Symposium" }, "short_description": { "fi": "Metsäliike kutsuu koolle Metsienpuolutus-symposiumin, joka tuo yhteen metsien suojelijoita keskustelemaan ja toimimaan luonnonmetsien puolesta.", "sv": "Under evenemanget som arrangeras av Metsäliike och Maan Puolustusvoimat utlovas föredrag om vetenskap och konst samt av influerare, för att inte glömma scenkonst!", "en": "At an event by Metsäliike and Earth Forces, you can expect contributions from science, art and influencers, not forgetting performance art." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64957/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:ca30933b-54bd-4ccc-8ddb-71b0b0f00edb", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?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": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_28032025_Release_Wave_1_-testi_to_LE1420857703" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 445741, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-04-01T09:44:50.644547Z", "last_modified_time": "2025-04-01T09:44:50.644563Z", "name": "Happy Bear 2 kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e0c54b7e-c6f9-ef11-bae2-000d3ab0beb8", "cropping": "", "photographer_name": "Happy Bear 2 kuvaaja", "alt_text": "Happy Bear 2", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/445741/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" } ], "created_time": "2025-03-31T05:39:37.292905Z", "last_modified_time": "2025-04-01T09:44:51.714083Z", "date_published": "2025-03-31T05:35:33Z", "start_time": "2025-04-04T11:00:00Z", "end_time": "2025-04-04T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 10, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-03-01T08:00:00+02:00", "enrolment_end_time": "2025-04-04T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "Business Helsinki" }, "description": { "fi": "<div><p>MKtest 28032025 Release Wave 1 -testi 2 to LE LONG DESC</p></div>" }, "name": { "fi": "Koulutusaineisto suunnittelutapahtuma" }, "short_description": { "fi": "MKtest 28032025 Release Wave 1 -testi 2 to LE SHORT DESC" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:ca30933b-54bd-4ccc-8ddb-71b0b0f00edb/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23cygy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23c2dq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150372, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-06T12:56:37.370704Z", "last_modified_time": "2024-03-06T12:56:37.370735Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/tuolijumppa2021.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Seniorit tuolijumpassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150372/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-03-31T14:25:13.131916Z", "last_modified_time": "2025-03-31T14:25:13.131949Z", "date_published": null, "start_time": "2025-06-16T06:30:00Z", "end_time": "2025-06-16T07: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": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>jumpataan tuolia apuna käyttäen</p>", "sv": "<p>gymnastik med stol</p>", "en": "<p>gymnastics with a chair</p>" }, "name": { "fi": "Tuolijumppa", "sv": "Stolgymnastik", "en": "Chair gymnastics" }, "short_description": { "fi": "jumpataan tuolia apuna käyttäen", "sv": "gymnastik med stol", "en": "gymnastics with a chair" }, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23cygy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23cyta", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23c2dq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150372, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-06T12:56:37.370704Z", "last_modified_time": "2024-03-06T12:56:37.370735Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/tuolijumppa2021.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Seniorit tuolijumpassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150372/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-03-31T14:25:12.251251Z", "last_modified_time": "2025-03-31T14:25:12.251275Z", "date_published": null, "start_time": "2025-06-09T06:30:00Z", "end_time": "2025-06-09T07: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": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>jumpataan tuolia apuna käyttäen</p>", "sv": "<p>gymnastik med stol</p>", "en": "<p>gymnastics with a chair</p>" }, "name": { "fi": "Tuolijumppa", "sv": "Stolgymnastik", "en": "Chair gymnastics" }, "short_description": { "fi": "jumpataan tuolia apuna käyttäen", "sv": "gymnastik med stol", "en": "gymnastics with a chair" }, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23cyta/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23cy64", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23c2dq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150372, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-06T12:56:37.370704Z", "last_modified_time": "2024-03-06T12:56:37.370735Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/tuolijumppa2021.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Seniorit tuolijumpassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150372/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-03-31T14:25:11.370029Z", "last_modified_time": "2025-03-31T14:25:11.370053Z", "date_published": null, "start_time": "2025-06-02T06:30:00Z", "end_time": "2025-06-02T07: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": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>jumpataan tuolia apuna käyttäen</p>", "sv": "<p>gymnastik med stol</p>", "en": "<p>gymnastics with a chair</p>" }, "name": { "fi": "Tuolijumppa", "sv": "Stolgymnastik", "en": "Chair gymnastics" }, "short_description": { "fi": "jumpataan tuolia apuna käyttäen", "sv": "gymnastik med stol", "en": "gymnastics with a chair" }, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23cy64/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23czkm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23c2dq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150372, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-06T12:56:37.370704Z", "last_modified_time": "2024-03-06T12:56:37.370735Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/tuolijumppa2021.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Seniorit tuolijumpassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150372/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-03-31T14:25:10.465351Z", "last_modified_time": "2025-03-31T14:25:10.465375Z", "date_published": null, "start_time": "2025-05-26T06:30:00Z", "end_time": "2025-05-26T07: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": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>jumpataan tuolia apuna käyttäen</p>", "sv": "<p>gymnastik med stol</p>", "en": "<p>gymnastics with a chair</p>" }, "name": { "fi": "Tuolijumppa", "sv": "Stolgymnastik", "en": "Chair gymnastics" }, "short_description": { "fi": "jumpataan tuolia apuna käyttäen", "sv": "gymnastik med stol", "en": "gymnastics with a chair" }, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23czkm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23czwq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23c2dq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150372, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-06T12:56:37.370704Z", "last_modified_time": "2024-03-06T12:56:37.370735Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/tuolijumppa2021.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Seniorit tuolijumpassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150372/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-03-31T14:25:09.646085Z", "last_modified_time": "2025-03-31T14:25:09.646110Z", "date_published": null, "start_time": "2025-05-19T06:30:00Z", "end_time": "2025-05-19T07: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": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>jumpataan tuolia apuna käyttäen</p>", "sv": "<p>gymnastik med stol</p>", "en": "<p>gymnastics with a chair</p>" }, "name": { "fi": "Tuolijumppa", "sv": "Stolgymnastik", "en": "Chair gymnastics" }, "short_description": { "fi": "jumpataan tuolia apuna käyttäen", "sv": "gymnastik med stol", "en": "gymnastics with a chair" }, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23czwq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23c2dq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23cygy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23cyta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23cy64/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23czkm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23czwq/?format=api" } ], "images": [ { "id": 150372, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-06T12:56:37.370704Z", "last_modified_time": "2024-03-06T12:56:37.370735Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/tuolijumppa2021.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Seniorit tuolijumpassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150372/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-03-31T14:25:04.638166Z", "last_modified_time": "2025-03-31T14:25:04.638182Z", "date_published": null, "start_time": "2025-05-19T06:30:00Z", "end_time": "2025-06-16T07:15: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>jumpataan tuolia apuna käyttäen</p>", "sv": "<p>gymnastik med stol</p>", "en": "<p>gymnastics with a chair</p>" }, "name": { "fi": "Tuolijumppa", "sv": "Stolgymnastik", "en": "Chair gymnastics" }, "short_description": { "fi": "jumpataan tuolia apuna käyttäen", "sv": "gymnastik med stol", "en": "gymnastics with a chair" }, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23c2dq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65826", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 380565, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-21T13:13:55.907403Z", "last_modified_time": "2025-03-21T13:13:55.907416Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765478.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/380565/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-21T13:13:55.893865Z", "last_modified_time": "2025-03-31T14:13:42.162807Z", "date_published": null, "start_time": "2025-05-28T12:00:00Z", "end_time": "2025-05-28T15: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.stoa.fi/fi/tapahtumat/event/4CCBF102050D567A4D60723301FD8EF9/KirppariFEST", "sv": "http://www.stoa.fi/sv/evenemang/event/4CCBF102050D567A4D60723301FD8EF9/KirppariFEST", "en": "http://www.stoa.fi/en/events/event/4CCBF102050D567A4D60723301FD8EF9/KirppariFEST" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa KirppariFESTiin – kevään kirpparitapahtumaan, jossa kierrätys ja yhteisöllisyys kohtaavat!</p><p>KirppariFEST järjestetään yhteistyössä Ammattiopisto Spesian, Liven sekä Luovin opiskelijoiden kanssa, ja se tuo yhteen kierrättäjät, myyjät ja shoppailijat joka keskiviikko 16.4.–28.5. klo 15–18 Stoan aukiolle.</p><p>Sateen sattuessa tapahtuma siirtyy sisätiloihin.</p><p>Tule mukaan myymään omia tarpeettomia tavaroitasi, vaatteitasi tai kierrätettäviä tuotteitasi – myyntipaikka on täysin maksuton!</p><p>Jos haluat varata myyntipöydän, toimi nopeasti – paikkoja on rajoitetusti! Mikäli myyntipöydät ovat jo täynnä, voit tuoda myös oman myyntialustan mukanasi.</p><p>Huom! Elintarvikkeiden myyminen ei ole sallittua.</p><p>Ilmoittaudu myyjäksi ennakkoon aina edellisen viikon perjantaihin mennessä. <u><a href=\"https://urly.fi/3NcC\"> Ilmoittaudu tämän lomakkeen kautta.</a></u></p><p>Mukaan voi tulla myös pelkästään nauttimaan kirpparifiiliksestä, hyvistä diileistä ja iloisen mielen yhteisöstä – tapahtumaan on vapaa pääsy!</p><p>Ilmoittaudu nyt ja tuo omat myytävät tuotteesi KirppariFESTiin – yhteisesti kierrätämme, säästämme ja teemme ympäristölle hyvää!</p><p>Nähdään KirppariFESTissä!</p>", "sv": "<p>Välkommen på KirppariFEST – vårens stora loppisevenemang där återvinning och gemenskap möts!</p><p>KirppariFEST ordnas i samarbete med studerande från yrkesinstituten Spesia, Live och Luovi, och för samman återvinnare, försäljare och shoppare varje onsdag från den 16 april till den 28 maj kl. 15–18 på Stoaplatsen. <br>Vid regn ordnas evenemanget inomhus.</p><p>Kom med och sälj saker som du inte längre behöver, kläder eller annat som kan återanvändas – försäljningsplatsen är helt gratis!</p><p>Om du vill reservera en försäljningsplats gäller det att inte vänta för länge – det finns ett begränsat antal platser! Om alla försäljningsbord är upptagna kan du ta med ett eget.</p><p>Obs! Det är inte tillåtet att sälja livsmedel.</p><p>Anmäl dig som försäljare i förväg senast föregående veckas fredag. <u><a href=\"https://urly.fi/3NcC\"> Anmäl dig via den här blanketten.</a></u></p><p>Du kan också komma med bara för att njuta av loppisstämningen, bra affärer och den glada gemenskapen – inträdet till evenemanget är fritt.</p><p>Anmäl dig nu och ta med dina varor till KrippariFEST – tillsammans kan vi återvinna, spara och göra gott för miljön!</p><p>Vi ses på KirppariFEST!</p>", "en": "<p>Welcome to KirppariFEST – the flea market event of the season, where recycling and communal spirit meet!</p><p>KirppariFEST is organised in cooperation with students from vocational special needs education college Spesia, Live and Luovi, and it brings together those who want to recycle, sell and shop every Wednesday from 16 April to 28 May at 15.00–18.00 in the Stoa square. If it rains, the event will be moved inside.</p><p>Come along and sell the items, clothes and recyclable items you have no use for anymore – you can sell at the event for no cost at all!</p><p>If you want to book a space with a table, act quickly – the spaces are limited! If all the spaces with a table have been booked already, you can bring your own quilt or table for your items.</p><p>Please note! You may not sell food at the event.</p><p>Sign up as a seller in advance by the previous Friday. <u><a href=\"https://urly.fi/3NcC\"> Use this form to sign up.</a></u> <br>You can also attend the event to enjoy the atmosphere, grab some bargains and join a fun community – free entry! <br>Sign up now and bring your own items to KirppariFEST – let’s recycle, save money and do our part for the environment together!</p><p>See you at KirppariFEST!</p>" }, "name": { "fi": "KirppariFEST", "sv": "KirppariFEST", "en": "KirppariFEST" }, "short_description": { "fi": "Tervetuloa KirppariFESTiin – kevään kirpparitapahtumaan, jossa kierrätys ja yhteisöllisyys kohtaavat!", "sv": "Välkommen på KirppariFEST – vårens stora loppisevenemang där återvinning och gemenskap möts!", "en": "Welcome to KirppariFEST – the flea market event of the season, where recycling and communal spirit meet!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65826/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65825", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 380564, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-21T13:13:55.215893Z", "last_modified_time": "2025-03-21T13:13:55.215909Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767260.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/380564/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-21T13:13:55.199476Z", "last_modified_time": "2025-03-31T14:13:41.476498Z", "date_published": null, "start_time": "2025-05-21T12:00:00Z", "end_time": "2025-05-21T15: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.stoa.fi/fi/tapahtumat/event/973702EE95BFB265536CBFFAFB9DC01A/KirppariFEST", "sv": "http://www.stoa.fi/sv/evenemang/event/973702EE95BFB265536CBFFAFB9DC01A/KirppariFEST", "en": "http://www.stoa.fi/en/events/event/973702EE95BFB265536CBFFAFB9DC01A/KirppariFEST" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa KirppariFESTiin – kevään kirpparitapahtumaan, jossa kierrätys ja yhteisöllisyys kohtaavat!</p><p>KirppariFEST järjestetään yhteistyössä Ammattiopisto Spesian, Liven sekä Luovin opiskelijoiden kanssa, ja se tuo yhteen kierrättäjät, myyjät ja shoppailijat joka keskiviikko 16.4.–28.5. klo 15–18 Stoan aukiolle.</p><p>Sateen sattuessa tapahtuma siirtyy sisätiloihin.</p><p>Tule mukaan myymään omia tarpeettomia tavaroitasi, vaatteitasi tai kierrätettäviä tuotteitasi – myyntipaikka on täysin maksuton!</p><p>Jos haluat varata myyntipöydän, toimi nopeasti – paikkoja on rajoitetusti! Mikäli myyntipöydät ovat jo täynnä, voit tuoda myös oman myyntialustan mukanasi.</p><p>Huom! Elintarvikkeiden myyminen ei ole sallittua.</p><p>Ilmoittaudu myyjäksi ennakkoon aina edellisen viikon perjantaihin mennessä. <u><a href=\"https://urly.fi/3NcC\"> Ilmoittaudu tämän lomakkeen kautta.</a></u></p><p>Mukaan voi tulla myös pelkästään nauttimaan kirpparifiiliksestä, hyvistä diileistä ja iloisen mielen yhteisöstä – tapahtumaan on vapaa pääsy!</p><p>Ilmoittaudu nyt ja tuo omat myytävät tuotteesi KirppariFESTiin – yhteisesti kierrätämme, säästämme ja teemme ympäristölle hyvää!</p><p>Nähdään KirppariFESTissä!</p>", "sv": "<p>Välkommen på KirppariFEST – vårens stora loppisevenemang där återvinning och gemenskap möts!</p><p>KirppariFEST ordnas i samarbete med studerande från yrkesinstituten Spesia, Live och Luovi, och för samman återvinnare, försäljare och shoppare varje onsdag från den 16 april till den 28 maj kl. 15–18 på Stoaplatsen. <br>Vid regn ordnas evenemanget inomhus.</p><p>Kom med och sälj saker som du inte längre behöver, kläder eller annat som kan återanvändas – försäljningsplatsen är helt gratis!</p><p>Om du vill reservera en försäljningsplats gäller det att inte vänta för länge – det finns ett begränsat antal platser! Om alla försäljningsbord är upptagna kan du ta med ett eget.</p><p>Obs! Det är inte tillåtet att sälja livsmedel.</p><p>Anmäl dig som försäljare i förväg senast föregående veckas fredag. <u><a href=\"https://urly.fi/3NcC\"> Anmäl dig via den här blanketten.</a></u></p><p>Du kan också komma med bara för att njuta av loppisstämningen, bra affärer och den glada gemenskapen – inträdet till evenemanget är fritt.</p><p>Anmäl dig nu och ta med dina varor till KrippariFEST – tillsammans kan vi återvinna, spara och göra gott för miljön!</p><p>Vi ses på KirppariFEST!</p>", "en": "<p>Welcome to KirppariFEST – the flea market event of the season, where recycling and communal spirit meet!</p><p>KirppariFEST is organised in cooperation with students from vocational special needs education college Spesia, Live and Luovi, and it brings together those who want to recycle, sell and shop every Wednesday from 16 April to 28 May at 15.00–18.00 in the Stoa square. If it rains, the event will be moved inside.</p><p>Come along and sell the items, clothes and recyclable items you have no use for anymore – you can sell at the event for no cost at all!</p><p>If you want to book a space with a table, act quickly – the spaces are limited! If all the spaces with a table have been booked already, you can bring your own quilt or table for your items.</p><p>Please note! You may not sell food at the event.</p><p>Sign up as a seller in advance by the previous Friday. <u><a href=\"https://urly.fi/3NcC\"> Use this form to sign up.</a></u> <br>You can also attend the event to enjoy the atmosphere, grab some bargains and join a fun community – free entry! <br>Sign up now and bring your own items to KirppariFEST – let’s recycle, save money and do our part for the environment together!</p><p>See you at KirppariFEST!</p>" }, "name": { "fi": "KirppariFEST", "sv": "KirppariFEST", "en": "KirppariFEST" }, "short_description": { "fi": "Tervetuloa KirppariFESTiin – kevään kirpparitapahtumaan, jossa kierrätys ja yhteisöllisyys kohtaavat!", "sv": "Välkommen på KirppariFEST – vårens stora loppisevenemang där återvinning och gemenskap möts!", "en": "Welcome to KirppariFEST – the flea market event of the season, where recycling and communal spirit meet!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65825/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65824", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 380563, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-21T13:13:54.456123Z", "last_modified_time": "2025-03-21T13:13:54.456138Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767258.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/380563/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-21T13:13:54.439425Z", "last_modified_time": "2025-03-31T14:13:40.836895Z", "date_published": null, "start_time": "2025-05-14T12:00:00Z", "end_time": "2025-05-14T15: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.stoa.fi/fi/tapahtumat/event/9A169551A07AA072BB2E803F3AB544BF/KirppariFEST", "sv": "http://www.stoa.fi/sv/evenemang/event/9A169551A07AA072BB2E803F3AB544BF/KirppariFEST", "en": "http://www.stoa.fi/en/events/event/9A169551A07AA072BB2E803F3AB544BF/KirppariFEST" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa KirppariFESTiin – kevään kirpparitapahtumaan, jossa kierrätys ja yhteisöllisyys kohtaavat!</p><p>KirppariFEST järjestetään yhteistyössä Ammattiopisto Spesian, Liven sekä Luovin opiskelijoiden kanssa, ja se tuo yhteen kierrättäjät, myyjät ja shoppailijat joka keskiviikko 16.4.–28.5. klo 15–18 Stoan aukiolle.</p><p>Sateen sattuessa tapahtuma siirtyy sisätiloihin.</p><p>Tule mukaan myymään omia tarpeettomia tavaroitasi, vaatteitasi tai kierrätettäviä tuotteitasi – myyntipaikka on täysin maksuton!</p><p>Jos haluat varata myyntipöydän, toimi nopeasti – paikkoja on rajoitetusti! Mikäli myyntipöydät ovat jo täynnä, voit tuoda myös oman myyntialustan mukanasi.</p><p>Huom! Elintarvikkeiden myyminen ei ole sallittua.</p><p>Ilmoittaudu myyjäksi ennakkoon aina edellisen viikon perjantaihin mennessä. <u><a href=\"https://urly.fi/3NcC\"> Ilmoittaudu tämän lomakkeen kautta.</a></u></p><p>Mukaan voi tulla myös pelkästään nauttimaan kirpparifiiliksestä, hyvistä diileistä ja iloisen mielen yhteisöstä – tapahtumaan on vapaa pääsy!</p><p>Ilmoittaudu nyt ja tuo omat myytävät tuotteesi KirppariFESTiin – yhteisesti kierrätämme, säästämme ja teemme ympäristölle hyvää!</p><p>Nähdään KirppariFESTissä!</p>", "sv": "<p>Välkommen på KirppariFEST – vårens stora loppisevenemang där återvinning och gemenskap möts!</p><p>KirppariFEST ordnas i samarbete med studerande från yrkesinstituten Spesia, Live och Luovi, och för samman återvinnare, försäljare och shoppare varje onsdag från den 16 april till den 28 maj kl. 15–18 på Stoaplatsen. <br>Vid regn ordnas evenemanget inomhus.</p><p>Kom med och sälj saker som du inte längre behöver, kläder eller annat som kan återanvändas – försäljningsplatsen är helt gratis!</p><p>Om du vill reservera en försäljningsplats gäller det att inte vänta för länge – det finns ett begränsat antal platser! Om alla försäljningsbord är upptagna kan du ta med ett eget.</p><p>Obs! Det är inte tillåtet att sälja livsmedel.</p><p>Anmäl dig som försäljare i förväg senast föregående veckas fredag. <u><a href=\"https://urly.fi/3NcC\"> Anmäl dig via den här blanketten.</a></u></p><p>Du kan också komma med bara för att njuta av loppisstämningen, bra affärer och den glada gemenskapen – inträdet till evenemanget är fritt.</p><p>Anmäl dig nu och ta med dina varor till KrippariFEST – tillsammans kan vi återvinna, spara och göra gott för miljön!</p><p>Vi ses på KirppariFEST!</p>", "en": "<p>Welcome to KirppariFEST – the flea market event of the season, where recycling and communal spirit meet!</p><p>KirppariFEST is organised in cooperation with students from vocational special needs education college Spesia, Live and Luovi, and it brings together those who want to recycle, sell and shop every Wednesday from 16 April to 28 May at 15.00–18.00 in the Stoa square. If it rains, the event will be moved inside.</p><p>Come along and sell the items, clothes and recyclable items you have no use for anymore – you can sell at the event for no cost at all!</p><p>If you want to book a space with a table, act quickly – the spaces are limited! If all the spaces with a table have been booked already, you can bring your own quilt or table for your items.</p><p>Please note! You may not sell food at the event.</p><p>Sign up as a seller in advance by the previous Friday. <u><a href=\"https://urly.fi/3NcC\"> Use this form to sign up.</a></u> <br>You can also attend the event to enjoy the atmosphere, grab some bargains and join a fun community – free entry! <br>Sign up now and bring your own items to KirppariFEST – let’s recycle, save money and do our part for the environment together!</p><p>See you at KirppariFEST!</p>" }, "name": { "fi": "KirppariFEST", "sv": "KirppariFEST", "en": "KirppariFEST" }, "short_description": { "fi": "Tervetuloa KirppariFESTiin – kevään kirpparitapahtumaan, jossa kierrätys ja yhteisöllisyys kohtaavat!", "sv": "Välkommen på KirppariFEST – vårens stora loppisevenemang där återvinning och gemenskap möts!", "en": "Welcome to KirppariFEST – the flea market event of the season, where recycling and communal spirit meet!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65824/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65794", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 363791, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-18T14:14:58.052547Z", "last_modified_time": "2025-03-18T14:14:58.052561Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767393.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/363791/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-18T14:14:58.030567Z", "last_modified_time": "2025-03-31T14:13:40.154642Z", "date_published": null, "start_time": "2025-05-08T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/13F392FB95E81934F339C85051337D70/Lintukavely", "sv": "http://www.vuotalo.fi/sv/evenemang/event/13F392FB95E81934F339C85051337D70/Lintukavely_Fagelpromenad_", "en": "http://www.vuotalo.fi/en/events/event/13F392FB95E81934F339C85051337D70/Lintukavely_Bird_walk_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Lähde linturetkelle tutustumaan Vuosaaren linnustoon.</p><p>Lintukävelylle lähdetään Vuotalon aulasta Porslahden liikuntapuiston ja Vuosaaren kartanon alueelle ja takaisin Vuotalolle.</p><p>Kävelylenkillä tutustutaan keskeltä Vuosaarta löytyvään yllättävänkin runsaaseen linnustoon. Viheralueet kätkevät uumeniinsa lukuisia lintulajeja, jotka ovat jo toukokuun alussa saapuneet pesimäpaikoilleen. Odotettavissa on käpytikkoja, sepelkyyhkyjä, rastaita sekä hyönteissyöjiä kuten pajulintu, kirjosieppo ja kivitasku sekä liuta muita pikkulintuja.</p><p>Retkellä katsellaan ja kuunnellaan yhdessä lintuja Tringan lintuoppaan seurassa. Voit ottaa mukaan omat kiikarit, mutta ilmankin pärjää. Maasto on helppokulkuista. Kävelyä kertyy noin neljä kilometriä. Kävelyretki sopii kaikille linnuista ja lähiluonnosta kiinnostuneille. Kävelyille ei tarvitse ilmoittautua ennakkoon.</p><p>Linturetki kestää noin tunnin.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p>", "sv": "<p>Kom med på fågelutfärd för att lära dig mer om fåglarna i Nordsjö.</p><p>Fågelpromenaden går från Nordhusets entré till Porslax idrottspark och Nordsjö gård och sedan tillbaka till Nordhuset.</p><p>Under promenaden får du bekanta dig med det oväntat rika fågelbeståndet mitt i Nordsjö. I grönområdena kan man hitta många fågelarter, som redan i början av maj har kommit till sina häckningsplatser. Du kan förvänta dig hackspettar, ringduvor, trastar, insektsätare som lövsångare, svartvit flugsnappare och stenskvätta samt många andra småfåglar.</p><p>Under utfärden får deltagarna tillsammans titta och lyssna på fåglar under ledning av en fågelguide från Tringa. Du kan ta med dig en egen kikare, men man klarar sig också utan. Terrängen är lättframkomlig. Promenaden är ungefär fyra kilometer lång. Utfärden passar för alla som är intresserade av fåglar och av naturen i närområdet. Ingen förhandsanmälan behövs.</p><p>Fågelpromenaden tar ungefär en timme.</p><p>Fritt inträde, ingen förhandsanmälan.</p>", "en": "<p>Go bird-watching to explore the bird population of Vuosaari.</p><p>The walks start in the Vuosaari House lobby and continue to the Porslahti exercise park and Vuosaari Manor areas, finally returning to Vuosaari House.</p><p>The walk introduces participants to the surprisingly rich bird population in the middle of Vuosaari. The green areas are home to numerous bird species that have already arrived in their nesting locations in early May. Species to look out for include the great spotted woodpecker, the wood pigeon, thrushes and insectivores such as the willow warbler, the pied flycatcher and the wheatear as well as a number of other small birds.</p><p>During the walk, participants can look and listen for birds with a guide from Tringa. You can bring your own binoculars, but it is optional. The terrain is easy to walk. The route is approximately four kilometres long. The walk is suitable for anyone interested in birds and the local environment. You do not need to sign up in advance for the walk.</p><p>The duration of the walk will be approximately an hour.</p><p>Free entry, no advance registration.</p>" }, "name": { "fi": "Lintukävely – Muuttolinnut-prosessinäyttelyn oheisohjelmaa", "sv": "Lintukävely (Fågelpromenad) – Muuttolinnut-prosessinäyttelyn oheisohjelmaa", "en": "Lintukävely (Bird walk) – Muuttolinnut-prosessinäyttelyn oheisohjelmaa" }, "short_description": { "fi": "Lähde linturetkelle tutustumaan Vuosaaren linnustoon.", "sv": "Kom med på fågelutfärd för att lära dig mer om fåglarna i Nordsjö.", "en": "Go bird-watching to explore the bird population of Vuosaari." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65794/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65793", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 363790, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-18T14:14:57.923267Z", "last_modified_time": "2025-03-18T14:14:57.923290Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767392.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/363790/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-18T14:14:57.897860Z", "last_modified_time": "2025-03-31T14:13:40.099924Z", "date_published": null, "start_time": "2025-05-08T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1CB69D5F03DA212E09DC6609439241F9/Lintukavely", "sv": "http://www.vuotalo.fi/sv/evenemang/event/1CB69D5F03DA212E09DC6609439241F9/Lintukavely_Fagelpromenad_", "en": "http://www.vuotalo.fi/en/events/event/1CB69D5F03DA212E09DC6609439241F9/Lintukavely_Bird_walk_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Lähde linturetkelle tutustumaan Vuosaaren linnustoon.</p><p>Lintukävelylle lähdetään Vuotalon aulasta Porslahden liikuntapuiston ja Vuosaaren kartanon alueelle ja takaisin Vuotalolle.</p><p>Kävelylenkillä tutustutaan keskeltä Vuosaarta löytyvään yllättävänkin runsaaseen linnustoon. Viheralueet kätkevät uumeniinsa lukuisia lintulajeja, jotka ovat jo toukokuun alussa saapuneet pesimäpaikoilleen. Odotettavissa on käpytikkoja, sepelkyyhkyjä, rastaita sekä hyönteissyöjiä kuten pajulintu, kirjosieppo ja kivitasku sekä liuta muita pikkulintuja.</p><p>Retkellä katsellaan ja kuunnellaan yhdessä lintuja Tringan lintuoppaan seurassa. Voit ottaa mukaan omat kiikarit, mutta ilmankin pärjää. Maasto on helppokulkuista. Kävelyä kertyy noin neljä kilometriä. Kävelyretki sopii kaikille linnuista ja lähiluonnosta kiinnostuneille. Kävelyille ei tarvitse ilmoittautua ennakkoon.</p><p>Linturetki kestää noin tunnin.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p>", "sv": "<p>Kom med på fågelutfärd för att lära dig mer om fåglarna i Nordsjö.</p><p>Fågelpromenaden går från Nordhusets entré till Porslax idrottspark och Nordsjö gård och sedan tillbaka till Nordhuset.</p><p>Under promenaden får du bekanta dig med det oväntat rika fågelbeståndet mitt i Nordsjö. I grönområdena kan man hitta många fågelarter, som redan i början av maj har kommit till sina häckningsplatser. Du kan förvänta dig hackspettar, ringduvor, trastar, insektsätare som lövsångare, svartvit flugsnappare och stenskvätta samt många andra småfåglar.</p><p>Under utfärden får deltagarna tillsammans titta och lyssna på fåglar under ledning av en fågelguide från Tringa. Du kan ta med dig en egen kikare, men man klarar sig också utan. Terrängen är lättframkomlig. Promenaden är ungefär fyra kilometer lång. Utfärden passar för alla som är intresserade av fåglar och av naturen i närområdet. Ingen förhandsanmälan behövs.</p><p>Fågelpromenaden tar ungefär en timme.</p><p>Fritt inträde, ingen förhandsanmälan.</p>", "en": "<p>Go bird-watching to explore the bird population of Vuosaari.</p><p>The walks start in the Vuosaari House lobby and continue to the Porslahti exercise park and Vuosaari Manor areas, finally returning to Vuosaari House.</p><p>The walk introduces participants to the surprisingly rich bird population in the middle of Vuosaari. The green areas are home to numerous bird species that have already arrived in their nesting locations in early May. Species to look out for include the great spotted woodpecker, the wood pigeon, thrushes and insectivores such as the willow warbler, the pied flycatcher and the wheatear as well as a number of other small birds.</p><p>During the walk, participants can look and listen for birds with a guide from Tringa. You can bring your own binoculars, but it is optional. The terrain is easy to walk. The route is approximately four kilometres long. The walk is suitable for anyone interested in birds and the local environment. You do not need to sign up in advance for the walk.</p><p>The duration of the walk will be approximately an hour.</p><p>Free entry, no advance registration.</p>" }, "name": { "fi": "Lintukävely – Muuttolinnut-prosessinäyttelyn oheisohjelmaa", "sv": "Lintukävely (Fågelpromenad) – Muuttolinnut-prosessinäyttelyn oheisohjelmaa", "en": "Lintukävely (Bird walk) – Muuttolinnut-prosessinäyttelyn oheisohjelmaa" }, "short_description": { "fi": "Lähde linturetkelle tutustumaan Vuosaaren linnustoon.", "sv": "Kom med på fågelutfärd för att lära dig mer om fåglarna i Nordsjö.", "en": "Go bird-watching to explore the bird population of Vuosaari." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65793/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27030, "next": "