Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time
.
Default full text search ordering is based on search relevance rank and id (-rank,id
).
You may also order results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=29
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=30", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=28" }, "data": [ { "id": "kulke:67002", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:646/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490717, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T11:14:53.527700Z", "last_modified_time": "2025-09-10T11:14:53.527719Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777074.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490717/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T11:14:53.379562Z", "last_modified_time": "2025-09-10T12:14:54.094308Z", "date_published": null, "start_time": "2025-11-29T09: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, "provider": { "fi": "Taiteilijat O ry https://taiteilijato.fi/" }, "location_extra_info": null, "name": { "fi": "Kumppanieläin-työpaja & Death Cafe – Kun aika on -näyttelyn oheisohjelmaa", "sv": "Kumppanieläin-työpaja & Death Cafe", "en": "Kumppanieläin-työpaja & Death Cafe" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9BA0CB8166065D1D280F65B7679EE77C/Kumppanielain-tyopaja_Death_Cafe", "sv": "http://www.stoa.fi/sv/evenemang/event/9BA0CB8166065D1D280F65B7679EE77C/Kumppanielain-tyopaja_Death_Cafe", "en": "http://www.stoa.fi/en/events/event/9BA0CB8166065D1D280F65B7679EE77C/Kumppanielain-tyopaja_Death_Cafe" }, "short_description": { "fi": "Kun on aika päästää irti rakkaasta lemmikistä, muistojen vaaliminen auttaa surussa." }, "provider_contact_info": null, "description": { "fi": "<p>Kun on aika päästää irti rakkaasta lemmikistä, muistojen vaaliminen auttaa surussa.</p><p>Tervetuloa työpajaan, jossa voit jakaa ajatuksia ja tunteita muiden samassa tilanteessa olevien kanssa ja luoda samalla kauniin, käsintehdyn muistoesineen sydänystävällesi - pussin, rasian tai pesän.</p><p><b>Mitä työpajassa tapahtuu?</b></p><p>Tapahtuma alkaa keskustelulla, jossa jaetaan kokemuksia ja ideoita. Näiden ideoiden pohjalta pääset suunnittelemaan ja valmistamaan pussin, rasian tai pesän, joka on tarkoitettu lemmikin tuhkan säilyttämiseen tai maahan hautaamiseen. Tässä työpajassa emme tavoittele teknisesti vaativia ratkaisuja, vaan luovuutta ja yhteisöllisyyttä.<br> <br>Työpajaa ohjaavat kokeneet muotoilun, taiteen ja käsityön ammattilaiset: keramiikkataiteilija Leena Mäki-Patola, tekstiilitaiteilija Mervi Vuolas ja muotoilija Hanna van Ingen. He kaikki ovat mukana myös KUN AIKA ON -näyttelyssä, joten tämä on ainutlaatuinen tilaisuus tavata heidät ja kuulla heidän ajatuksiaan.</p><p><b> Aikataulut</b></p><p>klo 11–12 Death Café - Kuolemankahvila<br>klo 12–15 Kumppanieläin-työpaja</p><p><b>Osallistuminen ja materiaalit</b></p><p>Työpaja on maksuton ja toimii nyyttikesti-periaatteella. Materiaaleja on käytössä rajoitetusti, joten tuo mukanasi maatuvia materiaaleja esim. kangasta, narua, puunpalasia, pahvisia rasioita sekä pieniä työvälineitä kuten sakset, neula, viivoitin, liima, jaettavaksi muiden osallistujien kanssa. <br> <br>Paikkoja on rajoitetusti, joten ilmoittaudu nopeasti! Mukaan mahtuu 10 henkilöä ilmoittautumisjärjestyksessä.<br> <br><b>Death Café - Kuolemankahvila ennen työpajaa</b><br>Ennen työpajaa on mahdollista osallistua Death Caféen, jota uskontotieteilijä Pauli Jyrkinewsky isännöi. Kuolemankahvila on avoin keskustelutilaisuus, jossa ihmiset kokoontuvat keskustelemaan kumppanieläinten menettämisestä ja surun käsittelystä. Tavoitteena on lisätä kuoleman kohtaamisen luonnollisuutta.<br> <br>Voit osallistua kumppanieläin-työpajaan ilman kahvilaa tai tulla vain kahvilaan ilman työpajaa. Valitse itsellesi sopivin vaihtoehto ja saavu paikalle kokemaan ja keskustelemaan.<br> <br><b>Ilmoittautumiset työpajaan:</b></p><p>23.11.2025 mennessä osoitteeseen nayttelyt@taiteilijato.fi</p><p>Tapahtuman tuottaa <br>Taiteilijat O ry https://taiteilijato.fi/<br> <br>Yhteistyössä <br>Kulttuurikeskus Stoa https://www.stoa.fi/ <br>Death Café https://deathcafe.com/what/</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67002/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:c3312ca8-3acd-448e-812c-d2ab93b8682f", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Uusi_nyttelyprojekti_1093192332245" }, "price": { "fi": "0" }, "description": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1490720, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-10T12:07:49.032588Z", "last_modified_time": "2025-09-10T12:07:49.032604Z", "name": "Näyttämö", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/5309159a-3a8e-f011-b4cc-000d3ab0762c", "cropping": "", "photographer_name": "Valo Kuvaaja", "alt_text": "Piirretty Näyttämö kuva", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490720/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "created_time": "2025-09-10T12:07:51.404250Z", "last_modified_time": "2025-09-10T12:07:51.404270Z", "date_published": "2025-09-10T10:52:35Z", "start_time": "2025-09-22T05:00:00Z", "end_time": "2025-10-12T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 10, "audience_max_age": 99, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 200, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-09-10T08:00:00+03:00", "enrolment_end_time": "2025-09-11T23:30:00+03:00", "local": false, "replaced_by": null, "provider": { "fi": "ABC yritys" }, "location_extra_info": null, "name": { "fi": "Uusi näyttelyprojekti 10.9.", "en": "New exhibition" }, "info_url": null, "short_description": { "fi": "Kaikkea kivaa.", "en": "Everything nice" }, "provider_contact_info": null, "description": { "fi": "<div><p>Kaikkea kivaa paljon.</p></div>", "en": "<div><p>Loads on nice things</p></div>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:c3312ca8-3acd-448e-812c-d2ab93b8682f/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z7nli", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490114, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T10:25:06.430379Z", "last_modified_time": "2025-08-13T10:25:06.430393Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2d081ebb-7a3c-493c-9385-ce2d3df7354b.jpg", "cropping": "315,0,1125,810", "photographer_name": "Laura H / Silent Book Club", "alt_text": "Taustalla rauhallinen huone, etualalla Silent Book Clubin logo ja teksti Tapiolan kirjasto", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-13T10:48:19.846760Z", "last_modified_time": "2025-09-10T12:01:13.814072Z", "date_published": "2025-08-13T10:23:00Z", "start_time": "2025-09-13T10:00:00Z", "end_time": "2025-09-13T12: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, "provider": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "name": { "fi": "Hiljainen lukupiiri Tapiolan kirjasto", "sv": "Tyst bokcirkel Hagalunds bibliotek", "en": "Silent Book Club Tapiola Library" }, "info_url": { "fi": "https://silentbook.club/", "sv": "https://silentbook.club/", "en": "https://silentbook.club/" }, "short_description": { "fi": "1. Kerro muille, mitä olet lukemassa\n2. Hiljainen lukutunti\n3. Jatka lukemista, tai keskustele kirjoista yhdessä", "sv": "1. Berätta för övriga deltagare vad du läser\n2. En timme tyst läsning\n3. Fortsätt läsa eller diskutera böckerna tillsammans med andra", "en": "1. Share what you are reading\n2. Quiet reading hour\n3. Optional socializing, or just keep reading" }, "provider_contact_info": null, "description": { "fi": "<p>Ohjelma</p><p>13:00-13:30 - Saapuminen, kerro muille, mitä olet lukemassa</p><p>13:30-14:30 - Hiljainen lukutunti</p><p>14:30-15:00 - Jatka lukemista, tai keskustele kirjoista yhdessä</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Program:</p><p>13:00-13:30 - Ankomst, berätta för övriga deltagare vad du läser</p><p>13:30-14:30 - En timme tyst läsning</p><p>14:30-15:00 - Fortsätt läsa eller diskutera böckerna tillsammans med andra</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Program</p><p>1:00-1:30pm - Arrival, share what you are reading</p><p>1:30-2:30pm - Quiet reading hour</p><p>2:30-3:00pm - Optional socializing, or just keep reading</p><p><br></p><p>#HelloEspoo</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7nli/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z5scq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5py4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5qly/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5q5u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5rqy/?format=api" } ], "images": [ { "id": 1490101, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-05T07:23:52.622754Z", "last_modified_time": "2024-01-05T07:23:52.622775Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Tyyne.png", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Tummanruskea kiharakarvainen koira laiturilla.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490101/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-15T05:57:16.220490Z", "last_modified_time": "2025-09-10T12:00:24.185000Z", "date_published": null, "start_time": "2025-09-18T15:00:00Z", "end_time": "2025-12-11T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "location_extra_info": { "fi": "Lastenosasto", "sv": "Barnavdelningen", "en": "Children’s Department" }, "name": { "fi": "Lukukoira Tyyne", "sv": "Läshund Tyyne", "en": "Reading Dog Tyyne " }, "info_url": null, "short_description": { "fi": "Lukukoira Tyyne odottaa innolla lukijoita Tapiolan kirjastoon klo 18-19.", "sv": "Läshund Tyyne ser fram emot läsare på Tapiola biblioteket kl. 18-19.", "en": "Reading DogTyyne is eagerly awaiting readers at Tapiola Library from 18:00 to 19:00." }, "provider_contact_info": null, "description": { "fi": "<p>Lukukoira Tyyne odottaa innolla lukijoita Tapiolan kirjastoon.</p><p>to 18.9.</p><p>to 16.10.</p><p>to 13.11.</p><p>to 11.12.</p><p>Klo 18-19:00.</p><p>Tervetuloa!</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Läshund Tyyne ser fram emot läsare på Tapiola biblioteket kl. 18-19.</p><ul><li>to 18.9.</li><li>to 16.10.</li><li>to 13.11.</li><li>to 11.12.</li></ul><p>Välkommen!</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Reading DogTyyne is eagerly awaiting readers at Tapiola Library from 6pm to 7pm.</p><ul><li>to 18.9.</li><li>to 16.10.</li><li>to 13.11.</li><li>to 11.12.</li></ul><p>Welcome!</p><p><br></p><p>#HelloEspoo</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5scq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmlz4r3qa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4ruqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4ru6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rvj4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rvwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rwci/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rwoa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rw2a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rxga/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rxsm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rx6m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4ryly/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4ryxq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rzdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rzpu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rz5e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4r2ki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4r2xi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4r3du/?format=api" } ], "images": [ { "id": 150422, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-27T12:30:08.869964Z", "last_modified_time": "2023-11-27T12:30:19.230971Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/151122Kielikahvila_mainos_680_x_382_px.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirrettyjä ihmisiä keltaisella taustalla. Puhekuplissa Tervetuloa, Solmu kielikahvila, moi. Yläkulmassa eläkeliiton logo.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150422/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-18T10:45:28.017856Z", "last_modified_time": "2025-09-10T11:59:30.905778Z", "date_published": null, "start_time": "2025-08-20T13:00:00Z", "end_time": "2025-12-17T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Eläkeliiton Espoon yhdistyksen vapaaehtoiset", "sv": "Frivilliga från Eläkeliitto Espoo-föreningen", "en": "Volunteers from the Eläkeliitto Espoo Association" }, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "name": { "fi": "Solmu - suomen kielen kielikahvila", "sv": "Solmu - det finska språkkaféet", "en": "Solmu - the Finnish language cafe" }, "info_url": null, "short_description": { "fi": "Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea.", "sv": "Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska.", "en": "A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish." }, "provider_contact_info": null, "description": { "fi": "<p>Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea. Myös aloittelijat ovat tervetulleita.</p><p>Kielikahvilaan ei tarvitse ilmoittautua etukäteen. Mukaan voi tulla koska tahansa.</p><p>Kielikahvilassa opit puhumaan arkielämän suomen kieltä. Kielikahvilassa pääset puhumaan suomea suomalaisten kanssa.</p><p>Tervetuloa mukaan!</p><p>#HelloEspoo</p>", "sv": "<p>Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. Nybörjare är också välkomna.</p><p>Du behöver inte anmäla dig till språkcaféet i förväg. Du kan komma när som helst.</p><p>I språkcaféet får du lära dig att tala det finska vardagsspråket. I språkcaféet kan du prata finska med finländare.</p><p>Välkommen ombord!</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>A language cafe for speaking Finnish, free and open to everyone. You can participate in the language cafe if you want to learn to speak Finnish. Beginners are also welcome.</p><p>You do not need to register for the language cafe in advance. You can come anytime.</p><p>In the language cafe, you will learn to speak the Finnish language of everyday life. In the language cafe you can speak Finnish with Finns.</p><p>Welcome aboard!</p><p><br></p><p>#HelloEspoo</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4r3qa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmlzoxtoq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490413, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-18T09:11:56.549717Z", "last_modified_time": "2025-08-18T09:11:56.549732Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/1ded303d-c0dc-446d-8400-d4a4c952a0dc.jpg", "cropping": "420,0,1500,1080", "photographer_name": "Ballycroy / Getty images signature", "alt_text": "Korissa keskeneräinen värikäs villasukka ja sukkapuikot.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490413/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-18T09:20:41.469591Z", "last_modified_time": "2025-09-10T11:58:55.068027Z", "date_published": "2025-08-18T09:08:00Z", "start_time": "2025-09-25T13:30:00Z", "end_time": "2025-09-25T15: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, "provider": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "name": { "fi": "Villasukkailta", "sv": "Yllekväll med sockstickning", "en": "Wool sock evening" }, "info_url": null, "short_description": { "fi": "Tule vaihtamaan ideoita, oppimaan uutta ja jakamaan omaa osaamistasi niiden kanssa, jotka ovat vielä alkutaipaleella oman sukkansa kanssa.", "sv": "Kom och byt idéer, lär dig något nytt och dela med dig av din kunskap till dem som just har börjat sin stickresa med sockor.", "en": " Come exchange ideas, learn something new, and share your expertise with those who are just beginning their sock-knitting journey." }, "provider_contact_info": null, "description": { "fi": "<p><strong>Tapiolan kirjaston villasukkailtaan ovat tervetulleita kaiken tasoiset neulojat! Tule vaihtamaan ideoita, oppimaan uutta ja jakamaan omaa osaamistasi niiden kanssa, jotka ovat vielä alkutaipaleella oman sukkansa kanssa.</strong></p><p>Ota mukaan lankakerä, ja niihin sopivat sukkapuikot (löydät suositellun puikkokoon lankakerän vyötteestä). Kirjasto tarjoaa monipuolisesti erilaisia ohjeita sukan neulomiseen kirjojen muodossa. Kirjoja saa lainata kotiin tapahtuman jälkeen.</p><p>Tilaisuuden jälkeen olet tervetullut jatkamaan sukkaasi <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:aglkvkq4au\">Jukka Viikilän kirjailijavierailun</a> ajan klo 18-19:00 Tapahtumatila Kaijassa.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p><strong>Alla nivåer av stickare är välkomna till Hagalunds bibliotekets yllekväll! Kom och byt idéer, lär dig något nytt och dela med dig av din kunskap till dem som just har börjat sin stickresa med sockor.</strong></p><p>Ta med ett garnnystan och strumpstickor som passar garnet (den rekommenderade stickstorleken finns på garnets banderoll). Biblioteket erbjuder ett mångsidigt urval av stickinstruktioner i bokform, och böckerna kan lånas hem efter evenemanget.</p><p>Efter evenemanget är du välkommen att fortsätta sticka under <a href=\"https://www.espoo.fi/sv/evenemang/espooevents:aglkvkq4au\">författarbesöket med Jukka Viikilä</a> kl. 18–19 i evenemangsutrymmet Kaija.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p><strong>Knitters of all skill levels are welcome to Tapiola Library’s wool sock evening! Come exchange ideas, learn something new, and share your expertise with those who are just beginning their sock-knitting journey.</strong></p><p>Bring a ball of yarn and matching double-pointed needles (you’ll find the recommended needle size on the yarn label). The library offers a wide selection of sock-knitting instructions in book form, and the books can be borrowed after the event.</p><p>After the event, you’re welcome to continue knitting during <a href=\"https://www.espoo.fi/en/events/espooevents:aglkvkq4au\">author Jukka Viikilä’s visit</a> from 6 to 7 PM in the Kaija event space.</p><p><br></p><p>#HelloEspoo</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlzoxtoq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmssfgjne", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmssfgg5u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmssfghli/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmssfghyi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmssfgiei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmssfgiqa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmssfgi6u/?format=api" } ], "images": [ { "id": 1490656, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T13:25:37.472364Z", "last_modified_time": "2024-12-18T13:25:37.472429Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/d8fe99ce-d70d-4b1b-8f3c-eebcbc92b7f3.jpg", "cropping": "136,0,954,818", "photographer_name": "", "alt_text": "Kaksi 3D-tulostettua hahmoa 3D-tulostetun kyltin päällä, jossa lukee PAJA.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490656/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-09-08T10:38:53.625820Z", "last_modified_time": "2025-09-10T11:55:42.693284Z", "date_published": null, "start_time": "2025-10-09T13:00:00Z", "end_time": "2025-12-18T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "location_extra_info": { "fi": "Paja", "sv": "Verkstad", "en": "Maker Space" }, "name": { "fi": "Paja tutuksi kaikille", "sv": "Verkstad för alla", "en": "Makerspace for all" }, "info_url": null, "short_description": { "fi": "Tervetuloa tutustumaan Tapiolan kirjaston Pajaan.", "sv": "Välkommen att lära dig hur du använder 3D-skrivare, vinylskärare, overlockmaskin och symaskin.", "en": "Welcome to learn how to use a 3D printers, a vinyl cutter, an overlock machine, and a sewing machine." }, "provider_contact_info": null, "description": { "fi": "<p>Tule tutustumaan pajan laitteisiin ja mahdollisuuksiin. </p><p>Annamme opastusta 3D-tulostimien, vinyylileikkurin, saumurin ja ompelukoneen käyttöön. Ota oma puuvillainen vaate tms. mukaan, jos haluat painaa siihen kuvan tai tekstin. Vaihtoehtoisesti voit tehdä tarran.</p><p>Tulostus- ja vinyylimateriaalin tarjoaa kirjasto.</p><p>Ohjausta tarjotaan suomeksi ja englanniksi. </p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Kom och bekanta dig med verkstadens utrustning och möjligheter.</p><p>Vi ger handledning i användning av 3D-skrivare, vinylskärare, overlockmaskin och symaskin. Ta med ett eget bomullsplagg eller liknande om du vill trycka en bild eller text på det. Alternativt kan du göra en klistermärke.</p><p>Biblioteket tillhandahåller utskrifts- och vinylmaterial.</p><p>Vägledning ges på finska och engelska.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Come and explore the equipment and possibilities of the workshop.</p><p>We provide guidance on using 3D printers, a vinyl cutter, an overlock machine, and a sewing machine. Bring your own cotton garment or similar item if you want to print an image or text on it. Alternatively, you can make a sticker.</p><p>The library provides the printing and vinyl materials.</p><p>Guidance is available in Finnish and English.</p><p><br></p><p>#HelloEspoo</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmssfgjne/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66493", "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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 893978, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-30T10:14:01.876463Z", "last_modified_time": "2025-05-30T10:14:01.876480Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765406.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/893978/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-30T10:14:01.750214Z", "last_modified_time": "2025-09-10T11:14:31.389533Z", "date_published": null, "start_time": "2025-09-10T13:00:00Z", "end_time": "2025-09-10T16: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, "provider": null, "location_extra_info": null, "name": { "fi": "Welcome Day Vuotalo", "sv": "Welcome Day Vuotalo", "en": "Welcome Day Vuotalo" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A5CA5DAAAD3759A0F8FEFABB5306EB40/Welcome_Day_Vuotalo_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A5CA5DAAAD3759A0F8FEFABB5306EB40/Welcome_Day_Vuotalo_", "en": "http://www.vuotalo.fi/en/events/event/A5CA5DAAAD3759A0F8FEFABB5306EB40/Welcome_Day_Vuotalo_" }, "short_description": { "fi": "Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!", "sv": "Welcome Day hälsar invånare som nyligen flyttat till Finland välkomna till Helsingfors!", "en": "Cultural Centre Vuotalo welcomes the recently arrived international residents to Helsinki!" }, "provider_contact_info": null, "description": { "fi": "<p>Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!</p><p>Tapahtumassa tuoreet kaupunkilaiset pääsevät tutustumaan oman asuinalueensa palveluihin, harrastuksiin ja vapaa-ajan tarjontaan.</p><p>Welcome Day tarjoaa hyödyllisen tiedon lisäksi hauskaa, inspiroivaa ja yhteisöllistä ohjelmaa kaikenikäisille. Ohjelma huipentuu venezuelalais-syyrialaisen Ramithawin tunteikkaaseen konserttiin. <br> <br>Welcome Dayssa puhumme englantia, minkä lisäksi tarjoamme tulkkausta tarpeen mukaan. Tapahtuma on maksuton, mutta vaatii ennakkoilmoittautumisen. <br><u><a href=\"https://link.webropolsurveys.com/EP/B6ECC15E038BD3D1\">Ilmoittaudu mukaan!</a></u></p><p>Tapahtumassa osallistujat pääsevät nauttimaan myös pullasta ja kahvista kuten suomalaiseen perinteeseen kuuluu.</p><p><b>Klo 18.30: Ramithawi</b></p><p>Ramithawi on venezuelalais-syyrialainen laulaja-lauluntekijä, joka asuu Helsingissä ja Tbilisissä. Hänen musiikkinsa on yhdistelmä latinalaisamerikkalaisia ja arabialaisia elementtejä. Tässä sooloesityksessä hän esittää kappaleita, jotka kertovat rakkaudesta, menneistä traumoista ja sodasta.</p>", "sv": "<p>Welcome Day hälsar invånare som nyligen flyttat till Finland välkomna till Helsingfors!</p><p>Under evenemanget får de nya stadsborna möjlighet att bekanta sig med tjänster, hobbyer och fritidsaktiviteter inom det egna bostadsområdet.</p><p>Welcome Day erbjuder förutom nyttig information även ett roligt, inspirerande och gemenskapligt program för personer i alla åldrar. Programmet kulminerar i en känslosam konsert med den venezuelansk-syrianska artisten Ramithawi.</p><p>På Welcome Day talar vi engelska, och dessutom erbjuder vi tolkning enligt behov. Evenemanget är avgiftsfritt men förutsätter förhandsanmälan. <br><u><a href=\"https://link.webropolsurveys.com/EP/B6ECC15E038BD3D1\">Anmäl dig!</a></u></p><p>Under evenemanget får deltagarna även njuta av kaffe och bulle enligt finländsk tradition.</p><p><b>Kl. 18.15: Ramithawi</b><br>Ramithawi är en venezuelansk-syriansk sångare och låtskrivare baserad i Helsingfors och Tbilisi. Hans musik är en kombination av latinamerikanska och arabiska inslag. I detta soloframträdande framför han sånger om kärlek, gamla trauman och krig.</p>", "en": "<p>Cultural Centre Vuotalo welcomes the recently arrived international residents to Helsinki!</p><p>In this event new residents will get to know the services, hobbies and other leisure time activities available to them in their neighborhoods.</p><p>In addition to providing useful information, the Welcome Day program includes fun, inspiring and communal activities for people of all ages. The event culminates in an emotional concert by Venezuelan-Syrian artist Ramithawi.</p><p>We speak English at Welcome Day. Additionally, interpreters will be present at the event. The event is free to attend, but sign-ups are required. <br><u><a href=\"https://link.webropolsurveys.com/EP/B6ECC15E038BD3D1\">Sign up!</a></u></p><p>Traditional Finnish “pulla” (pastries) and coffee will also be served.</p><p><b>The program for Welcome Day Vuotalo</b></p><p><b>16.00</b>: The services of the City of Helsinki, local art schools and NGOs present their activities in the lobby of Vuotalo. This part of the program will end at 18.45.</p><p><b>16.30–18.30: Fun activities for people of all ages:</b></p><p><b>Instant Story Sharing Cafe (Vuotalo Gallery)</b><br>Share stories and get to know people over a cup of coffee/tea. Mostly for adults.<br>Organizer: Story Sharing Universum</p><p><b>African and Street Dances (Vuotalo square)</b><br>16.30-17.00: Performance and dance workshop<br>17.30-18.00: Performance and dance workshop<br>Organizer: Just Dance Finland</p><p><b>Circus for Kids! (Vuotalo square)</b><br>Organizer: Sirkus Magenta</p><p><b>Decorate your tote bag! (Library)</b><br>Decorate your own Helsinki tote bag!<br>Organizer: Chloe Mahy Hulkko</p><p><b>Make your own jewelry and sketch a graffiti! (Library)</b><br>Organizer: Youth Services of the City of Helsinki</p><p><b>18.30: The host of the evening, Tawab Qaderzada, will share his experiences on living and working in Helsinki. (Vuosali music hall)</b></p><p><b>18.40–19.30: Ramithawi and his band will perform (Vuosali music hall)</b><br> Ramithawi is a Venezuelan/Syrian singer-songwriter whose music is a fusion of Latin and Arabic elements. Tonight he will perform for us together with his band.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66493/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmtgy66my", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6waq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6wxa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6xgu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6xuy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6yea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6yua/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6zpe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy6z6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy62pe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy624u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy63ki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy63yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy64gi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy64uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy653i/?format=api" } ], "images": [ { "id": 1490718, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T10:51:14.952642Z", "last_modified_time": "2025-09-10T10:51:14.952662Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/031d391e-8af2-4858-a51e-1371b4523900.png", "cropping": "162,0,437,275", "photographer_name": "", "alt_text": "Huone, jossa leluja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490718/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-09-10T11:07:48.776228Z", "last_modified_time": "2025-09-10T11:07:48.776244Z", "date_published": null, "start_time": "2025-09-15T07:00:00Z", "end_time": "2025-12-22T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "location_extra_info": null, "name": { "fi": "Naapuriäidit perhekahvila", "en": "Neighbourhood Mother´s family cafe" }, "info_url": null, "short_description": { "fi": "Tämä kahvila on tarkoitettu vanhemmille ja pienille lapsille rentouttavaan ajanviettoon. Sen ohjaavat naapuriäidit Kreeta ja Azin. Kahvila on maksuton. ", "en": "This cage is for parents and small children to have a relaxing time. It is run by volunteers and it´s free of charge." }, "provider_contact_info": null, "description": { "fi": "<p>Tämä kahvila on tarkoitettu vanhemmille ja pienille lapsille rentouttavaan ajanviettoon. Sen ohjaavat naapuriäidit Kreeta ja Azin. Kahvila on maksuton. </p><p>Syksyn ajat: 1.9.-22.12. joka maanantai klo 10.00-11.30. </p><p>Pääasiallinen puhuttu kieli on englanti. </p><p>#helloespoo</p>", "en": "<p>This cage is for parents and small children to have a relaxing time. It is run by volunteers and it´s free of charge.</p><p>Autumn timings: 1.9-22.12. every monday, 10.00-11.30. </p><p>The main spoken language is english. </p><p>#helloespoo</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy66my/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z7a4i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z65vu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z66ju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z67ba/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z67wu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7aja/?format=api" } ], "images": [ { "id": 1490099, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T12:13:56.085264Z", "last_modified_time": "2025-08-13T12:42:13.026623Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg", "cropping": "315,0,1125,810", "photographer_name": "Joni Luumi", "alt_text": "Kirjastoauto Välkky ilta-auringossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-13T12:17:56.618234Z", "last_modified_time": "2025-09-10T10:54:16.049420Z", "date_published": null, "start_time": "2025-09-19T10:15:00Z", "end_time": "2025-12-12T12:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "location_extra_info": { "fi": "Välkky", "sv": "Välkky", "en": "Välkky" }, "name": { "fi": "Välkky Karakallion asukaspuistossa", "sv": "Välkky på rutten", "en": "Välkky on the route" }, "info_url": { "fi": "http://espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "provider_contact_info": null, "description": { "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä perjantaina klo 13:15 - 14:15</p><ul><li>19.9.</li><li>31.10.</li><li>28.11. </li><li>12.12.</li></ul>", "sv": "<p>Välkky kör till Karakallios invånarpark! En gång i månaden kl. 13.15 - 14.15</p><ul><li>19.9.</li><li>31.10.</li><li>28.11. </li><li>12.12.</li></ul>", "en": "<p>Välkky arrives at the Karakallio residents' park! Once a month at 13:15 - 14:15.</p><ul><li>19.9.</li><li>31.10.</li><li>28.11. </li><li>12.12.</li></ul>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7a4i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmtgy763u", "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:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy665e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy67sm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7ami/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7bau/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7bve/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7cna/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7dh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7ebq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7eyu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7fqm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7gf4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7hqy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7ify/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7jqi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7kfq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7k6i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7lrq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7me4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7mya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7nma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7oa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7oyu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7pry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7qje/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy7u2q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy725i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy74ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy745u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy75ry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy76gm/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T10:21:27.676043Z", "last_modified_time": "2025-09-10T10:21:27.676063Z", "date_published": null, "start_time": "2025-09-19T12:00:00Z", "end_time": "2026-05-15T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Espoon harrastuspolku | XRoc", "sv": "Hobbystigen i Esbo | XRoc", "en": "Espoo Hobby Path | XRoc" }, "location_extra_info": { "fi": "Yhteystiedot: harrastuskoordinaattori@xroc.gg", "sv": "Kontaktinformation: harrastuskoordinaattori@xroc.gg", "en": "Contact details: harrastuskoordinaattori@xroc.gg" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. -luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare för åk 3-6", "en": "Gaming hobby group for Minecraft adventurers for 3rd-6th graders" }, "info_url": 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." }, "provider_contact_info": null, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan harrastajaryhmä tukenasi sekä otat vastaan kaikki pelin tuomat haasteet yhdessä muiden kanssa!</p><p>Ilmoittautuminen harrastusryhmiin käynnistyy torstaina 21.8. alkaen. Harrastusryhmät alkavat viikolla 37 maanantaista 8.9.2025 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Osallistumiseen on mahdollista saada tukea. Ilmoittautumisen yhteydessä kerrothan lapsen mahdollisista tuen tarpeista tai muista huomioitavista asioista, jotta harrastuksen järjestäjä voi ottaa ne huomioon toiminnassaan ja sujuvoittaa osallistumista.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta. Harrastusryhmissä on myös mahdollista käydä tutustumassa ennen ilmoittautumista. </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>Anmälan till hobbygrupperna öppnas torsdagen den 21 augusti. Hobbygrupperna börjar vecka 37, måndagen den 8 september 2025. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Det är möjligt att få stöd för deltagandet. Berätta i samband med anmälan om barnets eventuella stödbehov eller annat som ska tas i beaktande så att hobbyanordnaren kan planera sin verksamhet och göra deltagandet smidigare.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn. Det är också möjligt att bekanta sig med hobbygrupperna före anmälan. </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 the support of a group of fellow gamers and face all the challenges posed by the game together with others!</p><p>Registration for hobby groups will open on Thursday 21 August. Hobby groups will start in week 37, on Monday, 8 September 2025 onwards. The hobby groups will meet weekly throughout the school year unless otherwise stated. The hobby groups do not meet during school holidays. The hobbies are free of charge for the participants. The City of Espoo has insured the hobby group participants.</p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. Support for participation is available. When registering, please notify any support needs your child might have or if there is anything else of note, so that the hobby organiser can take it into account in their activities and make participating easier.</p><p>The organiser of the hobby group contacts the guardians about the practical arrangements for the hobby. Please contact the hobby organiser if you want to cancel your child’s participation or if you have questions about the hobby. It is possible to try out the hobby groups before signing up. </p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils in grades 3–9 and take place after school days at school premises, near the school or via remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgy763u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmtglelpu", "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:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgldxly/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgldyhu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgldy3y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgldzra/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld2ee/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld2ym/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld3nm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld4bq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld4ve/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld5i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld54e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld6pm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld7cm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgld7wy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgleaom/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglebbq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglebuu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglech4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglec3e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgledoq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgleede/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgleev4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglefjq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglef6i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglegsq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglehha/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgleiom/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglejce/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglejvu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgleki4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglek5i/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T10:17:08.793565Z", "last_modified_time": "2025-09-10T10:17:08.793584Z", "date_published": null, "start_time": "2025-09-12T13:00:00Z", "end_time": "2026-05-15T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Espoon harrastuspolku | XRoc", "sv": "Hobbystigen i Esbo | XRoc", "en": "Espoo Hobby Path | XRoc" }, "location_extra_info": { "fi": "Yhteystiedot: harrastuskoordinaattori@xroc.gg", "sv": "Kontaktinformation: harrastuskoordinaattori@xroc.gg", "en": "Contact details: harrastuskoordinaattori@xroc.gg" }, "name": { "fi": "Minecraft seikkailijat -peliharrastusryhmä 3.-6. -luokkalaisille", "sv": "Spelhobbygruppen Minecraft-äventyrare för åk 3-6", "en": "Gaming hobby group for Minecraft adventurers for 3rd-6th graders" }, "info_url": 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." }, "provider_contact_info": null, "description": { "fi": "<p>Minecraft-peliharrastusryhmissä hyppäät Minecraftin villiin ja arvaamattomaan erämaailmaan harrastajaryhmä tukenasi sekä otat vastaan kaikki pelin tuomat haasteet yhdessä muiden kanssa!</p><p>Ilmoittautuminen harrastusryhmiin käynnistyy torstaina 21.8. alkaen. Harrastusryhmät alkavat viikolla 37 maanantaista 8.9.2025 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Osallistumiseen on mahdollista saada tukea. Ilmoittautumisen yhteydessä kerrothan lapsen mahdollisista tuen tarpeista tai muista huomioitavista asioista, jotta harrastuksen järjestäjä voi ottaa ne huomioon toiminnassaan ja sujuvoittaa osallistumista.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta. Harrastusryhmissä on myös mahdollista käydä tutustumassa ennen ilmoittautumista. </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>Anmälan till hobbygrupperna öppnas torsdagen den 21 augusti. Hobbygrupperna börjar vecka 37, måndagen den 8 september 2025. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Det är möjligt att få stöd för deltagandet. Berätta i samband med anmälan om barnets eventuella stödbehov eller annat som ska tas i beaktande så att hobbyanordnaren kan planera sin verksamhet och göra deltagandet smidigare.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn. Det är också möjligt att bekanta sig med hobbygrupperna före anmälan. </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 the support of a group of fellow gamers and face all the challenges posed by the game together with others!</p><p>Registration for hobby groups will open on Thursday 21 August. Hobby groups will start in week 37, on Monday, 8 September 2025 onwards. The hobby groups will meet weekly throughout the school year unless otherwise stated. The hobby groups do not meet during school holidays. The hobbies are free of charge for the participants. The City of Espoo has insured the hobby group participants.</p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. Support for participation is available. When registering, please notify any support needs your child might have or if there is anything else of note, so that the hobby organiser can take it into account in their activities and make participating easier.</p><p>The organiser of the hobby group contacts the guardians about the practical arrangements for the hobby. Please contact the hobby organiser if you want to cancel your child’s participation or if you have questions about the hobby. It is possible to try out the hobby groups before signing up. </p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils in grades 3–9 and take place after school days at school premises, near the school or via remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglelpu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66926", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490714, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T09:14:31.805000Z", "last_modified_time": "2025-09-10T09:14:31.805018Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775290.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490714/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T09:14:31.678581Z", "last_modified_time": "2025-09-10T10:14:46.080489Z", "date_published": null, "start_time": "2025-12-17T16: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, "provider": null, "location_extra_info": null, "name": { "fi": "Varo Verijarikoplaa! (7) – Onsdagsbio", "sv": "Se upp för Jönssonligan! – Onsdagsbio", "en": "Look out for The Jonsson Gang! – Onsdagsbio" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9BE50695A44BDC1D9A85758F0806B2FB/Varo_Verijarikoplaa_7_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/9BE50695A44BDC1D9A85758F0806B2FB/Se_upp_for_Jonssonligan_", "en": "http://www.vuotalo.fi/en/events/event/9BE50695A44BDC1D9A85758F0806B2FB/Look_out_for_The_Jonsson_Gang_" }, "short_description": { "fi": "Katsotaan yhdessä ruotsalainen komedia.", "sv": "Efter en misslyckad kupp hamnar Charles Ingvar Sickan Jönsson i fängelse.", "en": "Following a failed heist, Charles-Ingvar “Sickan” Jonsson ends up in prison." }, "provider_contact_info": null, "description": { "fi": "<p>Katsotaan yhdessä ruotsalainen komedia.</p><p>Epäonnistuneen keikan jälkeen Sickan joutui telkien taakse, ja kun hän pääsee ulos, kavereista onkin tullut kunniallisia. Rikosvälittäjä Anita antaa Sickanille tehtävän, mutta tähän keikkaan tarvitaan vanhoja kavereita. <br> <br>Ohjaaja: Tomas Alfredson<br>Rooleissa: Henrik Dorsin, Anders Johansson, David Sundin, Hedda Stiernstedt, Reine Brynolfsson, Marie Göranzon, Lena Olin, Lennart Hjulström, Ville Virtanen ym<br>Genre: Komedia<br>Ruotsi 2020</p><p>Kieli: ruotsi<br>Tekstitys: suomeksi<br>Kesto: 1h 57 min.<br>Ikäraja: K7</p><p>Vapaa pääsy</p>", "sv": "<p>Efter en misslyckad kupp hamnar Charles Ingvar Sickan Jönsson i fängelse.</p><p>När han släpps ut har kumpanerna i Jönssonligan blivit hederliga och Sickan får fortsätta på egen hand. Brottförmedlaren Anita ger honom ett simpelt inbrott som uppdrag, men det hela visar sig vara mycket större än Sickan tror. Nu behöver han sina gamla medbrottslingar för att genomföra den svåraste kuppen i ligans historia.<br> <br>Regissör: Tomas Alfredson<br>I huvudrollerna: Henrik Dorsin, Anders Johansson, David Sundin, Hedda Stiernstedt, Reine Brynolfsson, Marie Göranzon, Lena Olin, Lennart Hjulström, Ville Virtanen m.fl.<br>Genre: Komedi<br>Sverige 2020</p><p>Språk: svenska<br>Text: finska<br>Längd: 1h 57 min.<br>F7</p><p>Fri entré</p>", "en": "<p>Following a failed heist, Charles-Ingvar “Sickan” Jonsson ends up in prison.</p><p>Once released, his gang has become law-abiding citizens and Sickan has to continue on his own. Crime broker Anita tasks him with a simple burglary, but it turns out to be something a lot bigger than Sickan thought it was. Now he needs the help of his past accomplies to carry out the most difficult heist in the history of the gang. <br> <br>Sweden 2020<br>Director: Tomas Alfredson<br>Leading roles: Henrik Dorsin, Anders Johansson, David Sundin, Hedda Stiernstedt, Reine Brynolfsson, Marie Göranzon, Lena Olin, Lennart Hjulström, Ville Virtanen among others</p><p>Genre: Comedy<br>Language: Swedish<br>Subtitles: Finnish<br>Duration: 1h 57 min.</p><p>Age limit: 7</p><p>Free entry</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66926/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66925", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490711, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T08:14:31.270168Z", "last_modified_time": "2025-09-10T08:14:31.270188Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775286.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490711/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T08:14:31.120544Z", "last_modified_time": "2025-09-10T10:14:38.776081Z", "date_published": null, "start_time": "2025-11-05T16: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, "provider": null, "location_extra_info": null, "name": { "fi": "Nainen ja meri (12) – Onsdagsbio", "sv": "Den svenska torpeden (12) – Onsdagsbio", "en": "The Swedish Torpedo (12) – Onsdagsbio" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2538D158344AC2C17B511C531F46FE65/Nainen_ja_meri_12_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2538D158344AC2C17B511C531F46FE65/Den_svenska_torpeden_12_", "en": "http://www.vuotalo.fi/en/events/event/2538D158344AC2C17B511C531F46FE65/The_Swedish_Torpedo_12_" }, "short_description": { "fi": "Ruotsalaisohjaaja Frida Kempffin elokuva Nainen ja meri kertoo inspiroivan tositarinan periksi antamattomasta naisesta Sally Bauerista (Josefin Neldén).", "sv": "Sommaren 1939. Krigsutbrottet i Europa kryper allt närmare men Sally Bauer, en 30-årig ensamstående mamma, kan inte slita sig från havet och sin längtan efter att få simma över Engelska kanalen.", "en": "World War II is around the corner, but the only thing Sally Bauer can think of is the ocean." }, "provider_contact_info": null, "description": { "fi": "<p>Ruotsalaisohjaaja Frida Kempffin elokuva Nainen ja meri kertoo inspiroivan tositarinan periksi antamattomasta naisesta Sally Bauerista (Josefin Neldén).</p><p>Bauer haastoi aikansa normit tavoitellessaan unelmaansa uida Englannin kanaalin yli sodan kynnyksellä.</p><p>Toinen maailmansota on valtaamassa Eurooppaa, mutta ruotsalaisen äidin mielessä on vain yksi asia – valtameri. Sally on aina unelmoinut Englannin kanaalin ylittämisestä, mutta hänen haavettaan on torpedoitu jatkuvasti. Sallyn vanhemmat väheksyvät tyttärensä uintiunelmaa ja suunnittelematon raskaus ja yksinhuoltajuus 1930-luvun Ruotsissa pakottavat hänet elämään sen mukaisesti, mitä naiselta odotetaan; olemaan äiti. Sally vajoaa syvään synkkyyteen, kunnes saa tilaisuuden tavoitella unelmaansa, josta hän joutuu kuitenkin äitinä maksamaan kovan hinnan. Sally ravistelee yhteiskunnan asettamia odotuksia ja normeja, ja sen lisäksi uhkarohkean unelman yllä leijuu sodan uhka. Sallyn ystävää Sigridiä esittää Seidi Haarla.</p><p>Ohjaajat: Ralf Siig, Frida Kempff, Kelly Väli, Silver Õun, Rebeka Rummel</p><p>Päärooleissa: Josefin Neldén, Gunnel Fred, Seidi Haarla, Lisa Carlehed, Hanna Ullerstam<br>Genre: Drama, historia<br>Ruotsi 2025</p><p>Kieli: ruotsi<br>Tekstitys: suomeksi<br>Kesto: 2 tuntia<br>Ikäraja: K12</p><p>Vapaa pääsy</p>", "sv": "<p>Sommaren 1939. Krigsutbrottet i Europa kryper allt närmare men Sally Bauer, en 30-årig ensamstående mamma, kan inte slita sig från havet och sin längtan efter att få simma över Engelska kanalen.</p><p>För att nå sitt mål måste hon trotsa både sin familj och samhällets förväntningar – ett val som hotar att beröva henne allt.</p><p>Regissörer: Ralf Siig, Frida Kempff, Kelly Väli, Silver Õun, Rebeka Rummel<br>Huvudroller: Josefin Neldén, Gunnel Fred, Seidi Haarla, Lisa Carlehed, Hanna Ullerstam<br>Genre: Drama, historia<br>Sverige 2025</p><p>Språk: svenska<br>Text: finsk<br>Längd 2h<br>F12</p><p>Fri entré</p>", "en": "<p>World War II is around the corner, but the only thing Sally Bauer can think of is the ocean.</p><p>Her dream is to swim across the English Channel. <br> <br>Director: Ralf Siig, Frida Kempff, Kelly Väli, Silver Õun, Rebeka Rummel<br>Leading rooles: Josefin Neldén, Gunnel Fred, Seidi Haarla, Lisa Carlehed, Hanna Ullerstam<br>Genre: Drama, history<br>Sweden 2025</p><p>Language: Swedish<br>Subtitles: Finnish<br>Duration 2h<br>Age limit 12</p><p>Free entry</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66925/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmtglf2uy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:59354/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfgli/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfhca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfhvm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfije/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfi54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfjrm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfkja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfk34/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglflq4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfmee/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfmzq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfnoa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfocq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfoxq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfpla/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfp7e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfqsi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfrge/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfr2m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfsn4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglftbu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglftvm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfuje/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfu4m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfvqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfwfy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfw34/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfxqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfyd4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfyxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfzlq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfz74/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T09:58:06.855437Z", "last_modified_time": "2025-09-10T09:58:06.855454Z", "date_published": null, "start_time": "2025-09-11T13:00:00Z", "end_time": "2026-05-14T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Espoon harrastuspolku | 3feR", "sv": "Hobbystigen i Esbo | 3feR", "en": "Espoo Hobby Path | 3feR" }, "location_extra_info": { "fi": "Yhteystiedot: emilio.makipaa@gmail.com", "sv": "Kontaktinformation: emilio.makipaa@gmail.com", "en": "Contact details: emilio.makipaa@gmail.com" }, "name": { "fi": "Lautapeliklubi 3.-6. -luokkalaisille", "sv": "Brädspelsklubben för åk 3-6", "en": "Board games club for 3rd-6th graders" }, "info_url": null, "short_description": { "fi": "Lautapeliklubissa pääset nauttimaan erilaisten lautapelien pelaamisesta. ", "sv": "I brädspelsklubben får du spela olika brädspel. ", "en": "At the board games club, you’ll get to enjoy playing different kinds of board games." }, "provider_contact_info": null, "description": { "fi": "<p>Lautapeliklubissa pääset nauttimaan erilaisten lautapelien pelaamisesta. Tutustut erilaisiin peleihin, kehität strategista ajatteluasi, harjoitat sosiaalisia taitojasi ja ennen kaikkea vietät hauskaa aikaa yhdessä muiden pelaajien kanssa. Harrastuskerrat koostuvat erilaisten pelien, kuten lautapelien, korttipelien ja strategiapelien pelaamisesta. Ohjaaja on paikalla tarjoamassa tukea ja opastusta pelien sääntöihin, strategioihin ja kannustamassa hyvään yhteishenkeen. </p><p>Ilmoittautuminen harrastusryhmiin käynnistyy torstaina 21.8. alkaen. Harrastusryhmät alkavat viikolla 37 maanantaista 8.9.2025 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Osallistumiseen on mahdollista saada tukea. Ilmoittautumisen yhteydessä kerrothan lapsen mahdollisista tuen tarpeista tai muista huomioitavista asioista, jotta harrastuksen järjestäjä voi ottaa ne huomioon toiminnassaan ja sujuvoittaa osallistumista.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta. Harrastusryhmissä on myös mahdollista käydä tutustumassa ennen ilmoittautumista. </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 brädspelsklubben får du spela olika brädspel. Du får bekanta dig med olika spel, utveckla ditt strategiska tänkande, öva dina sociala färdigheter och framför allt får du tillbringa en rolig tid tillsammans med andra spelare. Hobbytillfällena utgörs av olika spel, såsom brädspel, kortspel och strategispel. Ledaren är på plats och erbjuder stöd och handledning i spelets regler och strategier samt uppmuntrar till god sammanhållning. </p><p>Anmälan till hobbygrupperna öppnas torsdagen den 21 augusti. Hobbygrupperna börjar vecka 37, måndagen den 8 september 2025. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Det är möjligt att få stöd för deltagandet. Berätta i samband med anmälan om barnets eventuella stödbehov eller annat som ska tas i beaktande så att hobbyanordnaren kan planera sin verksamhet och göra deltagandet smidigare.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn. Det är också möjligt att bekanta sig med hobbygrupperna före anmälan. </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>At the board games club, you’ll get to enjoy playing different kinds of board games. You’ll learn about different games, develop your strategic thinking, practise your social skills and, above all, have fun together with the other players. The hobby sessions consist of playing different kinds of games, such as board games, card games and strategy games. The instructor is there to offer support and guidance on the rules and strategies of the games and to encourage good team spirit. </p><p>Registration for hobby groups will open on Thursday 21 August. Hobby groups will start in week 37, on Monday, 8 September 2025 onwards. The hobby groups will meet weekly throughout the school year unless otherwise stated. The hobby groups do not meet during school holidays. The hobbies are free of charge for the participants. The City of Espoo has insured the hobby group participants.</p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. Support for participation is available. When registering, please notify any support needs your child might have or if there is anything else of note, so that the hobby organiser can take it into account in their activities and make participating easier.</p><p>The organiser of the hobby group contacts the guardians about the practical arrangements for the hobby. Please contact the hobby organiser if you want to cancel your child’s participation or if you have questions about the hobby. It is possible to try out the hobby groups before signing up. </p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils in grades 3–9 and take place after school days at school premises, near the school or via remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglf2uy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmtglh2ai", "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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhgly/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhg7i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhhte/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhigi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhi3e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhjoe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhkbe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhkue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhlh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhl3u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhmqa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhnhy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhn2e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhomu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhpa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhpva/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhqka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhq5u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhrrm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhshu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhs2a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhto4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhuca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhuuy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhvnu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhwci/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhxky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhx7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhyve/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhzjq/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T09:46:41.963866Z", "last_modified_time": "2025-09-10T09:46:41.963887Z", "date_published": null, "start_time": "2025-09-15T13:30:00Z", "end_time": "2026-05-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Espoon harrastuspolku | Asad Friigym", "sv": "Hobbystigen i Esbo | Asad Friigym", "en": "Espoo Hobby Path | Asad Friigym" }, "location_extra_info": { "fi": "Yhteystiedot: info@asadfriigym.fi", "sv": "Kontaktinformation: info@asadfriigym.fi", "en": "Contact details: info@asadfriigym.fi" }, "name": { "fi": "Tasty Snack -välipalaharrastus 3.-9. -luokkalaisille", "sv": "Tasty Snack-mellanmålshobby för åk 3-9", "en": "Tasty Snack hobby for 3rd-9th graders" }, "info_url": null, "short_description": { "fi": "Tasty Snack- välipalaryhmässä valmistetaan yhdessä simppeleitä, hauskoja ja maukkaita välipaloja, herkkuja ja ruokia.", "sv": "I Tasty Snack-mellanmålsgruppen tillreder vi enkla, roliga och smakliga mellanmål, delikatesser och maträtter tillsammans.", "en": "In the Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals. " }, "provider_contact_info": null, "description": { "fi": "<p>Tasty Snack- välipalaryhmässä valmistetaan yhdessä simppeleitä, hauskoja ja maukkaita välipaloja, herkkuja ja ruokia. Ruokalistalle kuuluu nopeita ja edullisia välipaloja, yllätyksellisiä makutrendejä maailmalta, takuuvarmoja peruspurtavia sekä toivereseptejä. Välipaloja valmistetaan niin tiimityönä kuin itsenäisesti. Oletko kokeillut tehdä itse leipää? Entäs Bobateetä? Suklaahippukeksejä? Tule mukaan oppimaan ja herkuttelemaan!</p><p>Ryhmään ei tarvitse ilmoittautua.</p><p>Harrastusryhmät alkavat viikolla 37 maanantaista 8.9.2025 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Osallistumiseen on mahdollista saada tukea. Ilmoittautumisen yhteydessä kerrothan lapsen mahdollisista tuen tarpeista tai muista huomioitavista asioista, jotta harrastuksen järjestäjä voi ottaa ne huomioon toiminnassaan ja sujuvoittaa osallistumista.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta. Harrastusryhmissä on myös mahdollista käydä tutustumassa ennen ilmoittautumista. </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 Tasty Snack-mellanmålsgruppen tillreder vi enkla, roliga och smakliga mellanmål, delikatesser och maträtter tillsammans. På menyn finns snabba och förmånliga mellanmål, överraskande smaktrender från hela världen, bombsäkra tilltugg samt önskerecept. Mellanmål tillreds både i grupp och på egen hand. Har du provat att baka bröd själv? Eller laga bubbelte? Chokladkex? Kom med och lär dig och ät gott!</p><p>Du behöver inte anmäla dig till den här gruppen.</p><p>Hobbygrupperna börjar vecka 37, måndagen den 8 september 2025. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Det är möjligt att få stöd för deltagandet. Berätta i samband med anmälan om barnets eventuella stödbehov eller annat som ska tas i beaktande så att hobbyanordnaren kan planera sin verksamhet och göra deltagandet smidigare.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn. Det är också möjligt att bekanta sig med hobbygrupperna före anmälan. </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 Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals. The menu includes quick and affordable snacks, surprising flavours from around the world, reliable basic snacks and recipes suggested by the participants. Snacks are prepared both as teamwork and independently. Have you tried making bread from scratch? How about boba tea? Or chocolate chip cookies? Join us for learning and snacking!</p><p>You don't need registrate for this group.</p><p>Hobby groups will start in week 37, on Monday, 8 September 2025 onwards. The hobby groups will meet weekly throughout the school year unless otherwise stated. The hobby groups do not meet during school holidays. The hobbies are free of charge for the participants. The City of Espoo has insured the hobby group participants.</p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. Support for participation is available. When registering, please notify any support needs your child might have or if there is anything else of note, so that the hobby organiser can take it into account in their activities and make participating easier.</p><p>The organiser of the hobby group contacts the guardians about the practical arrangements for the hobby. Please contact the hobby organiser if you want to cancel your child’s participation or if you have questions about the hobby. It is possible to try out the hobby groups before signing up. </p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils in grades 3–9 and take place after school days at school premises, near the school or via remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglh2ai/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67000", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3975529", "sv": "https://www.lippu.fi/eventseries/name-3975529", "en": "https://www.lippu.fi/eventseries/name-3975529" }, "price": { "fi": "30,90 / 40,90 €", "sv": "30,90 / 40,90 €", "en": "30,90 / 40,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490715, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T09:14:32.563350Z", "last_modified_time": "2025-09-10T09:14:32.563375Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777433.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490715/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T09:14:32.442412Z", "last_modified_time": "2025-09-10T09:14:32.709545Z", "date_published": null, "start_time": "2026-01-17T17: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, "provider": { "fi": "ÅK Ensemble rf", "sv": "ÅK Ensemble rf", "en": "ÅK Ensemble rf" }, "location_extra_info": null, "name": { "fi": "ÅK Ensemble: Mad World", "sv": "ÅK Ensemble: Mad World", "en": "ÅK Ensemble: Mad World" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B02101E40B81270BFC9513E05433AF44/AK_Ensemble_Mad_World", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/B02101E40B81270BFC9513E05433AF44/AK_Ensemble_Mad_World", "en": "http://www.savoyteatteri.fi/en/events/event/B02101E40B81270BFC9513E05433AF44/AK_Ensemble_Mad_World" }, "short_description": null, "provider_contact_info": null, "description": { "fi": "<p>ÅK Ensemblen show MAD WORLD on kokemus täynnä äärimmäisyyksiä ja kontrasteja. Matka valon ja pimeyden, rauhallisuuden ja kiihkon, tutun ja absurdin välillä. Aivan kuten hullussa maailmassa, jossa elämme. Lavalla on noin 40 laulajaa Pia Kullan johdolla, kullakin oma mikrofoninsa, ja The 52nd Street Band Tomas \"Skitta\" Lindroosin johdolla. Kokonaisuutta korostavat Karin Eklundin (KDC) koreografia, sekä tietenkin valaistus ja muut visuaaliset tehosteet. Yleisö pääsee nauttimaan niin Musesta ja Coldplaysta, kuin Leonard Cohenista ja TOTOsta tässä ÅK Ensemblen ainutlaatuisessa tapahtumassa.</p><p>Ikäraja: S</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p>", "sv": "<p>ÅK Ensembles show MAD WORLD är en upplevelse fylld av ytterligheter och kontraster. En resa mellan ljus och mörker, lugn och frenesi, det bekanta och det absurda. Precis som den galna värld vi lever i. På scenen står cirka 40 sångare ledda av Pia Kulla, var oc en med sin egen mikrofo, samt The 52nd Street Band med Tomas ”Skitta” Lindroos i spetsen. Helheten förstärks med koreografi av Karin Eklund (KDC), ljussättning och andra visuella effekter. Publiken får ta del av allt från Muse och Coldplay till Leonard Cohen och TOTO i ÅK Ensembles unika tappning.</p><p>Längd ca 2 t 15 min, inkl. paus.</p>", "en": "<p>ÅK Ensemble's show MAD WORLD is an experience filled with extremes and contrasts. It is a journey between light and darkness, calm and frenzy, the familiar and the absurd. Just like the mad world we live in. On stage we have about forty singers lead by Pia Kulla, each with their own microphone. They are joined by The 52nd Street Band with Tomas ”Skitta” Lindroos at the helm. Choreography by Karin Eklund (KDC), lighting and other visual effects augment the show. The audience get to experience everything from Muse and Coldplay to Leonard Cohen and TOTO in ÅK Ensemble's own unique style.</p><p>Duration about 2 h 15 min, including intermission</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67000/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmtf5beje", "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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5aroi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5aslu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5as5u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5atpq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5aub4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5auxe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5avle/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5awc4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5awzu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5axly/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5ax5u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5ayri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5azee/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5azwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5a2jm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5a25a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5a3p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5a4da/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5a4xi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5a5kq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5a55e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5a6pe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5a7bm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5a7uu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bagy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5baze/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bb4u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bcru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bdeu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bdwy/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T08:36:38.523148Z", "last_modified_time": "2025-09-10T08:36:38.523167Z", "date_published": null, "start_time": "2025-09-16T13:00:00Z", "end_time": "2026-05-12T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Espoon harrastuspolku | Asad Friigym", "sv": "Hobbystigen i Esbo | Asad Friigym", "en": "Espoo Hobby Path | Asad Friigym" }, "location_extra_info": { "fi": "Yhteystiedot: info@asadfriigym.fi", "sv": "Kontaktinformation: info@asadfriigym.fi", "en": "Contact details: info@asadfriigym.fi" }, "name": { "fi": "Tasty Snack -välipalaharrastus 3.-9. -luokkalaisille", "sv": "Tasty Snack-mellanmålshobby för åk 3-9", "en": "Tasty Snack hobby for 3rd-9th graders" }, "info_url": null, "short_description": { "fi": "Tasty Snack- välipalaryhmässä valmistetaan yhdessä simppeleitä, hauskoja ja maukkaita välipaloja, herkkuja ja ruokia.", "sv": "I Tasty Snack-mellanmålsgruppen tillreder vi enkla, roliga och smakliga mellanmål, delikatesser och maträtter tillsammans.", "en": "In the Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals. " }, "provider_contact_info": null, "description": { "fi": "<p>Tasty Snack- välipalaryhmässä valmistetaan yhdessä simppeleitä, hauskoja ja maukkaita välipaloja, herkkuja ja ruokia. Ruokalistalle kuuluu nopeita ja edullisia välipaloja, yllätyksellisiä makutrendejä maailmalta, takuuvarmoja peruspurtavia sekä toivereseptejä. Välipaloja valmistetaan niin tiimityönä kuin itsenäisesti. Oletko kokeillut tehdä itse leipää? Entäs Bobateetä? Suklaahippukeksejä? Tule mukaan oppimaan ja herkuttelemaan!</p><p>Ryhmään ei tarvitse ilmoittautua.</p><p>Harrastusryhmät alkavat viikolla 37 maanantaista 8.9.2025 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Osallistumiseen on mahdollista saada tukea. Ilmoittautumisen yhteydessä kerrothan lapsen mahdollisista tuen tarpeista tai muista huomioitavista asioista, jotta harrastuksen järjestäjä voi ottaa ne huomioon toiminnassaan ja sujuvoittaa osallistumista.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta. Harrastusryhmissä on myös mahdollista käydä tutustumassa ennen ilmoittautumista. </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 Tasty Snack-mellanmålsgruppen tillreder vi enkla, roliga och smakliga mellanmål, delikatesser och maträtter tillsammans. På menyn finns snabba och förmånliga mellanmål, överraskande smaktrender från hela världen, bombsäkra tilltugg samt önskerecept. Mellanmål tillreds både i grupp och på egen hand. Har du provat att baka bröd själv? Eller laga bubbelte? Chokladkex? Kom med och lär dig och ät gott!</p><p>Du behöver inte anmäla dig till den här gruppen.</p><p>Hobbygrupperna börjar vecka 37, måndagen den 8 september 2025. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Det är möjligt att få stöd för deltagandet. Berätta i samband med anmälan om barnets eventuella stödbehov eller annat som ska tas i beaktande så att hobbyanordnaren kan planera sin verksamhet och göra deltagandet smidigare.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn. Det är också möjligt att bekanta sig med hobbygrupperna före anmälan. </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 Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals. The menu includes quick and affordable snacks, surprising flavours from around the world, reliable basic snacks and recipes suggested by the participants. Snacks are prepared both as teamwork and independently. Have you tried making bread from scratch? How about boba tea? Or chocolate chip cookies? Join us for learning and snacking!</p><p>You don't need registrate for this group.</p><p>Hobby groups will start in week 37, on Monday, 8 September 2025 onwards. The hobby groups will meet weekly throughout the school year unless otherwise stated. The hobby groups do not meet during school holidays. The hobbies are free of charge for the participants. The City of Espoo has insured the hobby group participants.</p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. Support for participation is available. When registering, please notify any support needs your child might have or if there is anything else of note, so that the hobby organiser can take it into account in their activities and make participating easier.</p><p>The organiser of the hobby group contacts the guardians about the practical arrangements for the hobby. Please contact the hobby organiser if you want to cancel your child’s participation or if you have questions about the hobby. It is possible to try out the hobby groups before signing up. </p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils in grades 3–9 and take place after school days at school premises, near the school or via remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5beje/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmtf5bxdi", "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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5be54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bfre/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bgea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bgwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bhku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bh5e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5biqi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bjce/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bjue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bkfy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bkyi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bll4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bmae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bmsi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bngu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bn2q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bom4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bo64/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bpry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bqdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bqvq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5brji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5br4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bsoq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5btba/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5btuu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5buyq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bvki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bv6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bwrm/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T08:23:45.569032Z", "last_modified_time": "2025-09-10T08:23:45.569051Z", "date_published": null, "start_time": "2025-09-15T12:00:00Z", "end_time": "2026-05-11T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Espoon harrastuspolku | Asad Friigym", "sv": "Hobbystigen i Esbo | Asad Friigym", "en": "Espoo Hobby Path | Asad Friigym" }, "location_extra_info": { "fi": "Yhteystiedot: info@asadfriigym.fi", "sv": "Kontaktinformation: info@asadfriigym.fi", "en": "Contact details: info@asadfriigym.fi" }, "name": { "fi": "Tasty Snack -välipalaharrastus 3.-9. -luokkalaisille", "sv": "Tasty Snack-mellanmålshobby för åk 3-9", "en": "Tasty Snack hobby for 3rd-9th graders" }, "info_url": null, "short_description": { "fi": "Tasty Snack- välipalaryhmässä valmistetaan yhdessä simppeleitä, hauskoja ja maukkaita välipaloja, herkkuja ja ruokia.", "sv": "I Tasty Snack-mellanmålsgruppen tillreder vi enkla, roliga och smakliga mellanmål, delikatesser och maträtter tillsammans.", "en": "In the Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals. " }, "provider_contact_info": null, "description": { "fi": "<p>Tasty Snack- välipalaryhmässä valmistetaan yhdessä simppeleitä, hauskoja ja maukkaita välipaloja, herkkuja ja ruokia. Ruokalistalle kuuluu nopeita ja edullisia välipaloja, yllätyksellisiä makutrendejä maailmalta, takuuvarmoja peruspurtavia sekä toivereseptejä. Välipaloja valmistetaan niin tiimityönä kuin itsenäisesti. Oletko kokeillut tehdä itse leipää? Entäs Bobateetä? Suklaahippukeksejä? Tule mukaan oppimaan ja herkuttelemaan!</p><p>Ryhmään ei tarvitse ilmoittautua. </p><p>Harrastusryhmät alkavat viikolla 37 maanantaista 8.9.2025 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Osallistumiseen on mahdollista saada tukea. Ilmoittautumisen yhteydessä kerrothan lapsen mahdollisista tuen tarpeista tai muista huomioitavista asioista, jotta harrastuksen järjestäjä voi ottaa ne huomioon toiminnassaan ja sujuvoittaa osallistumista.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta. Harrastusryhmissä on myös mahdollista käydä tutustumassa ennen ilmoittautumista. </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 Tasty Snack-mellanmålsgruppen tillreder vi enkla, roliga och smakliga mellanmål, delikatesser och maträtter tillsammans. På menyn finns snabba och förmånliga mellanmål, överraskande smaktrender från hela världen, bombsäkra tilltugg samt önskerecept. Mellanmål tillreds både i grupp och på egen hand. Har du provat att baka bröd själv? Eller laga bubbelte? Chokladkex? Kom med och lär dig och ät gott!</p><p>Du behöver inte anmäla dig till den här gruppen.</p><p>Hobbygrupperna börjar vecka 37, måndagen den 8 september 2025. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Det är möjligt att få stöd för deltagandet. Berätta i samband med anmälan om barnets eventuella stödbehov eller annat som ska tas i beaktande så att hobbyanordnaren kan planera sin verksamhet och göra deltagandet smidigare.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn. Det är också möjligt att bekanta sig med hobbygrupperna före anmälan. </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 Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals. The menu includes quick and affordable snacks, surprising flavours from around the world, reliable basic snacks and recipes suggested by the participants. Snacks are prepared both as teamwork and independently. Have you tried making bread from scratch? How about boba tea? Or chocolate chip cookies? Join us for learning and snacking!</p><p>You don't need registrate for this group.</p><p>Hobby groups will start in week 37, on Monday, 8 September 2025 onwards. The hobby groups will meet weekly throughout the school year unless otherwise stated. The hobby groups do not meet during school holidays. The hobbies are free of charge for the participants. The City of Espoo has insured the hobby group participants.</p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. Support for participation is available. When registering, please notify any support needs your child might have or if there is anything else of note, so that the hobby organiser can take it into account in their activities and make participating easier.</p><p>The organiser of the hobby group contacts the guardians about the practical arrangements for the hobby. Please contact the hobby organiser if you want to cancel your child’s participation or if you have questions about the hobby. It is possible to try out the hobby groups before signing up. </p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils in grades 3–9 and take place after school days at school premises, near the school or via remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo. The principles of a safer space are applied in the hobby groups. </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtf5bxdi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmtfpqkhm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T08:01:03.328616Z", "last_modified_time": "2025-09-10T08:01:03.328633Z", "date_published": "2025-09-10T07:53:00Z", "start_time": "2025-09-15T12:00:00Z", "end_time": "2025-09-15T15: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, "provider": { "fi": "KYLLÄ elinluovutukselle -toiminta" }, "location_extra_info": null, "name": { "fi": "KYLLÄ elinluovutukselle -toiminta esittäytyy" }, "info_url": { "fi": "http://www.elinluovutuskortti.fi" }, "short_description": { "fi": "Meillä on aulassa oma ständi, jossa jaamme elinluovutuskortteja. Tule juttelemaan ja hakemaan oma elinluovutuskorttisi, jos sinulla ei sellaista vielä ole." }, "provider_contact_info": null, "description": { "fi": "<p>KYLLÄ elinluovutukselle -toiminnan vapaaehtoiset ovat paikalla Tapiolan kirjastossa maanantaina 15.9. kello 15.00-18.00.</p><p>Meillä on aulassa oma ständi, jossa jaamme elinluovutuskortteja. Tule juttelemaan ja hakemaan oma elinluovutuskorttisi, jos sinulla ei sellaista vielä ole.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtfpqkhm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19731, "next": "