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
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=532
{ "meta": { "count": 31136, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=533", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=531" }, "data": [ { "id": "espoo_le:agmk23b2ie", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-24T08:12:25.299605Z", "last_modified_time": "2025-04-24T08:12:25.299622Z", "date_published": "2025-04-24T07:33:00Z", "start_time": "2025-05-20T13:30:00Z", "end_time": "2025-05-20T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kaija" }, "provider_contact_info": null, "info_url": null, "short_description": { "fi": "Tritonus-, Into-, Arco- ja Nauru-kvartetit esiintyvät" }, "name": { "fi": "EMOn jousikvartettien konsertti" }, "provider": null, "description": { "fi": "<p>Tritonus-, Into-, Arco- ja Nauru-kvartetit esiintyvät</p><p>Opettajat Petja Kainulainen ja Sirkka Kuula</p><p>Händel-Telemann-Mozart-Beethoven-Bartok-Sostakovits</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b2ie/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64960", "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: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: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:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153649, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-02T15:15:48.855161Z", "last_modified_time": "2025-01-02T15:15:48.855186Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_762004.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153649/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-02T15:15:48.817521Z", "last_modified_time": "2025-04-24T07:13:46.593007Z", "date_published": null, "start_time": "2025-04-05", "end_time": "2025-05-04", "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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/2B5212FF21D654B8A1B8AA9C33464D44/Maan_Puolustusvoimat_ja_Metsaliike_Tukikohtaaminen_", "sv": "http://www.stoa.fi/sv/evenemang/event/2B5212FF21D654B8A1B8AA9C33464D44/Maan_Puolustusvoimat_och_Metsaliike_S_t_o_d_t_r_a_f_f_a_r_", "en": "http://www.stoa.fi/en/events/event/2B5212FF21D654B8A1B8AA9C33464D44/Maan_Puolustusvoimat_Earth_Forces_and_Metsaliike_T_u_k_i_k_o_h_t_a_a_m_i_n_e_n_Support_encounter_" }, "short_description": { "fi": "Millaista toimintaa maapallon puolustamisen tulisi olla planetaarisen ekokriisin aikakaudella? Millaisia ovat Maan puolustusharjoitukset 2025?", "sv": "Vilka åtgärder bör vidtas för att försvara planeten under den planetära ekokrisens tidevarv? Hur kommer Jordens försvarsövningar att se ut år 2025?", "en": "What kind of action should defending the Earth be in an era of a planetary ecological crisis? What are Earth Defence Exercises 2025?" }, "name": { "fi": "Maan Puolustusvoimat ja Metsäliike: Tukikohtaaminen", "sv": "Maan Puolustusvoimat och Metsäliike: S t ö d t r ä f f a r", "en": "Maan Puolustusvoimat – Earth Forces and Metsäliike: T u k i k o h t a a m i n e n (Support encounter)" }, "provider": null, "description": { "fi": "<p>Millaista toimintaa maapallon puolustamisen tulisi olla planetaarisen ekokriisin aikakaudella? Millaisia ovat Maan puolustusharjoitukset 2025?</p><p>Maan Puolustusvoimat -kollektiivi ja Metsäliike - metsäluontoa puolustava kansanliike kohtaavat Stoassa järjestäen Tukikohtaaminen-näyttelyn.<br> <br>Maan Puolustusvoimat tarkastelee metsää paikkana, hahmotellen sen puolustamista myös kehoon kertyvän ja kokemuksellisen sekä kokeellisen tiedon ja ymmärryksen kautta.</p><p>Metsäliike esittäytyy muun muassa metsävahtimisen, metsäkartoituksen, sen metodien ja tuottaman tiedon kautta, mutta myös musiikin, liikkeen, lajien ja kuvien kautta. Metsäliike on kutsunut koolle yhteistyötahoja kuten Luonnonmetsät Sápmi -työryhmän, Luonnonmetsätyöryhmän ja Luontoliiton Metsäryhmän, jotka ovat tehneet merkittävää metsäkartoitustyötä.</p><p>Maan Puolustusvoimat tuo tilaan puolijoukkueteltan ja uudelleen määrittelee maanpuolustuksen tematiikkaa, purkaen sotimiseen ja omistamiseen sekä fossiilikapitalistiseen, kolonialistiseen ja sortavaan järjestelmään kytkeytyviin valtataisteluihin liittyviä merkkejä, merkityksiä, välineitä ja materiaaleja, ohjaten niitä todelliseen maata, metsää ja meitä hoivaavaan Maan puolustustyöhön.</p><p>Kaikki näyttelyn taiteilijat, tekijät, avustajat, arkistomateriaalin luovuttajat: Riina Hannula, Maria Rannanheimo, Oona Leinovirtanen, Sofia Simola, Aino Johansson, Olli Aarni, Mikko Aaltio, Otso Piitulainen, Outopuu, Rita Anttila, L. V. Maa, Ilmari Paananen, Jerry Lahtinen, Kaisa Saano, Anna Pajari, Olli Manninen, Ville Murmann, Otso Puusti, Wiebke Pandikow, Turo Tuomikoski, Ilse Paetau, Anni Manninen, Sonja Alasaukko-Oja, Heidi Lunabba, A. Aalto, R. Sulkava.</p>", "sv": "<p>Vilka åtgärder bör vidtas för att försvara planeten under den planetära ekokrisens tidevarv? Hur kommer Jordens försvarsövningar att se ut år 2025?</p><p>Kan ställningen vara ”ledig”? Vilken typ av arbete är hållbart, vilken typ förvärrar ekokrisen och vilken typ skulle kunna ge gradbeteckningar och medaljer för att försvara liv?</p><p>Kollektivet Maan Puolustusvoimat (”Jordens försvarsmakt”) och Metsäliike (”Skogsrörelsen”), en folkrörelse som försvarar skogsnaturen, möts på Stoa för att sätta upp föreställningen S t ö d t r ä f f a r och ordna en serie evenemang.</p><p>Kartor har alltid ritats av människor, ofta enligt föränderliga gränser. De har speglat makthavares intressen, men åsidosatt ekosystem, andra arter, folkgrupper och kulturer. Utställningen lär oss om hur naturvårdare använder kartor för att bevara ekosystem och skapar dem som en del av sitt naturvårdsarbete.</p><p>Maan Puolustusvoimat ser på skogen som en plats och funderar på hur den kan försvaras. Det sker inte bara genom praktisk kunskap, utan också genom kroppslig, erfarenhetsbaserad och experimentell förståelse.</p><p>Metsäliike presenteras genom skogskartläggning, dess metoder och de data som kartläggningen producerar, men också genom sånger, rörelser och möten i utkanten av medborgarengagemang.</p><p>Vad kan en karta vara? Och vem har rätt att rita den?</p><p>Varje evenemang som Maan Puolustusvoimat arrangerar är samtidigt ett uppbåd, där vi bjuder in besökarna att skydda planeten tillsammans med oss. I samband med utställningen anordnas, i samarbete med Metsäliike, verkstäder, övningar, utbildningar och performancekonst som fötts ur Jordens.</p><p>OBS! Med Jorden avses i det här sammanhang planeten Jorden (Earth), jordmånen (soil), platsen (land) och de ekosystem som den bär, i praktiken alltså hela naturen och dess hälsa. Maan puolustusvoimat är alltså INTE en nationalistisk eller militaristisk aktör.</p><p><b>Mer information om evenemangen och arrangörerna</b></p><p>Maan Puolustusvoimat och Metsäliike ordnar också ett skogsförsvarsevenemang på Stoa den 5–6 april.</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. Vi är födda ur ekosystemkrisen, biodiversitetsförlusten och behovet av att skydda och värna om vår hemplanet, vår relation till Jorden och till varandra, Jordens invånare. De nuvarande medlemmarna i Maan Puolustusvoimat är Aino Johansson, Sofia Simola, Maria Rannanheimo, Riina Hannula och Oona Leinovirtanen. <br> <br><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><p>Fritt inträde</p>", "en": "<p>What kind of action should defending the Earth be in an era of a planetary ecological crisis? What are Earth Defence Exercises 2025?</p><p>Can the stand be ‘at ease’? What kind of work is sustainable, what kind of work deepens the ecological crisis, and for what kind of work could you earn badges of honour and medals for defending life?</p><p>The Earth Forces Collective and the national social movement defending forest nature Metsäliike meet up at Stoa to organise the exhibition T u k i k o h t a a m i n e n as well as a series of events.</p><p>Maps have always been drawn by humans, often according to changing boundaries. They have reflected the interests of the people in power, but ignored ecosystems, other species, peoples and cultures. The exhibition explores how nature environmentalists use maps to preserve ecosystems and create them as part of their conservation work.</p><p>Earth Forces looks at the forest as a place and consider how it can be defended. This is done not only through practical knowledge, but also through bodily, experiential and experimental understanding.</p><p>Metsäliike presents itself through forest mapping, its methods and the information it produces, but also through songs, movements and encounters through civic participation.</p><p>What can a map be – and who has the right to draw it?</p><p>Each Earth Forces event is at the same time a conscription where we invite the visitors to protect the Earth. In connection with the exhibition, we will organise workshops, exercises, training and performance art welling up from the Earth together with Metsäliike.</p><p>In this context, Earth refers to the planet Earth, soil, land and the ecosystems it supports, that is, practically all of nature and its health. Therefore, Earth Forces is NOT a nationalist or militaristic actor.</p><p><b>Learn more about the events and hosts</b></p><p>Earth Forces and Metsäliike also organise a Forest Defence event at Stoa on 5–6 April.</p><p><b>Earth Forces</b> is a multidisciplinary and multi-sectoral antimilitaristic organism, thought and collective dodging hierarchies and intertwining art and activism. We emerge from the state of emergency of ecosystems, biodiversity loss and the need to protect and cherish our home planet as well as our relationship to the Earth and each other, the inhabitants of the Earth. The current members of Earth Forces are Aino Johansson, Sofia Simola, Maria Rannanheimo, Riina Hannula and Oona Leinovirtanen. <br> <br><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><p>Free admission</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64960/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65682", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:755/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 320270, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-10T12:14:35.108638Z", "last_modified_time": "2025-03-10T12:14:35.108655Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766206.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/320270/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-10T12:14:35.063689Z", "last_modified_time": "2025-04-23T15:14:06.056530Z", "date_published": null, "start_time": "2025-05-13T14:00:00Z", "end_time": "2025-05-13T16: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/563CBD1FD0B3F2813F802751CA1C99C0/Kantsun_kahvit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/563CBD1FD0B3F2813F802751CA1C99C0/Kantsun_kahvit", "en": "http://www.kanneltalo.fi/en/events/event/563CBD1FD0B3F2813F802751CA1C99C0/Coffee_at_Kantsu" }, "short_description": { "fi": "Millainen on tulevaisuuden Kanneltalo? Tule kuulemaan ja keskustelemaan visiotyön tuloksista ja muista alueen ajankohtaisista aiheista.", "sv": "Kantsun kahvit är avgiftsfria träffar som är öppna för alla, där lokalinvånare får träffa varandra över en kopp kaffe och planera och ordna trevlig och meningsfull verksamhet i området.", "en": "Coffee at Kantsu (Kantsun kahvit) is a recurring free-of-charge event where all local residents can meet each other and casually plan and execute fun and meaningful activities in the area over coffee." }, "name": { "fi": "Kantsun kahvit – Ideoista visioksi, kulttuurikeskus uudistuu", "sv": "Kantsun kahvit", "en": "Coffee at Kantsu" }, "provider": null, "description": { "fi": "<p>Millainen on tulevaisuuden Kanneltalo? Tule kuulemaan ja keskustelemaan visiotyön tuloksista ja muista alueen ajankohtaisista aiheista.</p><p>Kanneltalo on yksi Helsingin alueellisista kulttuurikeskuksista. Kulttuurikeskusten visio painottaa paikallisuuden juhlimista sekä osallistumisen ja kohtaamisen mahdollisuuksia.</p><p>Kannelmäen alueelta on saatu paljon hyviä huomioita ja näkemyksiä, jotka vaikuttivat visioon ja jatkossa vaikuttavat myös Kanneltalon suuntaan.</p><p>Kantsun kahvien alussa visiotyön hanketyöntekijät kertovat Kanneltalon tulevaisuutta koskevista suunnitelmista, jonka jälkeen keskustelemme vapaasti pöytäryhmissä.<br>Kantsun kahveilla alueen asukkaat kohtaavat, ideoivat ja toteuttavat yhdessä mielekästä toimintaa alueelle rennosti kahvitellen. Nämä ovat kaikille avoimia ja maksuttomia tapaamisia.</p><p>Kantsun kahvien sisällöt suunnitellaan yhdessä asukasaktiivien kanssa. Osallistu keskusteluun Kantsun kahvit -Facebook-ryhmässä: https://www.facebook.com/groups/875036451503848</p><p>Kantsun kahvit järjestää yhteistyössä alueen asukkaat, Kannelmäen D-asema ja Helsingin kaupunki</p><p>Tapahtumaan ei tarvitse ilmoittautua ja se on maksuton.<br>Paikka: Kanneltalon kahvilan stage</p>", "sv": "<p>Kantsun kahvit är avgiftsfria träffar som är öppna för alla, där lokalinvånare får träffa varandra över en kopp kaffe och planera och ordna trevlig och meningsfull verksamhet i området.</p><p>Kaffeträffen inleds med information om dagens tema, och efter det följer fri diskussion kring borden.</p><p>Evenemangets innehåll planeras tillsammans med aktiva invånare och temat offentliggörs senare. Delta i diskussionen i Facebookgruppen Kantsun kahvit: https://www.facebook.com/groups/875036451503848</p><p>Kantsun kahvit ordnas som ett samarbete mellan invånare i området, D-asema i Gamlas och Helsingfors stad</p><p>Du behöver inte anmäla dig till evenemanget på förhand och det är gratis</p><p>Plats: Gamlasgården kafé stage</p>", "en": "<p>Coffee at Kantsu (Kantsun kahvit) is a recurring free-of-charge event where all local residents can meet each other and casually plan and execute fun and meaningful activities in the area over coffee.</p><p>To start the event, the participants will be briefed on the topic of the day, after which they can discuss it freely in groups.</p><p>The content of the event is planned together with active residents and the topic of the event is published closer to the event. Join the discussion in the ‘Kantsun kahvit’ Facebook group: https://www.facebook.com/groups/875036451503848</p><p>Coffee at Kantsu is organised in cooperation by local residents, D-asema in Kannelmäki and the City of Helsinki.</p><p>No advance registration is required and the event is free of charge.<br>Location: Kanneltalo café stage</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65682/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23b3cq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4934/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b3tq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-23T11:19:00.462285Z", "last_modified_time": "2025-04-23T11:19:00.462301Z", "date_published": null, "start_time": "2025-05-22T13:00:00Z", "end_time": "2025-05-22T14: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, "location_extra_info": { "fi": "Paja, Paja, Stage", "sv": "Paja, Paja, Stage", "en": "Paja, Paja, Stage" }, "provider_contact_info": null, "info_url": null, "short_description": { "fi": "Tervetuloa opastetulle museomatkalle etänä, mutta yhteen kokoontuen kirjastossa", "sv": "Välkommen på en guidad museitur – på distans, men tillsammans på biblioteket", "en": "Welcome to a guided museum tour – remotely, but together at the library" }, "name": { "fi": "Lähde mukaan virtuaalimatkalle - koe kulttuuria kirjastossa", "sv": "Följ med på en virtuell resa – upplev kultur på biblioteket ", "en": "Join a virtual journey – experience culture at the library" }, "provider": { "fi": "vreal", "sv": "vreal", "en": "vreal" }, "description": { "fi": "<p>Tervetuloa kulttuurin pariin toukokuisin torstaisin. </p><p>Kokoonnumme yhteen ison screenin äärelle ja saamme virtuaalisen etäopastuksen aiheisiin. Kirjastolta on paikalla henkilökuntaa, jotka hoitavat yhteyden museokierrokseen ja hän toimii myös kysymysten esittäjänä oppaalle. Oppaalle voi jättää kysymyksiä chatin välityksellä. 8.5. Kansallispyhäkkö ja sen salaisuudet - matka Turun Tuomiokirkkoon </p><ul><li>Paikka - Paja</li><li>Kello 16-17</li><li>Opastus ruotsinkielellä</li></ul><p>15.5. Kylmän sodan salaiset suojat - matka bunkkeri irmaan.</p><ul><li>Paikka - Paja</li><li>Kello 16-17</li><li>Opastus suomenkielellä</li></ul><p>22.5. Viipuri - Suomalaisen historian kerrostumat</p><ul><li>Paikka - Stage</li><li>Kello 16-17</li><li>Opastus suomenkielellä</li></ul><p>Tervetuloa nauttimaan kulttuurista kirjastoon!</p><p><br></p><p><br></p>", "sv": "<p>Välkommen att ta del av kultur på torsdagar i maj!</p><p>Vi samlas tillsammans framför en stor skärm och får en virtuell guidad tur i olika ämnen. Personal från biblioteket är på plats för att sköta kontakten med museiguiden och för att förmedla frågor. Du kan också ställa frågor till guiden via chatten.</p><p>8.5. Nationalhelgedomen och dess hemligheter – en resa till Åbo domkyrka</p><p>Plats: Paja</p><p>Tid: kl. 16–17</p><p>Guidning på svenska</p><p>15.5. Det kalla krigets hemliga skyddsrum – en resa till bunkern Irma</p><p>Plats: Paja</p><p>Tid: kl. 16–17</p><p>Guidning på finska</p><p>22.5. Viborg – lager av finsk historia</p><p>Plats: Stage</p><p>Tid: kl. 16–17</p><p>Guidning på finska</p><p>Välkommen att njuta av kultur på biblioteket!</p>", "en": "<p>Welcome to explore culture on Thursdays in May!</p><p>We gather together in front of a big screen to enjoy virtual guided tours on various topics. Library staff will be present to manage the connection to the museum tour and relay your questions to the guide. You can also ask questions via the chat.</p><p>May 8: The National Shrine and Its Secrets – a journey to Turku Cathedral</p><p> Location: Paja</p><p> Time: 4–5 PM</p><p> Guided tour in Swedish</p><p>May 15: Secret Shelters of the Cold War – a journey to the Irma Bunker</p><p> Location: Paja</p><p>Time: 4–5 PM</p><p>Guided tour in Finnish</p><p>May 22: Vyborg – Layers of Finnish History</p><p>Location: Stage</p><p>Time: 4–5 PM</p><p>Guided tour in Finnish</p><p>Welcome to enjoy culture at the library!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b3cq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23b3tq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4934/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b3cq/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-23T11:18:57.057984Z", "last_modified_time": "2025-04-23T11:18:57.058000Z", "date_published": null, "start_time": "2025-05-08T13:00:00Z", "end_time": "2025-05-22T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Paja, Paja, Stage", "sv": "Paja, Paja, Stage", "en": "Paja, Paja, Stage" }, "provider_contact_info": null, "info_url": null, "short_description": { "fi": "Tervetuloa opastetulle museomatkalle etänä, mutta yhteen kokoontuen kirjastossa", "sv": "Välkommen på en guidad museitur – på distans, men tillsammans på biblioteket", "en": "Welcome to a guided museum tour – remotely, but together at the library" }, "name": { "fi": "Lähde mukaan virtuaalimatkalle - koe kulttuuria kirjastossa", "sv": "Följ med på en virtuell resa – upplev kultur på biblioteket ", "en": "Join a virtual journey – experience culture at the library" }, "provider": { "fi": "vreal", "sv": "vreal", "en": "vreal" }, "description": { "fi": "<p>Tervetuloa kulttuurin pariin toukokuisin torstaisin. </p><p>Kokoonnumme yhteen ison screenin äärelle ja saamme virtuaalisen etäopastuksen aiheisiin. Kirjastolta on paikalla henkilökuntaa, jotka hoitavat yhteyden museokierrokseen ja hän toimii myös kysymysten esittäjänä oppaalle. Oppaalle voi jättää kysymyksiä chatin välityksellä. 8.5. Kansallispyhäkkö ja sen salaisuudet - matka Turun Tuomiokirkkoon </p><ul><li>Paikka - Paja</li><li>Kello 16-17</li><li>Opastus ruotsinkielellä</li></ul><p>15.5. Kylmän sodan salaiset suojat - matka bunkkeri irmaan.</p><ul><li>Paikka - Paja</li><li>Kello 16-17</li><li>Opastus suomenkielellä</li></ul><p>22.5. Viipuri - Suomalaisen historian kerrostumat</p><ul><li>Paikka - Stage</li><li>Kello 16-17</li><li>Opastus suomenkielellä</li></ul><p>Tervetuloa nauttimaan kulttuurista kirjastoon!</p><p><br></p><p><br></p>", "sv": "<p>Välkommen att ta del av kultur på torsdagar i maj!</p><p>Vi samlas tillsammans framför en stor skärm och får en virtuell guidad tur i olika ämnen. Personal från biblioteket är på plats för att sköta kontakten med museiguiden och för att förmedla frågor. Du kan också ställa frågor till guiden via chatten.</p><p>8.5. Nationalhelgedomen och dess hemligheter – en resa till Åbo domkyrka</p><p>Plats: Paja</p><p>Tid: kl. 16–17</p><p>Guidning på svenska</p><p>15.5. Det kalla krigets hemliga skyddsrum – en resa till bunkern Irma</p><p>Plats: Paja</p><p>Tid: kl. 16–17</p><p>Guidning på finska</p><p>22.5. Viborg – lager av finsk historia</p><p>Plats: Stage</p><p>Tid: kl. 16–17</p><p>Guidning på finska</p><p>Välkommen att njuta av kultur på biblioteket!</p>", "en": "<p>Welcome to explore culture on Thursdays in May!</p><p>We gather together in front of a big screen to enjoy virtual guided tours on various topics. Library staff will be present to manage the connection to the museum tour and relay your questions to the guide. You can also ask questions via the chat.</p><p>May 8: The National Shrine and Its Secrets – a journey to Turku Cathedral</p><p> Location: Paja</p><p> Time: 4–5 PM</p><p> Guided tour in Swedish</p><p>May 15: Secret Shelters of the Cold War – a journey to the Irma Bunker</p><p> Location: Paja</p><p>Time: 4–5 PM</p><p>Guided tour in Finnish</p><p>May 22: Vyborg – Layers of Finnish History</p><p>Location: Stage</p><p>Time: 4–5 PM</p><p>Guided tour in Finnish</p><p>Welcome to enjoy culture at the library!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b3tq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23b4ey", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b4ru/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150472, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T07:34:03.349624Z", "last_modified_time": "2024-03-13T07:34:03.349649Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Entressen_lukukoirat.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kaksi mäyräkoiraa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150472/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-04-23T07:51:06.410183Z", "last_modified_time": "2025-04-23T07:53:44.556700Z", "date_published": null, "start_time": "2025-06-12T10:00:00Z", "end_time": "2025-06-12T12: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, "location_extra_info": { "fi": "Lastenosasto", "sv": "barnavdelningen", "en": "children's section" }, "provider_contact_info": null, "info_url": null, "short_description": { "fi": " Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.", "sv": " Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.", "en": " If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader." }, "name": { "fi": "Lukukoirat Nekku ja Pätkis tavattavissa", "sv": "Läshundarna Nekku och Pätkis kan träffas", "en": "Meet the reading dogs Nekku and Pätkis" }, "provider": null, "description": { "fi": "<p>Hei,</p><p>Olemme Nekku ja Pätkis, Entressen lukukoirat. Tykkäämme rapsuttelusta ja kuuntelemisesta. Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.</p><p>Kaikki ovat tervetulleita rapsuttamaan!</p><p>Nekku ja Pätkis ovat tavattavissa Entressen lastenosastolla torstaisin klo 13-15.</p><p>Tervetuloa!</p>", "sv": "<p>Hej på er,</p><p>Vi är Nekku och Pätkis, Entresses läshundar. Vi gillar att bli klappade och lyssnade på. Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.</p><p>Alla är välkomna att klösa!</p><p>Nekku och Pätkis finns på barnavdelningen Entresse på torsdagar från den kl. 13-15</p><p>Varmt välkomna!</p>", "en": "<p>Hello,</p><p>We are Nekku and Pätkis, Entresse's reading dogs. We like to be petted and listened to. If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader.</p><p>Everyone is welcome to scratch!</p><p>Nekku and Pätkis can be found in the Entresse children's section on Thursdays at 13-15.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b4ey/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23b4ru", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yimi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b4ey/?format=api" } ], "images": [ { "id": 150472, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T07:34:03.349624Z", "last_modified_time": "2024-03-13T07:34:03.349649Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Entressen_lukukoirat.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kaksi mäyräkoiraa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150472/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-04-23T07:51:05.475455Z", "last_modified_time": "2025-04-23T07:53:43.948807Z", "date_published": null, "start_time": "2025-05-29T10:00:00Z", "end_time": "2025-06-12T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lastenosasto", "sv": "barnavdelningen", "en": "children's section" }, "provider_contact_info": null, "info_url": null, "short_description": { "fi": " Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.", "sv": " Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.", "en": " If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader." }, "name": { "fi": "Lukukoirat Nekku ja Pätkis tavattavissa", "sv": "Läshundarna Nekku och Pätkis kan träffas", "en": "Meet the reading dogs Nekku and Pätkis" }, "provider": null, "description": { "fi": "<p>Hei,</p><p>Olemme Nekku ja Pätkis, Entressen lukukoirat. Tykkäämme rapsuttelusta ja kuuntelemisesta. Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.</p><p>Kaikki ovat tervetulleita rapsuttamaan!</p><p>Nekku ja Pätkis ovat tavattavissa Entressen lastenosastolla torstaisin klo 13-15.</p><p>Tervetuloa!</p>", "sv": "<p>Hej på er,</p><p>Vi är Nekku och Pätkis, Entresses läshundar. Vi gillar att bli klappade och lyssnade på. Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.</p><p>Alla är välkomna att klösa!</p><p>Nekku och Pätkis finns på barnavdelningen Entresse på torsdagar från den kl. 13-15</p><p>Varmt välkomna!</p>", "en": "<p>Hello,</p><p>We are Nekku and Pätkis, Entresse's reading dogs. We like to be petted and listened to. If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader.</p><p>Everyone is welcome to scratch!</p><p>Nekku and Pätkis can be found in the Entresse children's section on Thursdays at 13-15.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b4ru/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65082", "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:669/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 166393, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:48:36.711520Z", "last_modified_time": "2025-01-24T11:48:36.711539Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763833.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166393/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-24T11:48:36.656360Z", "last_modified_time": "2025-04-22T13:13:22.007563Z", "date_published": null, "start_time": "2025-04-26T09:00:00Z", "end_time": "2025-04-26T12: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E3F08A74B2115A508A201703B02823EC/Koirien_Stoa_koiranpaivan_juhlat_Stoassa", "sv": "http://www.stoa.fi/sv/evenemang/event/E3F08A74B2115A508A201703B02823EC/Hundarnas_Stoa_Hunddagsfirande_pa_Stoa", "en": "http://www.stoa.fi/en/events/event/E3F08A74B2115A508A201703B02823EC/Dog_Stoa_Dog_Day_Party_at_Stoa" }, "short_description": { "fi": "Nyt kirsut kohti Stoaa! Tule juhlimaan koirakaverien kanssa koiranpäivää Stoaan.", "sv": "Alla nosar mot kulturcentret Stoa! Kom till Stoa med hundkompisarna och fira hunddagen.", "en": "Snouts towards Stoa! Bring your doggy friends with you to celebrate the National Dog Day at the Cultural Centre Stoa!" }, "name": { "fi": "Koirien Stoa! – koiranpäivän juhlat Stoassa", "sv": "Hundarnas Stoa! – Hunddagsfirande på Stoa", "en": "Dog Stoa! – Dog Day Party at Stoa" }, "provider": { "fi": "Itäkeskuksen kirjasto, Itäkeskuksen nuorisopalvelut, Stoan kulttuuripalvelut ja työväenopisto" }, "description": { "fi": "<p>Nyt kirsut kohti Stoaa! Tule juhlimaan koirakaverien kanssa koiranpäivää Stoaan.</p><p>Juhlien sankarina on tietenkin koira ja luvassa on koiramaisuuksia kaikenlaisille koiruuksille. Ohjelmassa on muun muassa keppinäyttely, haju- ja temppuratoja sekä koiratanssinäytös. Osallistu koira-croquisiin tai pysähdy muotokuvaan valokuvaajan eteen. Saat myös vinkkejä koiran kouluttamiseen positiivisella vahvistamisella. <br> <br><b>Ohjelma</p><p>klo 12–15 Kennelliiton Kaverikoirat tavattavissa</b><br>Tule rapsuttelemaan ja silittelemään ihania kaverikoiria! Kennelliiton kaverikoirat tunnistaa työasustaan eli oranssista huivista ja kaverikoiraohjaajan nimikyltistä.</p><p><b> klo 12–15 Koiramuotokuvia!</b><br>Valokuvaajamme taltioi tapahtumassa lemmikkisi ja halutessasi saat kuvan sähköisesti.</p><p><b>klo 12-13 Musti ja Mirri</b><br>Musti ja Mirri tarjoaa ilmaisen kynsienleikkuun 1h ajan (helposti käsiteltävät koirat). Musti ja Mirri on myös mukana tapahtumassa tarjoamassa herkkuja karvakuonoille!</p><p><b>klo 12–15 Koirien keppinäyttely</b><br>Tuo koirasi kisaamaan Itäkeskuksen upeimmasta kepistä, tai tule itse katsomaan kevään hauskinta ja äänekkäintä näyttelyä. <br> <br>Keppejä voi tuoda näyttelyyn klo 12–14.30 välisenä aikana. Yleisö saa äänestää mieleisintään keppiä klo 14.30 saakka. Eniten ääniä saanut keppi voittaa ja kepin tuonut koira palkitaan klo 14.45. Jokainen näyttelyyn osallistunut saa omalla nimellä varustetun näyttelydiplomin sekä pienen herkun. <br> <br><b>klo 12–15 Koira-croquis</b> <br>Tule piirtämään päivän karvakamuja koira-croquis pajaan! Croquis-pajassa eli elävän mallin piirustuksessa pääset piirtämään nopeita hahmotelmia eläinmalleista. Tuo oma koirasi malliksi tai piirrä joku tapahtuman monista koirista! Työpajan ohjaa kuvataideopettaja Oona Ala-Honkola. <br> <br><b>klo 12.30 ja klo 14 Koiratanssinäytökset</b> <br>Mitä on koiratanssi? Tätä kiinnostavaa lajia esittelevät koiratanssin pitkäaikaiset harrastajat ja lajin ylituomarit Nadja Böckerman ja Marjaana Lohivirta yhdessä koiriensa kanssa. Näytöksissä nähdään esitysdemoja, kerrotaan lajista ja opastetaan muutamiin helppoihin treenivinkkeihin, joilla pääset harjoittelemaan lajia oman koirasi kanssa.</p><p><b>klo 13–14 Onnistunut ja iloinen yhteistyö koiran kanssa</b><br>Koirakoulu Masseterin kouluttaja Anni Kuittinen kertoo koiralähtöisestä koulutuksesta ja yhteistyön rakentamisesta oman koiran kanssa. Miten esimerkiksi erilaisia palkintoja voi hyödyntää koiran kanssa? Luennolla nähdään demo tai video harjoituksista, joita voi tehdä oman koiran kanssa julkisilla paikoilla rauhoittumiseen.</p><p><b>klo 14–15 Koiran käyttäytyminen ja kouluttaminen - Kohti yhteisymmärrystä </b><br>Koirakoulu Ilon kouluttaja Katja Etelävirran luennolla käydään läpi koiran elekielen tunnistamista ja sujuvan arjen tukitaitoja sekä positiivisen vahvisteen käyttämistä koiran koulutuksessa. Mitä esimerkiksi tarkoittaa, kun koira haluaa lisää etäisyyttä tai tilaa?</p><p>Tapahtumassa kuullaan myös Stoan lausujien runoja koirista ja koirille. Lisäksi paikalla on koirille nuusku- ja temppurata!</p><p>Tapahtumaan osallistutaan koiran ehdoilla. Tulethan tapahtumaan vain sellaisen koiran kanssa, joka nauttii hälinästä, vieraista ihmisistä ja koirista. <br> <br>Koiranpäivän viikolla myös Itäkeskuksen kirjastossa on koiramaista ohjelmaa. <u><a href=\"https://helmet.finna.fi/FeedContent/LinkedEvents?id=helsinki:agk2ivt57e\">Katso kirjaston tapahtumat täältä.</a></u></p>", "sv": "<p>Alla nosar mot kulturcentret Stoa! Kom till Stoa med hundkompisarna och fira hunddagen.</p><p>Alla nosar mot kulturcentret Stoa! Kom till Stoa med hundkompisarna och fira hunddagen.</p><p>Dagens hjälte är naturligtvis hunden och det utlovas program med hundtema för alla slags hundar. På programmet finns bland annat en käpputställning, lukt- och trickbanor samt en hunddansuppvisning. Delta i hund-kroki eller stanna upp hos fotografen för ett porträtt. Du får också tips för att skola en hund genom positiv förstärkning.</p><p><b>Program</p><p>kl. 12–15 Kennelklubbens Kompishundar är anträffbara</b><br>Kom för att krafsa och klappa de underbara kompishundarna! Du känner igen Kennelklubbens kompishundar på deras arbetsdräkt, det vill säga den orange halsduken, och kompishundföraren på hens namnskylt.</p><p><b>kl. 12–15 Hundporträtt!</b><br>Under evenemanget fotograferar vår fotograf ditt sällskapsdjur och om du vill får du bilden elektroniskt.</p><p><b>kl. 12–15 Käpputställning för hundar</b><br>Låt din hund komma för att tävla om Östra centrums finaste käpp, eller kom och titta på vårens roligaste och mest högljudda utställning.</p><p>Ni kan komma med käppar till utställningen kl. 12–14.30. Publiken får rösta på den käpp de tycker mest om fram till kl. 14.30. Den käpp som fått flest röster vinner och den hund som kommit med käppen belönas kl. 14.45. Alla som deltagit i utställningen får ett utställningsdiplom med sitt namn samt en liten godsak.</p><p><b>kl. 12–15 Hund-kroki</b><br>Kom och teckna dagens håriga kompisar i hund-kroki verkstaden! I kroki-verkstaden, det vill säga i teckningen av levande modeller, kan du teckna snabba skisser av djurmodellerna. Ta med din hund som modell eller teckna någon av de många hundarna på evenemanget! Bildkonstlärare Oona Ala-Honkola leder verkstaden.</p><p><b>kl. 12.30 och kl. 14 Hunddansuppvisningar</b><br>Vad är hunddans? De långvariga entusiasterna och överdomarna Nadja Böckerman och Marjaana Lohivirta presenterar den här intressanta grenen tillsammans med sina hundar. I uppvisningarna har man förevisningar, berättar om sporten och ger instruktioner om några enkla träningstips som du kan använda för att skola din hund.</p><p><b>kl. 13–14 Ett lyckat och glatt samarbete med hunden</b><br>Hundskolan Masseters tränare Anni Kuittinen berättar om hundorienterad skolning och om att bygga upp samarbetet med sin hund. Hur kan du till exempel dra nytta av olika belöningar med hunden? På föreläsningen ser vi en förevisning eller en video av övningar som man du göra med din hund för att lugna ner den på offentliga platser.</p><p><b>kl. 14–15 Hundens beteende och skolning – Mot samförstånd</b><br>Hundskolan Ilos tränare Katja Etelävirta ger en föreläsning där hon går igenom identifieringen av hundens gester och stödfärdigheter för en smidig vardag samt användningen av positiv förstärkning i hundskolningen. Vad betyder det till exempel när hunden vill ha mer avstånd eller utrymme?</p><p>Under evenemanget får vi också höra dikter av Stoas recitatörer om hundar och för hundar. Dessutom finns det en snus- och trickbana för hundarna!</p><p>Du deltar i evenemanget på hundens villkor. Kom bara med en sådan hund som njuter av liv och rörelse, främmande människor och hundar.</p><p>Under hunddagens vecka finns det också program med hundtema på Östra centrums bibliotek. <u><a href=\"https://helmet.finna.fi/FeedContent/LinkedEvents?id=helsinki:agk2ivt57e\">Se bibliotekets evenemang här (på finska).</a></u></p><p>Språk: finska</p>", "en": "<p>Snouts towards Stoa! Bring your doggy friends with you to celebrate the National Dog Day at the Cultural Centre Stoa!</p><p>Dog are the self-evident heroes of the day, and the celebration offers doggy fun for pups of all kinds. The programme of the event features a stick exhibition, scent and trick tracks, a musical canine freestyle performance and a great deal more. Get creative with dog croquis or have your portrait taken by a photographer. You will also get tips for training your dog through positive reinforcement.</p><p><b>Programme</p><p>12 noon–15.00 Come and meet the care dogs of the Finnish Kennel Club</b><br>Come by to scratch and pet the adorable care dogs! You can recognise the care dogs by their uniforms: an orange bandana and a name sign of their instructor.</p><p><b>12 noon–15.00 Dog portraits!</b><br>Our photographer will take a photo of your pet at the event and send it to you electronically, if you wish.</p><p><b>12 noon–15.00 Dogs’ stick exhibition</b><br>Bring your pet by to compete on who has the best stick in the whole Itäkeskus, or visit this funniest and loudest exhibition of the spring yourself.</p><p>Sticks can be brought in between 12 noon and 14.30. The audience can vote for their preferred sticks until 14.30. The stick with the most votes will win, and the dog who brought in the winning stick will be awarded at 14.45. All exhibition participants will receive an exhibition diploma with their name on it and a small treat.</p><p><b>12 noon–15.00 Dog croquis</b><br>Join a dog croquis workshop to draw the doggy companions of the day! The croquis workshop is a live model drawing workshop where you can draw quick sketches of the animal models. Bring in your own dog as a model or draw one of the many dogs at the event! The workshop is instructed by art teacher Oona Ala-Honkola.</p><p><b>At 12.30 and 14.00 Musical canine freestyle performances</b><br>What is canine freestyle? Learn more about this fascinating sport from the long-time canine freestyle enthusiasts and the head judges of the sport, Nadja Böckerman and Marjaana Lohivirta, and their dogs. The performances offer demonstrations, information about the sport and even some easy training tips that will get you started in the sport with your own dog.</p><p><b>13.00–14.00 Successful and joyful cooperation with your dog</b><br>Trainer Anni Kuittinen from Dog School Masseter talks about dog-oriented training and building cooperation with one’s own dog, answering questions such as how to use different rewards when training a dog. The lecture also features a demonstration or a video on exercises that you could do with your dog to keep it calm in a public place.</p><p><b>14.00–15.00 Dog behaviour and training – towards mutual understanding</b><br>The lecture by trainer Katja Etelävirta from Koirakoulu Ilo dog school focuses on how to understand the non-verbal language of dogs, on support skills for smooth day-to-day life and how to use positive reinforcement in dog training. What does it mean, for example, when a dog wants more distance or space?</p><p>The event will also feature poetry about dogs and for dogs performed by Cultural Centre Stoa’s reciters. Doggy visitors will also get to enjoy a scent and trick track!</p><p>Participation in this event should be on the dog’s terms. Please only come by with a dog that enjoys busy environments and crowds of strange people and dogs.</p><p>The Itäkeskus Library will also feature a doggy programme during the week of the National Dog Day. <u><a href=\"https://helmet.finna.fi/FeedContent/LinkedEvents?id=helsinki:agk2ivt57e\">View the library events here.</a></u></p><p>Language: Finnish</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65082/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65485", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 161842, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-21T13:14:58.633234Z", "last_modified_time": "2025-01-21T13:14:58.633249Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759231.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/161842/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-21T13:14:58.606651Z", "last_modified_time": "2025-04-22T13:13:21.258104Z", "date_published": null, "start_time": "2025-04-24T15: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5346723331557A73F06B4444E350CA89/Yleison_suosikit_Myrskyluodon_Maija_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5346723331557A73F06B4444E350CA89/Yleison_suosikit_Myrskyluodon_Maija_12_", "en": "http://www.malmitalo.fi/en/events/event/5346723331557A73F06B4444E350CA89/Yleison_suosikit_Myrskyluodon_Maija_12_" }, "short_description": { "fi": "Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.", "sv": "Stormskärs Maja är en berättelse om vilja, kraft och kärlek.", "en": "Stormskerry Maja is a story of will, strength and love." }, "name": { "fi": "Yleisön suosikit: Myrskyluodon Maija (12)", "sv": "Yleisön suosikit: Myrskyluodon Maija (12)", "en": "Yleisön suosikit: Myrskyluodon Maija (12)" }, "provider": null, "description": { "fi": "<p>Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.</p><p>Elokuva on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella. Elokuva perustuu Anni Blomqvistin Myrskyluoto-kirjasarjaan ja sijoittuu 1800-luvun Suomen rannikkoseudulle. Nuori 17-vuotias Maija avioituu vasten tahtoaan kalastajamies Jannen kanssa. Hänen elämänsä Myrskyluodolla on täynnä haasteita ja vastoinkäymisiä: kalastajan vaimona hän joutuu selviytymään miehensä pitkistä poissaoloista merellä ja huolehtimaan perheestään yksin.</p><p>Maijasta on kuitenkin kasvanut lujatahtoinen ja itsenäinen nainen, joka ei pelkää tarttua toimeen karussa saaristossa. Maijalla ja Jannella on vahva yhteys, sekä ajan myötä syventynyt rakkaus. Janne tukee vaimonsa pyrkimyksiä ja ymmärtää, että perheen vahvuus syntyy yhteisistä ponnisteluista.</p><p>Yleisön suosikit on Kino Helioksen uusi elokuvasarja, jossa nähdään Kino Helioksen aikaisempien kausien yleisömenestyselokuvia ilmaisnäytöksinä.</p><p>Kesto 163 min<br>Ikäraja 12<br>Kieli: ruotsi, englanti<br>Tekstitys: suomi <br>Vapaa pääsy!</p>", "sv": "<p>Stormskärs Maja är en berättelse om vilja, kraft och kärlek.</p><p>Stormskärs Maja är en rörande historia om en stark kvinna och de utmaningar hon möter på en stormig ö. Filmen är baserad på</p><p>Anni Blomqvists Stormskäret-bokserie och utspelar sig i kusttrakterna i 1800-talets Finland. Maja som är cirka 17 år gammal gifter sig mot sin vilja med fiskaren Janne. Hennes liv på Stormskäret är fullt av utmaningar och motgångar: som fiskarhustru är hon tvungen att klara av sin mans långa frånvaron på havet och ta hand om sin familj ensam.</p><p>Maja har dock vuxit till en självständig kvinna med stark vilja, som inte är rädd att ta itu med saker och ting i den karga skärgården. Maja och Janne har en stark kontakt och med tiden en djupare kärlek till varandra. Janne stöder sin hustrus strävanden och förstår att familjens styrka uppstår ur gemensamt bemödande.</p><p>Premiär: 19.01.2024</p><p>Manus och regi: Tiina Lymi</p><p>Åldersgräns: F 12<br>Längd: 2 h 45 min.<br>Språk: svenska<br>Textning: finska</p>", "en": "<p>Stormskerry Maja is a story of will, strength and love.</p><p>Stormskerry Maja is the touching story of a strong woman and the challenges she faces on a stormy island. The film is based on Anni Blomqvist’s Stormskerry book series and is set in coastal Finland in the 19th century. Against her will, the young 17-year-old Maja marries Janne, a fisherman. Her life on Stormskerry is full of challenges and adversity: as a fisherman’s wife, she has to cope with her husband’s long absences away at sea and look after her family on her own.</p><p>But Maja has grown into a strong-willed, independent woman who is not afraid to face the challenges of the rugged archipelago. Maja and Janne have a strong connection and a love that has deepened over time. Janne supports his wife’s efforts and understands that the strength of a family comes from joint efforts.</p><p>Premiere: 19 January 2024</p><p>Screenplay and direction: Tiina Lymi<br>Age limit: 12+<br>Duration: 2 hours 45 min<br>Language: Swedish<br>Subtitles: Finnish</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65485/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23b47q", "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/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b53m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490132, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-22T10:37:50.147627Z", "last_modified_time": "2025-04-22T10:37:50.147644Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/9ce152c9-0c7b-40d0-970b-f69437beeec0.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Lukukoira Kossi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490132/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-04-22T10:37:59.509920Z", "last_modified_time": "2025-04-22T10:37:59.509937Z", "date_published": null, "start_time": "2025-06-16T15:00:00Z", "end_time": "2025-06-16T16: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, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider_contact_info": null, "info_url": null, "short_description": { "fi": "Tervetuloa tapaamaan lukukoira Kossia Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Kossi i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Kossi in Sello Library's children's section." }, "name": { "fi": " Lukukoira Kossi", "sv": "Läshund Kossi", "en": " Reading dog Kossi" }, "provider": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Kossia Sellon lastenmaahan. Jos haluat harjoitella lukemista, Kossi kuuntelee mielellään eikä koskaan hauku tai arvostele. Kossi pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p><p><br></p><p>Kossi paikalla:</p><p>Ma 28.4. Klo 18 eteenpäin</p><p>Ma 26.5. Klo 18 eteenpäin</p><p>Ma 16.6. Klo 18 eteenpäin</p>", "sv": "<p>Välkommen att träffa läshunden Kossi i Sellos barnland. Vill du träna på att läsa lyssnar Kossi gärna och skäller eller kritiserar aldrig. Kossi gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Kossi in Sello's children's section. If you want to practice reading, Kossi is happy to listen and never barks or criticizes. Kossi likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b47q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23b5nq", "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/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b53m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490132, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-22T10:37:50.147627Z", "last_modified_time": "2025-04-22T10:37:50.147644Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/9ce152c9-0c7b-40d0-970b-f69437beeec0.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Lukukoira Kossi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490132/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-04-22T10:37:59.368054Z", "last_modified_time": "2025-04-22T10:37:59.368076Z", "date_published": null, "start_time": "2025-05-26T15:00:00Z", "end_time": "2025-05-26T16: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, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider_contact_info": null, "info_url": null, "short_description": { "fi": "Tervetuloa tapaamaan lukukoira Kossia Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Kossi i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Kossi in Sello Library's children's section." }, "name": { "fi": " Lukukoira Kossi", "sv": "Läshund Kossi", "en": " Reading dog Kossi" }, "provider": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Kossia Sellon lastenmaahan. Jos haluat harjoitella lukemista, Kossi kuuntelee mielellään eikä koskaan hauku tai arvostele. Kossi pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p><p><br></p><p>Kossi paikalla:</p><p>Ma 28.4. Klo 18 eteenpäin</p><p>Ma 26.5. Klo 18 eteenpäin</p><p>Ma 16.6. Klo 18 eteenpäin</p>", "sv": "<p>Välkommen att träffa läshunden Kossi i Sellos barnland. Vill du träna på att läsa lyssnar Kossi gärna och skäller eller kritiserar aldrig. Kossi gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Kossi in Sello's children's section. If you want to practice reading, Kossi is happy to listen and never barks or criticizes. Kossi likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b5nq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23b53m", "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/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b47q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b5nq/?format=api" } ], "images": [ { "id": 1490132, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-22T10:37:50.147627Z", "last_modified_time": "2025-04-22T10:37:50.147644Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/9ce152c9-0c7b-40d0-970b-f69437beeec0.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Lukukoira Kossi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490132/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-04-22T10:37:58.520782Z", "last_modified_time": "2025-04-22T10:37:58.520800Z", "date_published": null, "start_time": "2025-04-28T15:00:00Z", "end_time": "2025-06-16T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider_contact_info": null, "info_url": null, "short_description": { "fi": "Tervetuloa tapaamaan lukukoira Kossia Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Kossi i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Kossi in Sello Library's children's section." }, "name": { "fi": " Lukukoira Kossi", "sv": "Läshund Kossi", "en": " Reading dog Kossi" }, "provider": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Kossia Sellon lastenmaahan. Jos haluat harjoitella lukemista, Kossi kuuntelee mielellään eikä koskaan hauku tai arvostele. Kossi pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p><p><br></p><p>Kossi paikalla:</p><p>Ma 28.4. Klo 18 eteenpäin</p><p>Ma 26.5. Klo 18 eteenpäin</p><p>Ma 16.6. Klo 18 eteenpäin</p>", "sv": "<p>Välkommen att träffa läshunden Kossi i Sellos barnland. Vill du träna på att läsa lyssnar Kossi gärna och skäller eller kritiserar aldrig. Kossi gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Kossi in Sello's children's section. If you want to practice reading, Kossi is happy to listen and never barks or criticizes. Kossi likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b53m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23b6jy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ddci/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-04-19T09:02:39.745016Z", "last_modified_time": "2025-04-22T10:23:10.259578Z", "date_published": null, "start_time": "2025-05-17T10:00:00Z", "end_time": "2025-05-17T13: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, "location_extra_info": { "fi": "Jaminurkka", "en": "Jaminurkka" }, "provider_contact_info": null, "info_url": null, "short_description": { "fi": "Lasten pukudisko", "en": "Children's costume disco" }, "name": { "fi": "Lasten Fantastinen Disko Sellon kirjastossa", "en": "Fantastic Disco for Children in Sello Library" }, "provider": null, "description": { "fi": "<p>Lasten pukudisko</p><p>Maagisen viikon päätösbileet lapsille. Kaikki noidat, yksisarviset ja muut taianomaiset olennot ovat tervetulleita!</p><p>Disko on maksuton ja ikärajaton. Pukeuduthan teemanmukaisesti, eli prinsessamekot ylle, velhonhatut päähän, hobittinvarpaat jalkaan ja mukaan juhlimaan!</p>", "en": "<p>Children's costume disco</p><p>The final party of the magical week for children. All witches, unicorns and other magical creatures are welcome!</p><p>The disco is free of charge and there is no age limit. So dress up in the theme - princess dresses, wizard hats, hobbit toes and join the party!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23b6jy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66049", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 589169, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-22T07:13:16.372623Z", "last_modified_time": "2025-04-22T07:13:16.372641Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770622.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/589169/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-22T07:13:16.263919Z", "last_modified_time": "2025-04-22T07:13:16.468725Z", "date_published": null, "start_time": "2025-04-24", "end_time": "2025-05-17", "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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/82DC7ED6F7F5AAD33E50ABB1B9FBECFB/Becky_Doris_Absurdistan_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/82DC7ED6F7F5AAD33E50ABB1B9FBECFB/Becky_Doris_Absurdistan_", "en": "http://www.malmitalo.fi/en/events/event/82DC7ED6F7F5AAD33E50ABB1B9FBECFB/Becky_Doris_Absurdistan_" }, "short_description": { "fi": "Kuvataiteilijoiden Merja Hujon ja Suvi Laine-Karstenin installaatiokokonaisuus, joka rakentuu maalauksista, piirustuksista ja esinekoosteista.", "en": "Visual artists Merja Hujo ja Suvi Laine-Karsten have set up an installation ensemble for Malmitalo Gallery that consists of paintings, drawings, assemblage art and a collection of objects." }, "name": { "fi": "Becky & Doris, \"Absurdistan\" – Merja Hujo ja Suvi Laine-Karsten", "sv": "Becky & Doris, \"Absurdistan\" – Merja Hujo och Suvi Laine-Karsten", "en": "Becky & Doris, \"Absurdistan\" – Merja Hujo and Suvi Laine-Karsten" }, "provider": null, "description": { "fi": "<p>Kuvataiteilijoiden Merja Hujon ja Suvi Laine-Karstenin installaatiokokonaisuus, joka rakentuu maalauksista, piirustuksista ja esinekoosteista.</p><p>Näyttelyn avajaiset keskiviikkona 23.4. klo 17–19. Tervetuloa!</p><p>Installaatiokokonaisuus on kahden taiteilijan yhdessä rakentama absurdi maailma, jossa paikoilleen jähmettyneet hahmot Becky ja Doris havainnoivat ympäröivää todellisuutta. Kokijoina Becky ja Doris ovat luoneet järjettömiltä tuntuvien maailmantapahtumien vastapainoksi kuvitteellisen todellisuuden, jossa vaikeatkin kokemukset on siiretty näennäisen kepeästi hullunkurisiin ja absurdeihinkin muotoihin.</p><p>Kukat, oudot hahmot, piirustusten omaperäiset kuviot ilmentävät todellisuutta helpommin lähestyttävässä, mutta silti ydinkokemuksen merkityksen säilyttävässsä olomuodossa. Teoskokonaisuudessa taiteilijat käsittelevät ihmisyksilön avuttomuutta inhimillistä kärsimystä tuottavien (maailman)tapahtumien edessä.</p><p><b>Merja Hujo</b> on taidemaalari, joka on aina utelias ja innokas löytämään uusia tekotapoja. Hän on erityisesti viime vuosina työstänyt kokonaisuuksia myös muilla tekniikoilla, kuten esim. piirtämällä. Hujon taiteessa on ominaista intensiteetti ja kokonaistunnelma. Aiheet teoksiin syntyvät usein havannoimalla ympäristöä, maailmaa ja ihmisen osaa siinä. Havainnot muotoutuvat usein teoksiksi, joihin sisäinen silmä luo uusia merkityksiä. Hän kutsuu taiteentekemistään seikkailuksi, joka ei pääty koskaan ja heittäytyy rohkeasti toteuttamaan ideoita, joista innostuu. Hujo on pitkän linjan puurtaja, joka on kymmenien yksityisnäyttelyiden lisäksi osallistunut yhteisnäyttelyihin myös ulkomailla. Hän on myös toiminut maalauksen ja kuvataiteen opettajana osa-aikaisesti sekä keikkalaisena vuosina 2001-2020.</p><p><b>Suvi Laine-Karsten</b> on helsinkiläinen kuvataiteilija, jonka taiteellinen ilmaisu on ensisijaisesti kuvataiteissa. Maalauksissaan Suvi suosii öljy-tai akryylivärejä, mutta työskentelee mielellään myös sekatekniikkaa käyttäen. Työskentelytapa on ekspressiivinen, prosessille antautuva tekeminen. Maalatessaan Suvi seuraa väriä, viivaa, muotoa, häivähtävää mielikuvaa, aavistusta ja antaa niiden johdatella sinne. Lopullinen tulos on useimmiten yllätys taiteilijallekin, joka kuitenkin työskentelee teostensa parissa myös erittäin määrätietoisesti. Maalauksissa korostuvat ihmisyyden ja tasa-arvon teemat. Suville taide on yhteyden luomista sisäisten mielikuvien ja ulkoisen todellisuuden välille: teokset ja intuition ohjaaman työskentelyprosessin tuotokset ovat peilipintoja, joihin hän heijastaa mielensä tulkintoja ulkoisen todellisuuden ilmiöistä.</p><p>Vapaa pääsy!</p>", "en": "<p>Visual artists Merja Hujo ja Suvi Laine-Karsten have set up an installation ensemble for Malmitalo Gallery that consists of paintings, drawings, assemblage art and a collection of objects.</p><p>Exhibition opening on Wednesday, April 23rd, from 5 to 7 PM. Welcome!</p><p>They have created an installation that presents an absurd world where imaginary beings Becky and Doris, standing frozen still, observe and experience the surrounding reality. They make their own world reality as a counterbalance to seemingly absurd world events. Even the most difficult experiences have been transformed into a bizarre and absurd form. Flowers, weird figures, the original patterns of drawing embody the state that easily evokes but preserves the meaning of the experience of a human being facing the helplessness and suffering (in front of today's world events).</p><p><b>Merja Hujo</b> is a painter who is always curious and eager to discover new methods of creation. In recent years, she has also been using a variety of techniques, such as drawing. Her art is characterised by intensity and an overall emotional atmosphere. The themes for her work often arise from observing the environment, the world, and humanity’s role within it. These observations are transformed into artworks in which the inner eye creates new meanings. She describes her artistic process as an adventure that never ends, and she throws herself into ideas that excite her with bold enthusiasm. Hujo is a long-standing, dedicated artist who, in addition to holding dozens of solo exhibitions, has also taken part in group exhibitions abroad. From 2001 to 2020, she also worked part-time and on a freelance basis as a teacher of painting and visual arts.</p><p><b>Suvi Laine-Karsten</b> is a visual artist based in Helsinki, whose artistic expression is primarily focused on the visual arts. In her paintings, Suvi favours oil or acrylic paints, though she also enjoys working with mixed media. Her approach is expressive and intuitive, fully immersed in the creative process. While painting, Suvi follows colour, line, form, fleeting images, and subtle impressions, allowing them to guide her. The result is often a surprise even to the artist herself – though she also works with a clear sense of direction. Her work highlights themes of humanity and equality. For Suvi, art is about creating a connection between inner imagery and external reality. Her artworks, shaped by an intuitive process, act as reflective surfaces onto which she projects interpretations of the phenomena of the external world.</p><p>Free admission!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66049/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64873", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?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/kulke:732/?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: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: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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 201667, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-07T13:14:32.933827Z", "last_modified_time": "2025-02-07T13:14:32.933871Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760601.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/201667/?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-02-07T13:14:32.890752Z", "last_modified_time": "2025-04-17T13:14:33.040892Z", "date_published": null, "start_time": "2025-04-30T13:00:00Z", "end_time": "2025-04-30T16: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, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4FD6674A91EDD24E112EF798AA591945/AnnanHouse-disko_Villina_vareista", "sv": "http://www.annantalo.fi/sv/evenemang/event/4FD6674A91EDD24E112EF798AA591945/AnnanHouse-disco_Vild_av_farger", "en": "http://www.annantalo.fi/en/events/event/4FD6674A91EDD24E112EF798AA591945/AnnanHouse-disco_Wild_with_colours" }, "short_description": { "fi": "Tule viettämään vappua tanssilattialle! Suuren suosion saavuttanut AnnanHouse -diskotapahtuma valtaa jälleen Annantalon.", "sv": "Kom med och fira valborgsmässoafton på dansgolvet! Det populära discoevenemanget AnnanHouse tar än en gång över Annegården.", "en": "Come and celebrate May Day on the dance floor! The wildly popular AnnanHouse disco event is taking over Annantalo once again." }, "name": { "fi": "AnnanHouse-disko: Villinä väreistä – Koko perheen yhteinen diskotapahtuma", "sv": "AnnanHouse-disco: Vild av färger – Disco för hela familjen", "en": "AnnanHouse-disco: Wild with colours – Disco event for the entire family" }, "provider": null, "description": { "fi": "<p>Tule viettämään vappua tanssilattialle! Suuren suosion saavuttanut AnnanHouse -diskotapahtuma valtaa jälleen Annantalon.</p><p>Vapputunnelman kunniaksi diskon teemana on villinä väreistä! Pukeudu smaragdinvihreään, neonviolettiin, vivahteikkaaseen turkoosiin tai vaikka kaikkiin sateenkaaren väreihin! Voit myös piipahtaa Annantalon pukulainaamossa lainaamassa itsellesi värikkäät diskovaatteet. <br> <br>AnnanHouse on koko perheen elektronisen tanssimusiikin erikoistapahtuma, joka tutustuttaa kävijät diskokulttuurin maailmaan. Musiikista vastaa Annantalon oma dj Nicolas Sebastien, joka tarjoilee huippumusiikkia housesta discoon. Diskoillan aikana voit myös hypätä tanssituokioihin, piipahtaa avoimissa teemaan sopivissa taidetyöpajoissa ja osallistua näyttelyopastukselle. <br> <br><b>Aikataulu</b> <br>klo 16.00 <b> Pukulainaamo SÄVY </b> aukeaa ja työpajat käynnistyvät. <br>klo 16.30 Diskon ovet aukeavat. <br>klo 16.45 ja klo 18 Fiona Fiouh’n (lausutaan Fiuun) tanssituokiot ja kotkottava vieras tanssilattialla <br>Klo 17.30 Koko perheen näyttelyopastus, mukana robotti B-Ö <br>klo 19.00 Diskon ovet sulkeutuvat ja työpajat päättyvät <br>Heti diskoillan päätteeksi Annantalon etupihalla nähdään <b> Vaeltavat Kuhilaat </b> – Mimosa Palen värikkäät performanssiveistokset. Nämä kuhisevat ja vappuhuiskaa muistuttavat hahmot ovat lähteneet maaseudulta kaupunkiin ja hurmaantuneet kaupungin vilskeestä. Kuuntele kuhinaa ja ihaile Kuhilaiden vapputanssia! <br> <br>Vapaa pääsy, ei ennakkoilmoittautumista. <br> <br>Annantalon oma kahvila Puffy Mini Pancakes palvelee koko tapahtuman ajan! <br> <br><b> Työpajat klo 16–19: </b> <br>Viimeiset osallistujat otetaan sisään työpajoihin klo 18.45. <br> <br><b> Bilekauluripaja </b> <br>Vappumeininkiin pääsee pukeutumalla itse tehtyyn ja uniikkiin bilekauluriin! Valmistamme monenlaisista materiaaleista värikkäitä, heiluvia, kimmeltäviä tai ihan övereitä bilekaulureita kaulaa koristamaan. Työpajan ohjaavat Annantalon taidekasvattajat.</p><p><b> Kimaltavat kasvoglitterit </b> <br>Tule hakemaan vappuusi kimallusta! Pyydä itsellesi värikäs ja säihkyvä glittermeikki tai kimmeltävä glittertatuointi. Kimalluksen kasvoillesi loihtii glitterpalvelu Glitternistit. Kaikki säihke syntyy ekoglitterillä.</p><p><b> Värikkäät tarinamajat </b> <br>Tule sukeltamaan omaan värikkääseen soppeen eli leppoisaan tarinamajaan! Pysähdytään yhdessä tarinoiden äärelle, kuunnellaan, kerrotaan ja jutellaan mukavia. Katsellaan kauniita kuvia ja lorukortteja. Tarinamaja tarjoaa lapsille ja aikuisille leppoisan hetken keskelle vappuvilskettä. Työpajan suunnittelee ja toteuttaa Runoropinoita eli Ulla-Maija Vanhala.</p><p><b> Paperi kukkii! </b> <br>Mitä olisi vappu ilman värikkäitä vappukukkia? Työpajassa pääset tekemään oman lempikukkasi paperista. Sopiiko vappuasuusi villi voikukka, pirteä pioni vai hauska hyasintti? Tai haluaisitko kenties luoda aivan oman ihmeellisen kukkalajisi? Työpajan ohjaavat Annantalon taidekasvattajat.</p><p><b> Ylösalaisin maisema </b> <br>Tule rentoutumaan ja makoilemaan maisemaan, jossa kaikki on vähän kummallista: maa on taivas ja taivaalla onkin värikäs ja kesäinen kukkaniitty. Loikoillessasi saat kuunnella kärpästen surinaa tai lintujen liverrystä. Voit myös liikkua pilvien lomassa kuin perhonen tai korento. Installaation toteuttavat Annantalon taidekasvattajat.</p><p><b>Klovni Häpätä ja ilmapalloystävät!</b> <br>Kirahvi, kissa vai kenties yksisarvinen? Tule kertomaan toiveesi, niin Klovni Häpätä taikoo sinulle ilmapallosta juuri sen värikkään eläimen, josta haaveilet!</p><p>Työpajat ohjataan pääosin suomeksi ja englanniksi, mutta kaikki ovat tervetulleita kielestä ja kielitaidosta riippumatta.</p><p>Diskossa käytetään teatterisavua ja vilkkuvia valoja.</p><p>Tervetuloa tanssimaan ja nauttimaan värien loisteesta!</p>", "sv": "<p>Kom med och fira valborgsmässoafton på dansgolvet! Det populära discoevenemanget AnnanHouse tar än en gång över Annegården.</p><p>För att skapa valborgsstämning är discots tema Vild av färger! Klä dig i smaragdgrönt, neonlila, subtil turkos eller varför inte alla regnbågens färger! Du kan också besöka Annegårdens garderob för att låna färggranna discokläder.</p><p>Annanhouse är ett specialevenemang med elektronisk dansmusik för hela familjen, där man får prova på discokulturens värld. För musiken står Annegårdens egen dj Nicolas Sebastien, som bjuder på allt från house till disco. Under discokvällen kan du också delta i dansstunder, besöka öppna konstworkshoppar och delta i en guidad tur på utställningen.</p><p><b>Tidtabell</b><br>kl. 16.00 Garderoben SÄVY öppnar och workshopparna drar igång.<br>kl. 16.30 Discot öppnar sina dörrar.<br>kl. 16.45 och kl. 18 Dans med Fiona Fiouh och en kacklande gäst på dansgolvet<br>kl. 17.30 Utställningsguidning för hela familjen med roboten B-Ö<br>kl. 19.00 Discot stänger och workshopparna avslutas<br>Direkt efter discot kan man på Annegårdens gård se Vaeltavat Kuhilaat – Mimosa Pales färggranna performansskulpturer. Dessa tisslande och tasslande figurer, som påminner om majvippor, har begett sig från landsbygden till staden och förtrollats av stadens fart och fläkt. Lyssna och beundra Kuhilaats valborgsdans!</p><p>Fritt inträde, ingen förhandsanmälan.</p><p>Annegårdens eget kafé Puffy Mini Pancakes betjänar under hela evenemanget!</p><p><b>Workshoppar kl. 16–19:</b><br>De sista deltagarna tas emot till workshopparna kl. 18.45.</p><p><b>Workshop för partykragar</b><br>Till valborg passar det att klä upp sig i en unik, egenhändigt gjord partykrage! Vi skapar färgglada, svajande, glittrande eller helt överdådiga partykragar av många olika material. Workshoppen leds av Annegårdens konstpedagoger.</p><p><b>Ansiktsglitter</b><br>Gör din valborg lite glittrigare! Här kan du få färggrant glittersmink eller en skimrande glittertatuering. Glittertjänsten Glitternistit får ditt ansikte att glimra. Allt glitter som används är ekoglitter.</p><p><b>Färgglada sagostugor</b><br>Dyk in i ett färgglatt krypin, den roliga sagostugan! Vi stannar upp tillsammans inför berättelserna, lyssnar, berättar och pratar. Vi tittar på fina bilder och kort med ramsor. Sagostugan erbjuder barn och vuxna en vilsam stund mitt i valborgsvimlet. Workshoppen planeras och ordnas av Runoropinoita, det vill säga Ulla-Maija Vanhala.</p><p><b>Pappret blommar!</b><br>Vad vore valborgsmässoafton utan färgglada blommor? I den här workshoppen får du göra dina favoritblommor av papper. Passar en vild maskros, en pigg pion eller en rolig hyacint till din klädsel? Eller kanske vill du skapa en helt egen fantasiblomma? Workshoppen leds av Annegårdens konstpedagoger.</p><p><b>Ett uppochnervänt landskap</b><br>Kom för att vila och koppla av i ett landskap där allting är lite märkligt: marken är en himmel och på himlen finns en färggrann och somrig blomsteräng. Du får ligga och lyssna på insekters surr eller fåglars sång. Du kan också röra dig bland molnen som en fjäril eller slända. Installationen ordnas av Annegårdens konstpedagoger.</p><p><b>Clownen Häpätä och ballongkompisarna</b><br>En giraff, en katt – eller kanske en enhörning? Kom och berätta din önskan, så trollar Clownen Häpätä fram just det färgglada ballongdjuret du drömmer om!</p><p>Workshopparna leds huvudsakligen på finska och engelska, men alla är välkomna oberoende av språk och språkkunskaper.</p><p>På discot kommer det att förekomma teaterrök och starka ljus.</p><p>Välkommen att dansa och njuta av färgprakten!</p>", "en": "<p>Come and celebrate May Day on the dance floor! The wildly popular AnnanHouse disco event is taking over Annantalo once again.</p><p>To celebrate May Day, the disco has a colourful theme! Dress is emerald green, neon purple, vibrant turquoise or all the colours of the rainbow! You can also pop by the Annantalo wardrobe and borrow some colourful disco garb.</p><p>AnnanHouse is an electronic dance music event for the entire family, which introduces visitors to the wonderful world of disco culture. Annantalo’s own DJ Nicolas Sebastien is in charge of the music, spinning top records from house to disco. During the night, you can join dance sessions, pop by open art workshops in the theme of the event and take guided tours of the exhibition.</p><p><b>Schedule</b><br>16.00 Pukulainaamo SÄVY for borrowing outfits is opened and workshops start.<br>16.30 The doors to the disco are opened.<br>16.45 and 18 Dance sessions with Fiona Fiouh (pronounced Feou) and a clucking guest<br>17.30 Guided tour of the exhibition for the entire family with robot B-Ö<br>19.00 The disco closes and workshops end<br>To close off the evening of disco, you can watch the colourful Wandering Shocks performance statues by Mimosa Pale on the Annantalo front yard. These wandering characters, resembling May Day whisks, have come to the city from the countryside and have fallen in love with the hustle and bustle. Listen to their murmur and marvel at their May Day dance!</p><p>Free entry, no advance registration.</p><p>Annantalo’s own café, Puffy Mini Pancakes, serves visitors throughout the event!</p><p><b>Workshops 16–19:</b><br>Last entry to the workshops is at 18.45.</p><p><b>Party collar workshop</b><br>You can get in the spirit for May Day by donning a self-made and unique party collar! We will be using various materials to make colourful, wobbly, glittery and simply exuberant collars to decorate our necks. The workshop will be hosted by Annantalo art educators.</p><p>Sparkly face glitter<br>Add some sparkle to your May Day! Ask for colourful and sparkly glitter make-up or a glistening glitter tattoo. Glitter service Glitternistit will be making the sparkly magic happen. All of the glitter used is eco-friendly.</p><p><b>Colourful story huts</b><br>Come along and dive into your own colourful nook, i.e. a relaxing story hut! Let’s slow down for a minute and read, tell and listen to stories, and have a chat. Let’s look at beautiful pictures and cards with poems. The story hut offers children and adults a relaxing moment in the middle of May Day celebrations. The workshop will be designed and realised by Runoropinoita, i.e. Ulla-Maija Vanhala.</p><p><b>Paper in bloom!</b><br>What would May Day celebrations be without colourful May Day flowers? In the workshop, you have the opportunity to make your own favourite flower out of paper. Would you like to decorate your May Day outfit with a dashing dandelion, peppy peony or hilarious hyacinth? Or would you rather create your own wonderful flower? The workshop will be hosted by Annantalo art educators.</p><p><b>Upside down landscape</b><br>Come and relax and lie down in a landscape where everything is a little curious: the ground is the sky and the sky is a colourful field of flowers. As you relax, you can listen to the buzzing of flies or birdsong. You can also move among the clouds like a butterfly or dragonfly. The installation will be hosted by Annantalo art educators.</p><p><b>Clown Häpätä and the Balloon Buddies</b><br>A giraffe, a cat – or maybe a unicorn? Come share your wish, and Clown Häpätä will twist you the colorful balloon animal of your dreams!</p><p>Workshops will be mainly held in Finnish and English, but everyone is welcome regardless of the language they speak.</p><p>The disco will feature theatrical smoke and bright lights.</p><p>Come along and dance and enjoy the colours!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64873/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agld35s3gy", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:57353/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agg4atvbo4/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u480400", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agld36a6dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agld36a7hy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agld35sr6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agld35su7e/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-04-16T09:37:57.569075Z", "last_modified_time": "2025-04-16T09:39:53.911391Z", "date_published": null, "start_time": "2025-04-19T06:00:00Z", "end_time": "2025-05-05T08:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": 4, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "" }, "provider_contact_info": null, "info_url": { "fi": "" }, "short_description": { "fi": "jaaha, mites tälle käy" }, "name": { "fi": "kolmas alatapahtuma testi" }, "provider": { "fi": "" }, "description": { "fi": "<p>Jos tämäkin olisi vappuna niin sitten </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agld35s3gy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agld36a7hy", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:57353/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agld35s3gy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-04-16T09:39:53.290810Z", "last_modified_time": "2025-04-16T09:39:53.290828Z", "date_published": null, "start_time": "2025-04-26T06:00:00Z", "end_time": "2025-04-26T08:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 4, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "" }, "provider_contact_info": null, "info_url": { "fi": "" }, "short_description": { "fi": "jaaha, mites tälle käy" }, "name": { "fi": "kolmas alatapahtuma testi" }, "provider": { "fi": "" }, "description": { "fi": "<p>Jos tämäkin olisi vappuna niin sitten </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agld36a7hy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agld36a6dq", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:57353/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agld35s3gy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-04-16T09:39:53.000036Z", "last_modified_time": "2025-04-16T09:39:53.000070Z", "date_published": null, "start_time": "2025-04-19T06:00:00Z", "end_time": "2025-04-19T08:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 4, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "" }, "provider_contact_info": null, "info_url": { "fi": "" }, "short_description": { "fi": "jaaha, mites tälle käy" }, "name": { "fi": "kolmas alatapahtuma testi" }, "provider": { "fi": "" }, "description": { "fi": "<p>Jos tämäkin olisi vappuna niin sitten </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agld36a6dq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agld35su7e", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:57353/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agld35s3gy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-04-16T09:37:55.974910Z", "last_modified_time": "2025-04-16T09:39:52.332010Z", "date_published": null, "start_time": "2025-05-05T06:00:00Z", "end_time": "2025-05-05T08:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 4, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "" }, "provider_contact_info": null, "info_url": { "fi": "" }, "short_description": { "fi": "jaaha, mites tälle käy" }, "name": { "fi": "kolmas alatapahtuma testi" }, "provider": { "fi": "" }, "description": { "fi": "<p>Jos tämäkin olisi vappuna niin sitten </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agld35su7e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agld35sr6u", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:57353/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agld35s3gy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-04-16T09:37:55.251572Z", "last_modified_time": "2025-04-16T09:39:51.930023Z", "date_published": null, "start_time": "2025-04-21T06:00:00Z", "end_time": "2025-04-21T08:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 4, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "" }, "provider_contact_info": null, "info_url": { "fi": "" }, "short_description": { "fi": "jaaha, mites tälle käy" }, "name": { "fi": "kolmas alatapahtuma testi" }, "provider": { "fi": "" }, "description": { "fi": "<p>Jos tämäkin olisi vappuna niin sitten </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agld35sr6u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }