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&page=61&weekday=6%2C7
{ "meta": { "count": 6459, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=62&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=60&weekday=6%2C7" }, "data": [ { "id": "espoo_le:agnntymzpa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntym3pa/?format=api" }, "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": 1490114, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T10:25:06.430379Z", "last_modified_time": "2025-08-13T10:25:06.430393Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2d081ebb-7a3c-493c-9385-ce2d3df7354b.jpg", "name": "", "cropping": "315,0,1125,810", "photographer_name": "Laura H / Silent Book Club", "alt_text": "Taustalla rauhallinen huone, etualalla Silent Book Clubin logo ja teksti Tapiolan kirjasto", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T11:20:36.901240Z", "last_modified_time": "2025-12-01T11:20:36.901257Z", "date_published": null, "start_time": "2026-04-11T10:00:00Z", "end_time": "2026-04-11T12: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, "short_description": { "fi": "1. Kerro muille, mitä olet lukemassa\n2. Hiljainen lukutunti\n3. Jatka lukemista, tai keskustele kirjoista yhdessä", "sv": "1. Berätta för övriga deltagare vad du läser\n2. En timme tyst läsning\n3. Fortsätt läsa eller diskutera böckerna tillsammans med andra", "en": "1. Share what you are reading\n2. Quiet reading hour\n3. Optional socializing, or just keep reading" }, "info_url": { "fi": "https://silentbook.club/", "sv": "https://silentbook.club/", "en": "https://silentbook.club/" }, "description": { "fi": "<p>Ohjelma</p><p>13:00-13:30 - Saapuminen, kerro muille, mitä olet lukemassa</p><p>13:30-14:30 - Hiljainen lukutunti</p><p>14:30-15:00 - Jatka lukemista, tai keskustele kirjoista yhdessä</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Program:</p><p>13:00-13:30 - Ankomst, berätta för övriga deltagare vad du läser</p><p>13:30-14:30 - En timme tyst läsning</p><p>14:30-15:00 - Fortsätt läsa eller diskutera böckerna tillsammans med andra</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Program</p><p>1:00-1:30pm - Arrival, share what you are reading</p><p>1:30-2:30pm - Quiet reading hour</p><p>2:30-3:00pm - Optional socializing, or just keep reading</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Hiljainen lukupiiri Tapiolan kirjasto", "sv": "Tyst bokcirkel Hagalunds bibliotek", "en": "Silent Book Club Tapiola Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntymzpa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnntymz7y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntym3pa/?format=api" }, "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": 1490114, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T10:25:06.430379Z", "last_modified_time": "2025-08-13T10:25:06.430393Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2d081ebb-7a3c-493c-9385-ce2d3df7354b.jpg", "name": "", "cropping": "315,0,1125,810", "photographer_name": "Laura H / Silent Book Club", "alt_text": "Taustalla rauhallinen huone, etualalla Silent Book Clubin logo ja teksti Tapiolan kirjasto", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T11:20:36.583500Z", "last_modified_time": "2025-12-01T11:20:36.583517Z", "date_published": null, "start_time": "2026-03-14T11:00:00Z", "end_time": "2026-03-14T13: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, "short_description": { "fi": "1. Kerro muille, mitä olet lukemassa\n2. Hiljainen lukutunti\n3. Jatka lukemista, tai keskustele kirjoista yhdessä", "sv": "1. Berätta för övriga deltagare vad du läser\n2. En timme tyst läsning\n3. Fortsätt läsa eller diskutera böckerna tillsammans med andra", "en": "1. Share what you are reading\n2. Quiet reading hour\n3. Optional socializing, or just keep reading" }, "info_url": { "fi": "https://silentbook.club/", "sv": "https://silentbook.club/", "en": "https://silentbook.club/" }, "description": { "fi": "<p>Ohjelma</p><p>13:00-13:30 - Saapuminen, kerro muille, mitä olet lukemassa</p><p>13:30-14:30 - Hiljainen lukutunti</p><p>14:30-15:00 - Jatka lukemista, tai keskustele kirjoista yhdessä</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Program:</p><p>13:00-13:30 - Ankomst, berätta för övriga deltagare vad du läser</p><p>13:30-14:30 - En timme tyst läsning</p><p>14:30-15:00 - Fortsätt läsa eller diskutera böckerna tillsammans med andra</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Program</p><p>1:00-1:30pm - Arrival, share what you are reading</p><p>1:30-2:30pm - Quiet reading hour</p><p>2:30-3:00pm - Optional socializing, or just keep reading</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Hiljainen lukupiiri Tapiolan kirjasto", "sv": "Tyst bokcirkel Hagalunds bibliotek", "en": "Silent Book Club Tapiola Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntymz7y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnntym2pi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntym3pa/?format=api" }, "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": 1490114, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T10:25:06.430379Z", "last_modified_time": "2025-08-13T10:25:06.430393Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2d081ebb-7a3c-493c-9385-ce2d3df7354b.jpg", "name": "", "cropping": "315,0,1125,810", "photographer_name": "Laura H / Silent Book Club", "alt_text": "Taustalla rauhallinen huone, etualalla Silent Book Clubin logo ja teksti Tapiolan kirjasto", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T11:20:36.296507Z", "last_modified_time": "2025-12-01T11:20:36.296526Z", "date_published": null, "start_time": "2026-02-14T11:00:00Z", "end_time": "2026-02-14T13: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, "short_description": { "fi": "1. Kerro muille, mitä olet lukemassa\n2. Hiljainen lukutunti\n3. Jatka lukemista, tai keskustele kirjoista yhdessä", "sv": "1. Berätta för övriga deltagare vad du läser\n2. En timme tyst läsning\n3. Fortsätt läsa eller diskutera böckerna tillsammans med andra", "en": "1. Share what you are reading\n2. Quiet reading hour\n3. Optional socializing, or just keep reading" }, "info_url": { "fi": "https://silentbook.club/", "sv": "https://silentbook.club/", "en": "https://silentbook.club/" }, "description": { "fi": "<p>Ohjelma</p><p>13:00-13:30 - Saapuminen, kerro muille, mitä olet lukemassa</p><p>13:30-14:30 - Hiljainen lukutunti</p><p>14:30-15:00 - Jatka lukemista, tai keskustele kirjoista yhdessä</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Program:</p><p>13:00-13:30 - Ankomst, berätta för övriga deltagare vad du läser</p><p>13:30-14:30 - En timme tyst läsning</p><p>14:30-15:00 - Fortsätt läsa eller diskutera böckerna tillsammans med andra</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Program</p><p>1:00-1:30pm - Arrival, share what you are reading</p><p>1:30-2:30pm - Quiet reading hour</p><p>2:30-3:00pm - Optional socializing, or just keep reading</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Hiljainen lukupiiri Tapiolan kirjasto", "sv": "Tyst bokcirkel Hagalunds bibliotek", "en": "Silent Book Club Tapiola Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntym2pi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnntym26q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntym3pa/?format=api" }, "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": 1490114, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T10:25:06.430379Z", "last_modified_time": "2025-08-13T10:25:06.430393Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2d081ebb-7a3c-493c-9385-ce2d3df7354b.jpg", "name": "", "cropping": "315,0,1125,810", "photographer_name": "Laura H / Silent Book Club", "alt_text": "Taustalla rauhallinen huone, etualalla Silent Book Clubin logo ja teksti Tapiolan kirjasto", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T11:20:35.914600Z", "last_modified_time": "2025-12-01T11:20:35.914618Z", "date_published": null, "start_time": "2026-01-17T11:00:00Z", "end_time": "2026-01-17T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "1. Kerro muille, mitä olet lukemassa\n2. Hiljainen lukutunti\n3. Jatka lukemista, tai keskustele kirjoista yhdessä", "sv": "1. Berätta för övriga deltagare vad du läser\n2. En timme tyst läsning\n3. Fortsätt läsa eller diskutera böckerna tillsammans med andra", "en": "1. Share what you are reading\n2. Quiet reading hour\n3. Optional socializing, or just keep reading" }, "info_url": { "fi": "https://silentbook.club/", "sv": "https://silentbook.club/", "en": "https://silentbook.club/" }, "description": { "fi": "<p>Ohjelma</p><p>13:00-13:30 - Saapuminen, kerro muille, mitä olet lukemassa</p><p>13:30-14:30 - Hiljainen lukutunti</p><p>14:30-15:00 - Jatka lukemista, tai keskustele kirjoista yhdessä</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Program:</p><p>13:00-13:30 - Ankomst, berätta för övriga deltagare vad du läser</p><p>13:30-14:30 - En timme tyst läsning</p><p>14:30-15:00 - Fortsätt läsa eller diskutera böckerna tillsammans med andra</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Program</p><p>1:00-1:30pm - Arrival, share what you are reading</p><p>1:30-2:30pm - Quiet reading hour</p><p>2:30-3:00pm - Optional socializing, or just keep reading</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Hiljainen lukupiiri Tapiolan kirjasto", "sv": "Tyst bokcirkel Hagalunds bibliotek", "en": "Silent Book Club Tapiola Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntym26q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnntym3pa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntymy5m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntymzpa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntymz7y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntym2pi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntym26q/?format=api" } ], "images": [ { "id": 1490114, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T10:25:06.430379Z", "last_modified_time": "2025-08-13T10:25:06.430393Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2d081ebb-7a3c-493c-9385-ce2d3df7354b.jpg", "name": "", "cropping": "315,0,1125,810", "photographer_name": "Laura H / Silent Book Club", "alt_text": "Taustalla rauhallinen huone, etualalla Silent Book Clubin logo ja teksti Tapiolan kirjasto", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T11:20:34.759008Z", "last_modified_time": "2025-12-01T11:20:34.759038Z", "date_published": null, "start_time": "2026-01-17T11:00:00Z", "end_time": "2026-05-09T12: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, "short_description": { "fi": "1. Kerro muille, mitä olet lukemassa\n2. Hiljainen lukutunti\n3. Jatka lukemista, tai keskustele kirjoista yhdessä", "sv": "1. Berätta för övriga deltagare vad du läser\n2. En timme tyst läsning\n3. Fortsätt läsa eller diskutera böckerna tillsammans med andra", "en": "1. Share what you are reading\n2. Quiet reading hour\n3. Optional socializing, or just keep reading" }, "info_url": { "fi": "https://silentbook.club/", "sv": "https://silentbook.club/", "en": "https://silentbook.club/" }, "description": { "fi": "<p>Ohjelma</p><p>13:00-13:30 - Saapuminen, kerro muille, mitä olet lukemassa</p><p>13:30-14:30 - Hiljainen lukutunti</p><p>14:30-15:00 - Jatka lukemista, tai keskustele kirjoista yhdessä</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Program:</p><p>13:00-13:30 - Ankomst, berätta för övriga deltagare vad du läser</p><p>13:30-14:30 - En timme tyst läsning</p><p>14:30-15:00 - Fortsätt läsa eller diskutera böckerna tillsammans med andra</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Program</p><p>1:00-1:30pm - Arrival, share what you are reading</p><p>1:30-2:30pm - Quiet reading hour</p><p>2:30-3:00pm - Optional socializing, or just keep reading</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Hiljainen lukupiiri Tapiolan kirjasto", "sv": "Tyst bokcirkel Hagalunds bibliotek", "en": "Silent Book Club Tapiola Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntym3pa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnntkqixq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqfem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqfxy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqgam/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqgli/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqgui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqg5a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqhf4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqhpi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqhzi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqiei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqine/?format=api" } ], "images": [ { "id": 1490656, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T13:25:37.472364Z", "last_modified_time": "2024-12-18T13:25:37.472429Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d8fe99ce-d70d-4b1b-8f3c-eebcbc92b7f3.jpg", "name": "", "cropping": "136,0,954,818", "photographer_name": "", "alt_text": "Kaksi 3D-tulostettua hahmoa 3D-tulostetun kyltin päällä, jossa lukee PAJA.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490656/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T11:15:01.446854Z", "last_modified_time": "2025-12-01T11:15:01.446872Z", "date_published": null, "start_time": "2026-01-08T14:00:00Z", "end_time": "2026-05-28T15: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, "short_description": { "fi": "Tervetuloa tutustumaan Tapiolan kirjaston Pajaan.", "sv": "Välkommen att lära dig hur du använder 3D-skrivare, vinylskärare, overlockmaskin och symaskin.", "en": "Welcome to learn how to use a 3D printers, a vinyl cutter, an overlock machine, and a sewing machine." }, "info_url": null, "description": { "fi": "<p>Tule tutustumaan pajan laitteisiin ja mahdollisuuksiin. </p><p>Annamme opastusta 3D-tulostimien, vinyylileikkurin, saumurin ja ompelukoneen käyttöön. Ota oma puuvillainen vaate tms. mukaan, jos haluat painaa siihen kuvan tai tekstin. Vaihtoehtoisesti voit tehdä tarran.</p><p>Tulostus- ja vinyylimateriaalin tarjoaa kirjasto.</p><p>Ohjausta tarjotaan suomeksi ja englanniksi. </p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Kom och bekanta dig med verkstadens utrustning och möjligheter.</p><p>Vi ger handledning i användning av 3D-skrivare, vinylskärare, overlockmaskin och symaskin. Ta med ett eget bomullsplagg eller liknande om du vill trycka en bild eller text på det. Alternativt kan du göra en klistermärke.</p><p>Biblioteket tillhandahåller utskrifts- och vinylmaterial.</p><p>Vägledning ges på finska och engelska.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Come and explore the equipment and possibilities of the workshop.</p><p>We provide guidance on using 3D printers, a vinyl cutter, an overlock machine, and a sewing machine. Bring your own cotton garment or similar item if you want to print an image or text on it. Alternatively, you can make a sticker.</p><p>The library provides the printing and vinyl materials.</p><p>Guidance is available in Finnish and English.</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Paja tutuksi kaikille", "sv": "Verkstad för alla", "en": "Makerspace for all" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Verkstad", "en": "Maker Space" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqixq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnntkqyiy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqtvq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqua4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqujq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqusy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqu3q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqvea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqvni/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqvwu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqwbi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqwle/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqwuy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqw5e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqxgm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqxpi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqxya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqyaq/?format=api" } ], "images": [ { "id": 1490116, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:41:28.628680Z", "last_modified_time": "2025-01-30T08:53:02.449159Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0b77eee3-7b76-4897-ba24-d739cdd915b9.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "Ali Al-Zaini", "alt_text": "Kuvassa on kuvitettu lasten avonainen satukirja, joka on muuntautunut mereksi. Meressä seilaa lapsi purjeveneellä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490116/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-01T11:07:45.525809Z", "last_modified_time": "2025-12-01T11:07:45.525827Z", "date_published": null, "start_time": "2026-01-13T15:30:00Z", "end_time": "2026-05-26T15: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, "short_description": { "fi": "Arabiankielinen satuhetki", "sv": "Sagostund på arabiska", "en": "Storytime in Arabic" }, "info_url": null, "description": { "fi": "<p>Tervetuloa rakkaat pienet lapset arabiankieliselle satuhetkelle. Sukellamme seikkailujen, mielikuvituksen ja unelmien maailmaan. Sanaa kertoo sinulle satuja joka tiistai Jaminurkassa klo 17:30</p><p><br></p><p>Kuva: Ali Al-Zaini</p>", "sv": "<p>Välkommen Det är sagostund på arabiska för våra älskade småttingar. Vi kommer att dyka in i en värld av äventyr, fantasi och drömmar. Sanaa berättar för dig varje tisdag. kl. 17:30.</p><p><br></p><p>Foto: Ali Al-Zaini</p>", "en": "<p>Welcome It's storytime in Arabic for our beloved little ones. We will dive into the world of adventures, imagination and dreams. It will be narrated to you by Sanaa every Tuesday at 17:30.</p><p><br></p><p>Photo: Ali Al-Zaini</p>" }, "name": { "fi": "Arabiankielinen satuhetki", "sv": "Sagostund på arabiska", "en": "Storytime in Arabic" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqyiy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnns4w52y", "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/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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:agnns4wqqi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wrpi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wsei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wsym/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wtnq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wuca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wuwy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wvku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wv64/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wwtm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wxje/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wx5i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wyrq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wzg4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wz3a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w2qm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w3gy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w34m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w4qy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w5fm/?format=api" } ], "images": [ { "id": 150453, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-07T11:30:54.908155Z", "last_modified_time": "2025-12-01T09:54:37.517785Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/luetaanyhdess%C3%A4.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "valokuva kädestä, muistilapusta ja suomenkielen oppikirjasta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150453/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T10:05:24.461078Z", "last_modified_time": "2025-12-01T10:05:24.461095Z", "date_published": null, "start_time": "2026-01-07T08:15:00Z", "end_time": "2026-05-27T08:45: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, "short_description": { "fi": "Tunneilla harjoitellaan puhumaan, lukemaan ja kirjoittamaan suomea. Opettajina toimivat Luetaan yhdessä-verkoston vapaaehtoiset.", "sv": "Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!", "en": "Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!" }, "info_url": null, "description": { "fi": "<p>Tunneilla harjoitellaan puhumaan, lukemaan ja kirjoittamaan suomea.</p><p>Opettajina toimivat Luetaan yhdessä-verkoston vapaaehtoiset.</p><p>Ryhmä kokoontuu Entressen kirjastolla keskiviikkoisin 7.1.-27.5.2026 klo 10:15-11:45. Ei kuitenkaan 18.2. talvilomalla.</p><p><br></p><p>Ryhmän vetäjänä on Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter, diskuterar olika ämnen och övar på att skriva varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp. </p><p>Gruppen träffas på Entresse biblioteket på onsdagar från den 7 januari till den 27 maj 2026 kl. 10.15–11.45. Det blir dock inget möte den 18 februari på grund av vinterlovet.</p><p>Gruppen leds av frivilliga från Vi läser tillsammans -nätverket/ Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts, discuss different topics and practice writing every time. It's not necessary to register in advance, you can just show up. </p><p>The group meets at the Entresse Library on Wednesdays from January 7 to May 27, 2026, from 10:15 to 11:45 a.m. However, there will be no meeting on February 18 due to winter break.</p><p><br></p><p>The group is run by the volunteers of Let's Read Together -network/ Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Luetaan yhdessä", "sv": "Vi läser tillsammans", "en": "Let's Read Together" }, "provider_contact_info": null, "location_extra_info": { "fi": "Ryhmä kokoontuu avotilassa", "sv": "Gruppen träffas i ett öppet utrymme", "en": "The group meets in an open space" }, "provider": { "fi": "Luetaan yhdessä-verkoston vapaaehtoiset", "sv": "Vi läser tillsammans -nätverket", "en": "Let's Read Together -network" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w52y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnns4xojm", "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/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:agnns4w6p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w7ji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xadi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xa44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xbvm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xcoq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xdh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xeay/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xezm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xfte/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xgne/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xhfy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xh6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xix4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xjqm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xkjy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xlcu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xl4m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xmvu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xnom/?format=api" } ], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T09:47:11.037575Z", "last_modified_time": "2025-12-01T09:47:11.037593Z", "date_published": null, "start_time": "2026-01-09T10:00:00Z", "end_time": "2026-05-29T10: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, "short_description": { "fi": "Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30.", "sv": "Letar du efter en plats där du kan öva på att tala finska?", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä perjantaisin 9.1.-29.5.2026 klo 12 - 13:30. Kielikahvila kokoontuu Sinisessä huoneessa. </p><p>Ei kielikahvilaa 20.2.2026 koulujen talvilomalla.</p><p>HUOM 10.4. kokoontuu eri tilassa kirjastolla.</p><p>Ryhmää vetää Leena Toivanen 044-5759909, ltoivanen@gmail.com</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin yhteistyönä.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter och diskuterar olika ämnen varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp. Caféerna hålls på fredagar 9.1.-29.5.2026 kl. 12:00 - 13:30 i Sininen huone </p><p>OBS 10.4. träffas i ett annat rum på biblioteket. </p><p>Ej språkcafé den 20.2.2026 under vinterlovet.</p><p>Språkcaféet på Entresse-biblioteket drivs av frivilliga från Finlands Röda Kors/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. </p><p>Cafes are held on Fridays 9.1.-29.5.2026. at 12:00 - 13:30 in Sininen huone. (NOTE 10.4. meets in a different room at the library. </p><p>Not 20.2.2026 during winter holidays.</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "SPR:n kielikahvila perjantaisin", "sv": "Finskt språkcafé på fredagar", "en": "Finnish Language Cafe on Fridays" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti", "sv": "Finska Röda Korset", "en": "Finnish Red Cross" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xojm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnns4xw3y", "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/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:agnns4xpdm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xpqm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xp44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xqku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xqxq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xrea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xrq4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xr7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xsmi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xsz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xtgm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xtta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xwbu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xwpa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq222yy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq223w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq224hu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq224xy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq225hq/?format=api" } ], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T09:28:24.868150Z", "last_modified_time": "2025-12-01T09:28:24.868167Z", "date_published": null, "start_time": "2026-01-13T16:00:00Z", "end_time": "2026-05-26T16: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, "short_description": { "fi": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30", "sv": "Letar du efter en plats där du kan öva på att tala finska?", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>EI kielikahvilaa 17.2.2026 koulujen talvilomalla.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>Inget språkcafé den 17 februari 2026 under vinterlov</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>No language café on February 17, 2026, during the school winter break</p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "SPR:n kielikahvila", "sv": "Finskt språkcafé", "en": "Finnish Language Cafe" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti", "sv": "Finska Röda Korset", "en": "Finnish Red Cross" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xw3y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnns4xxiq", "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/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T09:28:03.360657Z", "last_modified_time": "2025-12-01T09:28:03.360678Z", "date_published": null, "start_time": "2026-01-13T16:00:00Z", "end_time": "2026-05-26T16: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, "short_description": { "fi": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30", "sv": "Letar du efter en plats där du kan öva på att tala finska?", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>EI kielikahvilaa 17.2.2026 koulujen talvilomalla.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>Inget språkcafé den 17 februari 2026 under vinterlov</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>No language café on February 17, 2026, during the school winter break</p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "SPR:n kielikahvila", "sv": "Finskt språkcafé", "en": "Finnish Language Cafe" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti", "sv": "Finska Röda Korset", "en": "Finnish Red Cross" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xxiq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnns4xxw4", "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/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T09:27:17.946283Z", "last_modified_time": "2025-12-01T09:27:17.946301Z", "date_published": null, "start_time": "2026-01-13T16:00:00Z", "end_time": "2026-05-26T16: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, "short_description": { "fi": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30", "sv": "Letar du efter en plats där du kan öva på att tala finska?", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>EI kielikahvilaa 17.2.2026 koulujen talvilomalla.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>Inget språkcafé den 17 februari 2026 under vinterlov</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p>No language café on February 17, 2026, during the school winter break</p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "SPR:n kielikahvila", "sv": "Finskt språkcafé", "en": "Finnish Language Cafe" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti", "sv": "Finska Röda Korset", "en": "Finnish Red Cross" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xxw4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnns4xy6e", "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:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xyna/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xyvq/?format=api" } ], "images": [ { "id": 1493962, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-11-28T12:44:29.503562Z", "last_modified_time": "2026-01-19T13:11:32.534323Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png", "name": "", "cropping": "0,0,1920,1920", "photographer_name": "Espoon kaupunki", "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-01T09:19:54.221505Z", "last_modified_time": "2025-12-01T09:19:54.221527Z", "date_published": null, "start_time": "2025-12-02T14:00:00Z", "end_time": "2025-12-16T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.", "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.", "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits." }, "info_url": { "fi": "https://helmet.finna.fi/Content/tapahtumat", "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv", "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb" }, "description": { "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. </p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Perhepaja", "sv": "Workshop för familjer", "en": "Workshop for Families" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Verkstad", "en": "MakerSpace " }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4xy6e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnmtssxcm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493960, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-01T09:09:21.616982Z", "last_modified_time": "2025-12-01T09:09:21.616997Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/6f1fe701-b862-4729-830c-5738a8490773.jpg", "name": "", "cropping": "282,0,1000,717", "photographer_name": "", "alt_text": "Kuvassa on lapsi, joka soittaa pianoa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493960/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-28T09:17:21.285882Z", "last_modified_time": "2025-12-01T09:09:44.253250Z", "date_published": null, "start_time": "2025-12-07T13:00:00Z", "end_time": "2025-12-07T14: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, "short_description": { "fi": "Tervetuloa kuuntelemaan oppilaskonserttia Salonkiin sunnuntaina 7.12. klo 15:00 alkaen", "en": "Welcome to listen to the students concert on sunday 7.12. from 15:00 o clock onwards." }, "info_url": null, "description": { "fi": "<p>Tervetuloa kuuntelemaan International School Of Music Finlandin oppilaiden joulukonserttia Salonkiin sunnuntaina 7.12. klo 15:00 alkaen.</p><p>Tapahtuma on maksuton ja kaikille avoin.</p>", "en": "<p>Welcome to listen to the International School Of Music Finland's christmas concert students concert on sunday 7.12. from 15:00 o clock onwards.</p><p>The event is free of charge and open for all!</p>" }, "name": { "fi": "International School Of Music Finlandin joulukonsertti", "en": "International School Of Music Finland's christmas concert" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "provider": { "fi": "International School Of Music Finland", "en": "International School Of Music Finland" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnmtssxcm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66509", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/3912720", "sv": "https://www.lippu.fi/eventseries/3912720", "en": "https://www.lippu.fi/eventseries/3912720" }, "description": null, "price": { "fi": "17 € / Perhelippu 60 €", "sv": "17 € / Perhelippu 60 €", "en": "17 € / Perhelippu 60 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 951667, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-06T09:13:59.265519Z", "last_modified_time": "2025-06-06T09:13:59.265535Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774755.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/951667/?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-06-06T09:13:59.109276Z", "last_modified_time": "2025-11-30T10:12:58.214421Z", "date_published": null, "start_time": "2025-11-30T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Mutaveijareiden uunituoreen joululevyn julkistamiskonsertti!", "sv": "Skivsläppskonsert för Mutaveijarits helt nya julskiva!", "en": "The Mutaveijarit band’s brand-new Christmas album release concert!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/810BBB1D3E2B31566D5DCAABCCB70F95/LOPPUUNMYYTY_Mutaveijarit_Joulutouhotus", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/810BBB1D3E2B31566D5DCAABCCB70F95/Mutaveijarit_Joulutouhotus", "en": "http://www.savoyteatteri.fi/en/events/event/810BBB1D3E2B31566D5DCAABCCB70F95/Mutaveijarit_Joulutouhotus" }, "description": { "fi": "<p>Mutaveijareiden uunituoreen joululevyn julkistamiskonsertti!</p><p>Mutaveijarilassa on koittanut talvi ja joulukin jo lähestyy. Hulvattomien talvitouhujen lomassa Mutaveijareilla on vielä kuitenkin kaikki jouluvalmistelut aivan kesken! Riisipuuroresepti on hukassa, joululahjat tekemättä ja joulusiivous aivan puolitiessään. Jouluhässäkkä on valmis! Onneksi joulupuuhat sujuvat yhdessä leikiten. Tule talviseen konserttiin valmistautumaan jouluun laulaen ja leikkien Mutaveijareiden kanssa. Konsertissa kuulet aivan uusia joulu- ja talvilauluja mutameininkiä unohtamatta.</p><p>Valloittavista esiintymisistä ja mukaansatempaavista, monisävyisistä lauluista tunnettu Mutaveijarit on viimeisen kymmenen vuoden aikana vakiinnuttanut asemansa yhtenä Suomen suosituimmista lastenmusiikkiyhtyeistä. Mielikuvitukselliset ja oivaltavat laulut sekä innostavat ja pedagogisesti monipuoliset laululeikit vievät kuulijansa uudenlaiselle musiikkiretkelle, jonka hauskat ja jännittävät käänteet takaavat viihdyttävän konserttielämyksen koko perheelle.</p><p>Mutaveijareiden kaksi levyä Ympäri ämpäri! (2016) ja Nyt mennään! (2019) ovat saaneet lukuisia tunnustuksia mm. Vamo ry:ltä ja molemmat levyt ovat olleet lastenmusiikin Emma-ehdokkaina. Vuonna 2023 julkaistiin Mutaveijareiden lauluista Ämpärillinen nuotteja -nuottikirja, josta on otettu jo uusintapainos.</p><p>Kesto n. 50 min, ei väliaikaa</p><p>Konsertti on ikärajaton</p><p>Liput 17 €, perhelippu (4 hlöä) 60 €</p><p>Alle 3-vuotias lapsi sylissä ilmaiseksi, jokainen omalla paikallaan istuva tarvitsee oman lipun.</p><p>Savoyssa on tarjolla rajoitettu määrä istuintyynyjä ja -korokkeita perheen pienimmille. Pyydämme käyttämään korokkeita vain todelliseen tarpeeseen, jotta niitä riittää mahdollisimman monelle.</p><p>Huomioithan myös. että Savoy-teatterin aulatilat ovat valitettavan rajalliset, ja lastenvaunuille ja -rattaille on niukasti tilaa. Pyydämme siis jättämään vaunut ja rattaat mahdollisuuksien mukaan kotiin tai esim. autoon konsertin ajaksi.</p><p>Lämmin kiitos yhteistyöstänne; näin takaamme onnistuneen ja iloisen konserttikokemuksen kaikille paikalle tulijoille!</p>", "sv": "<p>Skivsläppskonsert för Mutaveijarits helt nya julskiva!</p><p>Det är vinter hos Mutaveijarit och julen närmar sig redan. Men mitt i allt vinterskoj är Mutaveijarit fortfarande mitt uppe i alla julförberedelser! Receptet på risgrynsgröt är försvunnet, julklapparna ogjorda och de är inte alls klara med julstädningen. Julstöket är igång! Lyckligtvis går julförberedelserna som en dans när man leker tillsammans. Kom till en vintrig konsert för att förbereda dig inför julen genom att sjunga och leka tillsammans med Mutaveijarit. På konserten får du höra helt nya jul- och vintersånger i vanlig Mutaveijarit-stil.</p><p>Mutaveijarit, som är kända för sina charmerande och medryckande framträdanden samt mångtoniga sånger, har under de senaste tio åren etablerat sig som en av Finlands populäraste barnmusikgrupper. De fantasifulla och insiktsfulla sångerna samt inspirerande och pedagogiskt mångsidiga sånglekarna tar lyssnarna med på en ny musikalisk resa, med roliga och spännande vändningar som garanterar en underhållande konsertupplevelse för hela familjen.</p><p>Mutaveijarits två skivor Ympäri ämpäri! (2016) och Nyt mennään! (2019) har fått många utmärkelser av bland annat Småbarns musiklärare rf, och båda skivorna har nominerats till en Emma i kategorin barnmusik. År 2023 publicerades Mutaveijarits sånger i notboken Ämpärillinen nuotteja, som det redan har kommit en ny upplaga av.</p><p>Längd ca 45 min., ingen paus.</p><p>Konserten har ingen åldersgräns.</p><p>Biljetter 17 €, familjebiljett (4 pers.) 60 €</p><p>Barn under 3 år sitter gratis i knät, varje person som sitter på en egen plats behöver en biljett.</p>", "en": "<p>The Mutaveijarit band’s brand-new Christmas album release concert!</p><p>It's winter in Mutaveijarila and Christmas is already approaching. But in the midst of all the winter fun, Mutaveijarit have still not finished any of their Christmas preparations! The rice porridge recipe is missing, the Christmas presents have not been wrapped and the Christmas cleaning is not even halfway done. It’s going to be a real Christmas hassle! Luckily, finishing these Christmas tasks is easy when working together. Come listen to this wintery concert to get ready for Christmas by singing and playing with the Mutaveijarit. In the concert you will hear brand-new Christmas and winter songs, without forgetting the usual muddy fun of Mutaveijarit.</p><p>Over the past ten years, Mutaveijarit, known for their highly entertaining performances and captivating, multi-tonal songs, have established themselves as one of Finland's most popular children's music groups. The imaginative and insightful songs and inspiring and pedagogically diverse singing games take their audience on a new kind of musical journey, with fun and exciting twists and turns that guarantee an entertaining concert experience for the whole family.</p><p>The two albums by Mutaveijarit – Ympäri ämpäri! (2016) and Nyt mennään! (2019) – have received numerous accolades from e.g. the Vamo association of early childhood music teachers, and both albums have been nominated for the Emma award for children's music. In 2023, a selection of Mutaveijarit songs was published in a notebook called Ämpärillinen Nuotteja, and a second edition has already been printed.</p><p>Duration approx. 45 min, no intermission</p><p>The concert is not age-restricted</p><p>Tickets €17, family ticket (4 people) €60</p><p>Children under the age of 3 can share a seat with an adult, each person sitting in their own seat needs their own ticket.</p>" }, "name": { "fi": "LOPPUUNMYYTY: Mutaveijarit: Joulutouhotus", "sv": "Mutaveijarit: Joulutouhotus", "en": "Mutaveijarit: Joulutouhotus" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66509/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20003350", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2039568/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-20003350/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-20003350/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-20003350/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235438, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:43.926542Z", "last_modified_time": "2025-02-17T11:16:43.926559Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/clubactone222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235438/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:43.889423Z", "last_modified_time": "2025-11-30T03:14:39.699834Z", "date_published": null, "start_time": "2025-11-29T19:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "CLUB ACT!ONE Studio Pasila on Suomen johtava stand up -komiikan estradi." }, "info_url": { "fi": "https://www.lippu.fi/artist/artist-510413/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/artist-510413/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/artist-510413/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Studio Pasila on Suomen johtava stand up -komiikan estradi. Lavalle nousevat maan eturivin stand up -koomikot. Stand up on irrottelua, vedätystä, itsensä alttiiksi panemista ja uuden esitystilanteen nopeaa oivaltamista.</p><p>Esitykset kestävät noin 2 tuntia, sisältäen lyhyen väliajan. Esitykset K-18.</p><p><br><strong>Lokakuu</strong><br>to 2.10. klo 19.00 Heli Sutela, Kaisa Pylkkänen, Ilari Johansson, Fredi Lilius<br>La 4.10. klo 21.00 Andre Wickström, Lauri Saviharju, Roosa Maskonen, Laura Haimila<br>Pe 10.10. klo 19.00 Anitta Ahonen, Mikko Vaismaa, Anders Helenius, Illusia Sarvas<br>La 11.10. klo 19.00 Anna Rimpelä, Eeva Vekki, Ray Zambino, Riku Sottinen<br>Pe 17.10. klo 19.00 Lauri Saviharju, Saana Peltola, Fabe, Raisa Omaheimo<br>La 18.10. klo 19.00 Heikki Vilja, Janne Grönroos, Karim Aldulaimi, James MacDonald<br>Pe 24.10. klo 19.00 Ursula Herlin, Marjut Ollitervo, Rich Lyons, Matti Patronen<br>La 25.10. klo 19.00 Miksu Pellikka, Ilari Johansson, Roosa Maskonen, Fathi Ahmed<br>Pe 31.10. klo 19.00 Johanna Tohni, Heli Sutela, Antti Haapala, Helena Pöllänen</p><p><strong>Marraskuu</strong><br>Pe 7.11. klo 19.00 Anitta Ahonen, Tommi Mujunen, Mika Eirtovaara, Helena Pöllänen<br>La 8.11. klo 19.00 Anna Rimpelä, André Wickström, Tomi Haustola, RudiRok<br>La 15.11. klo 19.00 Laura Haimila, Kaisa Pylkkänen, Aatu Raitala, Paul Westlake<br>la 22.11. klo 21.00 Ali Jahangiri - Mustavalkoista soolo Esitys kuvataan!<br>la 29.11. klo 21.00 Ali Jahangiri - Mustavalkoista soolo Esitys kuvataan!</p><p><strong>Joulukuu</strong><br>la 13.12. klo 19.00 Ursula Herlin, Ida Grönlund, Mebe, Matti Patronen</p><p>Yhteistyössä W&T Comedyn kanssa.</p>", "en": "<p><strong>CLUB ACT!ONE</strong></p>" }, "name": { "en": "Club Act!One K-18" }, "provider_contact_info": null, "location_extra_info": { "fi": "Studio Pasila LÄMPIÖ" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20003350/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19999932", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849160/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999932/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999932/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999932/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360032, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.766941Z", "last_modified_time": "2025-03-17T22:17:20.766955Z", "url": "https://www.lippu.fi/obj/mam/finland/a1/8c/sutinaa222-tickets_369148_3117437_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360032/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:43.572788Z", "last_modified_time": "2025-11-30T03:14:39.559067Z", "date_published": null, "start_time": "2025-11-29T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Sandy Rustin SUTINAA JA SÄÄTÖÄ Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni kynnet sinisinä, mutta samalla hypätään päätä pahkaa syvään päätyyn niin riemukkaasti, että katsojan onnellinen osa on nauraa vedet silmissä mukana!</p><p>Sylvia (Pihla Penttinen) ja hänen salarakkaansa Beau (Sauli Suonpää) ovat saapuneet jokavuotiselle syntiselle huvilatapaamiselleen. Tällä kertaa Sylvia pudottaa Beaulle todellisen uutispommin, ja kertoo jättäneensä miehensä. Sähkeellä!</p><p>Tämä on vasta alkua, sillä seuraavaksi kaksikon puolisot (Emilia Sinisalo ja Heikki Ranta) pelmahtavat samalle huvilalle! Todellinen salaisuuksien Pandoran lipas revähtää auki ja niin henkilöiden identiteetit kuin avioliittokäsitykset joutuvat kiivaasti kieppuvaan myllyyn.</p><p>Broadwaylla ensi-iltansa vuonna 2023 saanut Sutinaa ja säätöä sijoittuu herkullisesti 1920-luvun Englantiin, mutta sen käänteet ja käänteissä kärvistelevät ihmiset ovat täyttä tätä päivää, tunnistettavia ja samaistuttavia, kaikessa hullunkurisuudessaan rakastettavia ja pakahduttavan hauskoja.</p><p>Sutinaa ja säätöä on uusi ja raikas farssikomedia parisuhteista. Kuumana kuplivaa sutinaa ja sysipimeitä salaisuuksia pulppuava parituntinen, jonka aikana katsoja tulee yllätetyksi monta kertaa – aivan kuten komedian henkilötkin.</p><p>Rooleissa: Pihla Penttinen, Sauli Suonpää, Emilia Sinisalo, Heikki Ranta, Ella Lymi ja Mikko Virtanen</p><p>Suomentaja: Reita Lounatvuori<br>Ohjaus: Sari Siikander<br>Lavastus: Peter Ahlqvist<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Äänisuunnittelu: Eero Niemi<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Dramaturgi: Ari-Pekka Lahti</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner</p>", "en": "<p>Sandy Rustin<br><strong>SUTINAA JA SÄÄTÖÄ</strong></p>" }, "name": { "fi": "Sutinaa Ja Säätöä" }, "provider_contact_info": null, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999932/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19506315", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506315/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506315/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506315/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.124713Z", "last_modified_time": "2025-02-17T11:16:42.124728Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:26.223876Z", "last_modified_time": "2025-11-30T03:14:39.426841Z", "date_published": null, "start_time": "2025-11-29T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin," }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en" }, "description": { "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Wilhelm Blomberg, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>", "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>" }, "name": { "fi": "Moulin Rouge! Musikaali" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19506315/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20000254", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849163/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000254/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000254/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000254/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1490709, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T07:16:38.476528Z", "last_modified_time": "2025-09-10T07:16:38.476549Z", "url": "https://www.lippu.fi/obj/mam/finland/67/1b/hyenans-dagar-tickets_438240_3555827_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490709/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:43.413091Z", "last_modified_time": "2025-11-30T03:14:39.293278Z", "date_published": null, "start_time": "2025-11-29T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "sv": "Saara Turunen HYENANS DAGAR Hyenans dagar baserar sig delvis på Saara Turunens roman med samma nam." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Saara Turunen<br><strong>HYENANS DAGAR</strong></p><p>Hyenans dagar (Hyeenan päivät) perustuu osittain Saara Turusen samannimiseen romaaniin.</p><p>Teos uppoutuu erääseen lisääntymiskertomukseen, se valottaa yhden naisen tarinaa hedelmöityshoidoista lapsen saamiseen. Esitys on raportinomainen seurantakertomus sekä yhden ajanjakson kuvaus, jossa yksityinen ja yhteiskunnallinen risteytyvät ja menevät sekaisin. Pinnan alla teos käsittelee kehollisuutta, kontrollia ja pärjäämisen kulttuuria. Draama sijaitsee kuvien ulkopuolella, osittain katsojan omassa mielessä. Esitys ei tarjoile valmiita vastauksia, pikemminkin se vain näyttää kohtauksia, hetkiä ja tilanteita, joista katsoja voi tehdä omat tulkintansa.</p><p>Kuten Turusen aiemmissakin töissä, myös Hyenans dagar -esityksessä musiikilla ja kuvallisuudella on keskeinen osansa.<br>Hyenans dagar on suunnattu kaikille, jotka ovat joskus tavoitelleet jotakin, kohdanneet vaikeuksia tai tulleet sysätyiksi itselleen tuntemattomaan maailmaan.</p>", "sv": "<p>Hyenans dagar baserar sig delvis på Saara Turunens roman med samma nam.</p><p>Föreställningen skildrar en kvinnas erfarenhet av fertilitetsbehandlingar och vägen till att få barn. Med ett dokumentärartat grepp skildras en tidsperiod i livet där gränsen mellan det privata och det samhälleliga suddas ut. Under ytan behandlar verket frågor om kroppslighet, kontroll och att alltid behöva klara sig själv. Dramat utspelar sig inte bara på scenen, utan också i åskådarens egna tankar och reflektioner. Föreställningen ger inga färdiga svar, utan bjuder istället på scener och ögonblick som publiken får tolka på sitt eget sätt.</p><p>Musiken och bildspråket spelar en central roll, precis som i Saara Turunens tidigare föreställningar.<br>Hyenans dagar riktar sig till alla som någonsin strävat efter något, upplevt motgångar eller kastats in i en okänd värld.</p><p>******</p><p>Aktörer: Kreeta Salminen, Elmer Bäck, Katja Küttner, Pia Runnakko, Alexander Wendelin</p><p>Manus och regi: Saara Turunen<br>Översättning: Kasimir Koski<br>Scenografi: Milja Aho<br>Dräktdesign: Liisa Pesonen<br>Ljusdesign: Ainu Palmu<br>Ljuddesign: Tuuli Kyttälä<br>Maskdesign: Jaana Nykänen</p>" }, "name": { "fi": "Hyenans Dagar" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lilla Teatern" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000254/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19999961", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849162/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-19999961/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-19999961/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-19999961/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360034, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:29.901832Z", "last_modified_time": "2025-03-17T22:17:29.901845Z", "url": "https://www.lippu.fi/obj/mam/finland/2b/f1/aleksisuomesta222-tickets_369143_3117420_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360034/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:43.303752Z", "last_modified_time": "2025-11-30T03:14:39.138934Z", "date_published": null, "start_time": "2025-11-29T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ari-Pekka Lahti ALEKSI SUOMESTA Aleksi Suomesta on tositarina suomalaisesta ammattisotilaasta Aleksi Lysanderista (1989-2024)." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Ari-Pekka Lahti<br><strong>ALEKSI SUOMESTA</strong></p><p>Aleksi Suomesta on tositarina suomalaisesta ammattisotilaasta Aleksi Lysanderista (1989-2024). Näytelmä on Ari-Pekka Lahden sovitus Tuomas Kyrön samannimisestä kirjasta (WSOY, 2023), joka oli myös Tietokirjallisuuden Finlandia-palkintoehdokas.</p><p>Isovanhempiensa maatilalla Oulussa lapsuuttaan viettänyt, suomalaisen äidin ja senegalilaisen isän poika päättää tehdä itsestään sotilaan, ja lähtee 18-vuotiaana muukalaislegioonaan. Hän palvelee Afganistanissa ja useissa Afrikan maissa. Ukrainaan hän lähtee ensimmäisten vapaaehtoisten joukossa vuonna 2022, palaa välillä Suomeen, mutta lähtee uudestaan Ukrainaan syksyllä 2024, jossa hän menehtyy vuoden viimeisten päivien aikana.</p><p>Näytelmää on valmisteltu yhteistyössä Aleksi Lysanderin kanssa ja hänen toiveensa oli, että esitys toteutetaan ja siitä tulee mahdollisimman rehellinen kuvaus sodan jäljistä ja siitä, miten sota ei koskaan ole oikea ratkaisu.</p><p>Rooleissa: Roderick Kabanga, Eetu Känkänen</p><p>Kirjailija: Tuomas Kyrö<br>Dramatisointi: Ari-Pekka Lahti<br>Ohjaus: Tuomas Rinta-Panttila<br>Lavastus, valo- ja videosuunnittelu: Mika Haaranen<br>Pukusuunnittelu: Elina Kolehmainen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Tuula Kuittinen<br>Dramaturgi: Sanna Niemeläinen</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>" }, "name": { "fi": "Aleksi Suomesta" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999961/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }