Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=99
{ "meta": { "count": 22946, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=100", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=98" }, "data": [ { "id": "espoo_le:agozxhvjuq", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493836, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-18T12:08:52.276006Z", "last_modified_time": "2025-11-18T12:08:52.276021Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/029d26e0-64ca-48b8-b00d-eec547c5896b.jpg", "name": "", "cropping": "218,0,862,644", "photographer_name": "", "alt_text": "Suomi sanoo tarvitsevansa osaajia, mutta haluaa halpatyövoimaa - Veera Kontulan valokuvia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493836/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-18T13:23:24.750496Z", "last_modified_time": "2026-03-18T13:23:24.750511Z", "date_published": "2026-03-18T13:20:00Z", "start_time": "2026-03-19T08:00:00Z", "end_time": "2026-04-03T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Suomi sanoo tarvitsevansa osaajia, mutta haluaa halpatyövoimaa (valokuvia)", "sv": "Finland säger att det behöver kvalificerade arbetare, men vill ha lågavlönade anställda (foton)", "en": "Finland says it needs skilled workers, but wants cheap labor (photos)" }, "location_extra_info": { "fi": "Valatori-seinä", "sv": "Valatori-väggen", "en": "Valatori Wall" }, "provider": null, "short_description": { "fi": "Veera Kontulan opinnäytetyön valokuvasarja", "sv": "Veera Kontulas examensarbetes fotoserie", "en": "Photos from Veera Kontula's thesis" }, "info_url": null, "description": { "fi": "<p><strong>Veera Kontula</strong>n opinnäytetyön valokuvasarjassa on kymmenen Suomeen muuttanutta, joilla on korkeakoulututkinto. He eivät kuitenkaan ole saaneet koulutustaan vastaavaa työtä tai matka sinne on ollut kivinen. Filosofian professori on tehnyt töitä siivoojana eläkkeelle asti ja myy tällä hetkellä Iso numero -lehteä. Tai viestinnän asiantuntija saa vain parin päivän pätkiä. Suuri osa maahan muuttaneista on korkeakoulutettuja, niin kuin myös kuvasarjan henkilöt.</p><p>\"Opin kuvasarjaa tehdessäni aiheen olevan jatkuvasti pinnalla Suomeen muuttaneiden keskuudessa. Tilanne on monelle arkea, eikä paljoa lohduta, kun kuulee työkaverin pikaruokalassa etsineen lakialan töitä viimeiset kymmenen vuotta. Osa on myös maksanut suuren summan rahaa siitä, että pääsisi opiskelemaan. Suomalaisesta korkeakoulusta valmistuminen ei kuitenkaan aina auta työnsaantiin.</p><p>Herää kysymys, että miksi suomalaista koulutusta mainostetaan ulkomaille, jos sillä ei ole tarkoituskaan saada töitä täältä? Suomeen muuttaminen ei ole halpa ja helppo prosessi. Silti moni on sen valmis tekemään, mutta onko Suomi valmis antamaan mahdollisuuksia?</p><p>Suomi menettää suuren määrän koulutettuja henkilöitä. Samaan aikaan puhutaan, että Suomesta pitäisi tehdä houkuttelevampi maa huippuosaajille. Osaajista suuri osa ei kuitenkaan saa töitä ja lähtevät muualle.”</p>", "sv": "<p>Veera Kontulas examensarbetes fotoserie. Temat är varför det är så svårt för utlänningar att hitta arbete i Finland. </p>", "en": "<p>Photos from Veera Kontula's thesis. The theme is why is it so difficult for foreigners to find work in Finland? </p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvjuq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhvkca", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-18T12:40:31.848648Z", "last_modified_time": "2026-03-18T12:40:31.848665Z", "date_published": null, "start_time": "2026-03-30T14:00:00Z", "end_time": "2026-03-30T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Taukon kevätkonsertti", "sv": "Taukos vårkonsert", "en": "Tauko’s Spring Concert " }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": null, "short_description": { "fi": "Oppilaskonsertti", "sv": "Elevkonsert", "en": "Student concert" }, "info_url": null, "description": { "fi": "<p>Puoliakustiset konsertit </p><p>kello 17:00 ja 18:00 </p><p><br></p>", "sv": "<p>halvakustiska konserter</p><p>at 17:00 and 18:00</p>", "en": "<p>Semi‑acoustic concerts</p><p>at 5 pm and 6 pm</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvkca/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhvlwe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvkq4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvldi/?format=api" } ], "images": [ { "id": 1824173, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-18T12:20:27.502339Z", "last_modified_time": "2026-03-18T12:20:27.502353Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/40d91e33-a769-426b-94fa-772aa90726d8.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Sinivuokkoja, mikrofoniin laulava tyttö ja saksofoni", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824173/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-18T12:28:06.212157Z", "last_modified_time": "2026-03-18T12:28:06.212173Z", "date_published": null, "start_time": "2026-03-27T16:00:00Z", "end_time": "2026-03-28T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Äänet esiin! Espoon työväenopiston kevätkonsertit", "sv": "Rösterna fram! Esbo arbetarinstituts vårkonserter", "en": "Voices to the front! Spring Concerts of the Espoo Adult Education Centre" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": null, "short_description": { "fi": "Oppilaskonsertit", "sv": "Elevkonserter", "en": "Student concerts" }, "info_url": null, "description": { "fi": "<p>Pe 27.3. kello 18:00</p><p>La 28.3. kello 14:00</p>", "sv": "<p>Fre 27.3. kl 18:00</p><p>Lö 28.3. kl 14:00</p>", "en": "<p>Fri 27.3. at 6 pm</p><p>Sat 28.3. at 2 pm</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvlwe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhvodm", "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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvmxe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvnhe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvnvi/?format=api" } ], "images": [ { "id": 151294, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-05-22T11:46:30.237501Z", "last_modified_time": "2024-05-22T11:46:30.237522Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/biisity%C3%B6paja.jpg", "name": "", "cropping": "517,0,2583,2066", "photographer_name": "", "alt_text": "nuori tekee omaa musiikkia. Kitara, tietokone ja piano", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151294/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-03-18T12:19:36.419755Z", "last_modified_time": "2026-03-18T12:19:36.419770Z", "date_published": null, "start_time": "2026-04-13T14:00:00Z", "end_time": "2026-05-25T15: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, "name": { "fi": "Biisityöpaja nuorille", "en": "Songwriting Workshop for Youth" }, "location_extra_info": { "fi": "nuortentila" }, "provider": null, "short_description": { "fi": "Tapiolan kirjaston nuortentilassa järjestetään biisipaja nuorille. Työvälineenä käytämme iPadeja ja syntetisaattorieta. Osallistuminen on maksutonta.", "en": "A songwriting workshop for young people will be held in the youth section of the Tapiola library. Participation is free of charge." }, "info_url": null, "description": { "fi": "<p>Oletko aina halunnut tehdä oman kappaleen tai biitin, mutta et tiedä miten lähteä liikkeelle? Nyt siihen on oiva apu, nimittäinTapiolan kirjaston nuortentilassa järjestetään biisipaja nuorille. Työvälineenä käytämme iPadeja ja syntetisaattorieta. Teemme myös sanoituksia valmistuneisiin biitteihin. Tapahtumaan ei ole ennakkoilmoittautumista ja osallistuminen on maksutonta.</p><p><br></p><p>Biisipaja järjestetään maanantaisin klo 17-18</p><p>13.4, 27.4, 11.5, 25.5</p><p>#musiikki #biisi #kappale #työpaja</p>", "en": "<p>Have you always wanted to make your own song or beat, but don't know how to get started? Now there's a great way to help you do just that: At Tapiola Library is a songwriting workshop for youth. We'll be using iPads and synthesizers as our tools. We'll also be writing lyrics to go with the finished beats. No pre-registration for the event, and participation is free of charge.</p><p><br></p><p><br></p><p>The songwriting workshop will be held at 5:00-6:00 p.m.</p><p>13.4, 27.4, 11.5, 25.5</p><p><br></p><p>#music #song #songwriting #workshop</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvodm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhvosi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824174, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-18T11:53:30.414521Z", "last_modified_time": "2026-03-18T11:53:30.414535Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1e0bd2e9-7110-4582-a1a7-535402948e52.jpg", "name": "", "cropping": "322,0,1908,1587", "photographer_name": "", "alt_text": "Asukaistilaisuuden tiedot tekstinä ja katunäkymä espoosta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824174/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-18T12:00:03.847624Z", "last_modified_time": "2026-03-18T12:00:03.847640Z", "date_published": null, "start_time": "2026-03-25T15:00:00Z", "end_time": "2026-03-25T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "ASUKASTILAISUUS: ESPOO-TARINA JA SEN MERKITYS" }, "location_extra_info": { "fi": "Stage" }, "provider": { "fi": "Matinkylän suuralueen asukasyhdistykset" }, "short_description": { "fi": "keskustelutilaisuus" }, "info_url": null, "description": { "fi": "<p>Kaupunginjohtaja Kai Mykkänen tulee kertomaan mitä ESPOO-TARINA merkitsee Matinkylän suuralueen asukkaiden kannalta. Tule mukaan kysymään ja keskustelemaan!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvosi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhvo5y", "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: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/espoo_le:agggfz7ao4/?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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824175, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-18T11:38:46.132726Z", "last_modified_time": "2026-03-18T11:39:00.411662Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/51209833-43ab-48a5-ae79-26d7573e6cc2.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "Emilia Erfvingin Pikku-Kasa kuvakirjan kansikuva vaaleanpunaisella taustalla ja vaalean vihreillä koristetäplillä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824175/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-18T11:39:09.280933Z", "last_modified_time": "2026-03-18T11:39:09.280950Z", "date_published": null, "start_time": "2026-04-23T14:00:00Z", "end_time": "2026-04-23T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kasan kevät-ilta", "sv": "Kasa vårkväll", "en": "Kasa picturebooks night" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "provider": null, "short_description": { "fi": "Tutustu ihaniin Kasa-kuvakirjoihin ja askartele iki-oma Kasa", "sv": "Kom och bekanta dig med Emilia Ervfings Kasa bildböcker", "en": "Join us in celebrating Emilia Ervfings Kasa picturebooks and make your own Kasa" }, "info_url": null, "description": { "fi": "<p>Tule tutustumaan Emilia Ervfingin ihaniin Kasa -kuvakirjoihin ja askartele iki oma Kasa.</p><p><br></p>", "sv": "<p>Kom och bekanta dig med Emilia Ervfings underbara Kasa-bildböcker och pyssla din alldeles egna Kasa.</p>", "en": "<p>Come explore Emilia Ervfing’s lovely Kasa picture books and create your very own Kasa.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvo5y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhvpl4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?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: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/espoopaiva", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoopaiva/", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 1824176, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-27T12:16:34.486780Z", "last_modified_time": "2025-11-27T12:16:34.486795Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/26258537-2cd8-4acb-82b5-b01c6f4c39cb.png", "name": "", "cropping": "961,0,2881,1920", "photographer_name": "", "alt_text": "Piirroskuva, jossa erilaisia ihmisiä suuren pöydän ääressä. Pöydällä pieniä lappuja ja kuvia, ihmiset piirtävät ja kaksi heistä lyö kättä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824176/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-10T14:13:32.885484Z", "last_modified_time": "2026-03-18T11:03:57.373870Z", "date_published": "2026-03-10T14:15:00Z", "start_time": "2026-04-08T12:00:00Z", "end_time": "2026-04-08T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Mukaan Espoo-päivään -foorumi / Iso Omena" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule mukaan virittäytymään tämän vuoden Espoo-päivän tunnelmiin keskustelemalla, verkostoitumaalla ja ideoimalla!" }, "info_url": { "fi": "https://espoopaiva.fi/" }, "description": { "fi": "<p>Espoo-päivää vietetään jälleen elokuun viimeisenä viikonloppuna, perjantaina 28.8. ja lauantaina 29.8. Liity osaksi juhlintaa omalla tapahtumalla! Tänä vuonna Espoo-päivän teema on \"Unelmien kaupunki\".</p><p>Kutsummekin järjestäjät pohtimaan, miltä unelmien kaupunki näyttää: Onko se leikkisä, värikäs tai kokeileva, vai kenties luonnonläheinen, yhteisöllinen tai perinteikäs? Oikeita vastauksia on yhtä paljon kuin espoolaisia, ja Espoo-päivänä kaikilla on lupa juhlia: omalla tavalla ja yhdessä.</p><p>Siispä: tervetuloa virittäytymään tämän vuoden Espoo-päivän tunnelmiin osallistumalla Mukaan Espoo-päivään -foorumeihin</p><p>Entressen ja Ison Omenan kirjastoissa järjestettävissä foorumeissa pääset keskustelemaan kanssamme Espoo-päivästä, verkostoitumaan muiden tapahtumajärjestäjien kanssa sekä ideoimaan omaa tapahtumaasi kahvikupillisen äärellä. </p><p>Esittelemme foorumeissa myös Unelmien Espoo-päivä –asukaskyselyn tulokset, jotka auttavat eri alueiden toimijoita järjestämään onnistuneita tapahtumia espoolaisten näkemyksistä ja toiveista inspiroituen.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvpl4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhvpzu", "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:p10727/?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: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/espoopaiva", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoopaiva/", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 1824176, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-27T12:16:34.486780Z", "last_modified_time": "2025-11-27T12:16:34.486795Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/26258537-2cd8-4acb-82b5-b01c6f4c39cb.png", "name": "", "cropping": "961,0,2881,1920", "photographer_name": "", "alt_text": "Piirroskuva, jossa erilaisia ihmisiä suuren pöydän ääressä. Pöydällä pieniä lappuja ja kuvia, ihmiset piirtävät ja kaksi heistä lyö kättä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824176/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-10T13:57:58.387568Z", "last_modified_time": "2026-03-18T11:03:34.294770Z", "date_published": "2026-03-10T14:15:00Z", "start_time": "2026-03-25T13:30:00Z", "end_time": "2026-03-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, "name": { "fi": "Mukaan Espoo-päivään -foorumi / Entresse" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule mukaan virittäytymään tämän vuoden Espoo-päivän tunnelmiin keskustelemalla, verkostoitumaalla ja ideoimalla!" }, "info_url": { "fi": "https://espoopaiva.fi/" }, "description": { "fi": "<p>Espoo-päivää vietetään jälleen elokuun viimeisenä viikonloppuna, perjantaina 28.8. ja lauantaina 29.8. Liity osaksi juhlintaa omalla tapahtumalla! Tänä vuonna Espoo-päivän teema on \"Unelmien kaupunki\".</p><p>Kutsummekin järjestäjät pohtimaan, miltä unelmien kaupunki näyttää: Onko se leikkisä, värikäs tai kokeileva, vai kenties luonnonläheinen, yhteisöllinen tai perinteikäs? Oikeita vastauksia on yhtä paljon kuin espoolaisia, ja Espoo-päivänä kaikilla on lupa juhlia: omalla tavalla ja yhdessä.</p><p>Siispä: tervetuloa virittäytymään tämän vuoden Espoo-päivän tunnelmiin osallistumalla Mukaan Espoo-päivään -foorumeihin</p><p>Entressen ja Ison Omenan kirjastoissa järjestettävissä foorumeissa pääset keskustelemaan kanssamme Espoo-päivästä, verkostoitumaan muiden tapahtumajärjestäjien kanssa sekä ideoimaan omaa tapahtumaasi kahvikupillisen äärellä. </p><p>Esittelemme foorumeissa myös Unelmien Espoo-päivä –asukaskyselyn tulokset, jotka auttavat eri alueiden toimijoita järjestämään onnistuneita tapahtumia espoolaisten näkemyksistä ja toiveista inspiroituen.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvpzu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn4dwszce", "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/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsfjy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsgum/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsh4i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsjdy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwskmq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsltm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsm34/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsod4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwspjm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsqri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsrye/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwstbu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsuiy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsvpy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwswwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsx3y/?format=api" } ], "images": [ { "id": 1490192, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-12-30T11:23:45.697797Z", "last_modified_time": "2024-12-30T11:23:45.697819Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/495df36d-f7b0-4b61-92de-dc5e51df0058.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "tanssivan parikunnan kädet", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490192/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-01-15T12:29:50.994852Z", "last_modified_time": "2026-03-18T09:24:31.336815Z", "date_published": null, "start_time": "2026-01-20T09:00:00Z", "end_time": "2026-05-05T10: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, "name": { "fi": "Lavatanssit ", "sv": "Sällskapdanser", "en": "Social Dancing" }, "location_extra_info": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "provider": { "fi": " Espoon Tanssinystävät ry.", "sv": "Esbo Dansvänner rf ", "en": "Espoo Dance Enthusiasts Association" }, "short_description": { "fi": "Entressen kirjaston lavatanssit/opetus opettajina Reijo ja Eija Karikivi.", "sv": "Välkommen till dansa och lära!", "en": "Welcome to dance and learn!" }, "info_url": null, "description": { "fi": "Entressen kirjaston Jukeboksin lavatanssit.<p>13.1.-5.5.2026</p><p>13.1. tutustuminen – tanssit</p><p>20.1. lavafoksi ja bachata</p><p>27.1. valssi ja rumba</p><p>3.2.. tanssit</p><p>10.2. tango ja cha cha</p><p>17.2. tanssit</p><p>24.2 hidas valssi ja fusku</p><p>3.3. tanssit</p><p>10.3. humppa ja salsa</p><p>17.3. tanssit</p><p>24.3. lavafoksi ja samba</p><p>31.3 tanssit</p><p>7.4. hidas valssi ja jive</p><p>14.4. tanssit</p><p>21.4. valssi ja rumba</p><p>28.4 tanssit</p><p>5.5. kertausta ja kauden päätöstanssit</p><p>Paikka Espoon keskus, Entressen kirjasto 3krs. Jukeboksi -Sali</p><p>kello 11 – 13. Opettajina Reijo ja Eija Karikivi. Ohjelman muutokset</p><p>mahdollisia.</p><p>Järjestävät Espoon Tanssinystävät ry ja Entressen kirjasto.</p><p>Vapaa pääsy.</p>", "sv": "Entresse bibliotekets sällskapdanser i Jukeboksi<p>13.1.-5.5.2026</p><p>13.1. Introduktion – dans</p><p>20.1. Foxtrot och bachata</p><p>27.1. Vals och rumba</p><p>3.2. Dans</p><p>10.2. Tango och cha-cha</p><p>17.2. Dans</p><p>24.2. Långsam vals och fusku</p><p>3.3. Dans</p><p>10.3. Humppa och salsa</p><p>17.3. Dans</p><p>24.3. Foxtrot och samba</p><p>31.3. Dans</p><p>7.4. Långsam vals och jive</p><p>14.4. Tanssit</p><p>21.4. Vals och rumba</p><p>28.4. Dans</p><p>5.5. Repetition och säsongsavslutningsdans</p><p>Plats: Esbo centrum, Entresse bibliotek, 3:e våningen, Jukeboksi</p><p>Tid: kl. 11–13</p><p>Instruktörer: Reijo och Eija Karikivi</p><p>Ändringar i programmet möjliga.</p><p>Arrangörer: Esbo Dansvänner rf. Fri entré.</p>", "en": "Entresse Library's Social Dances at Jukeboksi<p>13.1.-5.5.2026</p><p>13 Jan Introduction – dance</p><p>20 Jan foxtrot and bachata</p><p>27 Jan Waltz and rumba</p><p>3 Feb Dance</p><p>10 Feb Tango and cha-cha</p><p>17 Feb Dance</p><p>24 Feb Slow waltz and fusku</p><p>3 Mar Dance</p><p>10 Mar Humppa and salsa</p><p>17 Mar Dance</p><p>24 Mar foxtrot and samba</p><p>31 Mar Dance</p><p>7 Apr Slow waltz and jive</p><p>14 Apr Dance</p><p>21 Apr Waltz and rumba</p><p>28 Apr Dance</p><p>5 May Review and end-of-season dance</p><p>Location: Espoo Center, Entresse Library, 3rd floor, Jukeboksi</p><p>Time: 11 AM – 1 PM</p><p>Instructors: Reijo and Eija Karikivi</p><p>Program subject to change.</p><p>Organizers: Espoo Dance Enthusiasts Association. Free entry.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwszce/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhvrji", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824177, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-18T08:13:17.191145Z", "last_modified_time": "2026-03-18T08:13:17.191158Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/7b261d81-1a13-4635-a2a6-c3c277d257b2.jpg", "name": "", "cropping": "320,0,1600,1280", "photographer_name": "", "alt_text": "Harppu ja kukkakimppu", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824177/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-18T08:13:27.688431Z", "last_modified_time": "2026-03-18T08:13:27.688449Z", "date_published": null, "start_time": "2026-04-26T11:00:00Z", "end_time": "2026-04-26T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Keväistä helinää - Musiikkiopisto Juvenalian harpistit lavalla", "sv": "Vårens klang – Harpisterna från musikskolan Juvenalia på scenen", "en": "The Sound of Spring - Harpists from the Juvenalia Music School Take the Stage" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": { "fi": "Musiikkiopisto Juvenalia", "sv": "Musikskolan Juvenalia", "en": "Juvenalia Music School" }, "short_description": { "fi": "Musiikkiopisto Juvenalian harpistit esittävät monipuolisen kattauksen harppumusiikkia.", "sv": "Harpspelarna vid musikskolan Juvenalia framför ett varierat urval av harpmusik", "en": "The harpists of the Juvenalia Music School will perform a diverse selection of harp music." }, "info_url": null, "description": { "fi": "<p>Musiikkiopisto Juvenalian harpistit esittävät monipuolisen kattauksen harppumusiikkia. Harppusoolojen lisäksi kuullaan myös pienyhtyeitä. Tervetuloa kuuntelemaan harppuyhtyeen keväistä helinää!</p>", "sv": "<p>Harpspelarna vid musikskolan Juvenalia framför ett varierat urval av harpmusik. Förutom harpsolon får man även höra mindre ensembler. Välkommen att lyssna på harpensemblen och njuta av vårens klangfulla toner!</p>", "en": "<p>The harpists of the Juvenalia Music School will perform a diverse selection of harp music. In addition to harp solos, the program will also feature small ensembles. Come and enjoy the harp ensemble’s springtime melodies!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvrji/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhvrvm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824178, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-09T07:50:23.673760Z", "last_modified_time": "2026-03-09T07:50:23.673774Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4af1902-cf53-4700-98ba-53bbd78f6f65.jpg", "name": "", "cropping": "0,160,643,804", "photographer_name": "", "alt_text": "Kuvassa on lapsia lukemassa ja kirjoittamassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824178/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-09T07:53:10.779685Z", "last_modified_time": "2026-03-18T06:52:30.518579Z", "date_published": null, "start_time": "2026-03-28T13:00:00Z", "end_time": "2026-03-28T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Englanninkielinen taide- ja yleissivistyskisa vanhemmille ja lapsille -PERUTTU ", "en": "Colourful art and general knowledge competition for parents and children -CANCELLED" }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa mukaan vanhemmille ja lapsille suunnattuun englanninkieliseen taide- ja yleissivistyskisaan la 28.3. klo 15-17.", "en": "Welcome to the colourful art and general knowledge competition for parents and children on Saturday 28.3. from 15-17." }, "info_url": null, "description": { "fi": "<p>Värikäs taide- ja yleissivistyyskisa vanhemmille ja lapsille. Tervetuloa mukaan tapahtumaan. Lapset voivat ottaa omat piirustustarvikkeet kisaa varten. Paperit tarjoaa tapahtuman järjestäjä (kynät voi lainata kirjastosta). Tapahtuma järjestetään monitoimisalissa Salonki.</p><p><br></p><p>Tapahtuma on englanninkielinen.</p><p><br></p><p>Program/Ohjelma:</p><p>15:00 - 15:45: Opening ceremony and art competition</p><p>15:45-16:00: Break</p><p>16:00 - 16:10: Kid's general knowledge competition</p><p>16:10-16:30: Parents general knowledge competition</p><p>16:30 - 16:50 Prize giving ceremony</p><p>16:50 - 17:00 Small snacks distribution for kids</p><p>17:00 the event ends</p><p><br></p><p>Dress code: Outfit that reflects your country, culture and traditions. However you can comes as you are.</p>", "en": "<p>Colourful art and general knowledge competition for parents and children. Feel free to join the event. Kids may require their own drawing materials to attend the competition. Papers will be offered by the event organizers (also pens can be borrowed from the library). The event will be arranged at multifunction room Salonki.</p><p>Program:</p><ul><li>15:00 - 15:45: Opening ceremony and art competition</li><li>15:45-16:00: Break</li><li>16:00 - 16:10: Kid's general knowledge competition</li><li>16:10-16:30: Parents general knowledge competition</li><li>16:30 - 16:50 Prize giving ceremony</li><li>16:50 - 17:00 Small snacks distribution for kids</li><li>17:00 the event ends</li></ul><p>Dress code: Outfit that reflects your country, culture and traditions. However you can comes as you are.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvrvm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn4dwr7v4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 1824179, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-03-16T10:57:55.805287Z", "last_modified_time": "2026-03-16T10:57:55.805303Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/96156a43-fa96-4479-8e59-558ab58b470c.png", "name": "Lastenmusiikkiorkesteri Svengaavat hirvet", "cropping": "286,0,1024,739", "photographer_name": "Aleksi Tonteri", "alt_text": "muusikot", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824179/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-01-15T13:09:45.393736Z", "last_modified_time": "2026-03-17T09:13:42.244291Z", "date_published": null, "start_time": "2026-03-31T07:30:00Z", "end_time": "2026-03-31T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lastenmusiikkiorkesteri Svengaavat hirvet", "en": "Children’s Music Orchestra Svengaavat hirvet" }, "location_extra_info": { "fi": "stage", "en": "stage" }, "provider": null, "short_description": { "fi": "Lastenmusiikkiorkesteri Svengaavat hirvet soittavat tuttuja lastenlauluja raikkaalla otteella.", "en": "The children’s music orchestra Svengaavat hirvet performs well-known children’s songs with a fresh and lively approach. (Performance in Finnish) " }, "info_url": null, "description": { "fi": "<p>Lastenmusiikkiorkesteri Svengaavat hirvet soittavat tuttuja lastenlauluja raikkaalla otteella. Tässä konsertissa lapset pääsevät itse osallistumaan laulamalla, tanssimalla ja soittamalla laulujen mukana. Kirjaston muusikot ohjaavat lapsia leikkien ja laulujen avulla rytmin, melodian ja harmonian maailmaan. </p><p>Elina Kulmala - laulu ja huilu</p><p>Sakari Heikka - laulu, kitara ja viulu</p><p>Timo Ylönen - laulu ja basso</p><p>Lauri Iljin - laulu, piano ja trumpetti</p><p><br></p><p>Alla konserttien päivämäärät ja kellonajat. Ilmoitathan yli 10 lapsen ryhmät kulpsista löytyvän webropol-lomakkeen kautta. Tervetuloa konserttiin</p><p><br></p><p>Svengaavat hirvet Lippulaivan kirjastossa 3.2 klo 10.30-11.00</p><p>Svengaavat hirvet Entressen kirjastossa 3.3 klo 10.30-11.00</p><p>Svengaavat hirvet Ison Omenan kirjastossa 31.3 klo 10.30-11.00</p><p>Svengaavat hirvet Sellon kirjastossa 28.4 klo 10.30-11.00</p><p>Svengaavat hirvet Tapiolan kirjastossa 12.5 klo 10.30-11.00</p>", "en": "<p>The children’s music orchestra Svengaavat hirvet performs well-known children’s songs with a fresh and lively approach. During the concert, children are encouraged to participate by singing, dancing, and playing along with the music. </p><p>The concert is free of charge. Please register groups of more than 10 people via the Webropol form.</p><p> </p><p>At Lippulaiva Library </p><p>3 Feb, 10:30–11:00 </p><p><br></p><p>At Entresse Library </p><p>3 Mar, 10:30–11:00 </p><p> </p><p>At Iso Omena Library </p><p>31 Mar, 10:30–11:00 </p><p><br></p><p>At Sello Library </p><p>28 Apr, 10:30–11:00 </p><p><br></p><p>At Tapiola Library </p><p>12 May, 10:30–11:00</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwr7v4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhvtpa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15309/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p4354/?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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvsrq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvtau/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-17T07:55:38.185905Z", "last_modified_time": "2026-03-17T07:55:38.185925Z", "date_published": null, "start_time": "2026-03-20T15:00:00Z", "end_time": "2026-03-27T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pelikerho" }, "location_extra_info": null, "provider": { "fi": "MLL Laaksolahti" }, "short_description": { "fi": "Pelikerhossa pelaillaan lautapelejä porukalla ja mukaan ovat tervetulleita kaikki pelitaitoiset lapset ja nuoret." }, "info_url": null, "description": { "fi": "<p>Maaliskuun ajan perjantaisin pelikerho Laaksolahden kirjastolla. Pelikerhossa pelaillaan lautapelejä porukalla ja mukaan ovat tervetulleita kaikki pelitaitoiset lapset ja nuoret. Aikuiset, mahdolliset kanssa-auttajat ja muut tulevaisuuden pelikerhon vetäjät myös ehdottomasti tervetuloa mukaan!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvtpa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67230", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491265, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-31T14:13:45.986997Z", "last_modified_time": "2025-10-31T14:13:45.987015Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780032.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491265/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-10-31T14:13:45.680691Z", "last_modified_time": "2026-03-16T15:13:14.017537Z", "date_published": null, "start_time": "2026-01-17", "end_time": "2026-05-16", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Annantalon taidelauantait", "sv": "Annegårdens konstlördagar", "en": "Annantalo Art Saturdays" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BE787352886B5C6A8A39979FE517699F/Annantalon_taidelauantait", "sv": "http://www.annantalo.fi/sv/evenemang/event/BE787352886B5C6A8A39979FE517699F/Annegardens_konstlordagar_", "en": "http://www.annantalo.fi/en/events/event/BE787352886B5C6A8A39979FE517699F/Annantalo_Art_Saturdays_" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantait ovat maksuttomia ja sopivat kaikenkielisille. <br> <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p><p><b>17.1.2026 klo 11–14</b> <br>Meren asukas</p><p><b>24.1.2026 klo 11–14</b><br>Fragmentit framille</p><p><b>31.1.2026 klo 11–14</b><br>Small size days -työpaja: Tarinankerrontaa ja taiteilua!</p><p><b>7.2.2026 klo 11–14</b> <br>Hyvän unen apurit</p><p><b>14.2.2026 klo 11–14</b><br>Ei Annantalon taidelauantaita - AnnanHouse-tapahtuma klo 16-19</p><p><b>21.2.2026 klo 11–14</b> <br>Aarrejahti</p><p><b>28.2.2026 klo 11–14 </b><br> <u><a href=\"https://annantalo.fi/fi/tapahtumat/event/230927E0E7D4B562A3BD87B0143473B8/Annantalon_taidelauantai__Mariana___Alves_-_Spin_Me_a_Story\">Mariana & Alves - Spin me a Story</u></a></p><p><b>7.3.2026 klo 11–14 </b><br>Kämpillä</p><p><b>14.3.2026 klo 13–15 </b><br>Pöytäteatterin taikaa</p><p><b>21.3.2026 klo 11–14 </b><br>Fragmentit framille</p><p><b>28.3.2026 klo 11–14 </b><br>Tunneduunarin kunniamerkki</p><p><b>4.4.2026</b><br>Ei Annantalon taidelauantaita - Annantalo suljettu</p><p><b>11.4.2026</b><br>Ei Annantalon taidelauantaita - Barnfesten-tapahtuma klo 10-15</p><p><b>18.4.2026 klo 11–14</b> <br>Hyvän unen apurit</p><p><b>25.4.2026 klo 11–14 </b><br>Julkaistaan myöhemmin</p><p><b>2.5.2026 klo 11–14 </b><br>Kämpillä</p><p><b>9.5.2026 klo 11–14 </b><br>Kuka on sinun eläinoletettusi?</p><p><b>16.5.2026 klo 11-14</b> <br>Fragmentit framille</p><p>Huom! Annantalon taidelauantaita ei järjestetä 14.2. ja 11.4.</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördagar är avgiftsfria och passar alla oberoende av vilket språk man talar. <br> <br>Varmt välkommen till Annegården på lördagarna!</p><p>Obs! Annegårdens konstlördagar ordnas inte 14.2. och 11.4.</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturdays are free-of-charge and suitable for guests from all language backgrounds. <br> <br>We look forward to seeing you at Annantalo on Saturdays!</p><p>Please note! Annantalo Art Saturday will not be held on 14th February and 11th April</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67230/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmyxr7rki", "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: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:p11617/?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: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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7gj4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7g6y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7hki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7hva/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7iaa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7ijy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7iue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7i6m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7ji4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7jti/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7j5y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7kiq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7ktm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7k6i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7liu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7lue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7l7u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7mky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7mvy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7naa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7nki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7nvu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7oai/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7oky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7ovm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7pae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7pki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7puq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7p6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7qjq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7qv4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7q74/?format=api" } ], "images": [ { "id": 1490241, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-20T12:30:46.474635Z", "last_modified_time": "2025-05-20T12:30:46.474651Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/aa41a782-a291-4ee4-8a37-c010dae34d59.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "elokuvaliput ja popcornia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490241/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-09-27T14:43:54.298827Z", "last_modified_time": "2026-03-16T13:30:42.701789Z", "date_published": null, "start_time": "2025-10-03T14:00:00Z", "end_time": "2026-05-29T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten perjantaileffa", "sv": "Fredagsfilm för barn", "en": "Children's Friday movie" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!", "sv": "På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!", "en": "On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä!</p><p>Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina osallistujat saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p><strong>27.3.2026 elokuvailta järjestetään poikkeuksellisesti klo 18 alkaen. </strong>Teemana maagiset elokuvat. #maaginenviikko </p>", "sv": "<p>På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!</p><p>Den första fredagen i månaden visar vi alltid en åldersanpassad film (S). Övriga fredagar kan deltagare välja en film från S- och K7-utbudet.</p><p><br></p><p><strong>Den 27 mars 2026 hålls filmkvällen undantagsvis med start kl. 18. </strong></p>", "en": "<p>On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!</p><p>On the first Friday of the month, we always show an age-appropriate film (S). On other Fridays, participants can choose a film from the S and K7 selection.</p><p><br></p><p><strong>On March 27, 2026, the movie night will be held exceptionally starting at 6 p.m. </strong></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7rki/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhvupu", "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:p2625/?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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494664, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-28T13:05:37.831432Z", "last_modified_time": "2026-01-28T13:05:37.831448Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/562f0d82-3d42-4a08-ab2d-52188b513bc3.png", "name": "", "cropping": "306,0,1087,780", "photographer_name": "", "alt_text": "Rivissä vanhoja nukketeatterinukkeja, hoviväkeä. Ja teksti Prinsessa Ruususen elämää - nukketeatteri", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494664/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-16T12:33:13.890355Z", "last_modified_time": "2026-03-16T12:33:34.469664Z", "date_published": "2026-03-16T12:32:00Z", "start_time": "2026-04-21T07:00:00Z", "end_time": "2026-04-21T07:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Nukketeatteri: Prinsessa Ruususen elämää (Uusintanäytös)", "sv": "Dockteater: Törnrosas liv (föreställning på finska)", "en": "Puppet Theatre: The Life of Sleeping Beauty (performance in Finnish)" }, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "short_description": { "fi": "Prinsessa Ruusunen – elämää, perinteestä nykyhetkeen", "sv": "Törnrosa – från tradition till nutid", "en": "Sleeping Beauty – from tradition to the present day" }, "info_url": null, "description": { "fi": "<p>Prinsessa Ruusunen – elämää, perinteestä nykyhetkeen.</p><p>Esitys herättää henkiin arvostetun nukentekijä Lembit Roosan alkuperäiset, käsintehdyt nuket, jotka esiintyivät Vihreässä Omenassa yli satakertaa. Neljän vuosikymmenen tauon jälkeen nämä taidokkaat nuket saavat uuden elämän ohjaaja Elina Rainion ja näyttelijä Pirre Toikkasen käsissä.Esitys yhdistää perinteisen nukketeatteritaiteen nykypäivän lasten maailmaan – lempeästi, osallistavasti ja läsnäollen.</p><p>Nukketeatteri tuo taiteen suoraan lasten arkeen – sinne, missä he jo ovat. Se tarjoaa vastapainoa digitaaliselle maailmalle: konkreettista ja kosketeltavaa vuorovaikutusta, turvallisen tilan tunteiden ja tarinoiden käsittelyyn.</p><p>Kohderyhmä: 3 – 8-vuotiaat lapset</p><p>Kesto: noin 30 minuuttia</p>", "sv": "<p>Törnrosa – liv från tradition till nutid</p><p>Föreställningen väcker till liv de ursprungliga handgjorda dockorna av den uppskattade dockmakaren Lembit Roosa, som uppträdde över hundra gånger på Gröna Äpplet. Efter ett uppehåll på fyra decennier får dessa skickligt skapade dockor nytt liv i händerna på regissören Elina Rainio och skådespelaren Pirre Toikkanen. Föreställningen förenar traditionell dockteater med dagens barns värld – varsamt, deltagande och närvarande.</p><p>Dockteater för konsten direkt in i barnens vardag – dit där de redan finns. Den erbjuder en motvikt till den digitala världen: konkret och berörande interaktion samt ett tryggt rum för att bearbeta känslor och berättelser.</p><p>Målgrupp: barn 3–8 år</p><p>Längd: cirka 30 minuter</p>", "en": "<p>Sleeping Beauty – life from tradition to the present day</p><p>The performance brings to life the original handmade puppets created by the respected puppet maker Lembit Roosa, which appeared over a hundred times at the Green Apple Theatre. After a break of four decades, these skilfully crafted puppets gain a new life in the hands of director Elina Rainio and actor Pirre Toikkanen. The performance combines traditional puppetry with the world of today’s children – gently, interactively, and with a strong sense of presence.</p><p>Puppet theatre brings art directly into children’s everyday lives – right where they already are. It offers a counterbalance to the digital world: tangible interaction and a safe space for exploring emotions and stories.</p><p>Target group: children aged 3–8</p><p>Duration: approximately 30 minutes</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvupu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhvw3y", "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:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvu6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvvoa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvv5a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvwmu/?format=api" } ], "images": [ { "id": 1824180, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T11:33:51.069489Z", "last_modified_time": "2026-03-16T11:34:52.506710Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/19a16f5b-ca2c-4554-9643-90ff715fb396.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Yksin vanhempana ry", "alt_text": "kuvituskuva ryhmässä olemisesta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824180/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-16T11:34:57.916210Z", "last_modified_time": "2026-03-16T11:34:57.916226Z", "date_published": null, "start_time": "2026-03-18T15:00:00Z", "end_time": "2026-04-08T16: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, "name": { "fi": "Vertaisryhmä yhden vanhemman perheille" }, "location_extra_info": { "fi": "Ryhmätyötila Aisti " }, "provider": { "fi": "Yksin vanhempana ry." }, "short_description": { "fi": "Tervetuloa juttelemaan vertaisseurassa arjen haasteista ja\ntulevaisuuden unelmista!" }, "info_url": null, "description": { "fi": "Espoon keskuksen vertaisryhmä yhden vanhemman perheille<p><strong>Keskiviikkoisin 18.3., 25.3., 1.4. ja 8.4. klo 17–19</strong></p><p>Tervetuloa juttelemaan vertaisseurassa arjen haasteista ja tulevaisuuden unelmista! Jokaisella kerralla on vaihtuva teema, jonka avulla tutustutaan toisiimme vähän pintaa syvemmältä ja löydetään voimavaroja, selviytymiskeinoja ja ilonaiheita omaan elämään. Ryhmää ohjaa perhetoiminnan koordinaattori Jenni.</p><p>Ryhmä on maksuton ja tarkoitettu vanhemmille, joilla on alle 18-v. lapsi. Lastenhoito etukäteisilmoittautuneille kirjaston yleisessä tilassa.</p><p>Lisätietoja <strong>Jenni Pesola, p. 044 793 6663, jenni.pesola@yksinvanhempana.fi</strong></p><p><strong>Yksin vanhempana ry.</strong></p><p><br></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvw3y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnsxjgrtq", "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: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: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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsxjgojm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsxjgpz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsxjgqni/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsxjgq74/?format=api" } ], "images": [ { "id": 1491029, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-08T07:45:06.398951Z", "last_modified_time": "2025-10-08T07:45:06.398966Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d5447785-399b-4a30-8c8f-49c0a38675a6.png", "name": "Kirjastokaveri.", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Viisi erilaista piirrettyä ihmishahmoa. Eri-ikäisiä, eri kulttuuritaustoista.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491029/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-17T09:12:45.775357Z", "last_modified_time": "2026-03-16T11:02:29.397711Z", "date_published": null, "start_time": "2026-01-12T08:00:00Z", "end_time": "2026-05-04T09: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, "name": { "fi": " Kirjastokaveri: DARI, PASHTU, TURKKI JA URDU", "en": "Library buddy: DARI, PASHTO, TURKISH AND URDU" }, "location_extra_info": { "fi": "Aula", "en": "Lobby" }, "provider": null, "short_description": { "fi": "Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!", "en": "Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language. " }, "info_url": null, "description": { "fi": "Tervetuloa kirjastoon!\nTapaa kirjastokaveri omalla kielelläsi!<p><br></p><p>Haluaisitko tulla kirjastoon lainaamaan kirjoja, pelaamaan ja harrastamaan, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p><br></p><p>DARIN-, PASHTUN-, TURKIN- JA URDUNKIELINEN KIRJASTOKAVERI TAVATTAVISSA:</p><p><br></p><p>Maanantaisin kerran kuussa klo 10–12:</p><ul><li>maanantai 12.1.2026</li><li>maanantai 9.2.2026</li><li>maanantai 9.3.2026</li><li>maanantai 6.4.2026 PERUTTU (kirjasto suljettu)</li><li>maanantai 4.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#kirjastokaveri #kirjasto #kaveri</p><p>#dari # pashtu # urdu #turkki</p>", "en": "Welcome to the library!\nMeet a library buddy in your own language!<p><br></p><p>Want to come to the library to loan books, play games and attend hobbies but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language.</p><p>No pre-registration, you are most warmly welcome!</p><p><br></p><p>MEET A DARI, PASHTO, TURKISH AND URDU SPEAKING LIBRARY BUDDY:</p><p><br></p><p>On Monday once a month at 10–12:</p><ul><li>Monday 12.1.2026</li><li>Monday 9.2.2026</li><li>Monday 9.3.2026</li><li>Monday 6.4.2026 CANCELLED (library is closed)</li><li>Monday 4.5.2026</li></ul><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p><p>#librarybuddy #library #buddy</p><p>#dari #pashto #urdu #turkish</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsxjgrtq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn3z2sfou", "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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2r3wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2r4o4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2r434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2r5iq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2r5wq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2r6ge/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2r6tm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2r7bu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2r7qq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2r76u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2sapm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2sa4u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2sbju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2sbv4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2scby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2sco4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2sdaa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2sdoa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2sd4m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2seoq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2se6m/?format=api" } ], "images": [ { "id": 1494476, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-15T08:55:45.167709Z", "last_modified_time": "2024-03-15T08:55:45.167729Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ukulele-g5ce9ace21_1920.jpg", "name": "", "cropping": "320,0,1600,1280", "photographer_name": "", "alt_text": "ukulele", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494476/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-14T14:16:27.434667Z", "last_modified_time": "2026-03-16T10:56:20.620259Z", "date_published": null, "start_time": "2026-01-16T15:00:00Z", "end_time": "2026-06-12T15: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, "name": { "fi": "Ukulelejamit", "sv": "Ukulele Jam Session", "en": "Ukulele Jam Session" }, "location_extra_info": { "fi": "Tapahtumatila Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "short_description": { "fi": "Ukulelejamit järjestetään perjantaisin klo 17-18 Tapiolan kirjaston tapahtumatila Heikissä. ", "sv": "Ukulele Jam Session hålls varje fredag kl. 17-18 i Tapiolas bibliotek.", "en": "The Ukulele Jam Session is every Friday from 5pm to 6pm at the Tapiola Library. There is also a piano for you to play at the Jam Session. " }, "info_url": null, "description": { "fi": "<p>Ukulelejamit järjestetään perjantaisin Tapiolan kirjaston tapahtumatila Heikissä klo 17.00-18.00.</p><p><br></p><p>Jameissa soitellaan erilaisia biisejä fiiliksen mukaan ilman erillistä harjoittelua, ja kappaleet voivat vaihtua joka kerta. Soitettavat kappaleet ovat eri tasoisia. Jameissa painotetaan ensisijaisesti säestyssoittimia, kuten ukulelea, kitaraa, pianoa ja bassoa. Tilassa on käytettävissä piano. </p><p>Jos haluat tulla mukaan melodiasoittimella (esim. saksofoni, trumpetti, viulu tai huuliharppu), sinun tulee hallita improvisointi sointujen pohjalta. </p><p>Tule mukaan jameihin soittamaan – tai vaikka vain nauttimaan yhteisestä musisoinnista. Ei sitoutumisvaatimusta. </p><p><br></p><p>#ukulele #musiikki #jami #jamit #trumpetti</p>", "sv": "<p>Ukulele Jam Session hålls varje fredag kl. 17-18 i Tapiolas bibliotek.</p>", "en": "<p>The Ukulele Jam Session is held every Friday from 5pm to 6pm at the Tapiola Library. There is also a piano for you to play at the Jam Session.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3z2sfou/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnnugrsmy", "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:p2625/?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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrcua/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrdmm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrehy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrfzi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrgru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrhki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugri4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrjuq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrkoa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrlgy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrl7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrmy4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrnr4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrok4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrpea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrp5a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrrre/?format=api" } ], "images": [ { "id": 1490286, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-28T06:52:31.443870Z", "last_modified_time": "2025-12-01T12:27:50.707924Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "satumainen puutarha", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-12-01T12:33:37.800163Z", "last_modified_time": "2026-03-16T08:39:59.059263Z", "date_published": null, "start_time": "2026-01-09T15:00:00Z", "end_time": "2026-05-29T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ukrainalainen lasten teatterikerho ", "sv": "Ukrainska barnteaterklubben ", "en": "Ukrainian Children's Theater " }, "location_extra_info": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "provider": { "fi": "vapaaehtoinen", "sv": "Volontär", "en": "volunteer" }, "short_description": { "fi": "Täällä voit kokeilla, kuvitella ja näytellä", "sv": "Här kan du prova, fantisera, visa och experimentera.", "en": " Here you can try, fantasize, show, experiment. " }, "info_url": null, "description": { "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Jukeboksi</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit @ gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua ja saada lisätietoa sähköpostitse tatiana.divosvit @ gmail.com ja mob. +358413179903</p>", "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Jukeboksi</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit @ gmail.com och mob. +358413179903</p>", "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Jukeboksi</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugrsmy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }