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_super_event=true&page=47
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=48", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=46" }, "data": [ { "id": "espoo_le:agqgwwgqdu", "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/yso:p1278/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-09-04T07:22:50.908932Z", "last_modified_time": "2026-09-04T07:22:50.908952Z", "date_published": "2026-09-04T07:00:00Z", "start_time": "2026-10-02T12:00:00Z", "end_time": "2026-10-02T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": " Monitoimitila Salonki" }, "provider": { "fi": "Espoon kaupunki ja Espoonlahden eläkkeensaajat ry." }, "name": { "fi": "Vanhustenviikon Etkotanssit Lippulaivan kirjastossa" }, "description": { "fi": "<p>Valtakunnallinen Vanhustenviikko käynnistetään Espoossa avoimilla ja maksuttomilla Etkotansseilla! Tanssittajana Juha Keinänen & Rytkikonkarit.</p><p>Kahvitarjoilu! Mukana myös palveluesittelyä senioreille.</p><p>Tervetuloa mukaan!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Avoin ja maksuton tanssitapahtuma. Tanssittajana Juha Keinänen & Rytmikonkarit. " }, "info_url": { "fi": "https://www.espoo.fi/fi/espoo-liikkuu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwwgqdu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgwwgq6m", "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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386122, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-04T07:13:35.627685Z", "last_modified_time": "2026-09-04T07:13:35.627699Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/085130ed-5ebe-447c-9684-42a85209a67c.JPG", "name": "", "cropping": "284,0,1988,1704", "photographer_name": "", "alt_text": "nainen ja mies", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386122/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-04T07:14:51.881541Z", "last_modified_time": "2026-09-04T07:14:51.881558Z", "date_published": null, "start_time": "2026-09-11T14:00:00Z", "end_time": "2026-09-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": { "fi": "Mathilda mother band", "sv": "Mathilda mother band", "en": "Mathilda mother band" }, "name": { "fi": "Mathilda Mother band", "sv": "Mathilda Mother band", "en": "Mathilda Mother band" }, "description": { "fi": "<p>Kaikuja ja kromatiikkaa -</p><p> </p><p>Tule kuuntelemaan parasta kosmista boogieta. Uppoudu ääniin, kaikuun ja new genre babyn säveliin. Ninel Grönholm soittaa yhdessä kitaristi Tomi Christianssonin kanssa ruotsinkielisiä</p><p>kappaleita ja Pariisissa tehtyjä englanninkielisiä kappaleita.</p><p><br></p><p>Ison Omenan kirjastossa 11.9. kello 17:00</p>", "sv": "<p>Ekon och kromatik</p><p>Kom och lyssna på den bästa kosmiska boogien. Fördjupa dig i ljud, ekon och melodier från new genre baby. Ninel Grönholm spelar tillsammans med gitarristen Tomi Christiansson och framför svenskspråkiga låtar samt engelskspråkiga låtar skrivna i Paris.</p><p><br></p><p>Iso Omena bibliotek kl. 17-18</p><p><br></p><p>#helloespoo</p>", "en": "<p>Echoes and Chromaticism</p><p>Come and listen to the finest cosmic boogie. Immerse yourself in soundscapes, echoes, and the melodies of new genre baby. Ninel Grönholm performs together with guitarist Tomi Christiansson, presenting songs in Swedish as well as English-language songs written in Paris.</p><p>Iso Omena library 17-18</p><p>#helloespoo</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kaikuja ja kromatiikkaa ", "sv": "Ekon och kromatik", "en": "Echoes and Chromaticism" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwwgq6m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69605", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386102, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-02T09:24:04.865795Z", "last_modified_time": "2026-09-02T09:24:04.865812Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791122.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386102/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-02T09:24:04.713105Z", "last_modified_time": "2026-09-04T06:24:18.171408Z", "date_published": null, "start_time": "2026-12-17T14:30:00Z", "end_time": "2026-12-17T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Salsaa Vuotalon aulassa", "sv": "Salsa i Nordhusets entréhall", "en": "Salsa in the lobby of Vuosaari House" }, "description": { "fi": "<p>Tervetuloa tanssimaan salsaa sekä nauttimaan musiikista ja kahvitarjoiluista Vuotalon aulaan!</p><p>Vipattaako tanssijalkaa tai tekeekö mieli vain nauttia salsamusiikista ja hyvistä tarjoiluista? Vuotalon aulassa tarjoillaan avoimen salsatanssitunnin lisäksi kahvia, pientä purtavaa sekä musiikkia latinalaisesta Amerikasta. Olet tervetullut hengailemaan sekä pelaamaan shakkia ja muita pöytäpelejä, eli tanssimaan ei ketään pakoteta.</p><p>Tanssituntiin osallistumista varten et tarvitse aiempaa kokemusta. Tapahtuma on maksuton, ei ennakkoilmoittautumista.</p><p>Aikataulu:<br>16.30–17.00: Salsa-musiikkia ja kahvitarjoilut (DJ Lucho Helsinki vastaa musiikista)<br>17.00–18.00: Avoin salsatanssitunti (ohjaajana Yasser Sarria Terry)<br>18.00–18.30: Salsa-musiikkia ja kahvitarjoilut</p><p>Aulan tanssitapahtumat syksyllä 2026: <br>Ke 16.9. Salsaa Vuotalon aulassa<br>Ke 14.10. Salsaa Vuotalon aulassa<br>To 19.11. Tanssia lapsille Vuotalon aulassa <br>To 17.12. Salsaa Vuotalon aulassa</p><p>DJ Lucho Helsinki on kolumbialainen DJ sekä latinalaisten musiikkitapahtumien tuottaja.</p><p>Yasser Sarria Terryllä on takanaan yli 15 vuoden opettamis- ja esiintymiskokemus Suomessa ja ulkomailla ympäri Eurooppaa erilaisilla festivaaleilla. Hän on yleisön suosima sydämellinen, energinen ja hauska esiintyjä ja opettaja. Hänen tyylissään yhdistyvät afrokuubalaisten tanssien voima ja populaaritanssien vauhdikas tunnelma.</p>", "sv": "<p>Välkommen att dansa salsa och njuta av musik och kaffe i Nordhusets entréhall!</p><p>Känner du för att dansa eller vill du bara njuta av salsamusik och god mat? I Nordhusets entréhall bjuds det, förutom på en öppen salsalektion, också på kaffe, tilltugg samt musik från Latinamerika. Du är välkommen att umgås samt spela schack och andra brädspel – ingen tvingas alltså att dansa.</p><p>Du behöver ingen tidigare erfarenhet för att delta i danslektionen. Evenemanget är kostnadsfritt, ingen förhandsanmälan krävs.</p><p>Tidsplan:</p><p>16.30–17.00: Salsamusik och kaffeservering (DJ Lucho Helsinki står för musiken)</p><p>17.00–18.00: Öppen salsalektion (instruktör: Elina Lindman)</p><p>18.00–18.30: Salsamusik och kaffeservering</p><p>DJ Lucho Helsinki är en colombiansk dj och producent av latinamerikanska musikevenemang. Elina Lindman är en erfaren salsa- och bachatadansare och -lärare.</p>", "en": "<p>Join us for salsa, music and coffee catering in the lobby of Vuosaari House!</p><p>Are you in the mood for dancing, or do you just want to enjoy some salsa music and some good catering? In addition to an open salsa class, the lobby of Vuosaari House provides visitors with coffee, snacks and music from Latin America. You are also welcome to just hang out and play chess and other board games – no one is forced to dance.</p><p>No previous experience is required for the dance class. The event is free of charge; no advance registration required.</p><p>Schedule:</p><p>16.30–17.00: Salsa music and coffee catering (DJ Lucho Helsinki is in charge of the music)</p><p>17.00–18.00: Open salsa dance class (instructed by Elina Lindman)</p><p>18.00–18.30: Salsa music and coffee catering</p><p>DJ Lucho Helsinki is a Colombian DJ and producer of Latin music events. Elina Lindman is an experienced salsa and bachata dancer and teacher</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa tanssimaan salsaa sekä nauttimaan musiikista ja kahvitarjoiluista Vuotalon aulaan!", "sv": "Välkommen att dansa salsa och njuta av musik och kaffe i Nordhusets entréhall!", "en": "Join us for salsa, music and coffee catering in the lobby of Vuosaari House!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F066532C90CE924A3BFC47FFAFFF8412/Salsaa_Vuotalon_aulassa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F066532C90CE924A3BFC47FFAFFF8412/Salsa_i_Nordhusets_entr_hall", "en": "http://www.vuotalo.fi/en/events/event/F066532C90CE924A3BFC47FFAFFF8412/Salsa_in_the_lobby_of_Vuosaari_House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69605/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69720", "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:31/?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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385857, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-19T11:15:12.165337Z", "last_modified_time": "2026-08-19T11:15:12.165351Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784185.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385857/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-19T11:15:12.037455Z", "last_modified_time": "2026-09-04T06:24:12.176668Z", "date_published": null, "start_time": "2026-11-26T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Flyygelikuu: Maija Väisänen", "sv": "Flyygelikuu: Maija Väisänen", "en": "Flyygelikuu: Maija Väisänen" }, "description": { "fi": "<p>Sarastus: yön ja aamunkoiton tunnelmia mm. Beethovenin, Debussyn, Sibeliuksen, Boulangerin ja Palmgrenin sävelin.</p><p>Maija Väisänen on Sibelius-Akatemiasta ja Lontoon Guildhall Schoolista valmistunut pianisti, joka konsertoi aktiivisesti, toimii Vuotalon Flyygelikuun taiteellisena koordinaattorina sekä opettaa pianonsoittoa Taideyliopiston Sibelius-Akatemiassa. Maija on esiintynyt festivaaleilla Euroopassa ja Yhdysvalloissa sekä useiden kotimaisten orkesterien solistina.</p><p>Hänet on palkittu useissa kansainvälisissä kilpailuissa, mm. 2. palkinto Concours Grieg -pianoduokilpailussa 2005 ja tunnustuspalkinto Maj Lind -kilpailussa 2007. Maijan viimeaikaisiin projekteihin kuuluu mm. Poulencin pianokamarimusiikin kokonaisesitys, taideklubi Hampurissa, naisten säveltämän kamarimusiikin esittäminen eri yhteyksissä sekä Villa Salmenrannan Kesäkonserttien taiteellisen johtajan tehtävät 2019–2025.</p><p>Maijan ensimmäinen soololevy Metamorphoses of Flowers ilmestyi Pilfink-merkiltä kesäkuussa.</p><p>Flyygelikuu-sarjassa nautitaan pianomusiikista kerran kuussa Vuotalon aulassa. Lämpimästi tervetuloa!</p>", "sv": "<p>Gryning: natt- och gryningsstämning till toner av bland andra Beethoven, Debussy, Sibelius, Boulanger och Palmgren.</p><p>Maija Väisänen är en pianist med examen från Sibelius-Akademin och Guildhall School i London. Hon konserterar flitigt, är konstnärlig koordinator för Nordhusets Flyygelikuu och undervisar i pianospel vid Konstuniversitetets Sibelius-Akademi. Maija har uppträtt på festivaler i Europa och USA samt som solist med flera finska orkestrar. <br> <br>Hon har belönats i flera internationella tävlingar, bland annat med andrapris i pianoduotävlingen Concours Grieg 2005 och ett hederspris i Maj Lind-tävlingen 2007. I Maijas senaste projekt ingår bland annat ett komplett uppförande av Poulencs pianokammarmusik, en konstklubb i Hamburg, framföranden av kammarmusik komponerad av kvinnor i olika sammanhang och uppdraget som konstnärlig ledare för Villa Salmenrantas sommarkonserter 2019–2025. <br> <br>Maijas första soloskiva, Metamorphoses of Flowers, släpptes på skivbolaget Pilfink i juni.</p><p>I serien Flyygelikuu får åhörarna njuta av pianomusik en gång i månaden i Nordhusets entréhall.</p><p>Varmt välkommen!</p>", "en": "<p>Dawn: atmospheres of night and dawn, set to music by composers such as Beethoven, Debussy, Sibelius, Boulanger and Palmgren.</p><p>Pianist Maija Väisänen is a graduate of the Sibelius Academy and the Guildhall School of Music & Drama in London. She performs actively, serves as the artistic coordinator of Vuosaari House’s Flyygelikuu programme, and teaches piano at the Sibelius Academy of Uniarts Helsinki. Maija has performed at festivals in Europe and the United States, in addition to appearing as a soloist with several Finnish orchestras. <br> <br>She has won prizes at several international competitions, including second prize at the Concours Grieg piano duo competition in 2005 and a special mention at the Maj Lind Piano Competition in 2007. Examples of Maija’s recent projects include a complete performance of Poulenc’s piano chamber music, an art club in Hamburg, performances of chamber music composed by women in various productions, and the duties of artistic director at Villa Salmenranta’s summer concerts from 2019 to 2025. <br> <br>Maija’s first solo album, Metamorphoses of Flowers, was released on the Pilfink label in June.</p><p>The Flyygelikuu series indulges audiences with piano music once a month in the lobby of Vuosaari House.</p><p>We hope to see you there!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Sarastus: yön ja aamunkoiton tunnelmia mm. Beethovenin, Debussyn, Sibeliuksen, Boulangerin ja Palmgrenin sävelin.", "sv": "Gryning: natt- och gryningsstämning till toner av bland andra Beethoven, Debussy, Sibelius, Boulanger och Palmgren.", "en": "Dawn: atmospheres of night and dawn, set to music by composers such as Beethoven, Debussy, Sibelius, Boulanger and Palmgren." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B675EFDBFCE7DEF72942CC4FFC625B80/Flyygelikuu_Maija_Vaisanen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/B675EFDBFCE7DEF72942CC4FFC625B80/Flyygelikuu_Maija_Vaisanen", "en": "http://www.vuotalo.fi/en/events/event/B675EFDBFCE7DEF72942CC4FFC625B80/Flyygelikuu_Maija_Vaisanen" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69720/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69652", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385713, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-06T11:14:07.239264Z", "last_modified_time": "2026-08-06T11:14:07.239278Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796235.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385713/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-06T11:14:07.111871Z", "last_modified_time": "2026-09-04T06:23:57.789703Z", "date_published": null, "start_time": "2026-10-14T13:30:00Z", "end_time": "2026-10-14T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Salsaa Vuotalon aulassa", "sv": "Salsa i Nordhusets entréhall", "en": "Salsa in the lobby of Vuosaari House" }, "description": { "fi": "<p>Tervetuloa tanssimaan salsaa sekä nauttimaan musiikista ja kahvitarjoiluista Vuotalon aulaan!</p><p>Vipattaako tanssijalkaa tai tekeekö mieli vain nauttia salsamusiikista ja hyvistä tarjoiluista? Vuotalon aulassa tarjoillaan avoimen salsatanssitunnin lisäksi kahvia, pientä purtavaa sekä musiikkia latinalaisesta Amerikasta. Olet tervetullut hengailemaan sekä pelaamaan shakkia ja muita pöytäpelejä, eli tanssimaan ei ketään pakoteta.<br>Tanssituntiin osallistumista varten et tarvitse aiempaa kokemusta. Tapahtuma on maksuton, ei ennakkoilmoittautumista.<br>Aikataulu:<br>16.30–17.00: Salsa-musiikkia ja kahvitarjoilut (DJ Lucho Helsinki vastaa musiikista)<br>17.00–18.00: Avoin salsatanssitunti (ohjaajana Yasser Sarria Terry)<br>18.00–18.30: Salsa-musiikkia ja kahvitarjoilut</p><p>Aulan tanssitapahtumat syksyllä 2026: <br>Ke 16.9. Salsaa Vuotalon aulassa<br>Ke 14.10. Salsaa Vuotalon aulassa<br>To 19.11. (Lapsen oikeuksien viikon lasten tanssitapahtuma) <br>To 17.12. Salsaa Vuotalon aulassa</p><p>DJ Lucho Helsinki on kolumbialainen DJ sekä latinalaisten musiikkitapahtumien tuottaja.<br>Yasser Sarria Terryllä on takanaan yli 15 vuoden opettamis- ja esiintymiskokemus Suomessa ja ulkomailla ympäri Eurooppaa erilaisilla festivaaleilla. Hän on yleisön suosima sydämellinen, energinen ja hauska esiintyjä ja opettaja. Hänen tyylissään yhdistyvät afrokuubalaisten tanssien voima ja populaaritanssien vauhdikas tunnelma.</p>", "sv": "<p>Välkommen att dansa salsa och njuta av musik och kaffe i Nordhusets entréhall!</p><p>Känner du för att dansa eller vill du bara njuta av salsamusik och god mat? I Nordhusets entréhall bjuds det, förutom på en öppen salsalektion, också på kaffe, tilltugg samt musik från Latinamerika. Du är välkommen att umgås samt spela schack och andra brädspel – ingen tvingas alltså att dansa.</p><p>Du behöver ingen tidigare erfarenhet för att delta i danslektionen. Evenemanget är kostnadsfritt, ingen förhandsanmälan krävs.</p><p>Tidsplan:</p><p>16.30–17.00: Salsamusik och kaffeservering (DJ Lucho Helsinki står för musiken)</p><p>17.00–18.00: Öppen salsalektion (instruktör: Elina Lindman)</p><p>18.00–18.30: Salsamusik och kaffeservering</p><p>DJ Lucho Helsinki är en colombiansk dj och producent av latinamerikanska musikevenemang. Elina Lindman är en erfaren salsa- och bachatadansare och -lärare.</p>", "en": "<p>Join us for salsa, music and coffee catering in the lobby of Vuosaari House!</p><p>Are you in the mood for dancing, or do you just want to enjoy some salsa music and some good catering? In addition to an open salsa class, the lobby of Vuosaari House provides visitors with coffee, snacks and music from Latin America. You are also welcome to just hang out and play chess and other board games – no one is forced to dance.</p><p>No previous experience is required for the dance class. The event is free of charge; no advance registration required.</p><p>Schedule:</p><p>16.30–17.00: Salsa music and coffee catering (DJ Lucho Helsinki is in charge of the music)</p><p>17.00–18.00: Open salsa dance class (instructed by Elina Lindman)</p><p>18.00–18.30: Salsa music and coffee catering</p><p>DJ Lucho Helsinki is a Colombian DJ and producer of Latin music events. Elina Lindman is an experienced salsa and bachata dancer and teacher</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa tanssimaan salsaa sekä nauttimaan musiikista ja kahvitarjoiluista Vuotalon aulaan!", "sv": "Välkommen att dansa salsa och njuta av musik och kaffe i Nordhusets entréhall!", "en": "Join us for salsa, music and coffee catering in the lobby of Vuosaari House!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EA145FDCFF4A33822F693C4CD366F932/Salsaa_Vuotalon_aulassa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/EA145FDCFF4A33822F693C4CD366F932/Salsa_i_Nordhusets_entr_hall", "en": "http://www.vuotalo.fi/en/events/event/EA145FDCFF4A33822F693C4CD366F932/Salsa_in_the_lobby_of_Vuosaari_House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69652/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69649", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "41,90 / 38,90€", "sv": "41,90 / 38,90€", "en": "41,90 / 38,90€" }, "info_url": { "fi": "https://www.lippu.fi/event/unto-mononen-musiikkinaytelma-malmitalo-22005584/", "sv": "https://www.lippu.fi/event/unto-mononen-musiikkinaytelma-malmitalo-22005584/", "en": "https://www.lippu.fi/event/unto-mononen-musiikkinaytelma-malmitalo-22005584/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385724, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-07T10:14:16.865989Z", "last_modified_time": "2026-08-07T10:14:16.866006Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796231.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385724/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-07T10:14:16.698161Z", "last_modified_time": "2026-09-04T06:23:51.310135Z", "date_published": null, "start_time": "2026-09-29T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Unto Mononen -musiikkinäytelmä", "sv": "Musikpjäsen Unto Mononen", "en": "Unto Mononen – a musical play" }, "description": { "fi": "<p>Värikäs ja tunteikas musiikkinäytelmä, joka kertoo Unto Mononen lyhyeksi jääneestä elämästä ja hänen elämänsä naisista 1960-luvun tango-Suomessa.</p><p>Näytelmässä kuullaan rakastettuja lauluja, jotka ovat säilyneet suomalaisten sydämissä sukupolvesta toiseen: Satumaa, Tähdet meren yllä, Lapin tango, Onnenmaa ja Sateen tango.</p><p>Somerolaislähtöisen säveltäjän tunnetuin teos, Satumaa, on yksi suomalaisen tangon ikonisimmista kappaleista. Unto Mononen oli 1950–60-luvuilla harvinainen ilmiö – viihdemusiikin täysipäiväinen ammattisäveltäjä Suomessa.</p><p>Hänen elämänsä jäi traagisen lyhyeksi: Mononen menehtyi vain 37-vuotiaana laukaukseen, jonka tahallisuus on jäänyt epäselväksi. Varmaa kuitenkin on, että hän eli kuluttavan ja intensiivisen elämän, joka päättyi liian varhain.</p><p>Rooleissa: Teijo Lindström, Kalle Jussila, Raisa Laine ja Anne Tanskanen<br>Säestys Quattro orkesteri</p>", "sv": "<p>En färgstark och känslosam musikpjäs som skildrar Unto Mononens alltför korta liv och kvinnorna i hans liv i 1960-talets tango-Finland.</p><p>I pjäsen får publiken höra älskade sånger som har levt vidare i finländarnas hjärtan från generation till generation: Satumaa, Tähdet meren yllä, Lapin tango, Onnenmaa och Sateen tango.</p><p>Den mest kända kompositionen av kompositören från Somero, Satumaa, är en av de mest ikoniska låtarna inom den finska tangon. Unto Mononen var ett sällsynt fenomen under 1950- och 1960-talen – en heltidsverksam professionell kompositör av underhållningsmusik i Finland.</p><p>Hans liv blev tragiskt kort: Mononen avled vid endast 37 års ålder till följd av ett skott, vars avsiktlighet fortfarande är oklar. En sak är dock säker: Han levde ett påfrestande och intensivt liv som tog slut alldeles för tidigt.</p><p>I rollerna: Teijo Lindström, Kalle Jussila, Raisa Laine och Anne Tanskanen</p><p>Ackompanjemang: Quattro-orkestern</p>", "en": "<p>This colourful and emotion-filled musical play tells the story of Unto Mononen’s tragically short life and the women in his life in the 1960s’ tango-crazed Finland.</p><p>The play features much-loved songs that have remained in the hearts of the Finnish people from generation to generation: Satumaa, Tähdet meren yllä, Lapin tango, Onnenmaa and Sateen tango.</p><p>The best-known work by this Somero-born composer, Satumaa, is one of the most iconic songs in Finnish tango. Unto Mononen was a rare phenomenon in the 1950s and 1960s – a full-time professional composer of popular music in Finland.</p><p>His life was tragically cut short: Mononen died at the age of just 37 from a gunshot, the intentionality of which remains unclear. One thing is certain, however: Mononen led a taxing and intense life that ended far too soon.</p><p>Starring: Teijo Lindström, Kalle Jussila, Raisa Laine and Anne Tanskanen</p><p>Accompaniment: Quattro-orkesteri</p>" }, "provider_contact_info": null, "short_description": { "fi": "Värikäs ja tunteikas musiikkinäytelmä, joka kertoo Unto Mononen lyhyeksi jääneestä elämästä ja hänen elämänsä naisista 1960-luvun tango-Suomessa.", "sv": "En färgstark och känslosam musikpjäs som skildrar Unto Mononens alltför korta liv och kvinnorna i hans liv i 1960-talets tango-Finland.", "en": "This colourful and emotion-filled musical play tells the story of Unto Mononen’s tragically short life and the women in his life in the 1960s’ tango-crazed Finland." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DE86ABE722BD9187477F81C284CB0BD4/Unto_Mononen_-musiikkinaytelma", "sv": "http://www.malmitalo.fi/sv/evenemang/event/DE86ABE722BD9187477F81C284CB0BD4/Musikpjasen_Unto_Mononen", "en": "http://www.malmitalo.fi/en/events/event/DE86ABE722BD9187477F81C284CB0BD4/Unto_Mononen_a_musical_play" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69649/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69518", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "15 € / 12 €", "sv": "15 € / 12 €", "en": "15 € / 12 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/asa/asa-duo-vastaanotin-4188918/", "sv": "https://www.lippu.fi/artist/asa/asa-duo-vastaanotin-4188918/", "en": "https://www.lippu.fi/artist/asa/asa-duo-vastaanotin-4188918/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385369, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-26T06:14:13.820176Z", "last_modified_time": "2026-06-26T06:14:13.820192Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795650.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385369/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-26T06:14:13.702649Z", "last_modified_time": "2026-09-04T06:23:50.524845Z", "date_published": null, "start_time": "2026-09-26T16:00:00Z", "end_time": "2026-09-26T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Asa | Duo Vastaanotin – Idän kirjamessut", "sv": "Asa | Duo Vastaanotin – Bokmässan i öster", "en": "Asa | Duo Vastaanotin – Eastern Book Fair" }, "description": { "fi": "<p>Idän kirjamessujen ilta kietoo kuulijat musiikin, lyriikoiden ja sanataiteen maailmaan.</p><p>klo 19 | Duo Vastaanotin<br>klo 20 | Asa</p><p><b>Asa</b>, Avain, Asamasa, Aatsipoppa, Mats Nyckelström on suomalainen pitkän linjan sanaseppo. Jo kaksikymmentäviisivuotisen uransa aikana Asa on julkaissut aktiivisesti albumeita ja saanut niistä tunnustusta niin kuuntelijoilta kuin kriitikoiltakin.</p><p>Artisti on alusta asti kulkenut omia polkujaan. Hän on aina levottomana etsinyt kiinnostavampaa ja koukeroisempaa tietä tällä matkalla ilman määränpäätä. Asaa on kutsuttu suomenkielisen räpin uudisraivaajaksi, jonka teksteissä hirtehinen huumori sekä folkrunous yhdistyvät yhteiskunnallisten teemojen alla.</p><p>Tämä omaehtoisesti alati uutta musiikillista ilmaisua etsivä räppäri kiertää ahkerasti pientareita ja pirttejä ympäri maan.</p><p>Illan avaa <b>Duo Vastaanotin</b> esityksellään <i>Kanavatyö</i>:</p><p>Vastaanottimet auki, taajuus on valittu puolestanne. Tervetuloa herkuttelemaan Itä-Helsingin toivotuimmilla tekstikappaleilla, luontoillalla ja toivemusiikilla. Seurananne on tajunnan siivouskomeroa pöyhivä Duo Vastaanotin eli kirjailijat <b>Eeva Turunen</b> ja <b>Marjo Niemi</b>. Kuin harvoin avattuun komeroon olisi pesiytynyt levoton henki.</p><p>Kesto n. 2 t</p>", "sv": "<p>Kvällen på Bokmässan i öster förflyttar åhörarna in i en värld av musik, poesi och ordkonst.</p><p>kl. 19 | Duo Vastaanotin</p><p>kl. 20 | Asa</p><p>Asa, Avain, Asamasa, Aatsipoppa, Mats Nyckelström är en finsk ordkonstnär med lång erfarenhet. Under sin redan 25 år långa karriär har Asa aktivt släppt album och fått erkännande för dem från såväl lyssnare som kritiker.</p><p>Artisten har från början gått sin egen väg. Han har alltid rastlöst sökt efter en mer intressant och krokigare väg på denna resa utan mål. Asa har kallats en pionjär inom rapmusiken på finska, vars texter förenar galghumor och folkdiktning med samhällsrelaterade teman.</p><p>Denna rappare, som på egen hand ständigt söker efter nya musikaliska uttrycksformer, turnerar flitigt land och rike runt.</p><p>Kvällen inleds av Duo Vastaanotin med deras föreställning Kanavatyö:</p><p>Slå på mottagarna (på finska vastaanotin), frekvensen är redan vald åt er. Välkommen att njuta av de mest efterfrågade textstyckena i Östra Helsingfors, en kväll med önskemusik i naturens tecken. Ni får sällskap av Duo Vastaanotin, det vill säga författarna Eeva Turunen och Marjo Niemi, som rotar i medvetandets städskrubb. Som om en orolig ande hade bosatt sig i en skrubb som sällan öppnas.</p><p>Längd: ca 2 h</p>", "en": "<p>This evening at the Eastern Book Fair draws the audience into a world of music, poetry and literary art.</p><p>19.00 | Duo Vastaanotin</p><p>20.00 | Asa</p><p>Asa, also known as Avain, Asamasa, Aatsipoppa and Mats Nyckelström, is a veteran Finnish wordsmith. Throughout his twenty-five-year career, Asa has been actively releasing albums and has received acclaim for them from listeners and critics alike.</p><p>From the very beginning, this artist has forged his own path. He has always restlessly sought a more interesting and winding route on this journey with no destination. Asa has been hailed as a pioneer of Finnish-language rap, whose lyrics blend dark humour and folk poetry under social themes.</p><p>This rapper, who is constantly seeking new forms of musical expression on his own terms, tours diligently, performing at venues of all sizes across the country.</p><p>The evening will be opened by Duo Vastaanotin with their performance Kanavatyö.</p><p>Turn on your receivers; the frequency has been selected for you. Come and indulge yourself with the most requested pieces of text, a nature evening and your choice of music in East Helsinki. Your hosts are rummagers of the cleaning closet consciousness, Duo Vastaanotin, also known as writers Eeva Turunen and Marjo Niemi. It is as if a restless spirit has taken up residence in a rarely opened closet.</p><p>Duration: roughly 2 h</p>" }, "provider_contact_info": null, "short_description": { "fi": "Idän kirjamessujen ilta kietoo kuulijat musiikin, lyriikoiden ja sanataiteen maailmaan.", "sv": "Kvällen på Bokmässan i öster förflyttar åhörarna in i en värld av musik, poesi och ordkonst.", "en": "This evening at the Eastern Book Fair draws the audience into a world of music, poetry and literary art." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3128C0949DAADCC1E971639EEF2DB121/Asa_Duo_Vastaanotin", "sv": "http://www.stoa.fi/sv/evenemang/event/3128C0949DAADCC1E971639EEF2DB121/Asa_Duo_Vastaanotin", "en": "http://www.stoa.fi/en/events/event/3128C0949DAADCC1E971639EEF2DB121/Asa_Duo_Vastaanotin" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69518/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69718", "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:31/?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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385855, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-19T11:14:45.719546Z", "last_modified_time": "2026-08-19T11:14:45.719565Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784158.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385855/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-19T11:14:45.566720Z", "last_modified_time": "2026-09-04T06:23:49.382933Z", "date_published": null, "start_time": "2026-09-24T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Flyygelikuu: Maija Väisänen", "sv": "Flyygelikuu: Maija Väisänen", "en": "Flyygelikuu: Maija Väisänen" }, "description": { "fi": "<p>Ilta taittuu yöksi – tunnelmakuvia kiireisistä askelista, sydänsuruista, hellyydestä ja yön rauhasta. Philip Glass–Fanny Hensel–Outi Tarkiainen–Heino Kaski.</p><p>Maija Väisänen on Sibelius-Akatemiasta ja Lontoon Guildhall Schoolista valmistunut pianisti, joka konsertoi aktiivisesti, toimii Vuotalon Flyygelikuun taiteellisena koordinaattorina sekä opettaa pianonsoittoa Taideyliopiston Sibelius-Akatemiassa. Maija on esiintynyt festivaaleilla Euroopassa ja Yhdysvalloissa sekä useiden kotimaisten orkesterien solistina.</p><p>Hänet on palkittu useissa kansainvälisissä kilpailuissa, mm. 2. palkinto Concours Grieg -pianoduokilpailussa 2005 ja tunnustuspalkinto Maj Lind -kilpailussa 2007. Maijan viimeaikaisiin projekteihin kuuluu mm. Poulencin pianokamarimusiikin kokonaisesitys, taideklubi Hampurissa, naisten säveltämän kamarimusiikin esittäminen eri yhteyksissä sekä Villa Salmenrannan Kesäkonserttien taiteellisen johtajan tehtävät 2019-2025.</p><p>Maijan ensimmäinen soololevy Metamorphoses of Flowers ilmestyi Pilfink-merkiltä kesäkuussa.</p><p>Flyygelikuu-sarjassa nautitaan pianomusiikista kerran kuussa Vuotalon aulassa.</p><p>Lämpimästi tervetuloa!</p>", "sv": "<p>Kvällen övergår i natt – stämningsbilder av brådskande steg, hjärtesorg, ömhet och nattens stillhet. Philip Glass – Fanny Hensel – Outi Tarkiainen – Heino Kaski.</p><p>Maija Väisänen är en pianist med examen från Sibelius-Akademin och Guildhall School i London. Hon konserterar flitigt, är konstnärlig koordinator för Nordhusets Flyygelikuu och undervisar i pianospel vid Konstuniversitetets Sibelius-Akademi. Maija har uppträtt på festivaler i Europa och USA samt som solist med flera finska orkestrar. <br> <br>Hon har belönats i flera internationella tävlingar, bland annat med andrapris i pianoduotävlingen Concours Grieg 2005 och ett hederspris i Maj Lind-tävlingen 2007. I Maijas senaste projekt ingår bland annat ett komplett uppförande av Poulencs pianokammarmusik, en konstklubb i Hamburg, framföranden av kammarmusik komponerad av kvinnor i olika sammanhang och uppdraget som konstnärlig ledare för Villa Salmenrantas sommarkonserter 2019–2025. <br> <br>Maijas första soloskiva, Metamorphoses of Flowers, släpptes på skivbolaget Pilfink i juni.</p><p>I serien Flyygelikuu får åhörarna njuta av pianomusik en gång i månaden i Nordhusets entréhall.</p><p>Varmt välkommen!</p>", "en": "<p>Evening turns to night – atmospheric images of hurried footsteps, heartache, tenderness and the tranquillity of the night. Philip Glass – Fanny Hensel – Outi Tarkiainen – Heino Kaski.</p><p>Pianist Maija Väisänen is a graduate of the Sibelius Academy and the Guildhall School of Music & Drama in London. She performs actively, serves as the artistic coordinator of Vuosaari House’s Flyygelikuu programme, and teaches piano at the Sibelius Academy of Uniarts Helsinki. Maija has performed at festivals in Europe and the United States, in addition to appearing as a soloist with several Finnish orchestras. <br> <br>She has won prizes at several international competitions, including second prize at the Concours Grieg piano duo competition in 2005 and a special mention at the Maj Lind Piano Competition in 2007. Examples of Maija’s recent projects include a complete performance of Poulenc’s piano chamber music, an art club in Hamburg, performances of chamber music composed by women in various productions, and the duties of artistic director at Villa Salmenranta’s summer concerts from 2019 to 2025. <br> <br>Maija’s first solo album, Metamorphoses of Flowers, was released on the Pilfink label in June.</p><p>The Flyygelikuu series indulges audiences with piano music once a month in the lobby of Vuosaari House.</p><p>We hope to see you there!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Ilta taittuu yöksi – tunnelmakuvia kiireisistä askelista, sydänsuruista, hellyydestä ja yön rauhasta. Philip Glass–Fanny Hensel–Outi Tarkiainen–Heino Kaski.", "sv": "Kvällen övergår i natt – stämningsbilder av brådskande steg, hjärtesorg, ömhet och nattens stillhet. Philip Glass – Fanny Hensel – Outi Tarkiainen – Heino Kaski.", "en": "Evening turns to night – atmospheric images of hurried footsteps, heartache, tenderness and the tranquillity of the night. Philip Glass – Fanny Hensel – Outi Tarkiainen – Heino Kaski." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/08FFB6BD7D1440B2AD90128B3FBC83A8/Flyygelikuu_Maija_Vaisanen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/08FFB6BD7D1440B2AD90128B3FBC83A8/Flyygelikuu_Maija_Vaisanen", "en": "http://www.vuotalo.fi/en/events/event/08FFB6BD7D1440B2AD90128B3FBC83A8/Flyygelikuu_Maija_Vaisanen" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69718/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgwijppi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwikaoy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386118, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-03T07:51:26.154888Z", "last_modified_time": "2026-09-03T07:51:26.154903Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4a952289-0b69-4251-ade9-0708ca216e9a.jpg", "name": "", "cropping": "434,0,1486,1051", "photographer_name": "Donna Sloan Pixabaystä", "alt_text": "Kuvassa Minecraft maailma", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386118/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-04T06:07:17.934246Z", "last_modified_time": "2026-09-04T06:07:17.934261Z", "date_published": null, "start_time": "2027-05-14T13:00:00Z", "end_time": "2027-05-14T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": { "fi": "Espoon harrastuspolku | Xroc", "sv": "Esbo hobbystigen | Xroc", "en": "Espoon hobbypath | Xroc" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare 3.-6. ängskulla", "en": "Gaming hobby group for Minecraft adventurers for 3.-6. graders" }, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otat vastaan kaikki pelin tuomat haasteet yhdessä! </p><p><br></p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessä lapsen tuen tarpeista tai muista huomioitavista asioista. Näin harrastuksen järjestäjä voi huomioida lasten erilaiset tarpeet.</p><p><br></p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra! </p><p><br></p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande på bästa möjliga sätt. Berätta i samband med anmälan om barnet behöver stöd eller om det finns något annat som man ska ta hänsyn till. På så sätt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p><br></p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with nothing but fellow gamers to rely on and face all the challenges posed by the game together with others! </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the child’s participation in the best possible way. When registering, please let us know about the child’s support needs or other things that we need to take into account. This allows the hobby organiser to address children’s different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3–9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.", "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwijppi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgwijqoq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwikaoy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386118, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-03T07:51:26.154888Z", "last_modified_time": "2026-09-03T07:51:26.154903Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4a952289-0b69-4251-ade9-0708ca216e9a.jpg", "name": "", "cropping": "434,0,1486,1051", "photographer_name": "Donna Sloan Pixabaystä", "alt_text": "Kuvassa Minecraft maailma", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386118/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-04T06:07:17.787622Z", "last_modified_time": "2026-09-04T06:07:17.787638Z", "date_published": null, "start_time": "2027-05-07T13:00:00Z", "end_time": "2027-05-07T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": { "fi": "Espoon harrastuspolku | Xroc", "sv": "Esbo hobbystigen | Xroc", "en": "Espoon hobbypath | Xroc" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare 3.-6. ängskulla", "en": "Gaming hobby group for Minecraft adventurers for 3.-6. graders" }, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otat vastaan kaikki pelin tuomat haasteet yhdessä! </p><p><br></p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessä lapsen tuen tarpeista tai muista huomioitavista asioista. Näin harrastuksen järjestäjä voi huomioida lasten erilaiset tarpeet.</p><p><br></p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra! </p><p><br></p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande på bästa möjliga sätt. Berätta i samband med anmälan om barnet behöver stöd eller om det finns något annat som man ska ta hänsyn till. På så sätt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p><br></p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with nothing but fellow gamers to rely on and face all the challenges posed by the game together with others! </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the child’s participation in the best possible way. When registering, please let us know about the child’s support needs or other things that we need to take into account. This allows the hobby organiser to address children’s different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3–9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.", "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwijqoq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgwijq7i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwikaoy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386118, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-03T07:51:26.154888Z", "last_modified_time": "2026-09-03T07:51:26.154903Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4a952289-0b69-4251-ade9-0708ca216e9a.jpg", "name": "", "cropping": "434,0,1486,1051", "photographer_name": "Donna Sloan Pixabaystä", "alt_text": "Kuvassa Minecraft maailma", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386118/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-04T06:07:17.648956Z", "last_modified_time": "2026-09-04T06:07:17.648972Z", "date_published": null, "start_time": "2027-04-30T13:00:00Z", "end_time": "2027-04-30T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": { "fi": "Espoon harrastuspolku | Xroc", "sv": "Esbo hobbystigen | Xroc", "en": "Espoon hobbypath | Xroc" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare 3.-6. ängskulla", "en": "Gaming hobby group for Minecraft adventurers for 3.-6. graders" }, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otat vastaan kaikki pelin tuomat haasteet yhdessä! </p><p><br></p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessä lapsen tuen tarpeista tai muista huomioitavista asioista. Näin harrastuksen järjestäjä voi huomioida lasten erilaiset tarpeet.</p><p><br></p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra! </p><p><br></p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande på bästa möjliga sätt. Berätta i samband med anmälan om barnet behöver stöd eller om det finns något annat som man ska ta hänsyn till. På så sätt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p><br></p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with nothing but fellow gamers to rely on and face all the challenges posed by the game together with others! </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the child’s participation in the best possible way. When registering, please let us know about the child’s support needs or other things that we need to take into account. This allows the hobby organiser to address children’s different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3–9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.", "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwijq7i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgwijroi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwikaoy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386118, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-03T07:51:26.154888Z", "last_modified_time": "2026-09-03T07:51:26.154903Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4a952289-0b69-4251-ade9-0708ca216e9a.jpg", "name": "", "cropping": "434,0,1486,1051", "photographer_name": "Donna Sloan Pixabaystä", "alt_text": "Kuvassa Minecraft maailma", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386118/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-04T06:07:17.512275Z", "last_modified_time": "2026-09-04T06:07:17.512291Z", "date_published": null, "start_time": "2027-04-23T13:00:00Z", "end_time": "2027-04-23T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": { "fi": "Espoon harrastuspolku | Xroc", "sv": "Esbo hobbystigen | Xroc", "en": "Espoon hobbypath | Xroc" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare 3.-6. ängskulla", "en": "Gaming hobby group for Minecraft adventurers for 3.-6. graders" }, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otat vastaan kaikki pelin tuomat haasteet yhdessä! </p><p><br></p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessä lapsen tuen tarpeista tai muista huomioitavista asioista. Näin harrastuksen järjestäjä voi huomioida lasten erilaiset tarpeet.</p><p><br></p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra! </p><p><br></p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande på bästa möjliga sätt. Berätta i samband med anmälan om barnet behöver stöd eller om det finns något annat som man ska ta hänsyn till. På så sätt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p><br></p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with nothing but fellow gamers to rely on and face all the challenges posed by the game together with others! </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the child’s participation in the best possible way. When registering, please let us know about the child’s support needs or other things that we need to take into account. This allows the hobby organiser to address children’s different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3–9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.", "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwijroi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgwijsam", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwikaoy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386118, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-03T07:51:26.154888Z", "last_modified_time": "2026-09-03T07:51:26.154903Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4a952289-0b69-4251-ade9-0708ca216e9a.jpg", "name": "", "cropping": "434,0,1486,1051", "photographer_name": "Donna Sloan Pixabaystä", "alt_text": "Kuvassa Minecraft maailma", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386118/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-04T06:07:17.370664Z", "last_modified_time": "2026-09-04T06:07:17.370679Z", "date_published": null, "start_time": "2027-04-16T13:00:00Z", "end_time": "2027-04-16T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": { "fi": "Espoon harrastuspolku | Xroc", "sv": "Esbo hobbystigen | Xroc", "en": "Espoon hobbypath | Xroc" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare 3.-6. ängskulla", "en": "Gaming hobby group for Minecraft adventurers for 3.-6. graders" }, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otat vastaan kaikki pelin tuomat haasteet yhdessä! </p><p><br></p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessä lapsen tuen tarpeista tai muista huomioitavista asioista. Näin harrastuksen järjestäjä voi huomioida lasten erilaiset tarpeet.</p><p><br></p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra! </p><p><br></p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande på bästa möjliga sätt. Berätta i samband med anmälan om barnet behöver stöd eller om det finns något annat som man ska ta hänsyn till. På så sätt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p><br></p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with nothing but fellow gamers to rely on and face all the challenges posed by the game together with others! </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the child’s participation in the best possible way. When registering, please let us know about the child’s support needs or other things that we need to take into account. This allows the hobby organiser to address children’s different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3–9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.", "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwijsam/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgwijspy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwikaoy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386118, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-03T07:51:26.154888Z", "last_modified_time": "2026-09-03T07:51:26.154903Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4a952289-0b69-4251-ade9-0708ca216e9a.jpg", "name": "", "cropping": "434,0,1486,1051", "photographer_name": "Donna Sloan Pixabaystä", "alt_text": "Kuvassa Minecraft maailma", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386118/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-04T06:07:17.230174Z", "last_modified_time": "2026-09-04T06:07:17.230190Z", "date_published": null, "start_time": "2027-04-09T13:00:00Z", "end_time": "2027-04-09T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": { "fi": "Espoon harrastuspolku | Xroc", "sv": "Esbo hobbystigen | Xroc", "en": "Espoon hobbypath | Xroc" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare 3.-6. ängskulla", "en": "Gaming hobby group for Minecraft adventurers for 3.-6. graders" }, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otat vastaan kaikki pelin tuomat haasteet yhdessä! </p><p><br></p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessä lapsen tuen tarpeista tai muista huomioitavista asioista. Näin harrastuksen järjestäjä voi huomioida lasten erilaiset tarpeet.</p><p><br></p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra! </p><p><br></p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande på bästa möjliga sätt. Berätta i samband med anmälan om barnet behöver stöd eller om det finns något annat som man ska ta hänsyn till. På så sätt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p><br></p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with nothing but fellow gamers to rely on and face all the challenges posed by the game together with others! </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the child’s participation in the best possible way. When registering, please let us know about the child’s support needs or other things that we need to take into account. This allows the hobby organiser to address children’s different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3–9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.", "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwijspy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgwijs6q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwikaoy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386118, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-03T07:51:26.154888Z", "last_modified_time": "2026-09-03T07:51:26.154903Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4a952289-0b69-4251-ade9-0708ca216e9a.jpg", "name": "", "cropping": "434,0,1486,1051", "photographer_name": "Donna Sloan Pixabaystä", "alt_text": "Kuvassa Minecraft maailma", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386118/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-04T06:07:17.083792Z", "last_modified_time": "2026-09-04T06:07:17.083806Z", "date_published": null, "start_time": "2027-04-02T13:00:00Z", "end_time": "2027-04-02T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": { "fi": "Espoon harrastuspolku | Xroc", "sv": "Esbo hobbystigen | Xroc", "en": "Espoon hobbypath | Xroc" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare 3.-6. ängskulla", "en": "Gaming hobby group for Minecraft adventurers for 3.-6. graders" }, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otat vastaan kaikki pelin tuomat haasteet yhdessä! </p><p><br></p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessä lapsen tuen tarpeista tai muista huomioitavista asioista. Näin harrastuksen järjestäjä voi huomioida lasten erilaiset tarpeet.</p><p><br></p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra! </p><p><br></p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande på bästa möjliga sätt. Berätta i samband med anmälan om barnet behöver stöd eller om det finns något annat som man ska ta hänsyn till. På så sätt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p><br></p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with nothing but fellow gamers to rely on and face all the challenges posed by the game together with others! </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the child’s participation in the best possible way. When registering, please let us know about the child’s support needs or other things that we need to take into account. This allows the hobby organiser to address children’s different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3–9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.", "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwijs6q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgwijtoy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwikaoy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386118, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-03T07:51:26.154888Z", "last_modified_time": "2026-09-03T07:51:26.154903Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4a952289-0b69-4251-ade9-0708ca216e9a.jpg", "name": "", "cropping": "434,0,1486,1051", "photographer_name": "Donna Sloan Pixabaystä", "alt_text": "Kuvassa Minecraft maailma", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386118/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-04T06:07:16.940321Z", "last_modified_time": "2026-09-04T06:07:16.940336Z", "date_published": null, "start_time": "2027-03-26T14:00:00Z", "end_time": "2027-03-26T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": { "fi": "Espoon harrastuspolku | Xroc", "sv": "Esbo hobbystigen | Xroc", "en": "Espoon hobbypath | Xroc" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare 3.-6. ängskulla", "en": "Gaming hobby group for Minecraft adventurers for 3.-6. graders" }, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otat vastaan kaikki pelin tuomat haasteet yhdessä! </p><p><br></p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessä lapsen tuen tarpeista tai muista huomioitavista asioista. Näin harrastuksen järjestäjä voi huomioida lasten erilaiset tarpeet.</p><p><br></p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra! </p><p><br></p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande på bästa möjliga sätt. Berätta i samband med anmälan om barnet behöver stöd eller om det finns något annat som man ska ta hänsyn till. På så sätt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p><br></p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with nothing but fellow gamers to rely on and face all the challenges posed by the game together with others! </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the child’s participation in the best possible way. When registering, please let us know about the child’s support needs or other things that we need to take into account. This allows the hobby organiser to address children’s different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3–9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.", "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwijtoy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgwijuau", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwikaoy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386118, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-03T07:51:26.154888Z", "last_modified_time": "2026-09-03T07:51:26.154903Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4a952289-0b69-4251-ade9-0708ca216e9a.jpg", "name": "", "cropping": "434,0,1486,1051", "photographer_name": "Donna Sloan Pixabaystä", "alt_text": "Kuvassa Minecraft maailma", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386118/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-04T06:07:16.790015Z", "last_modified_time": "2026-09-04T06:07:16.790030Z", "date_published": null, "start_time": "2027-03-19T14:00:00Z", "end_time": "2027-03-19T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": { "fi": "Espoon harrastuspolku | Xroc", "sv": "Esbo hobbystigen | Xroc", "en": "Espoon hobbypath | Xroc" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare 3.-6. ängskulla", "en": "Gaming hobby group for Minecraft adventurers for 3.-6. graders" }, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otat vastaan kaikki pelin tuomat haasteet yhdessä! </p><p><br></p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessä lapsen tuen tarpeista tai muista huomioitavista asioista. Näin harrastuksen järjestäjä voi huomioida lasten erilaiset tarpeet.</p><p><br></p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra! </p><p><br></p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande på bästa möjliga sätt. Berätta i samband med anmälan om barnet behöver stöd eller om det finns något annat som man ska ta hänsyn till. På så sätt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p><br></p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with nothing but fellow gamers to rely on and face all the challenges posed by the game together with others! </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the child’s participation in the best possible way. When registering, please let us know about the child’s support needs or other things that we need to take into account. This allows the hobby organiser to address children’s different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3–9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.", "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwijuau/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgwijurq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwikaoy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386118, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-03T07:51:26.154888Z", "last_modified_time": "2026-09-03T07:51:26.154903Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4a952289-0b69-4251-ade9-0708ca216e9a.jpg", "name": "", "cropping": "434,0,1486,1051", "photographer_name": "Donna Sloan Pixabaystä", "alt_text": "Kuvassa Minecraft maailma", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386118/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-04T06:07:16.636413Z", "last_modified_time": "2026-09-04T06:07:16.636429Z", "date_published": null, "start_time": "2027-03-12T14:00:00Z", "end_time": "2027-03-12T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": { "fi": "Espoon harrastuspolku | Xroc", "sv": "Esbo hobbystigen | Xroc", "en": "Espoon hobbypath | Xroc" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare 3.-6. ängskulla", "en": "Gaming hobby group for Minecraft adventurers for 3.-6. graders" }, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otat vastaan kaikki pelin tuomat haasteet yhdessä! </p><p><br></p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessä lapsen tuen tarpeista tai muista huomioitavista asioista. Näin harrastuksen järjestäjä voi huomioida lasten erilaiset tarpeet.</p><p><br></p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra! </p><p><br></p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande på bästa möjliga sätt. Berätta i samband med anmälan om barnet behöver stöd eller om det finns något annat som man ska ta hänsyn till. På så sätt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p><br></p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with nothing but fellow gamers to rely on and face all the challenges posed by the game together with others! </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the child’s participation in the best possible way. When registering, please let us know about the child’s support needs or other things that we need to take into account. This allows the hobby organiser to address children’s different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3–9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.", "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwijurq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgwijvb4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwikaoy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386118, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-03T07:51:26.154888Z", "last_modified_time": "2026-09-03T07:51:26.154903Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4a952289-0b69-4251-ade9-0708ca216e9a.jpg", "name": "", "cropping": "434,0,1486,1051", "photographer_name": "Donna Sloan Pixabaystä", "alt_text": "Kuvassa Minecraft maailma", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386118/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-04T06:07:16.471742Z", "last_modified_time": "2026-09-04T06:07:16.471756Z", "date_published": null, "start_time": "2027-03-05T14:00:00Z", "end_time": "2027-03-05T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": { "fi": "Espoon harrastuspolku | Xroc", "sv": "Esbo hobbystigen | Xroc", "en": "Espoon hobbypath | Xroc" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare 3.-6. ängskulla", "en": "Gaming hobby group for Minecraft adventurers for 3.-6. graders" }, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otat vastaan kaikki pelin tuomat haasteet yhdessä! </p><p><br></p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessä lapsen tuen tarpeista tai muista huomioitavista asioista. Näin harrastuksen järjestäjä voi huomioida lasten erilaiset tarpeet.</p><p><br></p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra! </p><p><br></p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande på bästa möjliga sätt. Berätta i samband med anmälan om barnet behöver stöd eller om det finns något annat som man ska ta hänsyn till. På så sätt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p><br></p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with nothing but fellow gamers to rely on and face all the challenges posed by the game together with others! </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the child’s participation in the best possible way. When registering, please let us know about the child’s support needs or other things that we need to take into account. This allows the hobby organiser to address children’s different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3–9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.", "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwijvb4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgwijvsa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwikaoy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386118, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-03T07:51:26.154888Z", "last_modified_time": "2026-09-03T07:51:26.154903Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4a952289-0b69-4251-ade9-0708ca216e9a.jpg", "name": "", "cropping": "434,0,1486,1051", "photographer_name": "Donna Sloan Pixabaystä", "alt_text": "Kuvassa Minecraft maailma", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386118/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-09-04T06:07:16.329391Z", "last_modified_time": "2026-09-04T06:07:16.329406Z", "date_published": null, "start_time": "2027-02-19T14:00:00Z", "end_time": "2027-02-19T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": { "fi": "Espoon harrastuspolku | Xroc", "sv": "Esbo hobbystigen | Xroc", "en": "Espoon hobbypath | Xroc" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare 3.-6. ängskulla", "en": "Gaming hobby group for Minecraft adventurers for 3.-6. graders" }, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otat vastaan kaikki pelin tuomat haasteet yhdessä! </p><p><br></p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Haluamme tukea lapsen osallistumista parhaalla mahdollisella tavalla. Kerro ilmoittautumisen yhteydessä lapsen tuen tarpeista tai muista huomioitavista asioista. Näin harrastuksen järjestäjä voi huomioida lasten erilaiset tarpeet.</p><p><br></p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita. </p>", "sv": "<p>I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld med stöd av hobbygruppen, och du hanterar alla utmaningar som spelet ger dig tillsammans med andra! </p><p><br></p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Vi vill stödja barnets deltagande på bästa möjliga sätt. Berätta i samband med anmälan om barnet behöver stöd eller om det finns något annat som man ska ta hänsyn till. På så sätt kan den som ordnar hobbyn beaktar barnens olika behov.</p><p><br></p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum. </p>", "en": "<p>In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft with nothing but fellow gamers to rely on and face all the challenges posed by the game together with others! </p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. We want to support the child’s participation in the best possible way. When registering, please let us know about the child’s support needs or other things that we need to take into account. This allows the hobby organiser to address children’s different needs.</p><p>The Espoo Hobby Path offers popular, free-of-charge hobbies for children in grades 3–9, arranged after school days at school premises, near the school or via remote connection. The Espoo Hobby Path is a way of implementing the Finnish model for leisure activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I Minecraft-spelklubbarna hoppar du in i Minecrafts vilda och oförutsägbara vildmarksvärld.", "en": "In the Minecraft gaming groups, you’ll jump into the untamed and unpredictable wilderness of Minecraft." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgwijvsa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }