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=206®istration__remaining_attendee_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=207®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=205®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "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": [], "info_url": { "fi": "https://www.lippu.fi/event/20038134" }, "description": null, "price": { "fi": "39,90 €, VIP 79,90 €" } } ], "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, "name": { "fi": "Evening with Ronn Moss" }, "provider_contact_info": null, "provider": { "fi": "Dex Viihde Oy" }, "location_extra_info": null, "short_description": { "fi": "Ronn Moss kiertueelle Suomeen – Mahdollisuus kokea legendaarinen tähti livenä!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/EB7648A698FBD377D931CE713CF12CF2/Evening_with_Ronn_Moss" }, "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>" }, "@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": [], "info_url": null, "description": null, "price": 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, "name": { "fi": "CaisaKallio esittää: puhetaidetta ja musaa", "sv": "CaisaKallio esittää: puhetaidetta ja musaa", "en": "CaisaKallio esittää: puhetaidetta ja musaa" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "CaisaKallion tiistaissa koetaan puheilmaisun lopputöitä sekä musiikin lukiodiplomiesitys." }, "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" }, "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>" }, "@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": [], "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" }, "price": null } ], "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, "name": { "fi": "Veljeni Leijonamieli" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "short_description": { "fi": "Astrid Lindgren VELJENI LEIJONAMIELI ”Nyt me kerromme tarinan veljeksistä, Kaarle ja Joonatan Leijonasta, ja siitä kuinka heistä tuli Leijonamieliä." }, "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" }, "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>" }, "@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": [], "info_url": null, "description": null, "price": 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, "name": { "fi": "TÄYNNÄ! BUU-Klubben LIVE", "sv": "FULLBOKAD! BUU-Klubben LIVE", "en": "FULLYBOOKED! BUU-Klubben LIVE" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "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)." }, "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" }, "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>" }, "@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": [], "info_url": null, "description": null, "price": 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, "name": { "fi": "Metsienpuolustus-symposium", "sv": "Symposium om försvar av skogar", "en": "Forest Defence Symposium" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "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." }, "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" }, "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>" }, "@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": [], "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, "price": 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, "name": { "fi": "Koulutusaineisto suunnittelutapahtuma" }, "provider_contact_info": null, "provider": { "fi": "Business Helsinki" }, "location_extra_info": null, "short_description": { "fi": "MKtest 28032025 Release Wave 1 -testi 2 to LE SHORT DESC" }, "info_url": null, "description": { "fi": "<div><p>MKtest 28032025 Release Wave 1 -testi 2 to LE LONG DESC</p></div>" }, "@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": [], "info_url": null, "description": null, "price": 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, "name": { "fi": "Tuolijumppa", "sv": "Stolgymnastik", "en": "Chair gymnastics" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "short_description": { "fi": "jumpataan tuolia apuna käyttäen", "sv": "gymnastik med stol", "en": "gymnastics with a chair" }, "info_url": null, "description": { "fi": "<p>jumpataan tuolia apuna käyttäen</p>", "sv": "<p>gymnastik med stol</p>", "en": "<p>gymnastics with a chair</p>" }, "@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": [], "info_url": null, "description": null, "price": 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, "name": { "fi": "Tuolijumppa", "sv": "Stolgymnastik", "en": "Chair gymnastics" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "short_description": { "fi": "jumpataan tuolia apuna käyttäen", "sv": "gymnastik med stol", "en": "gymnastics with a chair" }, "info_url": null, "description": { "fi": "<p>jumpataan tuolia apuna käyttäen</p>", "sv": "<p>gymnastik med stol</p>", "en": "<p>gymnastics with a chair</p>" }, "@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": [], "info_url": null, "description": null, "price": 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, "name": { "fi": "Tuolijumppa", "sv": "Stolgymnastik", "en": "Chair gymnastics" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "short_description": { "fi": "jumpataan tuolia apuna käyttäen", "sv": "gymnastik med stol", "en": "gymnastics with a chair" }, "info_url": null, "description": { "fi": "<p>jumpataan tuolia apuna käyttäen</p>", "sv": "<p>gymnastik med stol</p>", "en": "<p>gymnastics with a chair</p>" }, "@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": [], "info_url": null, "description": null, "price": 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, "name": { "fi": "Tuolijumppa", "sv": "Stolgymnastik", "en": "Chair gymnastics" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "short_description": { "fi": "jumpataan tuolia apuna käyttäen", "sv": "gymnastik med stol", "en": "gymnastics with a chair" }, "info_url": null, "description": { "fi": "<p>jumpataan tuolia apuna käyttäen</p>", "sv": "<p>gymnastik med stol</p>", "en": "<p>gymnastics with a chair</p>" }, "@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": [], "info_url": null, "description": null, "price": 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, "name": { "fi": "Tuolijumppa", "sv": "Stolgymnastik", "en": "Chair gymnastics" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "short_description": { "fi": "jumpataan tuolia apuna käyttäen", "sv": "gymnastik med stol", "en": "gymnastics with a chair" }, "info_url": null, "description": { "fi": "<p>jumpataan tuolia apuna käyttäen</p>", "sv": "<p>gymnastik med stol</p>", "en": "<p>gymnastics with a chair</p>" }, "@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": [], "info_url": null, "description": null, "price": 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, "name": { "fi": "Tuolijumppa", "sv": "Stolgymnastik", "en": "Chair gymnastics" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "short_description": { "fi": "jumpataan tuolia apuna käyttäen", "sv": "gymnastik med stol", "en": "gymnastics with a chair" }, "info_url": null, "description": { "fi": "<p>jumpataan tuolia apuna käyttäen</p>", "sv": "<p>gymnastik med stol</p>", "en": "<p>gymnastics with a chair</p>" }, "@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": [], "info_url": null, "description": null, "price": 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, "name": { "fi": "KirppariFEST", "sv": "KirppariFEST", "en": "KirppariFEST" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "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!" }, "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" }, "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>" }, "@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": [], "info_url": null, "description": null, "price": 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, "name": { "fi": "KirppariFEST", "sv": "KirppariFEST", "en": "KirppariFEST" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "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!" }, "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" }, "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>" }, "@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": [], "info_url": null, "description": null, "price": 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, "name": { "fi": "KirppariFEST", "sv": "KirppariFEST", "en": "KirppariFEST" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "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!" }, "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" }, "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>" }, "@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": [], "info_url": null, "description": null, "price": 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, "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" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "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." }, "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_" }, "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>" }, "@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": [], "info_url": null, "description": null, "price": 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, "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" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "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." }, "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_" }, "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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65793/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65792", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 363789, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-18T14:14:57.761529Z", "last_modified_time": "2025-03-18T14:14:57.761544Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767391.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/363789/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-18T14:14:57.721461Z", "last_modified_time": "2025-03-31T14:13:40.040749Z", "date_published": null, "start_time": "2025-05-08T12: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, "name": { "fi": "Lintuharrastusinfo – Muuttolinnut-prosessinäyttelyn oheisohjelmaa", "sv": "Lintuharrastusinfo – Muuttolinnut-prosessinäyttelyn oheisohjelmaa", "en": "Lintuharrastusinfo – Muuttolinnut-prosessinäyttelyn oheisohjelmaa" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tervetuloa mukaan kuulemaan lintuharrastuksesta!", "sv": "Välkommen med för att höra om fågelskådning!", "en": "Come along and learn more about bird-watching!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E7F34308F571660A3BD3C49313F33B57/Lintuharrastusinfo_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E7F34308F571660A3BD3C49313F33B57/Lintuharrastusinfo_", "en": "http://www.vuotalo.fi/en/events/event/E7F34308F571660A3BD3C49313F33B57/Lintuharrastusinfo_" }, "description": { "fi": "<p>Tervetuloa mukaan kuulemaan lintuharrastuksesta!</p><p>Lintuharrastus on yhdistelmä kanssakäymistä, luontoretkeilyä ja tutkimusta.</p><p>Helsingin Seudun Lintutieteellisen Yhdistyksen Tringa ry:n toiminnanjohtajalta Johannes Silvonen kertoo Vuotalon aulassa lintuharrastuksesta. Yleisöllä on mahdollisuus esittää kysymyksiä.</p><p>Tilaisuuden kesto: noin 45 minuuttia</p><p>Infotilaisuuden jälkeen järjestetään kaksi lintukävelyä klo 16 ja klo 18. Lintukävelylle lähdetään Vuotalon aulasta Porslahden liikuntapuiston ja Vuosaaren kartanon alueelle ja takaisin Vuotalolle.</p>", "sv": "<p>Välkommen med för att höra om fågelskådning!</p><p>Fågelskådning är en kombination av samvaro, naturutfärder och forskning.</p><p>Johannes Silvonen, verksamhetsledare för Helsingforstraktens Ornitologiska Förening Tringa rf, berättar om fågelskådning i Nordhusets entré. Publiken har möjlighet att ställa frågor.</p><p>Evenemanget tar cirka 45 minuter<br>Språk: finska</p><p>Efter informationsmötet ordnas två fågelpromenader kl. 16 och kl. 18. Fågelpromenaden går från Nordhusets entré till Porslax idrottspark och Nordsjö gård och sedan tillbaka till Nordhuset.</p>", "en": "<p>Come along and learn more about bird-watching!</p><p>Bird-watching is a combination of interaction, nature excursions and research.</p><p>Executive Director Johannes Silvonen from the ornithological association of the Helsinki region, Tringa ry, talks about bird-watching in the Vuosaari House lobby. The public have the opportunity to ask questions.</p><p>Duration: approximately 45 minutes<br>Language: Finnish</p><p>Two bird walks will be arranged after the event at 16.00 and 18.00. 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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65792/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65823", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 380562, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-21T13:13:53.301307Z", "last_modified_time": "2025-03-21T13:13:53.301329Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767267.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/380562/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-21T13:13:53.285787Z", "last_modified_time": "2025-03-31T14:13:39.846095Z", "date_published": null, "start_time": "2025-05-07T12:00:00Z", "end_time": "2025-05-07T15: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, "name": { "fi": "KirppariFEST", "sv": "KirppariFEST", "en": "KirppariFEST" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Viikon KirppariFESTin teemana on äitienpäivä, joten nappaa äiti, mummo tai ystävä mukaan ja tee upeita kirppislöytöjä lahjaksi tai iloksi itsellesi.", "sv": "Temat för veckans KirppariFEST är mors dag, så ta med dig mamma, mormor eller en kompis och gör fantastiska loppisfynd som gåva eller till glädje för er själva.", "en": "The theme for this week’s KirppariFEST is Mother’s Day, so bring your mum, grandmother or friend and shop for recycled treasures for yourself or to gift someone." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/383F59BF9651A4C91F0256A11BD4C237/KirppariFEST", "sv": "http://www.stoa.fi/sv/evenemang/event/383F59BF9651A4C91F0256A11BD4C237/KirppariFEST", "en": "http://www.stoa.fi/en/events/event/383F59BF9651A4C91F0256A11BD4C237/KirppariFEST" }, "description": { "fi": "<p>Viikon KirppariFESTin teemana on äitienpäivä, joten nappaa äiti, mummo tai ystävä mukaan ja tee upeita kirppislöytöjä lahjaksi tai iloksi itsellesi.</p><p>Stoan KirppariFESTissä voit myydä omia tarpeettomia tavaroitasi, vaatteitasi tai kierrätettäviä tuotteitasi.</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><b>Ilmoittaudu myyjäksi ennakkoon viimeistään pe 2.5.</b> <u><a href=\"https://urly.fi/3NcC\"> Ilmoittaudu tämän lomakkeen kautta.</a></u></p><p>Myyntipaikka on maksuton! Sateen sattuessa kirppari siirtyy sisätiloihin.</p><p>KirppariFESTissä tärkeintä on iloinen mieli ja mukava yhdessäolo! Tapahtumaan on vapaa pääsy, joten tule mukaan nauttimaan rennosta kirpparitunnelmasta.<br> <br>Tapahtuman järjestävät yhteistyössä Stoan kanssa Ammattiopisto Spesia, Live ja Luovi.<br> <br>Nähdään KirppariFESTissä!</p>", "sv": "<p>Temat för veckans KirppariFEST är mors dag, så ta med dig mamma, mormor eller en kompis och gör fantastiska loppisfynd som gåva eller till glädje för er själva.</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! <br>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>The theme for this week’s KirppariFEST is Mother’s Day, so bring your mum, grandmother or friend and shop for recycled treasures for yourself or to gift someone.</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.</p><p>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></p><p>You can also attend the event to enjoy the atmosphere, grab some bargains and join a fun community – free entry!</p><p>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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65823/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65789", "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:32/?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: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:p1278/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 363552, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-18T13:14:43.359489Z", "last_modified_time": "2025-03-18T13:14:43.359505Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767382.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/363552/?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-03-18T13:14:43.315099Z", "last_modified_time": "2025-03-31T14:13:39.346144Z", "date_published": null, "start_time": "2025-05-03T11: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, "name": { "fi": "Lintudisco – Muuttolinnut-prosessinäyttelyn oheisohjelmaa", "sv": "Lintudisco (Fågeldisco) – Program i samband med processutställningen Flyttfåglar", "en": "Lintudisco (Bird disco) – Side programme for the ‘Muuttolinnut’ (Migratory birds) process exhibition" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tule mukaan hauskaan lintudiscoon!", "sv": "Kom med på ett roligt fågeldisco!", "en": "Come and join us in the fun bird disco!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B112EF021CB9CF35BA4DF1BEC2CE9780/Lintudisco", "sv": "http://www.vuotalo.fi/sv/evenemang/event/B112EF021CB9CF35BA4DF1BEC2CE9780/Lintudisco_Fageldisco_", "en": "http://www.vuotalo.fi/en/events/event/B112EF021CB9CF35BA4DF1BEC2CE9780/Lintudisco_Bird_disco_" }, "description": { "fi": "<p>Tule mukaan hauskaan lintudiscoon!</p><p>Lintudisco on mediataiteilija <b>Pasi Aution</b> musiikkiin ja tanssija-koreografi <b>Saku Koistisen</b> tanssiin perustuva osallistava ja yhteisöllinen performanssi.</p><p>Siinä tanssitaan lintujen lauluäänistä tehdyn musiikin tahtiin, Koistisen toimiessa esitanssijana ja tanssin ohjaajana. Vaikka Lintudisco on viihdyttävä, helposti osallistuttava ja yhteisöllinen kokemus, on sen taustalla kantaaottava teema: Luonnon monimuotoisuuden katoaminen ja ihmisen epätasa-arvoinen vuorovaikutus koko ekosysteemin kanssa.</p><p>Lintudisco on hurmannut ja saanut mukaan yleisönsä hyvinkin erilaisissa tapahtumissa, ympäristöissä ja tilanteissa, niin Suomessa kuin ulkomaillakin.</p><p>Teoksen kesto on 25 minuuttia. <br>Kohderyhmä: 6–99 v. <br>Teos sopii koko perheelle!</p><p>Vapaa pääsy</p>", "sv": "<p>Kom med på ett roligt fågeldisco!</p><p>Fågeldiscot är en inkluderande och gemenskaplig performance som baserar sig på mediekonstnären Pasi Autios musik och dansaren och koreografen Saku Koistinens dans. Där får man dansa till musik som skapats av fågelsång, och Koistinen är fördansare och dansinstruktör.</p><p>Även om Fågeldiscot är ett underhållningsevenemang som präglas av inkludering och gemenskap, har det ett viktigt tema: Förlusten av biologisk mångfald och människans ojämlika samspel med hela ekosystemet.<br> <br>Fågeldiscot har charmat och engagerat publik vid många olika slags evenemang och i olika miljöer och situationer, såväl i Finland som utomlands.</p><p>Verkets längd är 25 minuter. <br>Målgrupp: 6–99 år <br>Verket passar för hela familjen!</p>", "en": "<p>Come and join us in the fun bird disco!</p><p>Bird disco is a participatory and communal performance based on music by media artist Pasi Autio and dance by dancer and choreographer Saku Koistinen. In it, participants dance to music made from birdsongs, as Koistinen shows the way and instructs the dancers.</p><p>Even though the Bird disco is an entertaining, inclusive and communal experience, it is based on an important issue: loss of biodiversity and unequal human interaction with the entire ecosystem.</p><p>The Bird disco has enthralled and swept people away on its wings in very different events, environments and situations both in Finland and abroad.</p><p>The duration of the work is 25 minutes. <br>Target group: 6–99 years</p><p>The entire family can join in!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65789/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26802, "next": "