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/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=77
{ "meta": { "count": 32047, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=78", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=76" }, "data": [ { "id": "espoo_le:agohkasnli", "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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494900, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-02-19T07:52:12.728630Z", "last_modified_time": "2026-02-19T07:52:12.728648Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0ba4a0a5-003e-48c4-ab74-4e939d865d31.jpg", "name": "", "cropping": "448,0,1600,1152", "photographer_name": "", "alt_text": "Sienikuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494900/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-02-19T07:54:19.441476Z", "last_modified_time": "2026-02-19T13:04:16.914477Z", "date_published": "2026-02-19T07:55:48.227000Z", "start_time": "2026-03-23T13:30:00Z", "end_time": "2026-03-23T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule opettelemaan taikatemppuja!" }, "info_url": null, "description": { "fi": "<p>Maaginen viikko toteutetaan Entressen kirjastossa. pääset harjoittelemaan oikeita taikatemppuja maagisen henkilökunnan kanssa.</p>" }, "name": { "fi": "Maaginen taikatemppupaja" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohkasnli/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn4oac4om", "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:agggfz7aem/?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:p4354/?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:agn4oadaii/?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": 1494906, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-02-19T12:38:09.241045Z", "last_modified_time": "2026-02-20T08:47:33.226112Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/6c5e2fc7-6b6f-4c0e-99ae-ff2dbc5d2894.png", "name": "", "cropping": "108,0,768,660", "photographer_name": "", "alt_text": "Maaginen viikko", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494906/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-01-16T12:26:25.498477Z", "last_modified_time": "2026-02-19T12:51:49.658937Z", "date_published": null, "start_time": "2026-03-26T15:30:00Z", "end_time": "2026-03-26T16: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": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen Lippulaivan kirjastoon. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Espoon kaupunginkirjasto järjestää tapahtumia Helmet –kirjastojen yhteisellä Maagisella viikolla 23.3.-29.3.2026. </p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p><p>Esbo stadsbibliotek anordnar evenemang under Helmet-bibliotekens gemensamma Magiska vecka från 23 till 29 mars 2026.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p><p>Espoo City Library is organizing events during the joint Magical Week of Helmet libraries from March 23 to March 29, 2026. </p>" }, "name": { "fi": "Maaginen satuhetki", "sv": "Magisk sagostund", "en": "Magical story time" }, "provider_contact_info": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4oac4om/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22gfme", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?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:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gqye/?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": 1494907, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-19T12:38:12.058883Z", "last_modified_time": "2026-02-19T12:38:12.058899Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/204dd85d-de0b-41de-a586-139a0c9f08bd.png", "name": "", "cropping": "166,0,737,572", "photographer_name": "", "alt_text": "......................", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494907/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-08-06T07:25:24.306918Z", "last_modified_time": "2026-02-19T12:45:42.992788Z", "date_published": null, "start_time": "2026-03-25T14:00:00Z", "end_time": "2026-03-25T16: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": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "info_url": null, "description": { "fi": "<p>Tervetuloa maagiseen pajailtapäivään. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p><p>Espoon kaupunginkirjasto järjestää tapahtumia Helmet –kirjastojen yhteisellä Maagisella viikolla 23.3.-29.3.2026. </p>", "sv": "<p>Välkommen till en magisk eftermiddag med pyssel. Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p><p>Esbo stadsbibliotek anordnar evenemang under Helmet-bibliotekens gemensamma Magiska vecka från 23 till 29 mars 2026.</p>", "en": "<p>Welcome to a magical afternoon crafting workshop. Each afternoon has a different theme. The library will provide the necessary materials.</p><p>Espoo City Library is organizing events during the joint Magical Week of Helmet libraries from March 23 to March 29, 2026. </p>" }, "name": { "fi": "Maaginen pajailtapäivä ", "sv": "Magisk hantverks eftermiddag ", "en": "Magical crafting afternoon " }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gfme/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agny4whbnu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@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:agny4wgzoe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wgz4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg2je/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg2v4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg3em/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg3sq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg4bm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg4pu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg46e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg5ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg5wy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg6ee/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg6sa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg66a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg7ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg7wy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whaea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whar4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whbbe/?format=api" } ], "images": [ { "id": 1494376, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-05T12:42:46.693088Z", "last_modified_time": "2026-01-05T12:42:46.693105Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/6a0f2969-d169-490e-a9f9-aa12be8216ec.png", "name": "", "cropping": "105,0,371,266", "photographer_name": "", "alt_text": "Lapset askartelevat pöydän ääressä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494376/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-01-05T12:46:45.466006Z", "last_modified_time": "2026-02-19T12:42:13.162097Z", "date_published": null, "start_time": "2026-01-21T13:30:00Z", "end_time": "2026-05-27T14: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": "Askarrellaan ja taiteillaan yhdessä. ", "sv": "Låt oss pyssla och skapa konst tillsammans. ", "en": "Let’s craft and make art together. " }, "info_url": null, "description": { "fi": "<p>Tule askartelemaan joka viikko yhdessä Ison Omenan kirjaston pajaan. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa materiaalit. </p><p>Pienet lapset yhdessä oman aikuisen kanssa. </p><p><br></p><p>Tervetuloa! </p>", "sv": "<p>Kom och pyssla varje vecka i verkstaden på Ison Omenas bibliotek. Varje verkstadsaftermiddag har ett eget tema. Biblioteket står för materialet. </p><p>Små barn tillsammans med sin egen vuxen. </p><p><br></p><p>Välkommen! </p>", "en": "<p>Come and craft every week in the workshop at Iso Omena Library. Each workshop afternoon has its own theme. The library provides all materials. </p><p>Small children together with your grown up. </p><p><br></p><p>Welcome! </p>" }, "name": { "fi": "Pajailtapäivä Ison Omenan kirjastossa", "sv": "Verkstadseftermiddag på Iso Omenas bibliotek", "en": "Workshop afternoon at Iso Omena Library " }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whbnu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohmflyem", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@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": [], "images": [ { "id": 1494908, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-19T12:30:16.751327Z", "last_modified_time": "2026-02-19T12:30:16.751344Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/263619c1-3a4b-4616-9873-5be0720f1771.png", "name": "", "cropping": "117,0,683,566", "photographer_name": "", "alt_text": "Sumuinen metsä taustalla, jonka edustalla kreikkalaistyylinen temppeli, punainen lippu, miekka, kreikkalainen sotilaskypärä, sekä lentävä pegasus.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494908/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-02-19T12:32:51.925396Z", "last_modified_time": "2026-02-19T12:32:51.925413Z", "date_published": null, "start_time": "2026-03-23T13:30:00Z", "end_time": "2026-03-23T15: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": "Maaginen Percy Jackson- tapahtuma", "sv": "Magiska Percy Jackson-evenemang", "en": "Magical Percy Jackson event" }, "info_url": null, "description": { "fi": "<p>Huomio kaikki Puolijumalat!</p><p>Haluatko tavata muita Percy Jackson- sarjan faneja? Selvittää, kuka kreikkalaisen taruston jumalista olisi jumalallinen vanhempasi? Tehdä pinssejä, joista muut tunnistavat sinut Percy Jackson-faniksi? Tehdä oman Puoliveristen leirin kaulakorusi? Osoittaa syvää tietämystäsi Percy Jackson- kirjoista tietovisassa?</p><p>Osallistu Ison Omenan kirjaston maagiseen Percy Jackson- tapahtumaan!</p><p>Koska? 23.03. klo 15:50-17:30</p><p>Missä? Ison Omenan kirjaston pajassa </p>", "sv": "<p>Lystring alla halvblod!</p><p>Vill du möta andra fans av Percy Jackson-serien? Ta reda på vilken gud som är din gudomliga förälder? Göra pins som visar andra ditt Percy-Jackson-intresse? Göra ett eget Halvblodslägerhalsband? Briljera med din kunskap om Percy-Jackson-böckerna i en frågesport?</p><p>Häng med på Iso omenas magiska Percy Jackson-evenemang!</p><p>När? 23.3 kl. 15:30-17:30</p><p>Var? Iso omena biblioteks verkstad</p>", "en": "<p>Attention all Half-Bloods!</p><p>Do you want to meet other fans of the Percy Jackson series? Find out which god is your godly parent? Make pins that show others your Percy Jackson enthusiasm? Make your own Camp Half-Blood necklace? Show off your deep knowledge of the Percy Jackson books in a quiz?</p><p>Join Iso omena library’s magical Percy Jackson event!</p><p>When? 23rd of March at 3:30 p.m. - 5:30 p.m.</p><p>Where? Iso omena library’s makerspace</p>" }, "name": { "fi": "Maaginen Percy Jackson- tapahtuma", "sv": "Magiska Percy Jackson-evenemang", "en": "Magical Percy Jackson event" }, "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:agohmflyem/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohlxpywi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494691, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-28T10:57:54.547099Z", "last_modified_time": "2026-01-28T10:57:54.547116Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b58b0a7f-f847-4841-8328-5ec8c655fa07.jpg", "name": "", "cropping": "448,0,1600,1152", "photographer_name": "Muuks Creative", "alt_text": "Tumma fantasiamaisema, jossa sienimetsä ja täysikuu.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494691/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-02-19T12:08:23.085127Z", "last_modified_time": "2026-02-19T12:10:46.962534Z", "date_published": null, "start_time": "2026-03-23T16:00:00Z", "end_time": "2026-03-23T17: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": "Espoon kaupunginkirjasto järjestää tapahtumia Helmet –kirjastojen yhteisellä Maagisella viikolla 23.3.-29.3.2026.", "sv": "Esbo stadsbibliotek ordnar flera evenemang under Helmet-bibliotekens gemensamma Magiska vecka 23.3–29.3.2026", "en": "Espoo City Library will be hosting events as part of Magical Week organised by Helmet libraries from 23 to 29 March 2026. " }, "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": "Loitsuja ja liemiä – taikamainen sanataidetyöpaja<p>Kirjastoon on ilmiintynyt taikaliemi- ja loitsupaja! </p><p>Uskallatko tulla kokeilemaan taikaliemien reseptien kirjoittamista? Entä minkälaisia taikoja luot loitsuilla? Haluaisitko päästä jostakin vaivasta eroon tai muuttua monijuomaliemen avulla vaikka kissaksi? Siihen tarvitaan mm. friteerattuja iilimatoja ja kaksisarvisen jauhetta. Tule kokeilemaan! </p><p>Työpajassa kirjoitetaan ja koristellaan värikynillä loitsuja ja taikaliemien reseptejä. Työpaja on ma 23.3. Lippulaivan kirjastossa Salongissa klo 18.00 - 19.30 ja ke 25.3. Entressen kirjastossa Sinisessä huoneessa klo 18.00-19.30.</p><p><br></p><p>_____________</p><p>Tervetuloa sukeltamaan fantasian maailmaan maaliskuussa! Espoon kaupunginkirjasto järjestää tapahtumia Helmet –kirjastojen yhteisellä Maagisella viikolla 23.3.-29.3.2026. </p><p>Entressen, Lippulaivan, Ison Omenan, Sellon ja Tapiolan kirjastoissa järjestetään taianomaista ohjelmaa. Tule maaliskuussa kirjastoon koko perheen voimin nauttimaan fantasia-aiheisista työpajoista, esityksistä ja kirjanäyttelyistä. </p><p>Tapahtumat päivittyvät nettisivuille helmikuun aikana. Löydät Maagisen viikon tapahtumat tapahtumasivuilta hakusanalla “Maaginen viikko”. </p><p>www.espoo.fi/tapahtumat ja www.helmet.fi/tapahtumat </p>", "sv": "Trolldrycker och besvärjelser – en magisk ordkonstverkstad<p>En verkstad för trolldrycker och besvärjelser har dykt upp i biblioteket! </p><p>Vågar du komma och prova på att skriva recept på magiska elixir? Vilken sorts magi kommer du att skapa med dina trollformler? Vill du bli av med ett problem eller förvandla dig till en katt med hjälp av ett mångsidigt elixir? För att göra detta behöver du bland annat stekta blodiglar och pulveriserade enhörningshorn. Kom och prova! </p><p>I verkstaden skriver och dekorerar vi trollformler och recept på magiska drycker med färgade pennor. Verkstaden hålls måndagen den 23 mars på Lippulaiva-biblioteket i Salong kl. 18–19.30 och onsdagen den 25 mars på Entresse-biblioteket i Blå rummet kl. 18–19.30.</p><p>____________</p><p>Välkommen att dyka ner i fantasins värld i mars! Esbo stadsbibliotek ordnar flera evenemang under Helmet-bibliotekens gemensamma Magiska vecka 23.3–29.3.2026. </p><p>Vi ordnar magiskt program i Entressebiblioteket, Lippulaivabiblioteket, Iso Omena bibliotek, Sellobiblioteket och Hagalunds bibliotek. Kom till biblioteket med hela familjen i mars, så kan ni njuta av verkstäder, föreställningar och bokutställningar med fantasytema. </p><p>Informationen om evenemangen publiceras på webben under februari månad. Du hittar Magiska veckans program på evenemangssidorna med sökordet ”Magiska veckan”[KO1] . </p><p>https://www.espoo.fi/sv/evenemang-i-esbo och https://helmet.finna.fi/Content/tapahtumat?lng=sv </p>", "en": "Spells and potions – a magical wordcraft workshop<p>A magic potion and spell workshop has appeared in the library! </p><p>Do you dare to come and try your hand at writing recipes for magic potions? What kind of magic will you create with your spells? Would you like to get rid of a problem or turn yourself into a cat with the help of a multi-drink potion? To do so, you will need fried leeches and powdered unicorn horns, among other ingredients. Come and try it out! </p><p>In the workshop, we will write and decorate spells and magic potion recipes with colored pens. The workshop will be held on Monday, March 23, at the Lippulaiva Library in Salong at 6:00–7:30 p.m. and on Wednesday, March 25, at the Entresse Library in the Blue Room at 6:00–7:30 p.m.</p><p><br></p><p>_____________</p><p><br></p><p>This March, we invite you to dive into the world of fantasy! Espoo City Library will be hosting events as part of Magical Week organised by Helmet libraries from 23 to 29 March 2026. </p><p>The magic-filled events will take place at the Entresse, Lippulaiva, Iso Omena, Sello and Tapiola libraries. Come to the library in March to enjoy fantasy-themed workshops, performances, and book exhibitions. Make it a fun family outing. </p><p>Event details will be updated on the website during February. See what’s on by searching for ‘Magical Week’ on the events page. </p><p>www.espoo.fi/en/events-espoo and helmet.finna.fi/Content/tapahtumat?lng=en-gb </p>" }, "name": { "fi": "Maaginen viikko: Loitsuja ja liemiä – taikamainen sanataidetyöpaja", "sv": "Magiska veckan: Trolldomar och trolldrycker – en magisk verkstad om ordets konst", "en": "Magical Week: Spells and potions – a magical workshop on the art of words" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": { "fi": "Kirjasto", "sv": "Biblioteket", "en": "Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohlxpywi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohlxpz4u", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "images": [ { "id": 1494905, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-19T11:30:30.753015Z", "last_modified_time": "2026-02-19T11:30:30.753032Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f2df463d-223d-4114-8294-570b46917123.png", "name": "", "cropping": "198,0,703,506", "photographer_name": "", "alt_text": "Satakielikuukausi banneri", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494905/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-02-19T11:32:45.627470Z", "last_modified_time": "2026-02-19T11:33:27.284529Z", "date_published": null, "start_time": "2026-03-06T15:00:00Z", "end_time": "2026-03-06T15: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": "Tule kuuntelemaan lastenrunoja.\nJaa kauniita sanoja ja tarinoita eri kielillä- yhdessä luomme monikielisen runohetken!", "sv": "Kom och lyssna på dikter riktade till barn.\nDela med dig av vackra ord på olika språk - låt oss skapa tillsammans en gemensam diktstund på olika språk!", "en": "Share beautiful words from your own language — together we will create a joyful and multilingual poetry moment." }, "info_url": null, "description": { "fi": "<strong>Satakielikuukauden tapahtuma Lippulaivan kirjastossa</strong><p><br></p><p>Tule kuuntelemaan lastenrunoja. Jaa kauniita sanoja ja tarinoita eri</p><p>kielillä- yhdessä luomme monikielisen runohetken!</p><p>📍Paikka: Perhealue, Lippulaivan kirjasto</p><p>🕔 Aika: Perjantai, 6.3.2026 klo. 17.00-17.30</p><p>Kaikenikäiset lapset ja perheet ovat tervetulleita!</p>", "sv": "<strong>Flerspråkighetsmånadens evenemang i Lippulaivas bibliotek</strong><p><br></p><p>Kom och lyssna på dikter riktade till barn. Dela med dig av vackra ord på olika språk - låt oss skapa tillsammans en gemensam diktstund på olika språk!</p><p>📍Plats: Famlijernas vardagsrum, Lippulaivas bibliotek</p><p>🕔 Tid: Fredag 6.3.2026 kl. 17.00-17.30</p><p>Barn i alla åldrar med sina familjer varmt välkomna!</p>", "en": "<strong>Multilingual Month event at lippulaiva library</strong><p><br></p><p>Come and listen to children’s poems in different languages! Share beautiful words from your own language — together we will create a joyful and multilingual poetry moment.</p><p>📍 Location: Family Area, Lippulaiva Library</p><p>🕔 Time: Friday, March 6, 2026, 17.00-17.30</p><p>Children of all ages and families are warmly welcome!</p>" }, "name": { "fi": "Lastenrunoja omalla äidinkielellä perhealueella", "sv": " Dikter för barn på eget modermål vid familjernas vardagsrum", "en": "Children’s Poems in Your Own Mother Tongue" }, "provider_contact_info": null, "location_extra_info": { "fi": "Perhealue", "sv": "Famlijernas vardagsrum", "en": "Family area" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohlxpz4u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoatop4b4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494682, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-10-04T06:50:43.356264Z", "last_modified_time": "2024-10-04T06:50:43.356283Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b2ed133e-f754-4e09-9762-441d1e546959.jpg", "name": "", "cropping": "0,214,853,1066", "photographer_name": "Mahavir Shah Pixabaystä", "alt_text": "Kuvassa on Playstation 5 ohjain.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494682/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-01-29T12:06:29.961770Z", "last_modified_time": "2026-02-19T11:09:44.416206Z", "date_published": "2026-01-29T12:03:00Z", "start_time": "2026-02-20T14:00:00Z", "end_time": "2026-02-20T16: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": "FC 25 -turnaus nuorille", "sv": "FC 25 -turnering för ungdomar", "en": "FC 25 -tournament for young people" }, "info_url": null, "description": { "fi": "<p>Tervetuloa talvilomaviikon FC 25 turnaukseen. Turnaus aloitetaan klo 16. Turnauksen kesto riippuu osallistujamäärästä. Turnaus on 12-20-vuotiaille.</p>", "sv": "<p>Välkommen till FC 25-turneringen under vinteruppehållet. Turneringen börjar klockan 16.00. Turneringens längd beror på antalet deltagare. Turneringen är för 12–20-åringar.</p>", "en": "<p>Welcome to the FC 25 tournament during winter holiday. The tournament will start at 4 p.m. The duration of the tournament depends on the number of participants. The tournament is for ages 12–20.</p>" }, "name": { "fi": "PERUTTU: FC 25 -turnaus nuorille", "sv": "AVBRUTEN: FC 25 -turnering för ungdomar", "en": "CANCELLED: FC 25 -tournament for young people" }, "provider_contact_info": null, "location_extra_info": { "fi": "Pointti", "sv": "Pointti", "en": "Pointti" }, "provider": { "fi": "Nuori Espoo", "sv": "Nuori Espoo", "en": "Nuori Espoo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoatop4b4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20776476", "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:p13876/?format=api" }, { "@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-3849158/?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/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776476/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776476/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776476/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360031, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.182714Z", "last_modified_time": "2025-03-17T22:17:20.182730Z", "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_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/360031/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-08T15:15:04.084448Z", "last_modified_time": "2026-02-18T23:14:35.183658Z", "date_published": null, "start_time": "2026-02-18T16: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": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Tiina Peltoneni, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>" }, "name": { "en": "Let'S Play Business" }, "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:20776476/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20800533", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3843763/?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/kuka-kaappasi-auringon-helsingin-kaupunginteatteri-studio-pasila-20800533/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kuka-kaappasi-auringon-helsingin-kaupunginteatteri-studio-pasila-20800533/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kuka-kaappasi-auringon-helsingin-kaupunginteatteri-studio-pasila-20800533/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 278140, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-27T23:16:54.753845Z", "last_modified_time": "2025-02-27T23:16:54.753860Z", "url": "https://www.lippu.fi/obj/mam/finland/93/46/hkt-kuka-kaappasi-auringon-tickets_362232_3070654_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/278140/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-13T14:14:44.102874Z", "last_modified_time": "2026-02-18T23:14:35.074702Z", "date_published": null, "start_time": "2026-02-18T16: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": "Mauri Kunnas – Liila Jokelin – Lauri Schreck KUKA KAAPPASI AURINGON Väinölän taivaalla aurinko paistaa kultaisena." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuka-kaappasi-auringon-3843763/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuka-kaappasi-auringon-3843763/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuka-kaappasi-auringon-3843763/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Mauri Kunnas – Liila Jokelin – Lauri Schreck<br><strong>KUKA KAAPPASI AURINGON </strong></p><p>Väinölän taivaalla aurinko paistaa kultaisena. Niin kultaisena, että Pohjolan ahne Louhi saa idean: jos ryöstäisikin auringon ja takoisi sen kultakolikoiksi!</p><p>Louhi susijoukkoineen vangitsee auringon luolaan ja Väinölässä tulee kylmä. Pohjolassa sen sijaan on läkähdyttävän kuuma, kun kahlittu aurinko porottaa vihaisena luolassaan.</p><p>Mutta auringolla on voima, jolle edes Louhi ei mahda mitään. Ahneinkin oppii, mikä elämässä on oikeasti tärkeää.</p><p>Mauri Kunnaksen samannimiseen lastenkirjaan perustuvan upouuden lasten musiikkinäytelmän ohjaa ja dramatisoi <strong>Liila Jokelin</strong>, joka on myös säveltänyt näytelmän musiikin yhdessä <strong>Lauri Schreckin</strong> kanssa.</p><p>Tässä energisessä musiikkinäytelmässä paahdetaan rockia ja näyttäviä taistelukoreografioita koko näyttämön täydeltä! Esityksessä hehkuu Mauri Kunnaksen tunnistettava maailma. Näytelmän huumori, viisaus ja oivaltavuus lämmittävät pitkään.</p><p>Rooleissa: Juha Jokela, Sami Paasila, Sanna Majuri, Arttu Kapulainen, Inkeri Raittila, Sanna Saarijärvi, Antti Timonen, Laura Alajääski</p><p>Kirjailija: Mauri Kunnas<br>Dramatisointi, ohjaus ja sävellys: Liila Jokelin<br>Sävellys: Lauri Schreck<br>Koreografia: Arvo Jean-Michael Ärlig<br>Lavastus ja puvut: Katariina Kirjavainen<br>Naamioinnin suunnittelu: Ronja Nylund<br>Valosuunnittelu: Teppo Saarinen<br>Äänisuunnittelu: Riku-Pekka Kellokoski<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Sanna Niemeläinen<br>Oikeuksien valvoja: Agency North</p>" }, "name": { "fi": "Kuka Kaappasi Auringon" }, "provider_contact_info": null, "location_extra_info": { "fi": "Studio Pasila" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20800533/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohcjwvl4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohcjwwkq/?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": 1494899, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-02-18T13:41:04.205241Z", "last_modified_time": "2026-02-18T13:41:04.205259Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/44d69d9e-3814-4dcd-a9e0-a3fcd74dc8e6.jpg", "name": "", "cropping": "0,125,1000,1125", "photographer_name": "Darina Rodanova", "alt_text": "People in an art exhibition", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494899/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-18T13:44:01.162762Z", "last_modified_time": "2026-02-18T13:44:01.162790Z", "date_published": null, "start_time": "2026-03-12T14:00:00Z", "end_time": "2026-03-12T16: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": "& Espoon teatterin &Naapurusto-hanke tarjoaa maksuttomia työtyöpajoja maahanmuuttajataustaisille espoolaisille &:llä ja Tapiolan kirjastossa!", "en": "& Espoo theatre’s &Neighbourhood-project offers workshops for adults and families with children with immigrant or diverse backgrounds." }, "info_url": { "fi": "https://espoonteatteri.fi/naapurusto/", "en": "https://espoonteatteri.fi/en/naapurusto-unites-espoo-citizens/" }, "description": { "fi": "<p>& Espoon teatterin &Naapurusto-hanke tarjoaa maksuttomia työtyöpajoja maahanmuuttajataustaisille espoolaisille &:llä ja Tapiolan kirjastossa! </p>\nTyöpaja: “Neither Here Nor There” <p>Kiinnostaako sinua luova liike, elinympäristön havainnointi ja luova käsillä tekeminen? Neljän työpajan sarja sisältää ohjattuja inspiroivia liikeharjoitteita, valokuvausta ulkona sekä kollaasien tekemistä kierrätetyistä materiaaleista. Työpajat ovat rentoja ja kokeilevia. </p><p>Taiteilija ja ohjaaja: Homa Shokri (homa.shokri@espoonteatteri.fi) </p><p><strong>Kenelle</strong>: espoolaisille aikuisille ja nuorille (16+), jotka elävät tällä hetkellä jollain tavalla elämänmuutoksen aikaa. Etenkin maahanmuuttajataustaisille. </p><p><strong>Kieli</strong>: englanti, ohjaaja puhuu myös farsia. </p><p><strong>Kustannus</strong>: ilmainen </p><p><strong>Aikataulu</strong>: </p><ul><li>19. Helmikuuta, & Espoon teatteri </li><li>26. Helmikuuta, & Espoon teatteri </li><li>5. maaliskuuta, Tapiolan kirjasto </li><li>12. Maaliskuuta, Tapiolan kirjasto </li></ul><p><strong>Aika</strong>: klo 16.00–18.30 </p>\nMikä &Naapurusto? <p>Lähes neljännes espoolaisista puhuu äidinkielenään jotain muuta kuin suomea, ruotsia tai saamea. Naapurustomme on siis hyvin monikulttuurinen. Tästä syntyi idea & Espoon teatterin &Naapurusto-hankkeelle, jonka lähtökohta on teatterin lupaus olla eri taustaisten ihmisten kohtaamispaikka. Projektia rahoittaa Suomenkulttuurirahasto ja Länsi-Uudenmaan hyvinvointialue. </p>", "en": "<p>Free art workshops for Espoo residents with immigrant or diverse backgrounds! </p><p>& Espoo theatre’s &Neighbourhood-project offers two creative 5- and 4-week workshop series for adults and families with children living in Espoo — especially those with immigrant or diverse backgrounds. </p>\nWorkshops: ”Neither Here Nor There” <p>Are you curious about movement, photography, writing and creative craft-making? In this four-part workshop, participants explore how the body moves, how images are captured, and how thoughts can turn into text and collage. The workshop offers a relaxed and experimental space through playful exercises. The sessions include guided movement tasks, outdoor photo-taking, and hands-on collage and craft using the collected materials. </p><p>The outcome of the project will be a collaborative photo collage created from images taken during the workshops and simple performative movement actions in public space. </p><p>Artist and Facilitator: Homa Shokri (homa.shokri@espoonteatteri.fi), speaks English and Farsi. </p><p><strong>To whom:</strong> Espoo-based residents — especially those with immigrant backgrounds who are in a phase of recovery, rebuilding, or major life change. Adults and teenagers (16+) welcome. You don't need any previous experience in the arts to participate. </p><p><strong>Language</strong>: English </p><p><strong>Cost</strong>: Free </p><p><strong>Dates & Locations</strong>: </p><ul><li>19 February – & Espoo theatre </li><li>26 February – & Espoo theatre </li><li>5 March – Tapiola Library </li><li>12 March – Tapiola Library </li></ul><p><strong>Time</strong>: 16:00–18:30 </p>\nWhat &Neighbourhood? <p>&Neighbourhood is rooted in & Espoo theatre’s commitment to being a meeting place for people from diverse backgrounds. Project aims to build dialogue and understanding – not by erasing differences, but by exploring how they form part of our collective life in Espoo. The project is funded by the Finnish Cultural Foundation and Western Uusimaa Wellbeing Services County. </p>" }, "name": { "fi": "Työpaja: “Neither Here Nor There” ", "en": "Workshops: ”Neither Here Nor There” " }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "& Espoon teatteri", "en": "& Espoo theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohcjwvl4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohcjwv2a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohcjwwkq/?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": 1494899, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-02-18T13:41:04.205241Z", "last_modified_time": "2026-02-18T13:41:04.205259Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/44d69d9e-3814-4dcd-a9e0-a3fcd74dc8e6.jpg", "name": "", "cropping": "0,125,1000,1125", "photographer_name": "Darina Rodanova", "alt_text": "People in an art exhibition", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494899/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-18T13:44:01.067177Z", "last_modified_time": "2026-02-18T13:44:01.067195Z", "date_published": null, "start_time": "2026-03-05T14:00:00Z", "end_time": "2026-03-05T16: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": "& Espoon teatterin &Naapurusto-hanke tarjoaa maksuttomia työtyöpajoja maahanmuuttajataustaisille espoolaisille &:llä ja Tapiolan kirjastossa!", "en": "& Espoo theatre’s &Neighbourhood-project offers workshops for adults and families with children with immigrant or diverse backgrounds." }, "info_url": { "fi": "https://espoonteatteri.fi/naapurusto/", "en": "https://espoonteatteri.fi/en/naapurusto-unites-espoo-citizens/" }, "description": { "fi": "<p>& Espoon teatterin &Naapurusto-hanke tarjoaa maksuttomia työtyöpajoja maahanmuuttajataustaisille espoolaisille &:llä ja Tapiolan kirjastossa! </p>\nTyöpaja: “Neither Here Nor There” <p>Kiinnostaako sinua luova liike, elinympäristön havainnointi ja luova käsillä tekeminen? Neljän työpajan sarja sisältää ohjattuja inspiroivia liikeharjoitteita, valokuvausta ulkona sekä kollaasien tekemistä kierrätetyistä materiaaleista. Työpajat ovat rentoja ja kokeilevia. </p><p>Taiteilija ja ohjaaja: Homa Shokri (homa.shokri@espoonteatteri.fi) </p><p><strong>Kenelle</strong>: espoolaisille aikuisille ja nuorille (16+), jotka elävät tällä hetkellä jollain tavalla elämänmuutoksen aikaa. Etenkin maahanmuuttajataustaisille. </p><p><strong>Kieli</strong>: englanti, ohjaaja puhuu myös farsia. </p><p><strong>Kustannus</strong>: ilmainen </p><p><strong>Aikataulu</strong>: </p><ul><li>19. Helmikuuta, & Espoon teatteri </li><li>26. Helmikuuta, & Espoon teatteri </li><li>5. maaliskuuta, Tapiolan kirjasto </li><li>12. Maaliskuuta, Tapiolan kirjasto </li></ul><p><strong>Aika</strong>: klo 16.00–18.30 </p>\nMikä &Naapurusto? <p>Lähes neljännes espoolaisista puhuu äidinkielenään jotain muuta kuin suomea, ruotsia tai saamea. Naapurustomme on siis hyvin monikulttuurinen. Tästä syntyi idea & Espoon teatterin &Naapurusto-hankkeelle, jonka lähtökohta on teatterin lupaus olla eri taustaisten ihmisten kohtaamispaikka. Projektia rahoittaa Suomenkulttuurirahasto ja Länsi-Uudenmaan hyvinvointialue. </p>", "en": "<p>Free art workshops for Espoo residents with immigrant or diverse backgrounds! </p><p>& Espoo theatre’s &Neighbourhood-project offers two creative 5- and 4-week workshop series for adults and families with children living in Espoo — especially those with immigrant or diverse backgrounds. </p>\nWorkshops: ”Neither Here Nor There” <p>Are you curious about movement, photography, writing and creative craft-making? In this four-part workshop, participants explore how the body moves, how images are captured, and how thoughts can turn into text and collage. The workshop offers a relaxed and experimental space through playful exercises. The sessions include guided movement tasks, outdoor photo-taking, and hands-on collage and craft using the collected materials. </p><p>The outcome of the project will be a collaborative photo collage created from images taken during the workshops and simple performative movement actions in public space. </p><p>Artist and Facilitator: Homa Shokri (homa.shokri@espoonteatteri.fi), speaks English and Farsi. </p><p><strong>To whom:</strong> Espoo-based residents — especially those with immigrant backgrounds who are in a phase of recovery, rebuilding, or major life change. Adults and teenagers (16+) welcome. You don't need any previous experience in the arts to participate. </p><p><strong>Language</strong>: English </p><p><strong>Cost</strong>: Free </p><p><strong>Dates & Locations</strong>: </p><ul><li>19 February – & Espoo theatre </li><li>26 February – & Espoo theatre </li><li>5 March – Tapiola Library </li><li>12 March – Tapiola Library </li></ul><p><strong>Time</strong>: 16:00–18:30 </p>\nWhat &Neighbourhood? <p>&Neighbourhood is rooted in & Espoo theatre’s commitment to being a meeting place for people from diverse backgrounds. Project aims to build dialogue and understanding – not by erasing differences, but by exploring how they form part of our collective life in Espoo. The project is funded by the Finnish Cultural Foundation and Western Uusimaa Wellbeing Services County. </p>" }, "name": { "fi": "Työpaja: “Neither Here Nor There” ", "en": "Workshops: ”Neither Here Nor There” " }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "& Espoon teatteri", "en": "& Espoo theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohcjwv2a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohcjwwkq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:agohcjwvl4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohcjwv2a/?format=api" } ], "images": [ { "id": 1494899, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-02-18T13:41:04.205241Z", "last_modified_time": "2026-02-18T13:41:04.205259Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/44d69d9e-3814-4dcd-a9e0-a3fcd74dc8e6.jpg", "name": "", "cropping": "0,125,1000,1125", "photographer_name": "Darina Rodanova", "alt_text": "People in an art exhibition", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494899/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-18T13:44:00.487733Z", "last_modified_time": "2026-02-18T13:44:00.487752Z", "date_published": null, "start_time": "2026-03-05T14:00:00Z", "end_time": "2026-03-12T16: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": "& Espoon teatterin &Naapurusto-hanke tarjoaa maksuttomia työtyöpajoja maahanmuuttajataustaisille espoolaisille &:llä ja Tapiolan kirjastossa!", "en": "& Espoo theatre’s &Neighbourhood-project offers workshops for adults and families with children with immigrant or diverse backgrounds." }, "info_url": { "fi": "https://espoonteatteri.fi/naapurusto/", "en": "https://espoonteatteri.fi/en/naapurusto-unites-espoo-citizens/" }, "description": { "fi": "<p>& Espoon teatterin &Naapurusto-hanke tarjoaa maksuttomia työtyöpajoja maahanmuuttajataustaisille espoolaisille &:llä ja Tapiolan kirjastossa! </p>\nTyöpaja: “Neither Here Nor There” <p>Kiinnostaako sinua luova liike, elinympäristön havainnointi ja luova käsillä tekeminen? Neljän työpajan sarja sisältää ohjattuja inspiroivia liikeharjoitteita, valokuvausta ulkona sekä kollaasien tekemistä kierrätetyistä materiaaleista. Työpajat ovat rentoja ja kokeilevia. </p><p>Taiteilija ja ohjaaja: Homa Shokri (homa.shokri@espoonteatteri.fi) </p><p><strong>Kenelle</strong>: espoolaisille aikuisille ja nuorille (16+), jotka elävät tällä hetkellä jollain tavalla elämänmuutoksen aikaa. Etenkin maahanmuuttajataustaisille. </p><p><strong>Kieli</strong>: englanti, ohjaaja puhuu myös farsia. </p><p><strong>Kustannus</strong>: ilmainen </p><p><strong>Aikataulu</strong>: </p><ul><li>19. Helmikuuta, & Espoon teatteri </li><li>26. Helmikuuta, & Espoon teatteri </li><li>5. maaliskuuta, Tapiolan kirjasto </li><li>12. Maaliskuuta, Tapiolan kirjasto </li></ul><p><strong>Aika</strong>: klo 16.00–18.30 </p>\nMikä &Naapurusto? <p>Lähes neljännes espoolaisista puhuu äidinkielenään jotain muuta kuin suomea, ruotsia tai saamea. Naapurustomme on siis hyvin monikulttuurinen. Tästä syntyi idea & Espoon teatterin &Naapurusto-hankkeelle, jonka lähtökohta on teatterin lupaus olla eri taustaisten ihmisten kohtaamispaikka. Projektia rahoittaa Suomenkulttuurirahasto ja Länsi-Uudenmaan hyvinvointialue. </p>", "en": "<p>Free art workshops for Espoo residents with immigrant or diverse backgrounds! </p><p>& Espoo theatre’s &Neighbourhood-project offers two creative 5- and 4-week workshop series for adults and families with children living in Espoo — especially those with immigrant or diverse backgrounds. </p>\nWorkshops: ”Neither Here Nor There” <p>Are you curious about movement, photography, writing and creative craft-making? In this four-part workshop, participants explore how the body moves, how images are captured, and how thoughts can turn into text and collage. The workshop offers a relaxed and experimental space through playful exercises. The sessions include guided movement tasks, outdoor photo-taking, and hands-on collage and craft using the collected materials. </p><p>The outcome of the project will be a collaborative photo collage created from images taken during the workshops and simple performative movement actions in public space. </p><p>Artist and Facilitator: Homa Shokri (homa.shokri@espoonteatteri.fi), speaks English and Farsi. </p><p><strong>To whom:</strong> Espoo-based residents — especially those with immigrant backgrounds who are in a phase of recovery, rebuilding, or major life change. Adults and teenagers (16+) welcome. You don't need any previous experience in the arts to participate. </p><p><strong>Language</strong>: English </p><p><strong>Cost</strong>: Free </p><p><strong>Dates & Locations</strong>: </p><ul><li>19 February – & Espoo theatre </li><li>26 February – & Espoo theatre </li><li>5 March – Tapiola Library </li><li>12 March – Tapiola Library </li></ul><p><strong>Time</strong>: 16:00–18:30 </p>\nWhat &Neighbourhood? <p>&Neighbourhood is rooted in & Espoo theatre’s commitment to being a meeting place for people from diverse backgrounds. Project aims to build dialogue and understanding – not by erasing differences, but by exploring how they form part of our collective life in Espoo. The project is funded by the Finnish Cultural Foundation and Western Uusimaa Wellbeing Services County. </p>" }, "name": { "fi": "Työpaja: “Neither Here Nor There” ", "en": "Workshops: ”Neither Here Nor There” " }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "& Espoon teatteri", "en": "& Espoo theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohcjwwkq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn77w6fyq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": 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": 1494654, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-27T13:38:24.270248Z", "last_modified_time": "2026-01-27T13:38:53.012232Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/fbe22d4c-c345-4abd-b513-8e616f3346bc.png", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Iain Huntley, Sanna Clarén", "alt_text": "Saavutettavan pelaamisen ohjaimia kokeillaan konsolipelaamiseen pelitapahtumassa, toisella pelaajalla on kipsi kädessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494654/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-01-27T13:48:02.106822Z", "last_modified_time": "2026-02-18T12:18:46.034585Z", "date_published": null, "start_time": "2026-02-28T11:00:00Z", "end_time": "2026-02-28T14: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": "Kirjastoissa esitellään saavutettavia peliohjaimia kevään 2026 aikana. ", "sv": "Biblioteken kommer att visa upp tillgängliga spelkontroller under våren 2026.", "en": "Libraries will showcase accessible game controllers during spring 2026." }, "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": "Saavutettavan pelaamisen kiertue<p><br></p><p><strong>Kirjastoissa esitellään saavutettavia peliohjaimia kevään 2026 aikana.</strong> Saavutettavat peliohjaimet on suunniteltu erityisesti liikuntarajoitteisten pelaajien tarpeisiin, mutta kuka vain voi nauttia mukautetusta pelikokemuksesta ohjainten avulla.</p><p>Saavutettavat peliohjaimet ovat helposti muokattavissa monipuolisten lisäpainikkeiden avulla. Tule tutustumaan ja kokeilemaan ohjaimia kirjastoon. </p><p><br></p><p>Ohjaimet ovat tulossa myöhemmin lainattaviksi Helmet-kokoelmaan.</p><p><br></p><p><br></p>\nKiertueaikataulu: <p><strong>Ison Omenan kirjasto, Vox 28.2. klo 13-16 </strong></p><p><strong>Entressen kirjasto, Sininen huone 21.3. klo 13-16 </strong></p><p><strong>Sellon kirjasto, Pointti 18.4. klo 13-16 </strong></p><p><strong>Lippulaivan kirjasto, Salonki 9.5. klo 13-16 </strong></p><p><br></p><p>Tapahtumat järjestää kirjasto</p>", "sv": "Tillgänglig spelturné<p><br></p><p><strong>Biblioteken kommer att visa upp tillgängliga spelkontroller under våren 2026.</strong> Tillgängliga spelkontroller är speciellt utformade för spelare med fysiska funktionsnedsättningar, men alla kan njuta av en anpassad spelupplevelse med dessa kontroller.</p><p>Tillgängliga spelkontroller kan enkelt anpassas med en rad olika extra knappar. Kom och prova kontrollerna på biblioteket.</p><p><br></p><p>Kontrollerna kommer senare att finnas tillgängliga för utlåning från Helmet-samlingen.</p><p><br></p><p><br></p>\nTurnéplan:<p><strong>Ison Omena-biblioteket, Vox 28 februari kl. 13:00–16:00</strong></p><p><strong>Entresse-biblioteket, Sininen huone 21 mars kl. 13:00–16:00</strong></p><p><strong>Sello-biblioteket, Pointti 18 april kl. 13:00–16:00 </strong></p><p><strong>Lippulaiva-biblioteket, Salonki 9 maj kl. 13.00–16.00</strong></p><p><br></p><p>Evenemang organiserade av biblioteket</p>", "en": "Accessible gaming tour<p><br></p><p><strong>Libraries will be showcasing accessible game controllers during spring 2026.</strong> Accessible game controllers are designed specifically for players with physical disabilities, but anyone can enjoy a customized gaming experience with these controllers.</p><p><br></p><p>Accessible game controllers are easily customizable with a variety of additional buttons. Come and try out the controllers at the library.</p><p><br></p><p>The controllers will be available for loan from the Helmet collection at a later date.</p><p><br></p><p><br></p>\nTour schedule:<p><strong>Ison Omena Library, Vox February 28, 1:00–4:00 p.m.</strong></p><p><strong>Entresse Library, Sininen huone March 21, 1:00–4:00 p.m.</strong></p><p><strong>Sello Library, Pointti April 18, 1:00–4:00 p.m. </strong></p><p><strong>Lippulaiva Library, Salonki May 9, 1 p.m.–4 p.m.</strong></p><p><br></p><p>Events organized by the library</p>" }, "name": { "fi": "Saavutettavan pelaamisen kiertue", "sv": "Tillgänglig spelturné", "en": "Accessible Gaming Tour" }, "provider_contact_info": null, "location_extra_info": { "fi": "Vox" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn77w6fyq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnntkqtnu", "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:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "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:agnntkqocq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqoma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqouu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqo6y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqphi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqpp4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqpyq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqqai/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqqia/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqqqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqqyi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqraa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqriq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqrqu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqscq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqsle/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqstm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqs3i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqtee/?format=api" } ], "images": [ { "id": 150422, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-27T12:30:08.869964Z", "last_modified_time": "2023-11-27T12:30:19.230971Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/151122Kielikahvila_mainos_680_x_382_px.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirrettyjä ihmisiä keltaisella taustalla. Puhekuplissa Tervetuloa, Solmu kielikahvila, moi. Yläkulmassa eläkeliiton logo.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150422/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T11:08:27.805439Z", "last_modified_time": "2026-02-18T10:52:32.513496Z", "date_published": null, "start_time": "2026-02-25T14:00:00Z", "end_time": "2026-05-27T14: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": "Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea.", "sv": "Öppet och gratis språkcafé för alla som vill öva sig på att prata finska. Nybörjare är också välkomna.", "en": "A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. " }, "info_url": null, "description": { "fi": "<p>Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea. Myös aloittelijat ovat tervetulleita.</p><p>Kielikahvilaan ei tarvitse ilmoittautua etukäteen. Mukaan voi tulla koska tahansa.</p><p>Kielikahvilassa opit puhumaan arkielämän suomen kieltä. Kielikahvilassa pääset puhumaan suomea suomalaisten kanssa.</p>", "sv": "<p>Öppet och gratis språkcafé för alla som vill öva sig på att prata finska. Nybörjare är också välkomna.</p><p>Ingen anmälan behövs och du kan komma med när som helst. I språkcaféet övar du dig på att prata vardagsfinska.</p><p>I språkcaféet får du prata finska med finländare.</p><p>Välkommen med!</p>", "en": "<p>A language cafe for speaking Finnish, free and open to everyone. You can participate in the language cafe if you want to learn to speak Finnish. Beginners are also welcome.</p><p>You do not need to register for the language cafe in advance. You can come anytime.</p><p>In the language cafe, you will learn to speak the Finnish language of everyday life. In the language cafe you can speak Finnish with Finns.</p>" }, "name": { "fi": "Solmu - suomen kielen kielikahvila", "sv": "Solmu - det finska språkkaféet", "en": "Solmu - the Finnish language cafe" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": { "fi": "Eläkeliiton Espoon yhdistyksen vapaaehtoiset", "sv": "Eläkeliiton Espoon yhdistyksen vapaaehtoiset", "en": "Eläkeliiton Espoon yhdistyksen vapaaehtoiset" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqtnu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agog7xgmxm", "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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494877, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-16T11:22:20.740100Z", "last_modified_time": "2026-02-16T11:22:20.740117Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/310da4d3-3d8e-4882-9158-b2f72f3151a0.png", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "Piirroskuva jossa kukkia , leppäkerttu, mehiläinen ja perhonen", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494877/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-02-18T07:34:11.559904Z", "last_modified_time": "2026-02-18T07:38:32.237266Z", "date_published": null, "start_time": "2026-03-01T11:00:00Z", "end_time": "2026-03-01T14: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": "Tervetuloa satumaiseen matikkaseikkailuun Matikkasurinan kanssa!", "en": "Welcome to a magical math adventure with Matikkasurina!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa satumaiseen matikkaseikkailuun Matikkasurinan kanssa!</p><p>Lasten toiminnalliset satumatikkatuokiot klo 13.30, 14.30 ja 15.30.</p><p>Osallistuminen ei vaadi kielitaitoa ja tuokiot sopii kaikille lapsille osaamistasosta riippumatta, rohkeasti mukaan ihmettelemään ja oivaltamaan!</p><p>3 – 6-vuotiaille lapsille. Toimintaan osallistutaan yhdessä oman aikuisen kanssa.</p>", "en": "<p>Welcome to a magical math adventure with Matikkasurina!</p><p>Interactive math sessions for children</p><p>at 1:30 p.m., 2:30 p.m., and 3:30 p.m.</p><p>Come along to marvel and discover!</p><p>For children aged 3–6. Children must participate in the activities together with an adult.</p>" }, "name": { "fi": "Lasten toiminnalliset satumatikkatuokiot", "en": "Welcome to a magical math adventure with Matikkasurina!" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenosasto", "en": "Children's section" }, "provider": { "fi": "MAOL RY", "en": "MAOL ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agog7xgmxm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agog7jug4e", "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: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": [], "images": [ { "id": 1494414, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-08T12:41:32.779800Z", "last_modified_time": "2026-01-08T12:41:49.140043Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/82efe6a8-ef22-498d-a040-3f54615c5ec6.jpg", "name": "", "cropping": "0,0,570,570", "photographer_name": "", "alt_text": "Rita Gustava Pulli \"Rajat auki\" teoksen kirjoittaja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494414/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-18T06:59:37.173487Z", "last_modified_time": "2026-02-18T06:59:37.173526Z", "date_published": null, "start_time": "2026-03-11T16:00:00Z", "end_time": "2026-03-11T17: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": "Keskustellaan \"Rajat auki\" teoksesta, joka pyrkii tuomaan esiin inhimillisiä näkökulmia ja perusteltua tietoa maahanmuutosta. ", "sv": "Låt oss diskutera boken ”Rajat auki” (Öppna gränser), som syftar till att lyfta fram mänskliga perspektiv och välgrundad information om invandring. På finska.", "en": "Let's discuss the book \"Rajat auki\" (Open Borders), which aims to highlight human perspectives and well-founded information about immigration. In Finnish." }, "info_url": null, "description": { "fi": "<p>\"Rajat auki?\" on tietokirja, jonka on kirjoittanut Rita Gustava Pulli, ja joka käsittelee monipuolisesti maahanmuuttoa EU:n tasolta Suomen ajankohtaisiin maahanmuuttolakimuutoksiin ja Maahanmuuttoviraston käytäntöihin, tuoden esiin maahanmuuttajien kokemuksia ja tutkijoiden näkemyksiä, haastaen pohtimaan maahanmuuton ongelmia ja hyötyjä perustuen tutkittuun tietoon. </p><p><br></p><p>Rita Gustava Pullia haastattelee kirjastoneuvoja Atte Hokkanen.</p>", "sv": "<p>Låt oss diskutera på finska boken ”Rajat auki” (Öppna gränser), som syftar till att lyfta fram mänskliga perspektiv och välgrundad information om invandring.</p>", "en": "<p>Let's discuss in Finnish the book \"Rajat auki\" (Open Borders), which aims to highlight human perspectives and well-founded information about immigration. </p>" }, "name": { "fi": "Kirjailijavieraana Rita Gustava Pulli", "sv": "Författare Rita Gustava Pulli", "en": "Author Rita Gustava Pulli" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agog7jug4e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agodescqoq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "images": [ { "id": 1494783, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-02-06T08:15:01.718558Z", "last_modified_time": "2026-02-06T08:15:01.718734Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/653588b5-9fd6-4b56-98ea-e2a322376863.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "satuhetki ja satakielikuukauden logo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494783/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-02-06T09:04:05.124407Z", "last_modified_time": "2026-02-18T06:33:23.955469Z", "date_published": null, "start_time": "2026-03-19T16:00:00Z", "end_time": "2026-03-19T16: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": "Satuhetkiä kirjastoissa eri kielillä", "sv": "Sagostunder på biblioteket på olika språk", "en": "Storytimes at the library in different languages" }, "info_url": null, "description": { "fi": "<p>Satakielikuukauden kunniaksi kirjastossa järjestetään satuhetkiä eri kielillä.</p><p>Tervetuloa kuulemaan satuja Tapiolan kirjaston lastenosastolle:</p><p><br></p><p>19.3. klo 18 Kiinankielinen satuhetki</p><p>20.3. klo 18 Englanninkielinen satuhetki</p><p><br></p><p>#satakielikuukausi #HelloEspoo</p>", "sv": "<p>Till ära av Flerspråkighetsmånaden in ordnar biblioteket sagostunder på olika språk.</p><p>Välkommen att lyssna på sagor på barnavdelningen på Hagalunds bibliotek:</p><p><br></p><p>19.3 kl. 18 Sagostund på kinesiska</p><p>20.3 kl. 18 Sagostund på engelska</p><p><br></p><p>#satakielikuukausi #HelloEspoo</p>", "en": "<p>In celebration of Multilingual Month, the library is hosting storytimes in different languages.</p><p><br></p><p>Welcome to listen to stories at the children’s section of Tapiola Library:</p><p><br></p><p>19 March at 6 pm – Storytime in Chinese</p><p>20 March at 6 pm – Storytime in English</p><p><br></p><p>#satakielikuukausi #HelloEspoo</p>" }, "name": { "fi": "Satakielikuukauden Satuhetki Kiinaksi", "sv": "Sagostund Satakielikuukausi", "en": "Story time Satakielikuukausi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agodescqoq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agodescqdu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "images": [ { "id": 1494783, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-02-06T08:15:01.718558Z", "last_modified_time": "2026-02-06T08:15:01.718734Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/653588b5-9fd6-4b56-98ea-e2a322376863.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "satuhetki ja satakielikuukauden logo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494783/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-02-06T09:05:10.951616Z", "last_modified_time": "2026-02-18T06:32:42.211631Z", "date_published": null, "start_time": "2026-03-20T16:00:00Z", "end_time": "2026-03-20T16: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": "Satuhetkiä kirjastoissa eri kielillä", "sv": "Sagostunder på biblioteket på olika språk", "en": "Storytimes at the library in different languages" }, "info_url": null, "description": { "fi": "<p>Satakielikuukauden kunniaksi kirjastossa järjestetään satuhetkiä eri kielillä.</p><p>Tervetuloa kuulemaan satuja Tapiolan kirjaston lastenosastolle:</p><p><br></p><p>20.3. klo 18 Englanninkielinen satuhetki</p><p><br></p><p>#satakielikuukausi #HelloEspoo</p>", "sv": "<p>Till ära av Flerspråkighetsmånaden in ordnar biblioteket sagostunder på olika språk.</p><p>Välkommen att lyssna på sagor på barnavdelningen på Hagalunds bibliotek:</p><p><br></p><p>20.3 kl. 18 Sagostund på engelska</p><p><br></p><p>#satakielikuukausi #HelloEspoo</p>", "en": "<p>In celebration of Multilingual Month, the library is hosting storytimes in different languages.</p><p><br></p><p>Welcome to listen to stories at the children’s section of Tapiola Library:</p><p><br></p><p>20 March at 6 pm – Storytime in English</p><p><br></p><p>#satakielikuukausi #HelloEspoo</p>" }, "name": { "fi": "Satakielikuukauden Satuhetki Englanniksi", "sv": "Sagostund Satakielikuukausi", "en": "Story time Satakielikuukausi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agodescqdu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agodescpvu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "images": [ { "id": 1494783, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-02-06T08:15:01.718558Z", "last_modified_time": "2026-02-06T08:15:01.718734Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/653588b5-9fd6-4b56-98ea-e2a322376863.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "satuhetki ja satakielikuukauden logo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494783/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-02-06T08:25:10.614784Z", "last_modified_time": "2026-02-18T06:32:13.940642Z", "date_published": null, "start_time": "2026-03-16T16:00:00Z", "end_time": "2026-03-16T17: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": "Satuhetkiä kirjastoissa eri kielillä", "sv": "Sagostunder på biblioteket på olika språk", "en": "Storytimes at the library in different languages" }, "info_url": null, "description": { "fi": "<p>Satakielikuukauden kunniaksi kirjastossa järjestetään satuhetkiä eri kielillä.</p><p>Tervetuloa kuulemaan satuja Tapiolan kirjaston lastenosastolle:</p><p><br></p><p>16.3. klo 18 Ruotsinkielinen satuhetki </p><p>19.3. klo 18 Kiinankielinen satuhetki</p><p>20.3. klo 18 Englanninkielinen satuhetki</p><p><br></p><p>#satakielikuukausi #helloEspoo</p>", "sv": "<p>Till ära av Flerspråkighetsmånaden in ordnar biblioteket sagostunder på olika språk.</p><p>Välkommen att lyssna på sagor på barnavdelningen på Hagalunds bibliotek:</p><p>16.3 kl. 18 Sagostund på svenska</p><p>19.3 kl. 18 Sagostund på kinesiska</p><p>20.3 kl. 18 Sagostund på engelska</p><p><br></p><p>#satakielikuukausi #HelloEspoo</p>", "en": "<p>In celebration of Multilingual Month, the library is hosting storytimes in different languages.</p><p><br></p><p>Welcome to listen to stories at the children’s section of Tapiola Library:</p><p><br></p><p>16 March at 6 pm – Storytime in Swedish</p><p>19 March at 6 pm – Storytime in Chinese</p><p>20 March at 6 pm – Storytime in English</p><p><br></p><p>#satakielikuukausi #HelloEspoo</p>" }, "name": { "fi": "Satakielikuukauden Satuhetki Ruotsiksi", "sv": "Sagostund Satakielikuukausi", "en": "Story time Satakielikuukausi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agodescpvu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }