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&hide_recurring_children=true&page=49
{ "meta": { "count": 22792, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=50", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=48" }, "data": [ { "id": "jiiri:6ae14b44-203e-f111-88b4-70a8a57af1be", "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/yso:p1947/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0a26df6b-128c-47a6-8137-e0b24c745ae4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=KATTO_Kattotapahtuma_alitapahtumat3466869280" }, "description": null, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" } ], "created_time": "2026-04-22T07:58:43.898495Z", "last_modified_time": "2026-04-22T07:58:43.898510Z", "date_published": "2026-04-22T07:53:03Z", "start_time": "2026-04-23T05:00:00Z", "end_time": "2026-04-24T05: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": 10, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "ALI 1 Kattotapahtuma + alitapahtumat" }, "location_extra_info": null, "provider": { "fi": "Tapahtuman järjestäjä" }, "short_description": { "fi": "lyhyt kuvaus" }, "info_url": null, "description": { "fi": "<div><p>Pitkä kuvaus</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6ae14b44-203e-f111-88b4-70a8a57af1be/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:0a26df6b-128c-47a6-8137-e0b24c745ae4", "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/yso:p1947/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=KATTO_Kattotapahtuma_alitapahtumat346686928" }, "description": null, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6ae14b44-203e-f111-88b4-70a8a57af1be/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:31738848-203e-f111-88b4-7ced8d4a0702/?format=api" } ], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" } ], "created_time": "2026-04-22T07:58:04.912274Z", "last_modified_time": "2026-04-22T07:58:04.912291Z", "date_published": "2026-04-22T07:52:51Z", "start_time": "2026-04-23T05:00:00Z", "end_time": "2026-04-24T05:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 10, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "KATTO Kattotapahtuma + alitapahtumat" }, "location_extra_info": null, "provider": { "fi": "Tapahtuman järjestäjä" }, "short_description": { "fi": "lyhyt kuvaus" }, "info_url": null, "description": { "fi": "<div><p>Pitkä kuvaus</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0a26df6b-128c-47a6-8137-e0b24c745ae4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3isyvua", "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/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824223, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-22T07:46:42.686218Z", "last_modified_time": "2026-04-22T07:46:57.996074Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0e89abe4-6887-4c1c-a350-eabd4e4d6451.png", "name": "", "cropping": "295,0,1705,1410", "photographer_name": "", "alt_text": "Vaaleansinisellä pohjalla värikkäitä viirejä, kirja, sekä tekstit: \"Satuhetki\" ja \"Lastenkulttuurin juhlaviikko\"", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824223/?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": "2026-04-22T07:56:06.355656Z", "last_modified_time": "2026-04-22T07:56:06.355672Z", "date_published": null, "start_time": "2026-05-20T15:00:00Z", "end_time": "2026-05-20T21:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Satumainen satuhetki" }, "location_extra_info": { "fi": "Stage" }, "provider": null, "short_description": { "fi": "Satuhetki Stagella" }, "info_url": null, "description": { "fi": "<p>Yhtenä päivänä viidakkoon ilmestyy herkullisen näköinen eksoottinen hedelmä, jota kaikki norsut haluavat maistaa. Mutta miten hedelmän saisi alas puusta? </p><p>Tule kuulemaan satua yhteistyön riemukkaasta voimasta Ison Omenan kirjaston Stagelle 20.5. klo 18. Satuhetki sopii kaikenikäisille, satu luetaan suomeksi. </p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3isyvua/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:a1e0b923-0b3e-f111-88b4-7ced8d4a0198", "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/yso:p1235/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:61e3343f-4613-4d4e-90d6-88fc65659661/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Kattotapahtuman_ja_alitapahtumien_julkaisu_Linked_Eventsiin2045592081" }, "description": null, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1824220, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-22T07:47:37.455730Z", "last_modified_time": "2026-04-22T07:47:37.455751Z", "url": "https://assets-eur.mkt.dynamics.com/f61dce5f-f37b-ef11-ac1e-000d3a69df77/digitalassets/images/d902d635-da99-f011-b4cc-0022489f36bc", "name": "Helsinki-tunnus", "cropping": "", "photographer_name": "Helsingin kaupunki", "alt_text": "Helsinki-tunnus", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824220/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" } ], "created_time": "2026-04-22T07:47:30.290316Z", "last_modified_time": "2026-04-22T07:47:38.719195Z", "date_published": "2026-04-22T05:21:46Z", "start_time": "2026-04-23T06:00:00Z", "end_time": "2026-04-23T07: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": 100, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kattotapahtuman ja alitapahtumien julkaisu Linked Eventsiin - Alitapahtuma 2" }, "location_extra_info": { "fi": "Annansali" }, "provider": { "fi": "Helsingin kaupunki" }, "short_description": { "fi": "Lyhyt kuvaus" }, "info_url": null, "description": { "fi": "<div><p>Tapahtuman kuvaus</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a1e0b923-0b3e-f111-88b4-7ced8d4a0198/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:61e3343f-4613-4d4e-90d6-88fc65659661", "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/yso:p1235/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Kattotapahtuman_ja_alitapahtumien_julkaisu_Linked_Eventsiin204559208" }, "description": null, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a1e0b923-0b3e-f111-88b4-7ced8d4a0198/?format=api" } ], "images": [ { "id": 1824218, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-22T07:46:43.196409Z", "last_modified_time": "2026-04-22T07:46:43.196455Z", "url": "https://assets-eur.mkt.dynamics.com/f61dce5f-f37b-ef11-ac1e-000d3a69df77/digitalassets/images/d902d635-da99-f011-b4cc-0022489f36bc", "name": "Helsinki-tunnus", "cropping": "", "photographer_name": "Helsingin kaupunki", "alt_text": "Helsinki-tunnus", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824218/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" } ], "created_time": "2026-04-22T07:46:45.385012Z", "last_modified_time": "2026-04-22T07:46:45.385036Z", "date_published": "2026-04-22T05:21:23Z", "start_time": "2026-04-23T05:00:00Z", "end_time": "2026-04-23T07:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 100, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kattotapahtuman ja alitapahtumien julkaisu Linked Eventsiin" }, "location_extra_info": { "fi": "Annansali" }, "provider": { "fi": "Helsingin kaupunki" }, "short_description": { "fi": "Lyhyt kuvaus" }, "info_url": null, "description": { "fi": "<div><p>Tapahtuman kuvaus</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:61e3343f-4613-4d4e-90d6-88fc65659661/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3bjhexm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?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:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824217, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-21T14:38:01.401296Z", "last_modified_time": "2026-04-21T14:38:01.401401Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/637a7b87-95ed-428e-9c01-2ae9840b5b29.jpg", "name": "Memories around coffee", "cropping": "329,0,1916,1587", "photographer_name": "Zeynep Sahin-Avci", "alt_text": "Kahvipöytä, jolla erilaisia elementtejä. Herkkuja, kahvikuppeja ja lintuja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824217/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-21T14:44:04.542543Z", "last_modified_time": "2026-04-21T14:44:04.542560Z", "date_published": "2016-04-21T14:55:00Z", "start_time": "2026-05-17T08:30:00Z", "end_time": "2026-05-30T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Muistoja kahvin ympäriltä", "sv": "Minnen kring kaffe", "en": "Memories around coffee" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki rummet", "en": "Salonki room" }, "provider": null, "short_description": { "fi": "Huomasin kaipaavani kahvihetkiä perheeni ja läheisten ystävieni kanssa muutettuani kauas heistä. Maalasin, kunnes palaset loksahtivat paikoilleen orgaanisesti.", "sv": "Det började när jag märkte att jag saknade kaffestunder med familj och vänner efter att ha flyttat långt ifrån. Jag målade tills bitarna föll samman organiskt.", "en": "It began when I found myself missing coffee moments with family and close friends after moving far away. I painted until the pieces came together organically." }, "info_url": null, "description": { "fi": "<p>Olen työskennellyt tämän taidenäyttelyn parissa lähes vuoden. Se alkoi, kun huomasin kaipaavani kahvihetkiä perheeni ja läheisten ystävieni kanssa muutettuani kauas heistä. Maalasin yhden teoksen ja sitten tunsin, että voisin tehdä paremmin. Niinpä maalasin yhä uudelleen ja uudelleen, kunnes palaset loksahtivat paikoilleen orgaanisesti.</p>", "sv": "<p>Jag har arbetat med den här konstutställningen i nästan ett år. Det började när jag märkte att jag saknade kaffestunder med min familj och nära vänner efter att ha flyttat långt ifrån dem. Jag målade en komposition och kände sedan att jag kunde göra bättre. Så jag målade om och om igen, tills bitarna föll samman organiskt.</p>", "en": "<p>I have been working on this art exhibition for almost a year. It began when I found myself missing coffee moments with my family and close friends after moving far away from them. I painted one composition, then felt I could do better. So I painted again and again, until the pieces came together organically.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3bjhexm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3a3s2oq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:61461/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?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: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: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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824216, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-21T13:14:02.079943Z", "last_modified_time": "2026-04-21T13:14:02.079960Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/a923b739-6a1b-49d2-b020-c34774c83ba3.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "kuvassa muusikot Lauri Iljin ja Tiina Tuuri", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824216/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-21T13:32:18.980234Z", "last_modified_time": "2026-04-21T13:32:18.980251Z", "date_published": null, "start_time": "2026-05-04T15:00:00Z", "end_time": "2026-05-04T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Juhlat Kalajärven kirjastolla! ", "sv": "Fest på Kalajärvi biblioteket! ", "en": "Party at the Kalajärvi Library! " }, "location_extra_info": null, "provider": { "fi": "kirjasto", "sv": "biblioteket", "en": "library" }, "short_description": { "fi": "Tervetuloa juhlimaan kevättä ja omaa kirjastoa!", "sv": "Välkommen att fira våren och vårt bibliotek!", "en": "Welcome to celebrate spring and your library!" }, "info_url": null, "description": { "fi": "Juhlat kirjastolla!<p><strong>Ma 4.5. klo 18 | Kalajärven kirjasto</strong></p><p>Tervetuloa juhlimaan kevättä ja omaa kirjastoa!</p><p>Ohjelmassa:</p><p>• Kirjastossa toteutettavan uudistuksen julkistus</p><p>• Katse Espooseen -runokilpailun näyttelyn avaus</p><p>• Musiikkia: Duo Tiina ja Lauri</p><p>Tarjoilua 60 ensimmäiselle!</p><p><br></p><p><strong>Muusikot Tiina Tuuri ja Lauri Iljin esiintyvät! </strong>Duo Tiina ja Lauri<strong> </strong>on tunnelmallinen ja monipuolinen duo, jonka musiikissa yhdistyy tulkinta, herkkyys ja läsnäolo. Duo tuo musiikillaan Kalajärven kirjastoon tunnelman, joka jää jokaisen kuulijan mieleen.</p><p><br></p><p>Tervetuloa, tapahtuman järjestää kirjasto!</p>", "sv": "Fest på biblioteket!<p><strong>Mån 4 maj kl. 18 | Kalajärvi-biblioteket</strong></p><p><br></p><p>Välkommen att fira våren och vårt bibliotek!</p><p>På programmet:</p><p>• Presentation av bibliotekets kommande renovering</p><p>• Invigning av utställningen från poesitävlingen ”Katse Espooseen”</p><p>• Musik: Duo Tiina och Lauri</p><p><br></p><p>Förfriskningar till de 60 första!</p><p><strong>Musikerna Tiina Tuuri och Lauri Iljin uppträder! </strong>Duo Tiina och Lauri är en stämningsfull och mångsidig duo vars musik förenar tolkning, känslighet och närvaro. Med sin musik skapar duon en stämning i Kalajärvi-biblioteket som kommer att stanna kvar i minnet hos alla åhörare. </p><p>Välkommen, evenemanget arrangeras av biblioteket! </p>", "en": "Party at the library!<p><strong>Mon, May 4 at 6:00 p.m. | Kalajärvi Library</strong></p><p><br></p><p>Come celebrate spring and your library!</p><p>Program:</p><p>• Announcement of the library’s renovation</p><p>• Opening of the “Looking Toward Espoo” poetry contest exhibition</p><p>• Music: Duo Tiina and Lauri</p><p><br></p><p>Refreshments for the first 60 guests!</p><p><br></p><p><strong>Musicians Tiina Tuuri and Lauri Iljin will perform</strong>! Duo Tiina and Lauri is an atmospheric and versatile duo whose music combines interpretation, sensitivity, and presence. With their music, the duo brings an atmosphere to the Kalajärvi Library that will stay with every listener. </p><p><br></p><p>Welcome! This event is organized by the library! </p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3a3s2oq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3a3s3gu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?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: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: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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824216, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-21T13:14:02.079943Z", "last_modified_time": "2026-04-21T13:14:02.079960Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/a923b739-6a1b-49d2-b020-c34774c83ba3.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "kuvassa muusikot Lauri Iljin ja Tiina Tuuri", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824216/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-21T13:22:52.290179Z", "last_modified_time": "2026-04-21T13:22:52.290196Z", "date_published": null, "start_time": "2026-05-04T15:00:00Z", "end_time": "2026-05-04T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Juhlat Kalajärven kirjastolla! ", "sv": "Fest på Kalajärvi biblioteket! ", "en": "Party at the Kalajärvi Library! " }, "location_extra_info": null, "provider": { "fi": "kirjasto", "sv": "biblioteket", "en": "library" }, "short_description": { "fi": "Tervetuloa juhlimaan kevättä ja omaa kirjastoa!", "sv": "Välkommen att fira våren och vårt bibliotek!", "en": "Welcome to celebrate spring and your library!" }, "info_url": null, "description": { "fi": "Juhlat kirjastolla!<p><strong>Ma 4.5. klo 18 | Kalajärven kirjasto</strong></p><p>Tervetuloa juhlimaan kevättä ja omaa kirjastoa!</p><p>Ohjelmassa:</p><p>• Kirjastossa toteutettavan uudistuksen julkistus</p><p>• Katse Espooseen -runokilpailun näyttelyn avaus</p><p>• Musiikkia: Duo Tiina ja Lauri</p><p>Tarjoilua 60 ensimmäiselle!</p><p><br></p><p><strong>Muusikot Tiina Tuuri ja Lauri Iljin esiintyvät! </strong>Duo Tiina ja Lauri<strong> </strong>on tunnelmallinen ja monipuolinen duo, jonka musiikissa yhdistyy tulkinta, herkkyys ja läsnäolo. Duo tuo musiikillaan Kalajärven kirjastoon tunnelman, joka jää jokaisen kuulijan mieleen. </p><p><br></p><p>Tervetuloa, tapahtuman järjestää kirjasto! </p>", "sv": "Fest på biblioteket!<p><strong>Mån 4 maj kl. 18 | Kalajärvi-biblioteket</strong></p><p><br></p><p>Välkommen att fira våren och vårt bibliotek!</p><p>På programmet:</p><p>• Presentation av bibliotekets kommande renovering</p><p>• Invigning av utställningen från poesitävlingen ”Katse Espooseen”</p><p>• Musik: Duo Tiina och Lauri</p><p><br></p><p>Förfriskningar till de 60 första!</p><p><strong>Musikerna Tiina Tuuri och Lauri Iljin uppträder! </strong>Duo Tiina och Lauri är en stämningsfull och mångsidig duo vars musik förenar tolkning, känslighet och närvaro. Med sin musik skapar duon en stämning i Kalajärvi-biblioteket som kommer att stanna kvar i minnet hos alla åhörare. </p><p>Välkommen, evenemanget arrangeras av biblioteket! </p>", "en": "Party at the library!<p><strong>Mon, May 4 at 6:00 p.m. | Kalajärvi Library</strong></p><p><br></p><p>Come celebrate spring and your library!</p><p>Program:</p><p>• Announcement of the library’s renovation</p><p>• Opening of the “Looking Toward Espoo” poetry contest exhibition</p><p>• Music: Duo Tiina and Lauri</p><p><br></p><p>Refreshments for the first 60 guests!</p><p><br></p><p><strong>Musicians Tiina Tuuri and Lauri Iljin will perform</strong>! Duo Tiina and Lauri is an atmospheric and versatile duo whose music combines interpretation, sensitivity, and presence. With their music, the duo brings an atmosphere to the Kalajärvi Library that will stay with every listener. </p><p><br></p><p>Welcome! This event is organized by the library! </p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3a3s3gu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago3ans6xq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:27538/?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/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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824215, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-05-22T13:32:39.433497Z", "last_modified_time": "2024-05-22T13:32:39.433529Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Uke_Park_Jam02.jpg", "name": "", "cropping": "0,18,850,868", "photographer_name": "", "alt_text": "Ukulele puistojamit", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824215/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-21T12:54:53.058391Z", "last_modified_time": "2026-04-21T12:54:53.058407Z", "date_published": "2026-04-21T12:44:14.407000Z", "start_time": "2026-06-08T14:00:00Z", "end_time": "2026-06-08T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ukulele puistojamit ", "en": "Ukulele Park Jam " }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Soitetaan ja lauletaan kesäisiä lauluja Silkkiniityn puistossa, Tapiolassa ", "en": "Let's begin the summer by playing and singing summer songs together in Silkkiniitty Park, Tapiola." }, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan soittamaan kesäisiä lauluja ukulelella, tai kitaralla tai vain laulamaan Silkkiniityn puistoon, Tapiolaan. Tuokaa viltti istumista varten ja oma nuottiteline jos haluatte sitä käyttää. Nuotteja voi pitää myös viltin päällä. Nuotit annetaan jamien aikana. Vetäjinä musiikkipedagogit Sakari Heikka ja Lauri Iljin.</p><p>Sateisen sään sattuessa jamit pidetään Tapiolan kirjastossa. Mahdollisesta muutoksesta ilmoitetaan tässä ilmoituksessa tapahtumapäivänä klo 13. </p><p>#ukulele #ukulelejamit #kesä</p>", "en": "<p>Welcome to play summer songs on the ukulele or just sing together in Silkkiniitty Park, Tapiola. Bring a blanket to sit on and your own music stand if you want to use it. Sheet music can also be kept on top of a blanket. Led by music pedagogues Sakari Heikka and Lauri Iljin.</p><p>In case of rainy weather, the event will be held in Tapiola Library. The possible change will be announced here at 1 pm on the event day. </p><p>#ukulele #ukulelejam #summer</p><p><br></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3ans6xq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68139", "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:734/?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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494933, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-24T09:13:07.094548Z", "last_modified_time": "2026-02-24T09:13:07.094567Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785764.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494933/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-02-24T09:13:06.984251Z", "last_modified_time": "2026-04-21T12:13:50.507748Z", "date_published": null, "start_time": "2026-05-19T11:00:00Z", "end_time": "2026-05-19T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kaikki kiertää Kanneltalossa – Pukeutumisen ja taiteen kiertotaloustapahtuma", "sv": "Allt cirkulerar på Gamlasgården – Evenemang för cirkulär ekonomi inom klädsel och konst", "en": "Everything Circulates at Kanneltalo – Circular economy event on clothing and art" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kaikki kiertää -kiertotaloustapahtuma tarjoaa tänäkin keväänä kaupunkilaisille vinkkejä arjen kestävistä valinnoista. Tänä vuonna tapahtuman pääteemoja ovat pukeutuminen ja taide.", "sv": "Evenemanget för cirkulär ekonomi Allt cirkulerar ger även denna vår tips till stadsborna om hållbara val i vardagen. I år är huvudtemana för evenemanget klädsel och konst.", "en": "Once again, the Everything Circulates circular economy event will provide Helsinki residents with tips on how to make sustainable choices in their everyday life. The main themes of this year’s event are clothing and art." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2044C7506A56FC313EE841241C37BCC3/Kaikki_kiertaa_Kanneltalossa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2044C7506A56FC313EE841241C37BCC3/Allt_cirkulerar_pa_Gamlasgarden_", "en": "http://www.kanneltalo.fi/en/events/event/2044C7506A56FC313EE841241C37BCC3/Everything_Circulates_at_Kanneltalo_" }, "description": { "fi": "<p>Kaikki kiertää -kiertotaloustapahtuma tarjoaa tänäkin keväänä kaupunkilaisille vinkkejä arjen kestävistä valinnoista. Tänä vuonna tapahtuman pääteemoja ovat pukeutuminen ja taide.</p><p>Kaikki kiertää -tapahtuma järjestetään tänä vuonna Kanneltalossa 19. toukokuuta kello 14–19. Tapahtumassa kaupungin kiertotaloustoimijat ja yhteistyökumppanit esittäytyvät ja tarjoavat työpajoja ja muuta tekemistä sekä tietoa kestävään arkeen. <br> <br>Tapahtumassa voi osallistua muun muassa kestävän arjen ajatuspajaan sekä Kiertotalouslupaukset-painopajaan, jossa lupauksia painetaan Uusix-verstaan kierrätysmateriaaleista valmistettuihin kasseihin. Ohjausta kirjomalla korjaamiseen sekä kansallispuvun korjaamiseen ja uudistamiseen on niin ikään tarjolla. <br> <br>Ohjelmassa on myös luento ekologisesta pukeutumisesta, kestävän arjen tietoiskuja sekä monikielistä materiaalia aiheesta, kiertotalousmuotinäytös sekä Eliökuntalaisten manifesti -ääniteos. <br> <br>Tapahtumassa on vaatteiden vaihtopiste sekä Uusixin kierrätysmateriaaleista valmistamien tuotteiden myyntipiste. <br> <br>Kisatunnelmaan Kanneltalossa pääsee pelaamalla kakkakorista eli viemärietikettipeliä, jossa heitellään jätteitä ja jätöksiä kierrätyksen mukaisiin oikeisiin astioihin. <br> <br>Tapahtuman musiikista vastaavat D-aseman DJ:t.</p><p>Vapaa pääsy!</p><p>Aikataulu:<br>Kanneltalon edusta / Sitratori (sateen sattuessa Kanneltalon sisätiloissa) <br>Klo 14–17 <br>Kestävän arjen ajatuspaja: Tässä ajatuspajassa pohditaan erilaisia arjen valintoja rennolla otteella, mutta tositarkoituksella. <br>Klo 14–19 <br>Osallistava toimintapiste, jossa murretaan kierrätykseen ja kestävään kulutukseen liittyviä myyttejä | Mun aika -hanke (Partio, Martat, Kierrätyskeskus) <br>Klo 14–17 <br>Stara Kierrätyskeskus esittelee toimintaansa | Stara Kierrätyskeskus <br>Klo 14–19 <br>D-aseman DJ:t esiintyvät: Alueen asukkaista koostuva pienryhmä on opetellut DJ-toimintaa D-asemalla ja vastaavat tapahtuman musiikista. | D-asema Kannelmäki</p><p>Kanneltalon aula<br>Klo 14–19 <br>Työtoiminnan kierrätysmateriaaleista valmistamien tuotteiden myyntipiste | Uusix-verstaat <br>Klo 14–19 <br>Kestävän arjen infopiste ja kohtaamispaikka: Monikielistä materiaalia tarjolla | Helsingin kaupunki <br>Klo 14–19 <br>Anni Kytömäen sanoittama ja Anniina Liuksen kuvittama Eliökuntalaisten manifesti -ääniteos <br>Klo 14–19 <br>Palvelukartan kiertotalouspalvelut esittelyssä | Helsingin kaupunki</p><p>Galleria <br>Klo 14–19 <br>Korjaa kauniiksi kirjoen | Työväenopisto <br>Klo 14–19 <br>Kansallispuvut elämään – kysy, korjaa ja uudista | Työväenopisto <br>Klo 14–19 <br>Lajitteluinfopiste ja Kakkakoris-peli. Jaossa biojätepusseja, Nökön puuhakirjoja, Ei mainoksia -tarroja, jäteautotarroja yms. | HSY</p><p>Nuorisotalo<br>Klo 14–17<br>Kiertotalouslupaukset-painopaja: Painamme kestävän arjen ajatuspajassa tehtyjä lupauksia Uusix-verstaan kierrätysmateriaaleista valmistettuihin kasseihin. Painatus käynnissä niin kauan kuin kasseja riittää. <br>Klo 14–19 <br>Vaatteiden vaihtopiste: Tuo itselle turhia, mutta ehjiä, puhtaita, hyväkuntoisia vaatteita ja vie mennessäsi uusia löytöjä. Otathan vain omaan käyttöösi!</p><p>Monitoimitila Tempo, kirjasto <br>Klo 17–19<br>Siementen kylvöä Nuorten Tiistaissa | Kirjasto</p><p>Kahvilan stage <br>Klo 14.15 ja 15.15 <br>Kestävän arjen tietoiskut: Nappaa itsellesi vinkit kestävään arkeen! <br>Sustainability Talk: Tips for Everyday Life! | Helsingin kaupunki</p><p>Kannelsali <br>Klo 14.30 ja 15.30 <br>Opiskelijoiden kiertotalousmuotinäytös ja asunäyttely | Stadin AO <br>Klo 18 <br>Luento ekologisesta pukeutumisesta (15 min) ja korjattujen kansallispukujen näytös | Työväenopisto</p>", "sv": "<p>Evenemanget för cirkulär ekonomi Allt cirkulerar ger även denna vår tips till stadsborna om hållbara val i vardagen. I år är huvudtemana för evenemanget klädsel och konst.</p><p>Allt cirkulerar ordnas i år på Gamlasgården den 19 maj kl. 14–19. Under evenemanget berättar stadens aktörer inom cirkulär ekonomi och deras samarbetspartner om sin verksamhet och bjuder på verkstäder och andra aktiviteter samt information om en hållbar vardag. <br> <br>Under evenemanget kan man bland annat delta i en tankesmedja för en hållbar vardag och en tryckverkstad med löften om cirkulär ekonomi, där man trycker löften på kassar av återvunnet material som tillverkats på Uusix-verkstaden. Det blir också handledning om hur man reparerar med hjälp av broderi samt reparerar och förnyar folkdräkter.</p><p>På programmet finns också en föreläsning om hur man klär sig ekologiskt, informationsinslag om en hållbar vardag och material om ämnet på olika språk, en modevisning på temat cirkulär ekonomi och ljudverket Eliökuntalaisten manifesti. <br> <br>På evenemanget finns möjlighet till klädbyte och försäljning av produkter av återvunnet material från Uusix. <br> <br>Den som är tävlingssugen kan spela bajsbasket, ett spel om avloppsetikett där man ska kasta avfall i rätt kärl för återvinning. <br> <br>DJ:s från D-asema ansvarar för musiken under evenemanget. <br>Fritt inträde!</p>", "en": "<p>Once again, the Everything Circulates circular economy event will provide Helsinki residents with tips on how to make sustainable choices in their everyday life. The main themes of this year’s event are clothing and art.</p><p>The Everything Circulates event will be held at Kanneltalo on 19 May from 14.00 to 19.00. At the event, the City’s circular economy operators and partners will present themselves, host workshops and other activities and share information about sustainable everyday life. <br> <br>You can participate in activities such as a workshop on sustainable everyday life and a ‘Circular Economy Promises’ print workshop, where attendees will print promises on bags made from recycled materials at the Uusix workshop. Attendees will also be provided with guidance on how to repair clothing with embroidery, and how to repair and spruce up a national costume. <br> <br>The programme also features a lecture on ecological clothing, info sessions and multilingual materials on sustainable everyday life, a circular economy fashion show and an audio work entitled A Manifesto for the Living World. <br> <br>The event will feature a clothing exchange point and a sales point providing products made from recycled materials by Uusix. <br> <br>You can get into the game-day spirit at Kanneltalo with a game of poop basketball – a game on sewer etiquette where participants toss a range of waste and droppings into their correct recycling containers. <br> <br>Music will be provided by DJs from the local D-station. <br>Free entry!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68139/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago27sc7ya", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?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: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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago27sc6wy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago27sc7nm/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-21T11:07:54.104232Z", "last_modified_time": "2026-04-21T11:07:54.104247Z", "date_published": null, "start_time": "2026-05-24T10:00:00Z", "end_time": "2026-05-24T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "International School of Music-koulun opiskelijoiden konsertit", "en": "International School of Music Finland Student Concerts" }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa kuuntelemaan International School of Music-koulun opiskelijoiden konsertteja su 24.4. klo 13 & 14:30", "en": "Welcome to listen to the International School of Music Finland's student concerts on sunday 24. at 13 & 14:30 o clock!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa International School of Music Finlandin oppilaiden lukukaudenpäätös konsertteihin. Eri-ikäiset ja eri tasoiset oppilaat esittävät kappaleita, joita he ovat oppineet lukuvuoden aikana. Konsertit ovat ilmaisia ja avoimia kaikille!</p><p><strong>Milloin: sunnuntaina 24. toukokuuta klo 13.00 ja 14.30.</strong></p>", "en": "<p>Welcome to the end-of-semester concerts for students from the International School of Music Finland. Students of various ages and levels will perform pieces they have learned during the school year. The concerts are free and open to everyone!</p><p><strong>When: Sunday, May 24 at 13.00 & 14.30.</strong></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago27sc7ya/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhs4y4", "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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824114, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-12T11:22:58.709794Z", "last_modified_time": "2026-04-12T11:22:58.709809Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3277bb1d-7c77-4312-9d20-31d6bdc78241.jpg", "name": "", "cropping": "0,0,452,451", "photographer_name": "", "alt_text": "Kuvassa Svetlana Ruoho ja hänen taidettaan.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-12T11:27:37.905733Z", "last_modified_time": "2026-04-21T10:53:18.658874Z", "date_published": null, "start_time": "2026-05-12T10:00:00Z", "end_time": "2026-05-12T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Luento - Muna vai muotokuva?" }, "location_extra_info": { "fi": "Lava" }, "provider": { "fi": "Espoon Taiteilijakilta ry" }, "short_description": { "fi": "Tervetuloa kuuntelemaan ja piirtämään." }, "info_url": null, "description": { "fi": "<p>Kuvataiteilija Svetlana Ruoho luennoi piirtämisestä suomen kielellä. Tervetuloa!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs4y4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68167", "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: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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1585531, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-10T07:13:06.281663Z", "last_modified_time": "2026-03-10T07:13:06.281678Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785952.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1585531/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-10T07:13:06.106706Z", "last_modified_time": "2026-04-21T09:13:10.498235Z", "date_published": null, "start_time": "2026-04-29T16:00:00Z", "end_time": "2026-04-29T18: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, "name": { "fi": "Tanssin päivän klubikonsertti ja tanssijamit", "sv": "Tanssin päivän klubikonsertti ja tanssijamit", "en": "Tanssin päivän klubikonsertti ja tanssijamit" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kanneltalossa vietetään Tanssin päivää ja vappuetkoja klubikonsertin ja jamitanssien merkeissä muusikko Anne-Mari Kivimäen ja vieraiden johdattamana. Maksuton klubi on kaikille avoin. Tule suoraan jamittelemaan ja tanssimaan tai nauti ensin klo 18 alkava Gallinago gallinago - taivaanvuohi tanssiesitys Kannelsalissa ja jää kanssamme viettämään Tanssin päivää ja vappuetkoja Kanneltalon kahvilan stagelle." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8A15A97D128AFC664B34E11C0680FE67/Tanssin_paivan_klubikonsertti_ja_tanssijamit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8A15A97D128AFC664B34E11C0680FE67/Tanssin_paivan_klubikonsertti_ja_tanssijamit", "en": "http://www.kanneltalo.fi/en/events/event/8A15A97D128AFC664B34E11C0680FE67/Tanssin_paivan_klubikonsertti_ja_tanssijamit" }, "description": { "fi": "<p>Kanneltalossa vietetään Tanssin päivää ja vappuetkoja klubikonsertin ja jamitanssien merkeissä muusikko Anne-Mari Kivimäen ja vieraiden johdattamana. Maksuton klubi on kaikille avoin. Tule suoraan jamittelemaan ja tanssimaan tai nauti ensin klo 18 alkava Gallinago gallinago - taivaanvuohi tanssiesitys Kannelsalissa ja jää kanssamme viettämään Tanssin päivää ja vappuetkoja Kanneltalon kahvilan stagelle.</p><p>Tohtorin tilalle tohtori! <br>Musiikin tohtori Emilia Lajusen tilalla klubilla vieraileekin tohtori, muusikko Anne-Mari Kivimäki kaverinaan joku näistä: Filemon Pönkkä, Piru, Boris, Daria Smura tai Lemi&Impi H. Saas nähdä kutka näistä! Mukana myös yllätysvieraita. Ja jalalla voi laittaa koreasti koko illan. Luvassa myös levynosto mahdollisuus by Puhti & Suistamon Sähkö!</p><p>Puhti duon Reetta-Kaisa Iles ja Anne-Mari Kivimäki kuuluvat Tamperelaiseen Folkextreme yhteisöön, jonka alla tanssittavat kansaa myös Suistamon Sähkö yhtyeen riveissä.</p><p>www.folkextreme.fi</p><p>https://www.annemarikivimaki.fi/fi/</p><p><b>Aikataulu </b><br>Klo 18:00-19.00 Gallinago gallinago - Taivaanvuohi tanssiesitys ja konsertti (pääsylipullinen)</p><p>Klo 19 Levytanssit <br>klo 19.30 - 21.30 Laulujamit ja jamitanssit</p><p><b<Illan sisällöstä:</b></p><p>Jos et soita mitään niin ei hätää! Näissä tansseissa pääsee myös laulamaan, kun legendaariset Struts Barin jamiveturit ovat myös paikalla! <br> <br>Laulujamit on suosittu osallistavan kansanlaulun tapahtuma, jota kansanlaulaja Laura Reunanen järjestää kerran kuussa Struts Barissa Helsingissä. Strutsissa laulujameja on järjestetty säännöllisesti marraskuusta 2023 alkaen. Tapahtumasta on tullut tärkeä kohtaamispaikka niin paikalliselle kansanmusiikkikentälle kuin queer-yhteisöllekin. Nykyään jamit ovat tulvillaan uusia poliittisesti kipakoita kappaleita, spontaaneja uudelleensanoituksia, arkistolöytöjä, rekilaulu-uutisia, queer-balladeja, arkkiveisumaratoneja, poskitanssia, kirjavinkkejä ja yhteisöllistä sumffaritirallaa.</p><p>Laulujamien periaate on, ettei osallistuminen vaadi aiempaa tietoa tai kokemusta kansanlauluista eikä lauluääntä. Jamit toimivat kuulonvaraisesti esilauluperiaatteella: Yksi johtaa laulua ja muut liittyvät mukaan kertauksiin, lauluvihkoja ei käytetä. Usein säkeistöt lauletaan useampaan kertaan ja kinkkisempiä melodioita avitetaan myös vaikkapa viittomalla. Laulujen kontekstualisoinnilla ja jutustelulla on myös suuri rooli jameissa: Kyseessä ei ole esitys, vaan elävän suullisen perinteen jakamisprosessi jota toteutetaan yhdessä laulamalla ja keskustelemalla.</p><p>Instagram: @laulujamit <br>Facebook: <br>@Folkextreme <br>@suistamonsähkö <br>#Folkextreme</p><p>Viralliset jatkot 21.30 jälkeen @kannelkrouvi!</p><p>Keskiviikon 29.4. Gallinago gallinago -esityksen jälkeen jatkoklubi Kanneltalon kahvilan stagella klo 19 alkaen.</p><p>Reetta-Kaisa Iles I Ville Rauhala I Janne Teivainen: Gallingo gallinago<br>Ensi-ilta Kanneltalossa 24.4. klo 18. Muut esitykset: la 25.4. klo 15, ti 28.4. klo 18 ja ke 29.4. klo 18.<br>Kesto 1 h<br>Liput: 20 / 15 €</p><p>Paikka: Kanneltalon kahvilan stage<br>Maksuton ja kaikille avoin</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68167/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhs6me", "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: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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p8743/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824118, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-11T10:01:11.254230Z", "last_modified_time": "2026-04-11T10:01:11.254244Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c1eba286-bc4f-49d9-b2c2-5b4fad562b9b.jpg", "name": "", "cropping": "322,0,1908,1587", "photographer_name": "", "alt_text": "Lähinnä tekstiä - tapahtuman tiedot löytyvät samanlaisena tekstistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824118/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-11T11:34:04.292148Z", "last_modified_time": "2026-04-21T07:23:45.531051Z", "date_published": null, "start_time": "2026-04-22T14:00:00Z", "end_time": "2026-04-22T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "PERUTTUAsukasilta", "sv": " CANCELLED Invånarkväll", "en": "CANCELLEDResidents’ evening " }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": null, "short_description": { "fi": "Keskustelua hyvinvoinnista", "sv": "Samtal om välmående.", "en": "Discussion about wellbeing." }, "info_url": null, "description": { "fi": "<p>Miten Espoo edistä asukkaiden hyvinvointia?</p><p>Espoon hyvinvointipäällikkö kertoo uudesta hyvinvointisuunnitelmasta.</p>", "sv": "<p>How does Espoo promote the wellbeing of its residents?</p><p>Espoo’s Head of Wellbeing will present the new wellbeing plan.</p>", "en": "<p>How does Espoo promote the wellbeing of its residents?</p><p>Espoo’s Head of Wellbeing will present the new wellbeing plan.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs6me/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67912", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-21049136/", "sv": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-21049136/", "en": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-21049136/" }, "description": null, "price": { "fi": "10€", "sv": "10€", "en": "10€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494333, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-30T11:13:43.580361Z", "last_modified_time": "2025-12-30T11:13:43.580379Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780508.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494333/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-30T11:13:43.435969Z", "last_modified_time": "2026-04-21T07:13:08.655875Z", "date_published": null, "start_time": "2026-04-21T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "HopeaCiné: Isänpäivä – Näytös & tekijävierailu", "sv": "HopeaCiné: Fars dag – Visning och filmskaparbesök", "en": "HopeaCiné: Isänpäivä – Film screening & author visit" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Cinema Orionista lähtöisin olevat HopeaCine-elokuvanäytökset jatkavat tänä keväänä Malmitaloon ja Vuotaloon! Tekijävieraana tuottaja Miia Haavisto", "sv": "HopeaCine-visningarna, som började på Cinema Orion, fortsätter under våren på Malms kulturhus och Nordhuset!", "en": "Originating from Cinema Orion, HopeaCiné film screenings will continue this spring in Malmitalo and Vuotalo! Guest: producer Miia Haavisto" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/574BE720EF9FB8B75E200EB58BB492BB/HopeaCin_Isanpaiva", "sv": "http://www.vuotalo.fi/sv/evenemang/event/574BE720EF9FB8B75E200EB58BB492BB/HopeaCin_Fars_dag", "en": "http://www.vuotalo.fi/en/events/event/574BE720EF9FB8B75E200EB58BB492BB/HopeaCin_Isanpaiva" }, "description": { "fi": "<p>Cinema Orionista lähtöisin olevat HopeaCine-elokuvanäytökset jatkavat tänä keväänä Malmitaloon ja Vuotaloon! Tekijävieraana tuottaja Miia Haavisto</p><p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa. Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi.</p><p>Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.</p><p>Elokuvassa Veikko (Tommi Korpela) auttaa ystäväänsä Tinkeä (Tomi Lindfors) selviämään arjesta palveluyksikössä. Tinke on juonut terveytensä, ja elämää pitää kasassa sen nurjasta puolesta kumpuava huumori.</p><p>Kun rock-menneisyydestä tutun Saimin (Laura Birn) teini-ikäiset kaksoset (Vilja ja Varpu Rintanen) päättävät ottaa selvää isästään, etsintä johtaa heidät Tinken jäljille. Saimi aikoo estää kaksosia tapaamasta Tinkeä, mutta sotkun keskelle tempautunut Veikko on eri mieltä.</p><p>Ohjaus: Aleksi Salmenperä<br>Näyttelijät: Tommi Korpela, Tomi Lindfors, Laura Birn, Varpu Rintanen, Vilja Rintanen</p><p>Tekijävieras:tuottaja Miia Haavisto<br>Haastattelu: Päivi Istala</p><p>Kieli: suomi, tekstitykset: ruotsi</p>", "sv": "<p>HopeaCine-visningarna, som började på Cinema Orion, fortsätter under våren på Malms kulturhus och Nordhuset!</p><p>I HopeaCines program som riktar sig till seniorer visas nya inhemska filmer en gång i månaden. Till varje föreställning bjuds filmskapare eller filmexperter in som gäster, som efter föreställningen berättar om processen för att göra filmen och erbjuder nytt att tänka på för att fördjupa filmvisningen.</p><p>Isänpäivä av den mångfaldigt prisbelönta Aleksi Salmenperä (bl.a. Miehen työ, Jättiläinen, Tyhjiö) är en ärlig, tragikomisk berättelse om hur man mäter framgång i livet. I filmen hjälper Veikko (Tommi Korpela) sin vän Tinke (Tomi Lindfors) att klara av vardagen på ett servicecenter. Tinke har druckit bort sin hälsa, och livet hålls ihop av humor från dess avigsida. När de tonåriga tvillingdöttrarna (Vilja och Varpu Rintanen) till den gamla rockaren Saimi bestämmer sig för att leta efter sin pappa, leder spåren till Tinke. Saimi vill hindra tvillingarna från att träffa Tinke, men Veikko, som hamnat mitt i alltihop, är av en annan åsikt.</p><p>Regi: Aleksi Salmenperä<br>Medverkande: Tommi Korpela, Tomi Lindfors, Laura Birn, Varpu Rintanen, Vilja Rintanen</p><p>Längd: Ännu inte känt <br>Språk: finska, textning: svenska</p>", "en": "<p>Originating from Cinema Orion, HopeaCiné film screenings will continue this spring in Malmitalo and Vuotalo! Guest: producer Miia Haavisto</p><p>Designed for seniors, HopeaCiné’s programme features new Finnish films once a month. Each screening invites filmmakers or film experts as guests, who will discuss the filmmaking process and offer fresh insights to deepen the viewing experience after the film.</p><p>The film Isänpäivä (‘Father’s Day’) by multiple award-winning director Aleksi Salmenperä (e.g. A Man's Work, The Mine, Void) is an honest tragicomedy about the metrics of getting by in life. In the film, Veikko (Tommi Korpela) helps his friend Tinke (Tomi Lindfors) get by in his everyday life in a service unit. Tinke has drunk his health away, and life is being held together by humour stemming from its dark side. When the teenage twin daughters (Vilja and Varpu Rintanen) of Saimi (Laura Birn), a person from Tinke’s rocker past, decide to find out who their father is, their search leads them to him. Saimi is determined to stop the twins from meeting Tinke by any means necessary, but Veikko, caught up in the mess, disagrees with her decision.</p><p>Directed by: Aleksi Salmenperä<br>Cast: Tommi Korpela, Tomi Lindfors, Laura Birn, Varpu Rintanen, Vilja Rintanen</p><p>Duration: TBA <br>Language: Finnish, subtitles: Swedish</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67912/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago25nv62q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15309/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?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:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824209, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-21T05:12:06.351929Z", "last_modified_time": "2026-04-21T05:12:06.351944Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f55596ae-c8f5-4089-9acb-c0f97dcab1a7.jpg", "name": "Jupperin monitoitalon havainnekuva", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Jupperin Monitoimitalon havainnekuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824209/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-21T05:17:26.132169Z", "last_modified_time": "2026-04-21T05:17:26.132186Z", "date_published": null, "start_time": "2026-05-11T14:30:00Z", "end_time": "2026-05-11T15: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, "name": { "fi": "Tervetuloa kuulemaan uuden kirjaston sekä koulun yhteiskäyttötilojen esittelyä", "sv": "Välkommen till en presentation av det nya biblioteket och skolans gemensamma utrymmen. Evenemanget hålls på finska.", "en": "Welcome to a presentation on the new library and the shared facilities for the school . Event is in Finnish." }, "location_extra_info": null, "provider": { "fi": "Espoon kaupunginkirjasto", "sv": "Espoos stadsbibliotek", "en": "Espoo City Library" }, "short_description": { "fi": "Alueelle on tarkoitus avata uusi Jupperin koulu alkuvuodesta 2029, johon myös nykyinen Laaksolahden kirjaston toiminta siirtyy.", "sv": "I början av 2029 planeras en ny Jupperi- skola att öppnas i området, dit även den nuvarande Dahlsviks bibliotekets verksamhet kommer att flyttas.", "en": "A new Jupperi School is scheduled to open in the area in early 2029, to which the current operations of the Laaksolahti Library will also be relocated." }, "info_url": null, "description": { "fi": "<p>Tervetuloa kuulemaan uuden kirjaston sekä koulun yhteiskäyttötilojen esittelyä (11.5. klo 17.30-18.30.)</p><p>Alueelle on tarkoitus avata uusi Jupperin koulu alkuvuodesta 2029, johon myös nykyinen Laaksolahden kirjaston toiminta siirtyy. </p><p>Tilaisuus on suunnattu erityisesti alueen yhdistyksille ja muille asukkaille. Tilaisuus on suomenkielinen.</p>", "sv": "<p>Välkommen till en presentation av det nya biblioteket och skolans gemensamma utrymmen (11 maj kl. 17.30–18.30).</p><p>I början av 2029 planeras en ny Jupper-skola att öppnas i området, dit även den nuvarande Laaksolahti-bibliotekets verksamhet kommer att flyttas.</p><p>Evenemanget riktar sig särskilt till föreningar och övriga invånare i området. Evenemanget hålls på finska.</p>", "en": "<p>Welcome to a presentation on the new library and the shared facilities for the school (May 11, 5:30–6:30 p.m.)</p><p>A new Jupper School is scheduled to open in the area in early 2029, to which the current operations of the Laaksolahti Library will also be relocated.</p><p>The event is specifically aimed at local associations and other residents. The event will be held in Finnish.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago25nv62q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68443", "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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:31.030837Z", "last_modified_time": "2026-04-21T05:14:15.937077Z", "date_published": null, "start_time": "2026-10-19T14:00:00Z", "end_time": "2026-11-16T16: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, "name": { "fi": "Mahdollisuus lapselle ry: Väriä elämään - kirjavaa kuvista – 7–12-vuotiaat vanhemman kanssa", "sv": "Mahdollisuus lapselle ry: Väriä elämään - kirjavaa kuvista – Färg i livet – mångfald genom bilder – 7–12-åringar med en förälder", "en": "Mahdollisuus lapselle ry: Väriä elämään - kirjavaa kuvista – Color in Life – Diversity Through Art – 7–12-year-olds with a parent" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Väriä elämään – kirjavaa kuvista -kurssi tarjoaa erityistä tukea tarvitseville lapsille ja vanhemmille matalan kynnyksen yhteistä taidetyöskentelyä taideterapeuttisella otteella. Kurssilla tutkitaan materiaaleja ja ilmaisua omista vahvuuksista käsin turvallisessa ja kannustavassa ilmapiirissä.", "sv": "Kursen Färg i livet – mångfald genom bilder erbjuder barn med särskilda behov och deras föräldrar gemensamt skapande med låg tröskel och ett konstterapeutiskt förhållningssätt. Under kursen utforskas material och uttryck utifrån egna styrkor i en trygg och uppmuntrande atmosfär.", "en": "Color in Life – Diversity Through Art is an accessible art course for children with special needs and their parents, offering shared creative work with an art-therapeutic approach. During the course, participants explore materials and forms of expression through their own strengths in a safe and encouraging atmosphere." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/82C5F11FC0D865908E3F8059EAC3F029/Mahdollisuus_lapselle_ry_Varia_elamaan_-_kirjavaa_kuvista", "sv": "http://www.annantalo.fi/sv/evenemang/event/82C5F11FC0D865908E3F8059EAC3F029/Mahdollisuus_lapselle_ry_Varia_elamaan_-_kirjavaa_kuvista_Farg_i_livet_mangfald_genom_bilder", "en": "http://www.annantalo.fi/en/events/event/82C5F11FC0D865908E3F8059EAC3F029/Mahdollisuus_lapselle_ry_Varia_elamaan_-_kirjavaa_kuvista_Color_in_Life_Diversity_Through_Art" }, "description": { "fi": "<p>Väriä elämään – kirjavaa kuvista -kurssi tarjoaa erityistä tukea tarvitseville lapsille ja vanhemmille matalan kynnyksen yhteistä taidetyöskentelyä taideterapeuttisella otteella. Kurssilla tutkitaan materiaaleja ja ilmaisua omista vahvuuksista käsin turvallisessa ja kannustavassa ilmapiirissä.</p><p>Väriä elämään - kirjavaa kuvista -kurssilla erityistä tukea tarvitseva lapsi ja hänen vanhempansa pääsevät yhdessä kokeilemaan matalan kynnyksen taidetyöskentelyä. Työskentelyn lähtökohtina ovat osallistujien omat kiinnostuksen kohteet ja erityistarpeet. Lapsi ja vanhempi muodostavat työparin, joka tutustuu yhdessä erilaisiin materiaaleihin ja välineisiin ohjaajan tukemana.<br>Työparit voivat edetä rauhassa omaan tahtiinsa. Käytössä on erilaisia apuvälineitä, kuten kuvatuet, fidget-lelut ja kuulosuojaimet. Työskentelyä lähestytään moniaistisesti: yhdelle voi sopia paremmin tuntoaistiin perustuva sensorinen työskentely, toiselle taas esimerkiksi siveltimen, sienen tai erilaisten painovälineiden käyttö.</p><p>Kurssilla tutustutaan väreihin ja helppoihin tekniikoihin, kuten suolamaalaukseen, muovailuun sekä painamiseen erilaisilla hauskoilla esineillä. Lisäksi kurssilla voi valmistaa oman fidget-lelun sekä painaa oman kangaskassin kotiin vietäväksi.</p><p>Kurssi sopii erityistä tukea tarvitseville lapsille, jotka hyötyvät yksilöllisestä tuesta ja esteettömästä osallistumisesta. Taideterapeuttisessa työskentelyssä lopputulos ei ole tärkein, vaan yhteinen prosessi sekä kokemus kuulluksi ja nähdyksi tulemisesta. Jokainen on tervetullut kurssille juuri sellaisena kuin on.</p><p>Opetuskieli on suomi.<br>Vetäjänä toimii Väriä elämään -kurssien kehittäjä, taideterapeutti, kuvataideopettaja (TaM) Maarit Myllynen. Kurssin toteuttaa Mahdollisuus Lapselle ry.</p><p>Hinta: Lapsi ja vanhempi yht. 185 e. Ilmoittautuminen 9.10.2026 mennessä ilmoittautumislomakkeella. https://www.malary.fi/</p>", "sv": "<p>Kursen Färg i livet – mångfald genom bilder erbjuder barn med särskilda behov och deras föräldrar gemensamt skapande med låg tröskel och ett konstterapeutiskt förhållningssätt. Under kursen utforskas material och uttryck utifrån egna styrkor i en trygg och uppmuntrande atmosfär.</p><p>Färg i livet – mångfald genom bilder är en kurs för barn med särskilda behov och deras föräldrar, där de tillsammans får utforska skapande med låg tröskel. Arbetet utgår från deltagarnas egna intressen och individuella behov. Barnet och föräldern bildar ett arbetspar som tillsammans får bekanta sig med olika material och redskap med stöd av handledaren.</p><p>Arbetsparen får arbeta i lugn och ro i sin egen takt. Det finns olika hjälpmedel att använda, såsom bildstöd, fidgetleksaker och hörselskydd. Arbetet närmas på ett multisensoriskt sätt: för en del kan sensoriskt arbete som bygger på känselsinnet passa bäst, medan någon annan känner sig mer hemma med pensel, svamp eller olika tryckredskap.</p><p>Under kursen bekantar deltagarna sig med färger och enkla tekniker, såsom saltmålning, modellering och tryck med olika roliga föremål. Dessutom kan de göra en egen fidgetleksak och trycka en egen tygkasse att ta med hem.</p><p>Kursen passar barn med särskilda behov som har nytta av individuellt stöd och tillgängligt deltagande. I ett konstterapeutiskt arbetssätt är slutresultatet inte det viktigaste, utan den gemensamma processen och upplevelsen av att bli sedd och hörd. Alla är välkomna precis som de är.</p><p>Undervisningsspråket är finska.<br>Kursen leds av utvecklaren av kurserna Färg i livet, konstterapeuten och bildkonstläraren (KoM) Maarit Myllynen. Kursen ordnas av Mahdollisuus Lapselle rf.</p><p>Pris: Barn och förälder tillsammans 185 euro. Anmäl dig senast den 9 oktober 2026 via anmälningsformuläret. https://www.malary.fi/</p>", "en": "<p>Color in Life – Diversity Through Art is an accessible art course for children with special needs and their parents, offering shared creative work with an art-therapeutic approach. During the course, participants explore materials and forms of expression through their own strengths in a safe and encouraging atmosphere.</p><p>Color in Life – Diversity Through Art is an accessible art course for children with special needs and their parents, offering a shared creative experience in a supportive setting. The work is based on each participant’s own interests and individual support needs. The child and parent work together as a pair, exploring a variety of materials and tools with guidance from the instructor.</p><p>Each pair can move forward calmly at their own pace. A range of supportive tools is available, including visual supports, fidget toys and ear defenders. The course takes a multisensory approach: for some, sensory work based on touch may feel most natural, while others may prefer using a brush, sponge or different printing tools.</p><p>During the course, participants explore colours and easy techniques such as salt painting, modelling and printing with a variety of fun objects. They can also make their own fidget toy and print a fabric tote bag to take home.</p><p>The course is suitable for children with special needs who benefit from individual support and accessible participation. In art-therapeutic work, the final result is not what matters most; the shared process and the experience of being seen and heard are at the heart of the work. Everyone is welcome just as they are.</p><p>The language of instruction is Finnish.<br>The course is led by Maarit Myllynen, the developer of the Color in Life courses, an art therapist and art teacher (Master of Arts). The course is organised by Mahdollisuus Lapselle ry.</p><p>Price: Child and parent 185 euros total. Register by October 9 2026 using the registration form. https://www.malary.fi/</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68443/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68413", "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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:30.056999Z", "last_modified_time": "2026-04-21T05:14:14.657558Z", "date_published": null, "start_time": "2026-09-07T15:00:00Z", "end_time": "2027-03-22T17: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, "name": { "fi": "Helsingin kuvataidekoulu: Kuvista englanniksi – 9–12-vuotiaat, 2015-2018 syntyneet", "sv": "Helsingin kuvataidekoulu: Kuvista englanniksi – Bildkonst på engelska – 9–12-åringar, född 2015-2018", "en": "Helsingin kuvataidekoulu: Kuvista englanniksi – Art in English – 9–12-year-olds, born 2015-2018" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Mitä värit ovat englanniksi? Entä hiili, tussi, tai savi? Tule Helsingin kuvataidekoulun kielikylpy-ryhmään oppimaan taidetta ja englantia!", "sv": "Vad är färger på engelska? Eller kol, tusch, och lera? Kom till Helsingin kuvataidekoulus språkbadsgruppen för att lära sig bildkonst och engelsk!", "en": "What are colours in English? What about charcoal, markers, or clay? Come to Helsingin kuvataidekoulu’s language immersion class to learn art and English!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C4DB46916D00E7C821883CD188E155F0/Helsingin_kuvataidekoulu_Kuvista_englanniksi", "sv": "http://www.annantalo.fi/sv/evenemang/event/C4DB46916D00E7C821883CD188E155F0/Helsingin_kuvataidekoulu_Kuvista_englanniksi_Bildkonst_pa_engelska", "en": "http://www.annantalo.fi/en/events/event/C4DB46916D00E7C821883CD188E155F0/Helsingin_kuvataidekoulu_Kuvista_englanniksi_Art_in_English" }, "description": { "fi": "<p>Mitä värit ovat englanniksi? Entä hiili, tussi, tai savi? Tule Helsingin kuvataidekoulun kielikylpy-ryhmään oppimaan taidetta ja englantia!</p><p>Kurssilla opitaan ja harjoitellaan kuvataidetta ja englantia käsi kädessä. Opettelemme monipuolisesti kuvataiteen tekniikoita ja välineitä eri maalaustekniikoista ja piirtämisestä aina kolmiulotteiseen muotoiluun. Harjoittelemme myös samalla kuvataiteen sanastoa sekä puhumaan ja keskustelemaan englanniksi tekemistämme töistä ja taiteesta. Kurssi soveltuu ihan vasta-aloittelijoille, sekä jo englantia osaaville.</p><p>Kurssin opetuskieli on ensisijaisesti englanti, puhumme myös suomea.</p><p>Opettaja: Oona Ala-Honkola<br>Hinta 220e lukukausi</p><p>Kurssille ilmoittaudutaan Eepos-portaalin kautta. Ilmoittautuminen on auki jatkuvasti: kuvataide.eepos.fi/#/forms/95</p>", "sv": "<p>Vad är färger på engelska? Eller kol, tusch, och lera? Kom till Helsingin kuvataidekoulus språkbadsgruppen för att lära sig bildkonst och engelsk!</p><p>I den här kursen kommer vi att träna bildkonst och engelska hand i hand. Vi lär oss olika tekniker och medier från målning och teckning till tredimensionell skulptering och design. Vi kommer också att träna nödvändigt ordförråd och hur man pratar om och diskuterar vårt arbete och konst på engelska Kursen är anpassad för nya språkinlärare och för dig som kan lite engelska.<br>Kursens primära undervisningsspråk är engelska, vi talar även finska.</p><p>Lärare: Oona Ala-Honkola<br>Pris 220€ termin</p><p>Anmälan görs via Eepos-portalen. Anmälan är öppen kontinuerligt: kuvataide.eepos.fi/#/forms/95</p>", "en": "<p>What are colours in English? What about charcoal, markers, or clay? Come to Helsingin kuvataidekoulu’s language immersion class to learn art and English!</p><p>In this course we will practice art and English hand in hand. We’ll learn different techniques and mediums from painting and drawing to three-dimensional sculpting. We’ll also practice necessary vocabulary and how to talk about and discuss our work and art in English.<br>The course is suited for new language learners and to those who already know some English.<br>The primary teaching language of the course is English, we also speak Finnish.</p><p>Teacher: Oona Ala-Honkola<br>Price 220€ term</p><p>Registration is done through the Eepos portal. Registration is open continuously: kuvataide.eepos.fi/#/forms/95</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68413/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68412", "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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:29.662611Z", "last_modified_time": "2026-04-21T05:14:14.325844Z", "date_published": null, "start_time": "2026-09-07T13:30:00Z", "end_time": "2027-03-22T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Helsingin kuvataidekoulu: Kuvista englanniksi – 7–9-vuotiaat, 2018-2020 syntyneet", "sv": "Helsingin kuvataidekoulu: Kuvista englanniksi – Bildkonst på engelska – 7–9-åringar, född 2018-2020", "en": "Helsingin kuvataidekoulu: Kuvista englanniksi – Art in English – 7–9-year-olds, born 2018-2020" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule Helsingin kuvataidekoulun kielikylpy-ryhmään oppimaan taidetta ja englantia!", "sv": "Vad är färger på engelska? Eller kol, tusch, och lera? Kom till Helsingin kuvataidekoulus språkbadsgruppen för att lära sig bildkonst och engelsk!", "en": "What are colours in English? What about charcoal, markers, or clay? Come to Helsingin kuvataidekoulu’s language immersion class to learn art and English!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/46D67872D7BDD6B3C2325B4C6FB738A9/Helsingin_kuvataidekoulu_Kuvista_englanniksi", "sv": "http://www.annantalo.fi/sv/evenemang/event/46D67872D7BDD6B3C2325B4C6FB738A9/Helsingin_kuvataidekoulu_Kuvista_englanniksi_Bildkonst_pa_engelska", "en": "http://www.annantalo.fi/en/events/event/46D67872D7BDD6B3C2325B4C6FB738A9/Helsingin_kuvataidekoulu_Kuvista_englanniksi_Art_in_English" }, "description": { "fi": "<p>Tule Helsingin kuvataidekoulun kielikylpy-ryhmään oppimaan taidetta ja englantia!</p><p>Kurssilla opitaan ja harjoitellaan kuvataidetta ja englantia käsi kädessä. Opettelemme monipuolisesti kuvataiteen tekniikoita ja välineitä eri maalaustekniikoista ja piirtämisestä aina kolmiulotteiseen muotoiluun. Harjoittelemme myös samalla kuvataiteen sanastoa sekä puhumaan ja keskustelemaan englanniksi tekemistämme töistä ja taiteesta. Kurssi soveltuu ihan vasta-aloittelijoille, sekä jo englantia osaaville.<br>Kurssin opetuskieli on ensisijaisesti englanti, puhumme myös suomea.</p><p>Opettaja: Oona Ala-Honkola<br>Hinta 220€</p><p>Kurssille ilmoittaudutaan Eepos-portaalin kautta. Ilmoittautuminen on auki jatkuvasti: https://kuvataide.eepos.fi/#/forms/95</p>", "sv": "<p>Vad är färger på engelska? Eller kol, tusch, och lera? Kom till Helsingin kuvataidekoulus språkbadsgruppen för att lära sig bildkonst och engelsk!</p><p>I den här kursen kommer vi att träna bildkonst och engelska hand i hand. Vi lär oss olika tekniker och medier från målning och teckning till tredimensionell skulptering och design. Vi kommer också att träna nödvändigt ordförråd och hur man pratar om och diskuterar vårt arbete och konst på engelska Kursen är anpassad för nya språkinlärare och för dig som kan lite engelska.<br>Kursens primära undervisningsspråk är engelska, vi talar ävne finska.</p><p>Lärare: Oona Ala-Honkola<br>Pris 220€ termin</p><p>Anmälan görs via Eepos-portalen. Anmälan är öppen kontinuerligt: https://kuvataide.eepos.fi/#/forms/95</p>", "en": "<p>What are colours in English? What about charcoal, markers, or clay? Come to Helsingin kuvataidekoulu’s language immersion class to learn art and English!</p><p>In this course we will practice art and English hand in hand. We’ll learn different techniques and mediums from painting and drawing to three-dimensional sculpting. We’ll also practice necessary vocabulary and how to talk about and discuss our work and art in English.<br>The course is suited for new language learners and to those who already know some English.<br>The primary teaching language of the course is English, we also speak Finnish.</p><p>Teacher: Oona Ala-Honkola<br>Price 220€ per semester</p><p>Registration is done through the Eepos portal. Registration is open continuously: https://kuvataide.eepos.fi/#/forms/95</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68412/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68411", "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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:29.076907Z", "last_modified_time": "2026-04-21T05:14:13.982371Z", "date_published": null, "start_time": "2026-09-07T13:00:00Z", "end_time": "2026-11-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, "name": { "fi": "Sukhi Raghunath: Luovat paperikukkatyöpajat lapsille ja nuorille – 10–15-vuotiaat, 2011-2016 syntyneet", "sv": "Sukhi Raghunath: Luovat paperikukkatyöpajat lapsille ja nuorille – Kreativa pappersblomsworkshoppar för barn och unga – 10–15-åringar, född 2011-2016", "en": "Sukhi Raghunath: Luovat paperikukkatyöpajat lapsille ja nuorille – Creative paper flowers workshop for children and young adults – 10–15-year-olds, born 2011-2016" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tällä ainutlaatuisella kurssilla osallistujat tutustuvat paperikukkien tekemisen taiteeseen 12 eri kasviaiheen kautta ja valmistavat jokaisella kerralla yhden yksityiskohtaisen kukan. Perinteisen askartelun sijaan työpajoissa paperi nähdään nykytaiteen materiaalina, joka tukee mielikuvitusta, keskittymistä ja merkityksellistä itseilmaisua tämän päivän nopeatahtisen digitaalisen maailman rinnalla.", "sv": "I denna unika kurs utforskar deltagarna konsten att skapa pappersblommor genom 12 olika botaniska teman och skapar en detaljerad blomma vid varje tillfälle. Utöver traditionellt hantverk positionerar workshopparna papper som ett samtida konstnärligt material som främjar fantasi, fokus och meningsfullt självuttryck i dagens snabba digitala värld.", "en": "In this unique course, participants explore the art of paper flower making through 12 different botanicals, creating one detailed flower in each session. Moving beyond conventional craft, the workshops position paper as a contemporary artistic medium that nurtures imagination, focus, and meaningful self-expression alongside today’s fast-paced digital world." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/01CD1F4335620230243B3DF19923409C/Sukhi_Raghunath_Luovat_paperikukkatyopajat_lapsille_ja_nuorille", "sv": "http://www.annantalo.fi/sv/evenemang/event/01CD1F4335620230243B3DF19923409C/Sukhi_Raghunath_Luovat_paperikukkatyopajat_lapsille_ja_nuorille_Kreativa_pappersblomsworkshoppar_for_barn_och_unga", "en": "http://www.annantalo.fi/en/events/event/01CD1F4335620230243B3DF19923409C/Sukhi_Raghunath_Luovat_paperikukkatyopajat_lapsille_ja_nuorille_Creative_paper_flowers_workshop_for_children_and_young_adults" }, "description": { "fi": "<p>Tällä ainutlaatuisella kurssilla osallistujat tutustuvat paperikukkien tekemisen taiteeseen 12 eri kasviaiheen kautta ja valmistavat jokaisella kerralla yhden yksityiskohtaisen kukan. Perinteisen askartelun sijaan työpajoissa paperi nähdään nykytaiteen materiaalina, joka tukee mielikuvitusta, keskittymistä ja merkityksellistä itseilmaisua tämän päivän nopeatahtisen digitaalisen maailman rinnalla.</p><p>Luonnon havainnointiin pohjautuva kurssi tukee lasten ja nuorten luovuuden, kriittisen ajattelun ja itseluottamuksen kehittymistä – taitoja, jotka ovat keskeisiä kokonaisvaltaiselle kasvulle.</p><p>Jokainen kerta on käytännönläheinen ja prosessiin keskittyvä: osallistujat työskentelevät laadukkaiden paperien ja turvallisten työvälineiden kanssa oppien tekniikoita, kuten leikkaamista, värjäämistä, muotoilua, kerrostamista ja kokoamista, luodakseen elävän tuntuisia tai ilmaisullisia kukkaveistoksia.</p><p>Työskentely kehittää hienomotoriikkaa, kärsivällisyyttä ja itsenäistä ajattelua sekä kannustaa henkilökohtaisiin taiteellisiin valintoihin värin, muodon ja sommittelun osalta. Kaikki materiaalit sisältyvät kurssiin, ja osallistujat rakentavat oman teossarjan. Kurssi päättyy pieneen näyttelyyn, jossa juhlistetaan jokaisen osallistujan luovaa matkaa. Kaikki teokset saa viedä kotiin 12 viikon päätteeksi.</p><p>Opetuskieli on englanti, ja tarvittaessa tarjotaan tukea suomeksi. Visuaalinen ohjaus ja inklusiiviset opetusmenetelmät varmistavat saavutettavuuden erilaisille oppijoille.</p><p>Opettaja: Sukhi Raghunath, ammattimainen työpajaohjaaja, jolla on yli 8 vuoden kokemus ja tausta taiteilijajärjestöissä. Hän opiskelee parhaillaan sosiaalipedagogiikkaa.</p><p>Hinta: 190 € (sisältää kaikki 12 kertaa + materiaalipaketit)</p><p>Ilmoittaudu pian – paikkoja on rajoitetusti! Ilmoittautumislomakkeen linkki julkaistaan pian.</p>", "sv": "<p>I denna unika kurs utforskar deltagarna konsten att skapa pappersblommor genom 12 olika botaniska teman och skapar en detaljerad blomma vid varje tillfälle. Utöver traditionellt hantverk positionerar workshopparna papper som ett samtida konstnärligt material som främjar fantasi, fokus och meningsfullt självuttryck i dagens snabba digitala värld.</p><p>Med utgångspunkt i naturstudier stödjer kursen barn och unga i att utveckla kreativitet, kritiskt tänkande och självförtroende – färdigheter som är avgörande för en helhetsmässig utveckling.</p><p>Varje tillfälle är praktiskt och processinriktat: deltagarna arbetar med högkvalitativa papper och säkra verktyg och lär sig tekniker som att klippa, färgsätta, forma, lagra och sammanfoga för att skapa naturtrogna eller uttrycksfulla blomskulpturer.</p><p>Arbetet stärker finmotorik, tålamod och självständigt tänkande samt uppmuntrar personliga konstnärliga val i färg, form och komposition. Allt material ingår, och deltagarna bygger upp en egen samling verk. Kursen avslutas med en mindre utställning som uppmärksammar varje deltagares kreativa resa. Alla verk kan tas med hem efter 12 veckor.</p><p>Undervisningsspråket är engelska, med stöd på finska vid behov. Visuell vägledning och inkluderande undervisningsmetoder säkerställer tillgänglighet för olika typer av deltagare.</p><p>Lärare: Sukhi Raghunath, professionell workshopledare med över 8 års erfarenhet och bakgrund inom konstnärsorganisationer, för närvarande studerande i socialpedagogik.</p><p>Pris: 190 € (för alla 12 tillfällen + materialpaket)</p><p>Anmäl dig snart – begränsat antal platser! Länken till anmälningsformuläret publiceras snart.</p>", "en": "<p>In this unique course, participants explore the art of paper flower making through 12 different botanicals, creating one detailed flower in each session. Moving beyond conventional craft, the workshops position paper as a contemporary artistic medium that nurtures imagination, focus, and meaningful self-expression alongside today’s fast-paced digital world.</p><p>Rooted in observation of nature, the course supports children and young people in developing creativity, critical thinking, and confidence—skills essential for holistic growth.</p><p>Each session is hands-on and process-based: participants work with high-quality papers and safe tools, learning techniques such as cutting, colouring, shaping, layering, and assembling to create lifelike or expressive floral sculptures. The practice strengthens fine motor skills, patience, and independent thinking while encouraging personal artistic choices in colour, form, and composition.</p><p>All materials are provided, and participants build a collection of their own works. The course concludes with a small exhibition, celebrating each participant’s creative journey.</p><p>The language of instruction is English, with support in Finnish where needed. Visual guidance and inclusive teaching methods ensure accessibility for diverse learners.</p><p>Teacher: Sukhi Raghunath, professional workshop facilitator with over 8 years of experience and a background in artists’ organisations, currently studying social pedagogy.</p><p>Price: 190€ (for all 12 sessions + material kits)</p><p>Sign up soon, limited spots only! Registration form will be published soon.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68411/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }