Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=117&weekday=6%2C7
{ "meta": { "count": 6598, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=118&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=116&weekday=6%2C7" }, "data": [ { "id": "espoo_le:agmk22inyu", "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:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-07-31T10:06:02.952111Z", "last_modified_time": "2025-07-31T10:06:02.952127Z", "date_published": null, "start_time": "2025-09-20T12:00:00Z", "end_time": "2025-09-20T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut", "sv": "Evenemangen genomförs i Espoo City Cultural Services", "en": "The events are carried out in Espoo City Cultural Services" }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries." }, "description": { "fi": "Duo Alex ja Joonatan<p><strong>Lauantai 20.9. klo 15 Lippulaivan kirjasto (Salonki) </strong></p><p>Duo Alex ja Joonatan yhdistää jazzin kultaiset klassikot ja rakastetut suomalaiset kappaleet – luvassa on musiikkia, joka saa jalan keinumaan ja mielen rauhoittumaan. </p><p><strong>Alex Ikonen </strong>on suomalainen laulaja. Hän on tullut tutuksi The Voice of Finlandin viidenneltä kaudelta. Sen jälkeen Alex on tehnyt ahkerasti keikkoja, joista merkittävimpiin lukeutuu esiintyminen vuoden 2018 Linnan juhlissa. Alex on erikoistunut esittämään ikivihreitä jazzstandardeja. Esikuvanaan hänellä on ollut muiden muassa Frank Sinatra. Alex osaa tulkita kappaleita omaperäisesti tavalla, joka tuo mieleen Broadwayn tähtiloiston. </p><p><strong>Joonatan Henriksson</strong> on 19-vuotias nuori jazzklarinetisti- ja pianisti, joka on nuoresta iästään huolimatta työskennellyt monenlaisissa kokoonpanoissa. Hän opiskelee nykyään Sibelius-Akatemian jazzosastolla ja on konsertoinut sekä kotimaisten että kansainvälisten huippumuusikoiden kanssa. Henrikssonille myönnettiin Jazzliiton ensimmäinen vuosittain jakama Taimi-palkinto vuonna 2023. </p><p><br></p><p><strong>Alex Ikonen, laulu </strong></p><p><strong>Joonatan Henriksson, piano </strong></p><p> </p><p>Yhteistyössä: Espoo Big Band ry </p><p><br></p><p><a href=\"https://apriljazz.fi/\">KOTISIVUT</a></p><p><a href=\"www.facebook.com/apriljazzfestival\">FACEBOOK</a></p><p><a href=\"https://www.instagram.com/apriljazzfestival/ \">INSTAGRAM</a></p><p><br></p><p>------</p><p><a href=\"https://www.espoo.fi/fi/kulttuuri-ja-vapaa-aika/kulttuuriketju\">Espoon kaupungin Kulttuuriketju</a> välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.</p><p>Kulttuuriketjun esityksiä järjestetään elokuusta joulukuulle.</p><p>Kirjastoihin Kulttuuriketju tuo upeat 41 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.</p><p>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".</p><p>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.</p><p>Tervetuloa nauttimaan kulttuurista!</p><p><br></p><p><br></p><p>Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut</p>", "sv": "Duo Alex och Joonatan<p><strong>Lördag 20.9 kl. 15 Lippulaiva bibliotek (Salonki) </strong></p><p>Duon Alex och Joonatan kombinerar jazzens gyllene klassiker och älskade finska sånger - det utlovas musik som får fötterna att gunga och sinnet att stillas. </p><p><strong>Alex Ikonen</strong> är en finländsk sångare. Han blev känd på den femte säsongen av The Voice of Finland. Efter det här har Alex flitigt gjort spelningar, av vilka den mest anmärkningsvärda var hans framträdande på slottsbalen 2018. Alex har specialiserat sig på att framföra evigt gröna jazzstandarder. Som förebild har han haft bland annat Frank Sinatra. Alex tolkar sånger på ett unikt sätt, som för tankarna till Broadways stjärnglans. </p><p><strong>Joonatan Henriksson</strong> är en 19-årig ung jazzklarinettist och -pianist, som trots sin unga ålder har arbetat i en mängd olika ensembler. Han studerar för tillfället på Sibeliusakademins jazzavdelning och har uppträtt tillsammans med både inhemska och internationella toppmusiker. Henriksson tilldelades som den första Jazzförbundets årliga Taimi-pris år 2023. </p><p><br></p><p><strong>Alex Ikonen, sång </strong></p><p><strong>Joonatan Henriksson, piano </strong></p><p><br></p><p>I samarbete med: Espoo Big Band ry </p><p><br></p><p><a href=\"https://apriljazz.fi/home\">HEMSIDAN</a></p><p><a href=\" www.facebook.com/apriljazzfestival\">FACEBOOK</a></p><p><a href=\"https://www.instagram.com/apriljazzfestival/ \">INSTAGRAM</a></p><p>-----</p><p><a href=\"https://www.espoo.fi/sv/kultur-och-fritid/kulturkedjan\">Esbo stads kulturkedjan</a> förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.</p><p>Kulturkedjans föreställningar arrangeras från augusti till december.</p><p>Kulturkedjan bjuder på fantastiska 41 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.</p><p>Du hittar alla föreställningar med sökordet \"kulturkedjan\".</p><p>Alla evenemang är öppna för alla och gratis.</p><p>Välkommen att njuta av kultur!</p><p><br></p><p>Evenemangen genomförs i Espoo City Cultural Services</p>", "en": "Duo Alex and Joonatan<p><strong>Saturday 20.9. at 15:00 Lippulaiva Library (Salonki) </strong></p><p>The duo Alex and Joonatan combine golden jazz classics and beloved Finnish songs - music that will make your feet sway and your mind calm down. </p><p><strong>Alex Ikonen</strong> is a Finnish singer. He is best known from the fifth season of The Voice of Finland. Since then, Alex has been busy performing, most notably at the 2018 Presidential Independence Day Reception. Alex specialises in performing classic jazz standards. His role models have included Frank Sinatra, among others. Alex's unique take on the songs really reminds you of the amazing talent you see on Broadway. </p><p><strong>Joonatan Henriksson</strong> is a 19-year-old young jazz clarinetist and pianist who, despite his young age, has worked in a wide range of ensembles. He is currently studying at the jazz department of the Sibelius Academy and has performed with both national and international top musicians. Henriksson was awarded the Jazz Union's first annual Taimi Prize in 2023. </p><p><br></p><p><strong>Alex Ikonen, vocals </strong></p><p><strong>Joonatan Henriksson, piano </strong></p><p><br></p><p>In collaboration with: Espoo Big Band ry </p><p><br></p><p><a href=\"https://apriljazz.fi/en/home\">HOME PAGE</a></p><p><a href=\"www.facebook.com/apriljazzfestival\">FACEBOOK</a></p><p><a href=\"https://www.instagram.com/apriljazzfestival/ \">INSTAGRAM</a></p><p><br></p><p>-----</p><p><a href=\"https://www.espoo.fi/en/culture-and-leisure/culture-chain\">Espoo City Culture Chain</a> offers art and culture services to elderly peopleI. Performances are also organised in libraries.</p><p>Cultural Chain performances are organized August to December.</p><p>The Cultural Chain brings an impressive 41 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.</p><p>You can find all performances by searching with the keyword \"cultural chain\".</p><p>All events are open to everyone and free of charge.</p><p>Welcome to enjoy the culture!</p><p><br></p><p>The events are carried out in Espoo City Cultural Services</p>" }, "info_url": { "fi": "https://www.espoo.fi/fi/tapahtumat-espoossa", "sv": "https://www.espoo.fi/sv/evenemang-i-esbo", "en": "https://www.espoo.fi/en/events-espoo" }, "name": { "fi": "Kulttuuriketju - Duo Alex ja Joonatan Lippulaivan kirjastossa", "sv": "Kulturkedjan - Duo Alex och Joonatan på Lippulaiva bibliotek ", "en": "Cultural Chain - Duo Alex and Joonatan at Lippulaiva Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22inyu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22irp4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22io7e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ipo4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ip6y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22iqou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22iq7i/?format=api" } ], "images": [ { "id": 1490171, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-28T10:33:48.466255Z", "last_modified_time": "2025-05-28T10:33:48.466266Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/47f3f5a2-00ed-4977-9958-ead5f9201c67.png", "name": "", "cropping": "84,0,351,267", "photographer_name": "", "alt_text": "AI:lla luotu kuva kirjapinosta, jossa yhden kirjan selkämyksessä lukee The english book club", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490171/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-28T10:42:07.264629Z", "last_modified_time": "2025-07-31T08:51:53.031748Z", "date_published": null, "start_time": "2025-08-28T15:00:00Z", "end_time": "2025-12-18T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Lukupiiri on kaikille, jotka rakastavat lukemista ja kirjoista keskustelemista.", "sv": "Klubben är för alla som älskar att läsa och diskutera böcker", "en": "\nThe club is for everyone who loves to read and discuss books. " }, "description": { "fi": "<p>Kaikilla on tilaisuus puhua lukupiirissä, pysymme aiheessa ja kunnioitamme moninaisia mielipiteitä.</p><p><br></p><p>28th of August - The Etruscan/Mika Waltari</p><p>25th of September - The school for good mothers/ Jessamine Chan</p><p>23rd of October - Strong female character/ by Fern Brady</p><p>27th of November - Moominpappa at sea/ by Tove Jansson</p><p>18th of December - Atlas of the heart/ by Brene Brown</p>", "sv": "<p>Alla får en chans att tala, vi håller oss till ämnet och vi visar artigt respekt för olika synpunkter.</p><p><br></p><p>28th of August - The Etruscan/Mika Waltari</p><p>25th of September - The school for good mothers/ Jessamine Chan</p><p>23rd of October - Strong female character/ by Fern Brady</p><p>27th of November - Moominpappa at sea/ by Tove Jansson</p><p>18th of December - Atlas of the heart/ by Brene Brown</p>", "en": "<p>Everyone has a chance to speak, we stay on topic and we politely respect diverse viewpoints.</p><p><br></p><p>28th of August - The Etruscan/Mika Waltari</p><p>25th of September - The school for good mothers/ Jessamine Chan</p><p>23rd of October - Strong female character/ by Fern Brady</p><p>27th of November - Moominpappa at sea/ by Tove Jansson</p><p>18th of December - Atlas of the heart/ by Brene Brown</p>" }, "info_url": null, "name": { "fi": "Englanninkielinen lukupiiri", "sv": "Engelska bokklubben", "en": "The English Book Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Aalto", "sv": "Aalto", "en": "Aalto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22irp4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22isxm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-07-31T07:43:31.284339Z", "last_modified_time": "2025-07-31T07:43:31.284357Z", "date_published": null, "start_time": "2025-10-04T12:00:00Z", "end_time": "2025-10-04T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "BraveHeart Agency ja MLL Keski-Espoon ", "sv": "BraveHeart Agency ja MLL Esbå", "en": "BraveHeart Agency and MLL central Espoo " }, "short_description": { "fi": "Lastenmusiikin supertähdet, Brady Rymer New Yorkista ja Maco Oey Tampereelta, vievät koko perheen vauhdikkaalle rock ‘n roll seikkailulle, ", "sv": "Tvåspråkig rock 'n roll-konsert för hela familjen!", "en": "Children's music superstars, Brady Rymer from New York and Maco Oey from Tampere, take the whole family for an action-packed rock 'n roll adventure! Singing " }, "description": { "fi": "Morjens! Hello! \n-Kaksikielinen rock ‘n roll konsertti koko perheelle!<p><strong>La 4.10 '25 klo 15, Entressen kirjasto</strong></p><p>Lastenmusiikin supertähdet, Brady Rymer New Yorkista ja Maco Oey Tampereelta, vievät koko perheen vauhdikkaalle rock ‘n roll seikkailulle, jossa leikitään ja lauletaan iloisesti sikin sokin suomen ja englannin kielellä! Ja mukaan mahtuu hieman tukiviittomiakin, joita pääsemme kaikki harjoittelemaan yhdessä.</p><p>Konsertin kuluessa tulemme huomaamaan, miten eri kulttuurien välinen ystävyys on supervoimaa, ja erilaisuus elämän värikkääksi tekevä rikkaus. Luvassa on lempeä kielikylpy ja positiivinen kokemus kansainvälistymisestä. Muusikot jäävät konsertin jälkeen vielä juttelemaan lasten kanssa, ja vastailemaan kysymyksiin.</p><p>Brady Rymer on 3-kertainen Grammy ehdokas, yksi Amerikan suosituimpia lastenmuusikoita ja alan pioneereja. Hän esiintyy nyt jo neljättä kertaa Suomessa! Brady viettää tänä vuonna 25 v juhlavuottaan koko perheen musiikin tekijänä, ja julkaisee kaksi uutta albumia tänä vuonna. <a href=\"www.bradyrymer.com \">www.bradyrymer.com </a></p><p>Maco Oey on palkittu ja Emma-ehdokkuudellakin huomioitu, rakastettu lastenmuusikko ja erityisluokan opettaja, jonka laulut ovat tuttuja myös Pikku Kakkosesta. Myös Macolta on ilmestynyt uusi lastenlevy tänä keväänä, yhteistyössä Suomen huippu jazz-muusikoiden kanssa.</p><p>Parivaljakon viime syksynä ensi-illan saanut suosittu yhteiskonsertti kiertue saa tänä vuonna jatkoa! Lämpimästi tervetuloa mukaan!</p><p> </p><p><a href=\"https://youtu.be/dzUbrPN7GLg?si=KRx-CI5EhEAPlpn7\">Bradyn uusi musiikkivideo \"Sunny Side Up\"</a></p><p><a href=\"https://youtu.be/ZN1zgiV2HCQ?si=sNL-yD7TjJHbIftX\">Macon laulu Minä, Sinä, Hän (akustinen live versio)</a></p><p><a href=\"https://www.youtube.com/watch?v=Uoh_u7POZQc\">Morjens! Hello! -konserttitunnelmia syksyltä 2024</a></p><p><br></p><p>Tapahtuman järjestäjinä BraveHeart Agency ja MLL Keski-Espoon </p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "Morjens! Hello! -Tvåspråkig rock 'n roll-konsert för hela familjen!<p><strong>Lördag 4.10 kl. 15, Entressen bibliotek</strong></p><p><br></p><p>Barnmusikens superstjärnor, Brady Rymer från New York och Maco Oey från Tammerfors, tar med hela familjen på ett fartfyllt rock 'n roll-äventyr där man leker och sjunger glatt på både finska och engelska! Det finns även plats för lite teckenspråk, som vi alla får öva på tillsammans.</p>", "en": "Morjens! Hello!\n-Bilingual rock n’ roll family concert!<p><strong>Sat 4th October 2025 at 3pm, Entresse library</strong></p><p>Children's music superstars, Brady Rymer from New York and Maco Oey from Tampere, take the whole family for an action-packed rock 'n roll adventure! Singing and playing all together with a joyful bubbling mix of Finnish and English languages! And there's even room for some sign language, which we will all practice together.</p><p>During the concert, we'll discover how friendship between different cultures is a superpower, and how diversity is a richness that makes life beautiful in all its colours. You can expect a gentle “language bath”, and a positive experience about international relationships. After the concert, musicians will stay meeting the children and answering any questions they might have.</p><p>Brady Rymer is a 3-time Grammy nominee, one of America's most popular children's musicians and pioneers in the field. He is now performing in Finland for the fourth time! He’s just celebrating his 25th year of making family music, and releasing two new albums this year. <a href=\"www.bradyrymer.com\">www.bradyrymer.com</a></p><p>Maco Oey is an award-winning and beloved children's musician and special education teacher, whose songs are also familiar from Finland’s legendary children’s TV program Pikku Kakkonen. Maco has also released a new children’s album this spring, in collaboration with top Finnish jazz musicians.</p><p>This is a sequel of the duo’s popular bilingual concert tour that premiered last fall! A warm welcome!</p><p> </p><p><a href=\"https://youtu.be/dzUbrPN7GLg?si=KRx-CI5EhEAPlpn7\">Brady’s new music video \"Sunny Side Up\"</a></p><p><a href=\"https://youtu.be/ZN1zgiV2HCQ?si=sNL-yD7TjJHbIftX\">Maco’s song Minä, Sinä, Hän (acoustic live version)</a></p><p><a href=\"Morjens! Hello! -Bilingual rock n’ roll family concert! Sat 4th October 2025 at 3pm, Entresse library Children's music superstars, Brady Rymer from New York and Maco Oey from Tampere, take the whole family for an action-packed rock 'n roll adventure! Singing and playing all together with a joyful bubbling mix of Finnish and English languages! And there's even room for some sign language, which we will all practice together. During the concert, we'll discover how friendship between different cultures is a superpower, and how diversity is a richness that makes life beautiful in all its colours. You can expect a gentle “language bath”, and a positive experience about international relationships. After the concert, musicians will stay meeting the children and answering any questions they might have. Brady Rymer is a 3-time Grammy nominee, one of America's most popular children's musicians and pioneers in the field. He is now performing in Finland for the fourth time! He’s just celebrating his 25th year of making family music, and releasing two new albums this year. www.bradyrymer.com Maco Oey is an award-winning and beloved children's musician and special education teacher, whose songs are also familiar from Finland’s legendary children’s TV program Pikku Kakkonen. Maco has also released a new children’s album this spring, in collaboration with top Finnish jazz musicians. This is a sequel of the duo’s popular bilingual concert tour that premiered last fall! A warm welcome! Brady’s new music video "Sunny Side Up" https://youtu.be/dzUbrPN7GLg?si=KRx-CI5EhEAPlpn7 Maco’s song Minä, Sinä, Hän (acoustic live version) https://youtu.be/ZN1zgiV2HCQ?si=sNL-yD7TjJHbIftX Morjens! Hello! -concert vibes from autumn 2024 Maco Oey & Brady Rymer | Bilingual Rock 'n' Roll Family Concert | (FIN & USA)\">Morjens! Hello! -concert vibes from autumn 2024</a></p><p> </p><p><br></p><p>#HelloEspoo</p>" }, "info_url": { "fi": "https://www.bradyrymer.com/", "sv": "https://www.bradyrymer.com/", "en": "https://www.bradyrymer.com/" }, "name": { "fi": "Morjens! Hello! -Kaksikielinen rock ‘n roll konsertti koko perheelle!", "sv": "Morjens! Hello! Tvåspråkig (eng&fin) rock 'n roll-konsert för hela familjen!", "en": "Morjens! Hello! -Bilingual rock n’ roll family concert!" }, "provider_contact_info": null, "location_extra_info": { "fi": "Estradi", "en": "Estradi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22isxm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22itum", "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:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-07-30T13:38:27.410113Z", "last_modified_time": "2025-07-30T13:38:27.410130Z", "date_published": null, "start_time": "2025-09-28T12:00:00Z", "end_time": "2025-09-28T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut", "sv": "Evenemangen genomförs i Espoo City Cultural Services", "en": "The events are carried out in Espoo City Cultural Services" }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries." }, "description": { "fi": "Elonsiivous <p><strong>Sunnuntai 28.9. klo 15.00 Lippulaivan kirjasto (Salonki) </strong></p><p>Aino (Marjut Toivanen) ja Raisa (Leena Rapola) asuvat kerrostaloasunnoissa toistensa naapurissa. On yhteinen saunavuoro ja yhteinen sanomalehtitilaus, tarkistuskäynnit ja pullapitkot. Mitä elämä olisikaan ilman pitkiä, yhteisiä iltapäiviä keskustelujen ja tanssihaaveiden siivittämänä? </p><p>Tarinat, joita tässä kahden naisen musiikkiakin sisältävässä näytelmässä on, ovat tosia. Janne Puustinen kirjoitti 65:n ikäihmisen syvähaastatteluiden pohjalta kahden hyvin erilaisen ihmisen ystävyyttä koskevan näytelmän. Tässä ollaan heidän elämässään sekä menneessä että nykyisyydessä. </p><p>Kun esitys kiersi 50 palvelu-, seniori- ja asukastaloa kuultiin usein: \"Voi kunpa nuoret ja lapsemmekin näkisivät tämän, jotta tietäisivät, että mekin olemme eläneet!\" Samaistumispintaa ovat hyvin erilaiset ja eri ikäiset löytäneet. Olemme todistaneet esityksen äärellä naurua, liikutusta ja voimaantumista. \"Näytelmä nostaa keskiöön kahden ikääntyneen naisen ystävyyden. Ystävykset kannattelevat ja rakastavat toisiaan, mutta seisovat kuitenkin omilla jaloillaan\" </p><p>------</p><p><a href=\"https://www.espoo.fi/fi/kulttuuri-ja-vapaa-aika/kulttuuriketju\">Espoon kaupungin Kulttuuriketju</a> välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.</p><p>Kulttuuriketjun esityksiä järjestetään elokuusta joulukuulle.</p><p>Kirjastoihin Kulttuuriketju tuo upeat 41 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.</p><p>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".</p><p>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.</p><p>Tervetuloa nauttimaan kulttuurista!</p><p><br></p><p><br></p><p>Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut</p>", "sv": "Elonsiivous <p><strong>Söndag 28.9. kl. 15:00 Lippulaivas bibliotek (Salonki) </strong></p><p>Aino (Marjut Toivanen) och Raisa (Leena Rapola) bor i ett höghus som varandras grannar. De har en gemensam bastutur och gemensamma dagstidningsprenumerationer, kontrollbesök och bullalängder. Vad skulle livet vara utan långa, gemensamma eftermiddagar drivna av konversationer och dansdrömmar? </p><p>Berättelserna som finns i den här pjäsen, som även innehåller inslag av musik, är sanna. Janne Puustinen har skrivit, baserat på djupintervjuer med 65 åldringar, en pjäs som handlar om två väldigt olika människors vänskap. Här ser vi deras liv, både i det förflutna och i nutiden. </p><p>Då föreställningen turnerade på 50 service-, senior- och invånarhus fick vi ofta höra: ”Oj, om bara unga och våra barn skulle få se det här, så skulle de veta att vi också har levt!” Mycket mångfaldigt folk i olika åldrar har hittat samstämmighet. Vi har upplevt skratt, sinnesrörelse och frigörelse under föreställningarna. ”Pjäsen fokuserar på två äldre kvinnors vänskap. Vännerna stöder och älskar varandra, men står ändå på sina egna ben.” </p><p>-----</p><p><a href=\"https://www.espoo.fi/sv/kultur-och-fritid/kulturkedjan\">Esbo stads kulturkedjan</a> förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.</p><p>Kulturkedjans föreställningar arrangeras från augusti till december.</p><p>Kulturkedjan bjuder på fantastiska 41 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.</p><p>Du hittar alla föreställningar med sökordet \"kulturkedjan\".</p><p>Alla evenemang är öppna för alla och gratis.</p><p>Välkommen att njuta av kultur!</p><p><br></p><p>Evenemangen genomförs i Espoo City Cultural Services</p>", "en": "Elonsiivous <p><strong>Sunday 28.9. at 15:00 Lippulaiva Library (Salonki) </strong></p><p>Aino (Marjut Toivanen) and Raisa (Leena Rapola) live next door to each other in an apartment building. They share a sauna, a newspaper subscription, check-ups, and braided sweet bread. What would life be without long afternoons together, full of conversation and dreams of dancing? </p><p>The stories of the two women in this play, which includes music, are true. Based on in-depth interviews with 65 seniors, Janne Puustinen wrote a play about the friendship between two very different people. Here we are in their lives, both past and present. </p><p>When the show toured 50 service, senior and community centres, these words were often heard: ‘I wish young people and even children could see this, so they’d know that we have lived too!’ People of all kinds and ages have found something in common. We witnessed laughter, emotion, and empowerment at the shows. \"The play focuses on the friendship between two elderly women. The friends support and love each other, but they can also stand on their own two feet.\" </p><p>-----</p><p><a href=\"https://www.espoo.fi/en/culture-and-leisure/culture-chain\">Espoo City Culture Chain</a> offers art and culture services to elderly peopleI. Performances are also organised in libraries.</p><p>Cultural Chain performances are organized August to December.</p><p>The Cultural Chain brings an impressive 41 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.</p><p>You can find all performances by searching with the keyword \"cultural chain\".</p><p>All events are open to everyone and free of charge.</p><p>Welcome to enjoy the culture!</p><p><br></p><p>The events are carried out in Espoo City Cultural Services</p>" }, "info_url": { "fi": "https://www.espoo.fi/fi/tapahtumat-espoossa", "sv": "https://www.espoo.fi/sv/evenemang-i-esbo", "en": "https://www.espoo.fi/en/events-espoo" }, "name": { "fi": "Kulttuuriketju - Elonsiivous näytelmä", "sv": "Kulturkedjan - Elonsiivous pjäs", "en": "Cultural Chain - Elonsiivous theater play" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22itum/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ixsy", "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: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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ivbm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ivwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22iwkq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22iw6m/?format=api" } ], "images": [ { "id": 153497, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-12-18T12:26:59.671662Z", "last_modified_time": "2024-12-18T12:26:59.671706Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e866118e-00f0-4ab6-85aa-2dee31104844.png", "name": "", "cropping": "0,42,640,681", "photographer_name": "", "alt_text": "Kuvassa lukukoira Halla nojaa kirja pinoon", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153497/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-07-30T12:15:32.933360Z", "last_modified_time": "2025-07-30T12:15:32.933377Z", "date_published": null, "start_time": "2025-09-04T14:00:00Z", "end_time": "2025-12-04T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Lukulemmikki Halla odottaa innolla lukijoita Lippulaivan kirjastoon klo 17:00 - 18:00.", "sv": "Läskeldjur Halla ser fram emot läsare på Lippulaiva biblioteket kl. 17:00 - 18:00.", "en": "Reading Buddy Halla is eagerly awaiting readers at Lippulaiva Library from 17:00 - 18:00." }, "description": { "fi": "<p>Lukukoira Halla odottaa innolla lukijoita Lippulaivan kirjastoon klo 17:00 - 18:00 .</p><p>Syksyn 2025 lukukerrat:</p><p>To 4.9.</p><p>To 2.10.</p><p>To 6.11.</p><p>To 4.12.</p><p>Tervetuloa!</p>", "sv": "<p>Läskeldjur Halla ser fram emot läsare på Lippulaiva biblioteket kl. 17:00 - 18:00.</p><p>Läsdagar hösten 2025:</p><p>Turs. 4.9.</p><p>Turs. 2.10.</p><p>Turs. 6.11.</p><p>Turs. 4.12.</p><p>Välkommen!</p>", "en": "<p>Reading Buddy Halla is eagerly awaiting readers at Lippulaiva Library from 17:00 to 18:00.</p><p>Autumn semester 2025:</p><p>Thursday 4.9.</p><p>Thursday 2.10.</p><p>Thursday 6.11.</p><p>Thursday 4.12.</p><p>Welcome!</p>" }, "info_url": null, "name": { "fi": "Lukukoira Halla", "sv": "Läskeldjur Halla", "en": "Reading Buddy Halla" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ixsy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66489", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/", "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/" }, "price": { "fi": "20 € / 17 €", "sv": "20 € / 17 €", "en": "20 € / 17 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 868294, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-27T09:15:00.674404Z", "last_modified_time": "2025-05-27T09:15:00.674423Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774146.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/868294/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-27T09:15:00.498270Z", "last_modified_time": "2025-07-30T09:14:28.260708Z", "date_published": null, "start_time": "2025-08-16T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.", "sv": "Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.", "en": "Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour." }, "description": { "fi": "<p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: n. 60 min, ei väliaikaa.<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-stoa-20301273/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Längd: 60 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-stoa-20301273/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 60 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-stoa-20301273/?affiliate=FSF\"> HERE</a></u></p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6CA8B484026C7A64E7580B1DA548CED1/Teatteri_Nirvana_HATKAT", "sv": "http://www.stoa.fi/sv/evenemang/event/6CA8B484026C7A64E7580B1DA548CED1/Teatteri_Nirvana_HATKAT_Sparken_", "en": "http://www.stoa.fi/en/events/event/6CA8B484026C7A64E7580B1DA548CED1/Teatteri_Nirvana_HATKAT" }, "name": { "fi": "Teatteri Nirvana: HATKAT", "sv": "Teatteri Nirvana: HATKAT (Sparken)", "en": "Teatteri Nirvana: HATKAT" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66489/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ju4q", "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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jnfq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jnty/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22joce/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22joqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jo6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jpmq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jp2u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jqiq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jqxe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jrhy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jr6i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jsui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jtcq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jtri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jt7q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22juou/?format=api" } ], "images": [ { "id": 150447, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T08:57:49.425341Z", "last_modified_time": "2024-03-15T08:57:49.425366Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/PerjantaileffaHelmet.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Sohvaryhmä ja isonäyttö, jossa elokuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150447/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-07-29T06:13:34.708024Z", "last_modified_time": "2025-07-29T06:13:34.708043Z", "date_published": null, "start_time": "2025-09-05T15:00:00Z", "end_time": "2025-12-19T17:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Kirjaston Jaminurkassa järjestetään perjantaisin klo 18 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!", "sv": "På fredagar kl. 18.00 i bibliotekets Jaminurkka är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!", "en": "On Fridays at 18:00 in the library's Jaminurkka, there is an open cinema screening for children and families. Bring your own drinks and snacks!" }, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Sellon kirjaston Jaminurkassa järjestetään joka perjantai klo 18:00 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä äänestämällä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Usein lapset valitsevat K7 elokuvan. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan.</p>", "sv": "<p>Välkommen att spendera fredagen med en film tillsammans! Varje fredag klockan 18:00 anordnas en öppen filmvisning för barn, familjer och de som gillar barn i Sello biblioteks Jaminurka. Filmerna väljs ut tillsammans genom att man röstar på barnens önskemål på biblioteket.</p><p>Filmerna är alla klassade S eller K7. Barn väljer ofta en K7-film. Presentationsspråket är finska. Undertexter väljs efter barnens önskemål.</p>", "en": "<p>Welcome to spend Friday with a movie together! Every Friday at 18:00, an open film screening is organized for children, families and those who like children in Sello library's Jaminurka. The films are chosen together by voting on the children's wishes in the library.</p><p>The movies are all rated S or K7. Children often choose a K7 movie. The presentation language is Finnish. Subtitles are chosen according to the wishes of the children.</p>" }, "info_url": null, "name": { "fi": "Lasten perjantaileffa", "sv": "Fredagsfilm för barn", "en": "Children's Friday movie" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ju4q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22j43y", "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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jvkm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jwci/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jwzq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jxra/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jyju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jzdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22jz3y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22j2ty/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22j3lu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22j4du/?format=api" } ], "images": [ { "id": 1490184, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-07-29T05:57:10.528056Z", "last_modified_time": "2025-07-29T05:57:10.528070Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/87b0edd7-4678-4b4f-9aa7-bf1c991f2125.jpg", "name": "Lukeminen", "cropping": "216,0,1064,848", "photographer_name": "Image by StockSnap from Pixabay", "alt_text": "Kuvassa aikuinen lukee kirjaa lapselle rottinkituolissa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490184/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-07-29T05:58:42.531712Z", "last_modified_time": "2025-07-29T05:58:42.531728Z", "date_published": null, "start_time": "2025-08-14T15:30:00Z", "end_time": "2025-12-19T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Englanninkielinen satuhetki", "sv": "Sagostund på engelska", "en": "Story time in English" }, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Luemme tarinoita lapsille aamuin ja illoin englanninkielellä.</p><p>Aamun satuhetket kerran kuukaudessa perjantaisin klo 9.30-10 (29.8, 26.9, 24.10, 21.11 & 19.12).</p><p>Illan satuhetket kerran kuukaudessa torstaisin klo 18.30-19 (14.8, 11.9, 9.10, 6.11 & 4.12).</p>", "sv": "<p>Välkommen till en öppen sagostund. Vi läser sagor för barn på engelska på morgnar och kvällar.</p><p>Morgonsagostund en gång i månaden på fredagar kl. 9.30-10 (29.8, 26.9, 24.10, 21.11 & 19.12).</p><p>Kvällssagostund en gång i månaden på torsdagar kl. 18.30-19 (14.8, 11.9, 9.10, 6.11 & 4.12).</p>", "en": "<p>Welcome to an open story time. We read stories to children in English in the mornings and evenings.</p><p>Morning story time once a month on fridays at 9.30-10 (29.8, 26.9, 24.10, 21.11 & 19.12).</p><p>Evening story time once a month on thursdays at 18.30-19 (14.8, 11.9, 9.10, 6.11 & 4.12).</p>" }, "info_url": null, "name": { "fi": "Englanninkielinen satuhetki", "sv": "Sagostund på engelska", "en": "Story time in English" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22j43y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ke5i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-06T11:13:16.819324Z", "last_modified_time": "2025-07-28T07:50:47.341647Z", "date_published": null, "start_time": "2025-06-06T13:00:00Z", "end_time": "2025-08-31T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Keramiikasta tehtyä kukkaunelmaa ja väriloistoa " }, "description": { "fi": "<p>Keramiikasta tehtyä kukkaunelmaa ja väriloistoa tarjolla kirjaston vitriinissä 6.6.-31.8.2025 välisenä aikana kirjaston aukioloaikoina.</p>" }, "info_url": null, "name": { "fi": "Keramiikkanäyttely: Kukat, jotka jäivät" }, "provider_contact_info": null, "location_extra_info": { "fi": "Vitriini / Aula " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ke5i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22kh3i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kfjy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kfzy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kgju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kgzq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22khju/?format=api" } ], "images": [ { "id": 1490186, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-07-28T07:23:23.735285Z", "last_modified_time": "2025-07-28T07:23:23.735299Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/11f162c9-2bb0-4a75-ac4c-a32b0d502f99.png", "name": "", "cropping": "29,0,458,429", "photographer_name": "", "alt_text": "Piirroseläimiä lukemassa kirjaa ja teksti \"albanialainen satuhetki\" albanian kielellä kirjoitettuna.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490186/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-07-28T07:33:13.636338Z", "last_modified_time": "2025-07-28T07:33:13.636354Z", "date_published": null, "start_time": "2025-08-28T07:30:00Z", "end_time": "2025-12-18T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Mirë se vini në bibliotekën Ison Omena,\n ku do të mbajmë përralla për fëmijë në gjuhën shqipe." }, "description": { "fi": "<p>Mirë se vini në bibliotekën Ison Omena,</p><p> ku do të mbajmë përralla për fëmijë në gjuhën shqipe.</p><p>Përrallat do të mbahen një herë në muaj, në datat:</p><p>28.8, 25.9, 29.10, 27.11, 18.12</p><p>nga ora 10:30 deri në 11:30</p><p><br></p><p>Tervetuloa Ison Omenan kirjastoon,</p><p> missä pidämme satuhetkiä lapsille albaniaksi.</p><p> Satuhetket pidetään kerran kuussa seuraavina päivinä:</p><p> 28.8, 25.9, 29.10, 27.11, 18.12</p><p> kello 10:30–11:30.</p>" }, "info_url": null, "name": { "fi": "Përralla në gjuhën shqipe - Albaniankielinen satuhetki" }, "provider_contact_info": null, "location_extra_info": { "fi": "Saturiutta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kh3i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22kmia", "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:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kioi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kjim/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kkau/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kkza/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22klqi/?format=api" } ], "images": [ { "id": 150389, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-19T10:29:23.628269Z", "last_modified_time": "2024-03-19T10:29:23.628303Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Satuhetki3.png", "name": "", "cropping": "62,0,331,268", "photographer_name": "", "alt_text": "Kuvassa on lapsia lukemassa kirjoja. Yksi lapsi istuu kynien päällä, toinen kirjojen ja yksi lattialla.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150389/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-07-25T12:04:43.563392Z", "last_modified_time": "2025-07-25T12:04:43.563408Z", "date_published": null, "start_time": "2025-08-21T14:00:00Z", "end_time": "2025-12-18T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa kuuntelemaan satuja englanniksi!\n\nSatuhetket torstaisin 21.8., 18.9., 23.10., 20.11., 18.12. klo 17-17.30.", "sv": "Välkommen att lyssna på sagor på engelska!\n\nSagostunder på torsdagar 21.8., 18.9., 23.10., 20.11., 18.12. kl. 17-17.30.", "en": "Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in! " }, "description": { "fi": "<p>Tervetuloa kuuntelemaan satuja englanniksi!</p><p>Satuhetket torstaisin 21.8., 18.9., 23.10., 20.11., 18.12. klo 17-17.30.</p>", "sv": "<p>Välkommen att lyssna på sagor på engelska!</p><p>Sagostunder på torsdagar 21.8., 18.9., 23.10., 20.11., 18.12. kl. 17-17.30.</p>", "en": "<p>Welcome to a Story time in Lippulaiva Library! The Story times are targeted to children around 3-6 years old. Parents are also allowed to join in!</p><p>The Story times will be held on Thursdays 21.8., 18.9., 23.10., 20.11., 18.12. at 5 pm. Welcome!</p>" }, "info_url": null, "name": { "fi": "Englanninkielinen satuhetki", "sv": "Sagostund på engelska", "en": "Story time in english" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kmia/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22kwba", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22km7y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22knmu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22knyy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kofe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22korm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ko64/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kpmq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kp54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kqnq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kq3i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22krhy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22krui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ksby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kspe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ks5u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kuk4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kuzm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kvgy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kvua/?format=api" } ], "images": [ { "id": 150472, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T07:34:03.349624Z", "last_modified_time": "2024-03-13T07:34:03.349649Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Entressen_lukukoirat.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kaksi mäyräkoiraa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150472/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-07-24T10:32:48.738585Z", "last_modified_time": "2025-07-24T10:32:48.738602Z", "date_published": null, "start_time": "2025-08-14T10:00:00Z", "end_time": "2025-12-18T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": " Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.", "sv": " Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.", "en": " If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader." }, "description": { "fi": "<p>Hei,</p><p>Olemme Nekku ja Pätkis, Entressen lukukoirat. Tykkäämme rapsuttelusta ja kuuntelemisesta. Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.</p><p>Kaikki ovat tervetulleita rapsuttamaan!</p><p>Nekku ja Pätkis ovat tavattavissa Entressen lastenosastolla torstaisin klo 13-15.</p><p>Tervetuloa!</p>", "sv": "<p>Hej på er,</p><p>Vi är Nekku och Pätkis, Entresses läshundar. Vi gillar att bli klappade och lyssnade på. Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.</p><p>Alla är välkomna att klösa!</p><p>Nekku och Pätkis finns på barnavdelningen Entresse på torsdagar från den kl 13-15.</p><p>Varmt välkomna!</p>", "en": "<p>Hello,</p><p>We are Nekku and Pätkis, Entresse's reading dogs. We like to be petted and listened to. If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader.</p><p>Everyone is welcome to scratch!</p><p>Nekku and Pätkis can be found in the Entresse children's section on Thursdays at 13-15</p>" }, "info_url": null, "name": { "fi": "Lukukoirat Nekku ja Pätkis tavattavissa", "sv": "Läshundarna Nekku och Pätkis kan träffas", "en": "Meet the reading dogs Nekku and Pätkis" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenosasto", "sv": "barnavdelningen", "en": "children's department" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kwba/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22kxiu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-23T10:59:35.014978Z", "last_modified_time": "2025-07-23T11:00:27.231500Z", "date_published": null, "start_time": "2025-07-29T05:00:00Z", "end_time": "2025-08-17T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Lahja Kumpulan maalaukset ja runot ovat syntyneet luontokokemusten inspiroimana. " }, "description": { "fi": "Lahja Kumpula: Valon jälkiä - näyttely Galleria Betonissa 29.7.-17.8.2025.<p><br></p><p>Valon jälkiä -näyttely kokoaa tunnelmia kevään ja kesän luonnosta. Lahja Kumpulan maalaukset ja runot ovat syntyneet luontokokemusten inspiroimana. </p><p>Teoksista on aistittavissa merellisiä ja metsäisiä teemoja, kuten purjeiden ja pilvien heijastuksia, kaarnan pintaa sekä veden ja valon liikettä. </p><p>Taiteilijan toiveena on, että näyttelyn maalaukset saisivat luoda ympärilleen toivoa ja iloa ja jättää katsojaan valon jäljen.</p>" }, "info_url": null, "name": { "fi": "Lahja Kumpula: Valon jälkiä - näyttely " }, "provider_contact_info": null, "location_extra_info": { "fi": "Galleria Betoni" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kxiu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66787", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/race-horse-company/race-horse-company-karlos-karvanaama-ja-erikoisten-elaeinten-hullunkurinen-sirkus-3944338/", "sv": "https://www.lippu.fi/artist/race-horse-company/race-horse-company-karlos-karvanaama-ja-erikoisten-elaeinten-hullunkurinen-sirkus-3944338/", "en": "https://www.lippu.fi/artist/race-horse-company/race-horse-company-karlos-karvanaama-ja-erikoisten-elaeinten-hullunkurinen-sirkus-3944338/" }, "price": { "fi": "10€ / 6€", "sv": "10€ / 6€", "en": "10€ / 6€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1323074, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-23T08:14:20.932107Z", "last_modified_time": "2025-07-23T08:14:20.932129Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774009.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1323074/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-23T08:14:20.810407Z", "last_modified_time": "2025-07-23T08:14:21.095466Z", "date_published": null, "start_time": "2025-12-14T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Karlos Karvanaama ja erikoisten eläinten hullunkurinen sirkus on taaperoikäisille ja vanhemmille sopiva sirkusesitys.", "sv": "Karlos Karvanaama och de speciella djurens tokroliga cirkus är en cirkusföreställning som lämpar sig för småbarn och deras föräldrar.", "en": "Karlos Karvanaama ja erikoisten eläinten hullunkurinen sirkus is a circus performance for toddlers accompanied by their parents." }, "description": { "fi": "<p>Karlos Karvanaama ja erikoisten eläinten hullunkurinen sirkus on taaperoikäisille ja vanhemmille sopiva sirkusesitys.</p><p>Esityksessä parrakas sirkustirehtööri seikkailee eläinsirkuksensa kanssa. Karlos kavereineen vierailee niin veden alla, maan päällä, ilmassa kuin avaruudessakin. <br>Lavalla tirehtöörin kanssa esiintyy monipuolinen sirkuslajien kirjo erikoisten eläinten tähdittämänä sekä fyysisellä komiikalla kyllästettynä.<br> <br>Esityksen kesto on noin 30 min, jonka jälkeen yleisö saa tervehtiä tähtiesiintyjiä lavalla. <br> Esiintyjä: Kalle Lehto</p><p>Genre: sirkus<br>Kesto: 30-45min<br>Kieli: sanaton<br>Ikäsuositus: 2+<br>Liput: 6 eur / lapset, 10 eur / 12+<br>Päiväkotinäytökset: vapaa pääsy, pakolliset ennakkoilmoittautumiset kultus.fi 13.8. klo 10 alkaen. HUOM! Osallistujat arvotaan ilmoittautuneiden joukosta.</p>", "sv": "<p>Karlos Karvanaama och de speciella djurens tokroliga cirkus är en cirkusföreställning som lämpar sig för småbarn och deras föräldrar.</p><p>I föreställningen är den skäggiga cirkusdirektören på äventyr med sin djurcirkus. Karlos med sina kompisar befinner sig under vatten, ovan jord, uppe i luften, i rymden ej att förglömma. <br>Tillsammans med direktören uppträder en mångsidig blandning av cirkusgrenar i ledning av speciella djur på scenen med en gnutta fysisk komik.<br> <br>Föreställningens längd är cirka 30 min., varefter publiken kan träffa uppträdarna på scenen.<br> <br>Längd: 30–45 min.<br>Språk: ordlös<br>Åldersrekommendation: 2+</p>", "en": "<p>Karlos Karvanaama ja erikoisten eläinten hullunkurinen sirkus is a circus performance for toddlers accompanied by their parents.</p><p>In the show, a bearded circus director goes on adventures with his circus animals. Karlos and his friends adventure underwater, on land, in the air and in space. <br>A diverse range of circus animals perform on stage with the ringmaster, starring extraordinary animals and imbued with physical comedy.<br> <br>The performance will last about 30 minutes, after which the audience will be able to meet the stars on stage.<br> <br>Duration: 30–45 minutes<br>Language: Non-verbal<br>Recommended age: 2+</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/AF2C2A68AC58D2D6926611F4871AA526/Karlos_Karvanaama_ja_erikoisten_elainten_hullunkurinen_sirkus", "sv": "http://www.stoa.fi/sv/evenemang/event/AF2C2A68AC58D2D6926611F4871AA526/Karlos_Karvanaama_och_de_speciella_djurens_tokroliga_cirkus", "en": "http://www.stoa.fi/en/events/event/AF2C2A68AC58D2D6926611F4871AA526/Karlos_Karvanaama_ja_erikoisten_elainten_hullunkurinen_sirkus_Karlos_Karvanaama_and_the_comical_circus_of_strange_creatures_" }, "name": { "fi": "Karlos Karvanaama ja erikoisten eläinten hullunkurinen sirkus – Race Horse Company", "sv": "Karlos Karvanaama och de speciella djurens tokroliga cirkus – Race Horse Company", "en": "Karlos Karvanaama ja erikoisten eläinten hullunkurinen sirkus (Karlos Karvanaama and the comical circus of strange creatures) – Race Horse Company" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66787/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66786", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/race-horse-company/race-horse-company-karlos-karvanaama-ja-erikoisten-elaeinten-hullunkurinen-sirkus-3944338/", "sv": "https://www.lippu.fi/artist/race-horse-company/race-horse-company-karlos-karvanaama-ja-erikoisten-elaeinten-hullunkurinen-sirkus-3944338/", "en": "https://www.lippu.fi/artist/race-horse-company/race-horse-company-karlos-karvanaama-ja-erikoisten-elaeinten-hullunkurinen-sirkus-3944338/" }, "price": { "fi": "10€ / 6€", "sv": "10€ / 6€", "en": "10€ / 6€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1323073, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-23T08:14:20.430991Z", "last_modified_time": "2025-07-23T08:14:20.431007Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774007.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1323073/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-23T08:14:20.294658Z", "last_modified_time": "2025-07-23T08:14:20.617453Z", "date_published": null, "start_time": "2025-12-14T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Karlos Karvanaama ja erikoisten eläinten hullunkurinen sirkus on taaperoikäisille ja vanhemmille sopiva sirkusesitys.", "sv": "Karlos Karvanaama och de speciella djurens tokroliga cirkus är en cirkusföreställning som lämpar sig för småbarn och deras föräldrar.", "en": "Karlos Karvanaama ja erikoisten eläinten hullunkurinen sirkus is a circus performance for toddlers accompanied by their parents." }, "description": { "fi": "<p>Karlos Karvanaama ja erikoisten eläinten hullunkurinen sirkus on taaperoikäisille ja vanhemmille sopiva sirkusesitys.</p><p>Esityksessä parrakas sirkustirehtööri seikkailee eläinsirkuksensa kanssa. Karlos kavereineen vierailee niin veden alla, maan päällä, ilmassa kuin avaruudessakin. <br>Lavalla tirehtöörin kanssa esiintyy monipuolinen sirkuslajien kirjo erikoisten eläinten tähdittämänä sekä fyysisellä komiikalla kyllästettynä.<br> <br>Esityksen kesto on noin 30 min, jonka jälkeen yleisö saa tervehtiä tähtiesiintyjiä lavalla. <br> Esiintyjä: Kalle Lehto</p><p>Genre: sirkus<br>Kesto: 30-45min<br>Kieli: sanaton<br>Ikäsuositus: 2+<br>Liput: 6 eur / lapset, 10 eur / 12+<br>Päiväkotinäytökset: vapaa pääsy, pakolliset ennakkoilmoittautumiset kultus.fi 13.8. klo 10 alkaen. HUOM! Osallistujat arvotaan ilmoittautuneiden joukosta.</p>", "sv": "<p>Karlos Karvanaama och de speciella djurens tokroliga cirkus är en cirkusföreställning som lämpar sig för småbarn och deras föräldrar.</p><p>I föreställningen är den skäggiga cirkusdirektören på äventyr med sin djurcirkus. Karlos med sina kompisar befinner sig under vatten, ovan jord, uppe i luften, i rymden ej att förglömma. <br>Tillsammans med direktören uppträder en mångsidig blandning av cirkusgrenar i ledning av speciella djur på scenen med en gnutta fysisk komik.<br> <br>Föreställningens längd är cirka 30 min., varefter publiken kan träffa uppträdarna på scenen.<br> <br>Längd: 30–45 min.<br>Språk: ordlös<br>Åldersrekommendation: 2+</p>", "en": "<p>Karlos Karvanaama ja erikoisten eläinten hullunkurinen sirkus is a circus performance for toddlers accompanied by their parents.</p><p>In the show, a bearded circus director goes on adventures with his circus animals. Karlos and his friends adventure underwater, on land, in the air and in space. <br>A diverse range of circus animals perform on stage with the ringmaster, starring extraordinary animals and imbued with physical comedy.<br> <br>The performance will last about 30 minutes, after which the audience will be able to meet the stars on stage.<br> <br>Duration: 30–45 minutes<br>Language: Non-verbal<br>Recommended age: 2+</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/C4B15AE0C178D2304C9931ADEF6255FE/Karlos_Karvanaama_ja_erikoisten_elainten_hullunkurinen_sirkus", "sv": "http://www.stoa.fi/sv/evenemang/event/C4B15AE0C178D2304C9931ADEF6255FE/Karlos_Karvanaama_och_de_speciella_djurens_tokroliga_cirkus", "en": "http://www.stoa.fi/en/events/event/C4B15AE0C178D2304C9931ADEF6255FE/Karlos_Karvanaama_ja_erikoisten_elainten_hullunkurinen_sirkus_Karlos_Karvanaama_and_the_comical_circus_of_strange_creatures_" }, "name": { "fi": "Karlos Karvanaama ja erikoisten eläinten hullunkurinen sirkus – Race Horse Company", "sv": "Karlos Karvanaama och de speciella djurens tokroliga cirkus – Race Horse Company", "en": "Karlos Karvanaama ja erikoisten eläinten hullunkurinen sirkus (Karlos Karvanaama and the comical circus of strange creatures) – Race Horse Company" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66786/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22kxwu", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22lbiy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490190, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-22T07:26:26.082350Z", "last_modified_time": "2025-07-22T07:26:26.082363Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8d38e5fa-f5e8-4201-ace4-dcdb835ede1a.png", "name": "", "cropping": "70,0,637,566", "photographer_name": "", "alt_text": "Lasten elokuva kirjastossa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490190/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-07-22T07:26:49.590609Z", "last_modified_time": "2025-07-22T07:26:49.590626Z", "date_published": null, "start_time": "2025-12-20T10:00:00Z", "end_time": "2025-12-20T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa.", "sv": "Barnfilm varje lördag på biblioteket.", "en": "Children's movie every Saturday at the library." }, "description": { "fi": "<p>Lasten elokuva kirjaston VOX-tilassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä.</p><p>Elokuvan ikäraja on enintään K-7. </p><p><br></p><p>Tervetuloa!</p>", "sv": "<p>Barnfilm i bibliotekets VOX-utrymme varje lördag kl. 12:00.</p><p>Ta med egen dryck och snacks! Filmen är på finska.</p><p><br></p><p>Filmens åldersgräns är högst 7 år (K-7).</p><p><br></p><p>Välkommen!</p>", "en": "<p>Children's movie in the library's VOX space every Saturday at 12 pm.</p><p>Bring your own drinks and snacks! The movie is in Finnish.</p><p>The age limit for a film is seven or less.</p><p><br></p><p>Welcome to the movie!</p>" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home?lng=fi#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home?lng=sv#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home?lng=en-gb#84834" }, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kxwu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22kyeu", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22lbiy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490190, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-22T07:26:26.082350Z", "last_modified_time": "2025-07-22T07:26:26.082363Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8d38e5fa-f5e8-4201-ace4-dcdb835ede1a.png", "name": "", "cropping": "70,0,637,566", "photographer_name": "", "alt_text": "Lasten elokuva kirjastossa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490190/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-07-22T07:26:49.104876Z", "last_modified_time": "2025-07-22T07:26:49.104891Z", "date_published": null, "start_time": "2025-12-13T10:00:00Z", "end_time": "2025-12-13T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa.", "sv": "Barnfilm varje lördag på biblioteket.", "en": "Children's movie every Saturday at the library." }, "description": { "fi": "<p>Lasten elokuva kirjaston VOX-tilassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä.</p><p>Elokuvan ikäraja on enintään K-7. </p><p><br></p><p>Tervetuloa!</p>", "sv": "<p>Barnfilm i bibliotekets VOX-utrymme varje lördag kl. 12:00.</p><p>Ta med egen dryck och snacks! Filmen är på finska.</p><p><br></p><p>Filmens åldersgräns är högst 7 år (K-7).</p><p><br></p><p>Välkommen!</p>", "en": "<p>Children's movie in the library's VOX space every Saturday at 12 pm.</p><p>Bring your own drinks and snacks! The movie is in Finnish.</p><p>The age limit for a film is seven or less.</p><p><br></p><p>Welcome to the movie!</p>" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home?lng=fi#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home?lng=sv#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home?lng=en-gb#84834" }, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kyeu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ky7u", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22lbiy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490190, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-22T07:26:26.082350Z", "last_modified_time": "2025-07-22T07:26:26.082363Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8d38e5fa-f5e8-4201-ace4-dcdb835ede1a.png", "name": "", "cropping": "70,0,637,566", "photographer_name": "", "alt_text": "Lasten elokuva kirjastossa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490190/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-07-22T07:26:48.451515Z", "last_modified_time": "2025-07-22T07:26:48.451534Z", "date_published": null, "start_time": "2025-11-29T10:00:00Z", "end_time": "2025-11-29T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa.", "sv": "Barnfilm varje lördag på biblioteket.", "en": "Children's movie every Saturday at the library." }, "description": { "fi": "<p>Lasten elokuva kirjaston VOX-tilassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä.</p><p>Elokuvan ikäraja on enintään K-7. </p><p><br></p><p>Tervetuloa!</p>", "sv": "<p>Barnfilm i bibliotekets VOX-utrymme varje lördag kl. 12:00.</p><p>Ta med egen dryck och snacks! Filmen är på finska.</p><p><br></p><p>Filmens åldersgräns är högst 7 år (K-7).</p><p><br></p><p>Välkommen!</p>", "en": "<p>Children's movie in the library's VOX space every Saturday at 12 pm.</p><p>Bring your own drinks and snacks! The movie is in Finnish.</p><p>The age limit for a film is seven or less.</p><p><br></p><p>Welcome to the movie!</p>" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home?lng=fi#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home?lng=sv#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home?lng=en-gb#84834" }, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ky7u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22kzni", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22lbiy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490190, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-22T07:26:26.082350Z", "last_modified_time": "2025-07-22T07:26:26.082363Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8d38e5fa-f5e8-4201-ace4-dcdb835ede1a.png", "name": "", "cropping": "70,0,637,566", "photographer_name": "", "alt_text": "Lasten elokuva kirjastossa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490190/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-07-22T07:26:48.290288Z", "last_modified_time": "2025-07-22T07:26:48.290304Z", "date_published": null, "start_time": "2025-11-22T10:00:00Z", "end_time": "2025-11-22T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa.", "sv": "Barnfilm varje lördag på biblioteket.", "en": "Children's movie every Saturday at the library." }, "description": { "fi": "<p>Lasten elokuva kirjaston VOX-tilassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä.</p><p>Elokuvan ikäraja on enintään K-7. </p><p><br></p><p>Tervetuloa!</p>", "sv": "<p>Barnfilm i bibliotekets VOX-utrymme varje lördag kl. 12:00.</p><p>Ta med egen dryck och snacks! Filmen är på finska.</p><p><br></p><p>Filmens åldersgräns är högst 7 år (K-7).</p><p><br></p><p>Välkommen!</p>", "en": "<p>Children's movie in the library's VOX space every Saturday at 12 pm.</p><p>Bring your own drinks and snacks! The movie is in Finnish.</p><p>The age limit for a film is seven or less.</p><p><br></p><p>Welcome to the movie!</p>" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home?lng=fi#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home?lng=sv#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home?lng=en-gb#84834" }, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kzni/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22kz3e", "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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22lbiy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490190, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-22T07:26:26.082350Z", "last_modified_time": "2025-07-22T07:26:26.082363Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8d38e5fa-f5e8-4201-ace4-dcdb835ede1a.png", "name": "", "cropping": "70,0,637,566", "photographer_name": "", "alt_text": "Lasten elokuva kirjastossa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490190/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-07-22T07:26:47.889510Z", "last_modified_time": "2025-07-22T07:26:47.889528Z", "date_published": null, "start_time": "2025-11-15T10:00:00Z", "end_time": "2025-11-15T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa.", "sv": "Barnfilm varje lördag på biblioteket.", "en": "Children's movie every Saturday at the library." }, "description": { "fi": "<p>Lasten elokuva kirjaston VOX-tilassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä.</p><p>Elokuvan ikäraja on enintään K-7. </p><p><br></p><p>Tervetuloa!</p>", "sv": "<p>Barnfilm i bibliotekets VOX-utrymme varje lördag kl. 12:00.</p><p>Ta med egen dryck och snacks! Filmen är på finska.</p><p><br></p><p>Filmens åldersgräns är högst 7 år (K-7).</p><p><br></p><p>Välkommen!</p>", "en": "<p>Children's movie in the library's VOX space every Saturday at 12 pm.</p><p>Bring your own drinks and snacks! The movie is in Finnish.</p><p>The age limit for a film is seven or less.</p><p><br></p><p>Welcome to the movie!</p>" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home?lng=fi#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home?lng=sv#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home?lng=en-gb#84834" }, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22kz3e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }