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=19®istration__remaining_attendee_capacity__isnull=true
{ "meta": { "count": 34484, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=20®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=18®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "kulke:69121", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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/kulke:755/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24,80 € / 20 €", "sv": "24,80 € / 20 €", "en": "24,80 € / 20 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684824/", "sv": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684824/", "en": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684824/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384801, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T11:13:55.497408Z", "last_modified_time": "2026-06-01T11:13:55.497423Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789947.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384801/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T11:13:55.395144Z", "last_modified_time": "2026-06-12T16:14:05.203258Z", "date_published": null, "start_time": "2026-09-09T15: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, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys." }, "provider": null, "description": { "fi": "<p>Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys.</p><p>Absurdissa, runollisessa ja fyysisessä teoksessa sukelletaan dystooppisen scifin avulla nykyajan ja nykyihmisen analyysiin. Mitä jos lähes kaikki tuhoutuisi ja jäljelle jäävä länsimainen kulttuurihistoria olisi yhden kännykän ja muistisairaan esitystaiteilijaryhmän varassa?</p><p>Katastrofista selviytyneet taiteilijat muistavat vain palasia romahdusta edeltäneeltä ajalta. Yksi niistä on kaikkialla vaikuttanut sosiaalinen media, toinen entistä hullumpien johtajien fanaattinen ja absurdi puhetulva ja kolmas ihmisten piittaamattomuus lisääntyvästä ekologisesta ja inhimillisestä tuhosta. Yksityisiä ja yleisiä muistoja leimaa toisaalta materiaalinen runsaus, toisaalta jäytävä yksinäisyys, kasvava epätasa-arvo, globaalin solidaarisuuden puute ja ydinasepelko.</p><p>Ryhmän suuri tehtävä on säilyttää ne rippeet, joita suomalaisen taiteen historiasta on yhä jäljellä. Päämääränä on pohjoisen huhuttu paratiisi, jossa ilma on yhä siedettävän viileää ja ravintoa riittää kaikille. Siellä suomalaisen kulttuurin voisi herättää uudelleen henkiin, vaikka kollektiivinen muistinmenetys asettaa haasteita heidän pyhälle etsinnälleen.<br> <br>Tuotanto: Agit-Cirk ja Kanneltalo<br>Esiintyjät: Jenni Lehtinen, Youssef Alkhatib, Ulla Raitio, Sasu Peistola<br>Käsikirjoitus ja Ohjaus: Jussi Moila<br>Valosuunnittelu: June Horton-White<br>Äänisuunnittelu: Antero Huttunen, konsultointi Petteri Rajanti<br>Pukusuunnittelu: Kaisa Kemikoski<br>Koreografia, joukkokohtaukset: Natasha Lommi <br>Valokuvat: Johanna Julia Portraits<br>Alkuperäinen konsepti ja suunnittelu: Sasu Peistola, Jenni Lehtinen, Ulla Raitio, Jari Virman, Henry Hanikka, Juha Tuisku<br>Tukijat: Jenny ja Antti Wihurin Rahasto, Taide ja Kulttuurivirasto (Taike), Suomen Kulttuurirahasto, Cirko - Uuden Sirkuksen keskus, Sirkussali</p>" }, "name": { "fi": "Agit-Cirk: RapuRequiem", "sv": "Agit-Cirk: RapuRequiem", "en": "Agit-Cirk: RapuRequiem" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1FB20522A30CCAECFEE0BB9DD6AE333D/Agit-Cirk_RapuRequiem", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1FB20522A30CCAECFEE0BB9DD6AE333D/Agit-Cirk_RapuRequiem", "en": "http://www.kanneltalo.fi/en/events/event/1FB20522A30CCAECFEE0BB9DD6AE333D/Agit-Cirk_RapuRequiem" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69121/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68497", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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/kulke:755/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24,80 € / 20 €", "sv": "24,80 € / 20 €", "en": "24,80 € / 20 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684823/", "sv": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684823/", "en": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684823/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384800, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T11:13:55.023883Z", "last_modified_time": "2026-06-01T11:13:55.023899Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789946.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384800/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T11:13:54.937137Z", "last_modified_time": "2026-06-12T16:14:04.839351Z", "date_published": null, "start_time": "2026-09-08T15: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, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys." }, "provider": null, "description": { "fi": "<p>Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys.</p><p>Absurdissa, runollisessa ja fyysisessä teoksessa sukelletaan dystooppisen scifin avulla nykyajan ja nykyihmisen analyysiin. Mitä jos lähes kaikki tuhoutuisi ja jäljelle jäävä länsimainen kulttuurihistoria olisi yhden kännykän ja muistisairaan esitystaiteilijaryhmän varassa?</p><p>Katastrofista selviytyneet taiteilijat muistavat vain palasia romahdusta edeltäneeltä ajalta. Yksi niistä on kaikkialla vaikuttanut sosiaalinen media, toinen entistä hullumpien johtajien fanaattinen ja absurdi puhetulva ja kolmas ihmisten piittaamattomuus lisääntyvästä ekologisesta ja inhimillisestä tuhosta. Yksityisiä ja yleisiä muistoja leimaa toisaalta materiaalinen runsaus, toisaalta jäytävä yksinäisyys, kasvava epätasa-arvo, globaalin solidaarisuuden puute ja ydinasepelko.</p><p>Ryhmän suuri tehtävä on säilyttää ne rippeet, joita suomalaisen taiteen historiasta on yhä jäljellä. Päämääränä on pohjoisen huhuttu paratiisi, jossa ilma on yhä siedettävän viileää ja ravintoa riittää kaikille. Siellä suomalaisen kulttuurin voisi herättää uudelleen henkiin, vaikka kollektiivinen muistinmenetys asettaa haasteita heidän pyhälle etsinnälleen.<br> <br>Tuotanto: Agit-Cirk ja Kanneltalo<br>Esiintyjät: Jenni Lehtinen, Youssef Alkhatib, Ulla Raitio, Sasu Peistola<br>Käsikirjoitus ja Ohjaus: Jussi Moila<br>Valosuunnittelu: June Horton-White<br>Äänisuunnittelu: Antero Huttunen, konsultointi Petteri Rajanti<br>Pukusuunnittelu: Kaisa Kemikoski<br>Koreografia, joukkokohtaukset: Natasha Lommi <br>Valokuvat: Johanna Julia Portraits<br>Alkuperäinen konsepti ja suunnittelu: Sasu Peistola, Jenni Lehtinen, Ulla Raitio, Jari Virman, Henry Hanikka, Juha Tuisku<br>Tukijat: Jenny ja Antti Wihurin Rahasto, Taide ja Kulttuurivirasto (Taike), Suomen Kulttuurirahasto, Cirko - Uuden Sirkuksen keskus, Sirkussali</p>" }, "name": { "fi": "Agit-Cirk: RapuRequiem", "sv": "Agit-Cirk: RapuRequiem", "en": "Agit-Cirk: RapuRequiem" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5A769305EB868A0D35ABB8EDA71F5761/Agit-Cirk_RapuRequiem", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5A769305EB868A0D35ABB8EDA71F5761/Agit-Cirk_RapuRequiem", "en": "http://www.kanneltalo.fi/en/events/event/5A769305EB868A0D35ABB8EDA71F5761/Agit-Cirk_RapuRequiem" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68497/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69119", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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/kulke:755/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24,80 € / 20 €", "sv": "24,80 € / 20 €", "en": "24,80 € / 20 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684822/", "sv": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684822/", "en": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684822/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384799, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T11:13:54.128863Z", "last_modified_time": "2026-06-01T11:13:54.128877Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789944.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384799/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T11:13:54.041790Z", "last_modified_time": "2026-06-12T16:14:03.396925Z", "date_published": null, "start_time": "2026-08-29T12: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, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys." }, "provider": null, "description": { "fi": "<p>Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys.</p><p>Absurdissa, runollisessa ja fyysisessä teoksessa sukelletaan dystooppisen scifin avulla nykyajan ja nykyihmisen analyysiin. Mitä jos lähes kaikki tuhoutuisi ja jäljelle jäävä länsimainen kulttuurihistoria olisi yhden kännykän ja muistisairaan esitystaiteilijaryhmän varassa?</p><p>Katastrofista selviytyneet taiteilijat muistavat vain palasia romahdusta edeltäneeltä ajalta. Yksi niistä on kaikkialla vaikuttanut sosiaalinen media, toinen entistä hullumpien johtajien fanaattinen ja absurdi puhetulva ja kolmas ihmisten piittaamattomuus lisääntyvästä ekologisesta ja inhimillisestä tuhosta. Yksityisiä ja yleisiä muistoja leimaa toisaalta materiaalinen runsaus, toisaalta jäytävä yksinäisyys, kasvava epätasa-arvo, globaalin solidaarisuuden puute ja ydinasepelko.</p><p>Ryhmän suuri tehtävä on säilyttää ne rippeet, joita suomalaisen taiteen historiasta on yhä jäljellä. Päämääränä on pohjoisen huhuttu paratiisi, jossa ilma on yhä siedettävän viileää ja ravintoa riittää kaikille. Siellä suomalaisen kulttuurin voisi herättää uudelleen henkiin, vaikka kollektiivinen muistinmenetys asettaa haasteita heidän pyhälle etsinnälleen.<br> <br>Tuotanto: Agit-Cirk ja Kanneltalo<br>Esiintyjät: Jenni Lehtinen, Youssef Alkhatib, Ulla Raitio, Sasu Peistola<br>Käsikirjoitus ja Ohjaus: Jussi Moila<br>Valosuunnittelu: June Horton-White<br>Äänisuunnittelu: Antero Huttunen, konsultointi Petteri Rajanti<br>Pukusuunnittelu: Kaisa Kemikoski<br>Koreografia, joukkokohtaukset: Natasha Lommi <br>Valokuvat: Johanna Julia Portraits<br>Alkuperäinen konsepti ja suunnittelu: Sasu Peistola, Jenni Lehtinen, Ulla Raitio, Jari Virman, Henry Hanikka, Juha Tuisku<br>Tukijat: Jenny ja Antti Wihurin Rahasto, Taide ja Kulttuurivirasto (Taike), Suomen Kulttuurirahasto, Cirko - Uuden Sirkuksen keskus, Sirkussali</p>" }, "name": { "fi": "Agit-Cirk: RapuRequiem", "sv": "Agit-Cirk: RapuRequiem", "en": "Agit-Cirk: RapuRequiem" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/97AF705031C9082325E6A043BA6EFBA0/Agit-Cirk_RapuRequiem", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/97AF705031C9082325E6A043BA6EFBA0/Agit-Cirk_RapuRequiem", "en": "http://www.kanneltalo.fi/en/events/event/97AF705031C9082325E6A043BA6EFBA0/Agit-Cirk_RapuRequiem" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69119/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68496", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:41/?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/kulke:755/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24,80 € / 20 €", "sv": "24,80 € / 20 €", "en": "24,80 € / 20 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684821/", "sv": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684821/", "en": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684821/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384798, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T11:13:53.625111Z", "last_modified_time": "2026-06-01T11:13:53.625125Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789942.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384798/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T11:13:53.498589Z", "last_modified_time": "2026-06-12T16:14:02.822077Z", "date_published": null, "start_time": "2026-08-28T15: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, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys." }, "provider": null, "description": { "fi": "<p>Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys.</p><p>Absurdissa, runollisessa ja fyysisessä teoksessa sukelletaan dystooppisen scifin avulla nykyajan ja nykyihmisen analyysiin. Mitä jos lähes kaikki tuhoutuisi ja jäljelle jäävä länsimainen kulttuurihistoria olisi yhden kännykän ja muistisairaan esitystaiteilijaryhmän varassa?</p><p>Katastrofista selviytyneet taiteilijat muistavat vain palasia romahdusta edeltäneeltä ajalta. Yksi niistä on kaikkialla vaikuttanut sosiaalinen media, toinen entistä hullumpien johtajien fanaattinen ja absurdi puhetulva ja kolmas ihmisten piittaamattomuus lisääntyvästä ekologisesta ja inhimillisestä tuhosta. Yksityisiä ja yleisiä muistoja leimaa toisaalta materiaalinen runsaus, toisaalta jäytävä yksinäisyys, kasvava epätasa-arvo, globaalin solidaarisuuden puute ja ydinasepelko.</p><p>Ryhmän suuri tehtävä on säilyttää ne rippeet, joita suomalaisen taiteen historiasta on yhä jäljellä. Päämääränä on pohjoisen huhuttu paratiisi, jossa ilma on yhä siedettävän viileää ja ravintoa riittää kaikille. Siellä suomalaisen kulttuurin voisi herättää uudelleen henkiin, vaikka kollektiivinen muistinmenetys asettaa haasteita heidän pyhälle etsinnälleen.<br> <br>Tuotanto: Agit-Cirk ja Kanneltalo<br>Esiintyjät: Jenni Lehtinen, Youssef Alkhatib, Ulla Raitio, Sasu Peistola<br>Käsikirjoitus ja Ohjaus: Jussi Moila<br>Valosuunnittelu: June Horton-White<br>Äänisuunnittelu: Antero Huttunen, konsultointi Petteri Rajanti<br>Pukusuunnittelu: Kaisa Kemikoski<br>Koreografia, joukkokohtaukset: Natasha Lommi <br>Valokuvat: Johanna Julia Portraits<br>Alkuperäinen konsepti ja suunnittelu: Sasu Peistola, Jenni Lehtinen, Ulla Raitio, Jari Virman, Henry Hanikka, Juha Tuisku<br>Tukijat: Jenny ja Antti Wihurin Rahasto, Taide ja Kulttuurivirasto (Taike), Suomen Kulttuurirahasto, Cirko - Uuden Sirkuksen keskus, Sirkussali</p>" }, "name": { "fi": "Agit-Cirk: RapuRequiem", "sv": "Agit-Cirk: RapuRequiem", "en": "Agit-Cirk: RapuRequiem" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/44F3939BF48017A10AE888068D8370F6/Agit-Cirk_RapuRequiem", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/44F3939BF48017A10AE888068D8370F6/Agit-Cirk_RapuRequiem", "en": "http://www.kanneltalo.fi/en/events/event/44F3939BF48017A10AE888068D8370F6/Agit-Cirk_RapuRequiem" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68496/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68670", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1857082, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-04T18:13:09.383664Z", "last_modified_time": "2026-05-04T18:13:09.383763Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791531.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1857082/?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": "2026-05-04T18:13:09.299788Z", "last_modified_time": "2026-06-12T13:15:59.518111Z", "date_published": null, "start_time": "2026-08-29T08:00:00Z", "end_time": "2026-08-29T11: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, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "provider": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b></b><br>SAMPO Festivaalin vieras Puzzle Theatre Kanadasta kutsuu tekemään hahmoja ja tarinoita oksista ja puun kappaleista. Työpaja liittyy ryhmän esitykseen: Bois – Puut. Esityksen katsominen ei ole edellytys työpajasta nauttimiseen.</p><p>Ohjauskielet: englanti, ranska. Työpajassa voi työskennellä myös näytettyä esimerkkiä seuraamalla, jolloin ohjauskielen ymmärtäminen ei ole välttämätöntä.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös rauhallinen tila. Annantalon taidelauantai on maksuton.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b></b><br>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett lungt rum. Annegårdens konstlördag är avgiftsfri.</p><p>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b></b><br>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a peaceful room in the premises. The Annantalo Art Saturday is free-of-charge.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "name": { "fi": "Annantalon taidelauantai: Bois – Puut", "sv": "Annegårdens konstlördagar: Bois – Trä", "en": "Annantalo Art Saturdays: Bois – Trees" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A574D96B484AA70D46AC69AE6FC59D61/Annantalon_taidelauantai_Bois_Puut_", "sv": "http://www.annantalo.fi/sv/evenemang/event/A574D96B484AA70D46AC69AE6FC59D61/Annegardens_konstlordagar_Bois_Tra", "en": "http://www.annantalo.fi/en/events/event/A574D96B484AA70D46AC69AE6FC59D61/Annantalo_Art_Saturdays_Bois_Trees" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68670/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68271", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1674197, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-19T15:14:02.902267Z", "last_modified_time": "2026-03-19T15:14:02.902283Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786140.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1674197/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-19T15:14:02.758211Z", "last_modified_time": "2026-06-12T13:15:47.766058Z", "date_published": null, "start_time": "2026-06-12T11:30:00Z", "end_time": "2026-06-12T17: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, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Helsinki-päivä Malmilla tarjoaa yhteisötaidetta, tanssia ja illan huippukeikat: Laineen Kasperi ja F. Tule juhlimaan kesäistä kaupunkipäivää!", "sv": "Helsingforsdagen i Malm bjuder på samhällskonst, dans och spelningar med Laineen Kasperi och F på kvällen. Kom och fira sommardagen i staden!", "en": "Helsinki Day in Malmi will offer community art, dance and the evening's top performances: Laineen Kasperi and F. Come and celebrate a summer’s day in the city!" }, "provider": null, "description": { "fi": "<p>Helsinki-päivä Malmilla tarjoaa yhteisötaidetta, tanssia ja illan huippukeikat: Laineen Kasperi ja F. Tule juhlimaan kesäistä kaupunkipäivää!</p><p><b>Aikataulu</b><br>14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa yhteisötaidetta kaiken ikäisille <br>15.00–17.00 Malmin seurakunnan toimintapiste <br>16.00–16.45 Kaupunkitanssit <br>17.00–18.00 Laineen Kasperi<br>18.00–19.00 MALMI/Kollektiivi: Koe Malmi nuorten silmin -videoteos<br>19.00–20.00 F</p><p><b>klo 14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa yhteisötaidetta kaiken ikäisille</b><br>Malmin nuorisotyöyksikön kesätyöntekijät toteuttavat kaikille avointa hyvänmielen toimintaa. Tule mukaan!</p><p><b>klo 15.00–17.00 Malmin seurakunnan toimintapiste</b></p><p><b>klo 16.00–16.45 Kaupunkitanssit</b><br>Tanssiteatteri Tsuumin ammattilaisten ohjauksella järjestettävää matalan kynnyksen tanssinopetusta, johon kaikki ovat tervetulleita. Helsinki-päivän tanssilajina svengaava bugg!</p><p><b>18.00–19.00 MALMI/Kollektiivi: Koe Malmi nuorten silmin –videoteos</b><br>Tule Malmitalon auditorioon kokemaan vaikuttava videoteos, Kerroksia, joka tuo valkokankaalle nuorten dokumentaarisia valokuvia Malmista. Kerroksia tarjoaa ainutlaatuisen ja tuoreen näkökulman tuttuihin kulmiin – näe ja tunne kaupunginosa nuorten omien kokemusten kautta.</p><p>Teoksen ovat toteuttaneet Stadin ammattiopiston media-alan opiskelijat, yhteistyössä MALMI/Kollektiivin kanssa.</p><p><b>klo 17.00–18.00 Laineen Kasperi</b><br>Laineen Kasperi tunnetaan räppärinä, tuottajana, sekä yleisön tajuntaa ravistelevana esiintyjänä. Laine on työskennellyt uransa aikana lähes kaikilla taiteen alueilla ja tehnyt yhteistyötä lukuisten maamme ykkösartistien kanssa.</p><p>Laineen Kasperin uusin albumi ”Jumala on lomalla” ilmestyi keväällä 2025, ja on saanut mitä parhaimman vastaanoton.<br>Alla Laineen Kasperin puhelimeen keikan jälkeen saapunut viesti:<br>”Siis voihan vid-du et oli hieno keikka eilen!</p><p>Suorastaan spirituaalinen kokemus! Uskomatonta tsekata noin voimakasta lähetystä ja kuunnella lyyristä viestiä, joka tuntuu kanavoituvan suoraan sieltä jostain ikuisen viisauden lähteestä. Oot kyllä huippu tekijä ja universaalin ymmärryksen sanoiksi pukija.”</p><p><b>klo 19–20 F</b><br>Emma-palkittu rap/R&B-artisti F julkaisi keväällä 2024 uuden albuminsa Self-helpless. Self-helpless on antiteesi itsensä jatkuvalle kehittämiselle ja ylistys keskeneräisyydelle.<br>Visuaalisesti albumi kumartaa 90-luvun ikonisten tähtien, kuten Anna Nicole Smithin ja Pamela Andersonin suuntaan. Albumilta julkaistiin viisi singleä: musiikkivideollaan vakuuttanut Taas mennään, Muija on ku kone, Teetä (feat. Tuplakääk), <br>Naispaholainen II ja Exit. Rohkeista ja visuaalisesti kekseliäistä livekeikoistaan ylistetty F tunnetaan parhaiten kultaa myyneestä Ihana-hitistään.</p><p>Monipuolinen, vahvoja albumikokonaisuuksia luova artisti on ollut ehdolla Emma Gaalassa useasti ja vuonna 2021 hänet palkittiin vuoden musiikkivideopalkinnolla.</p><p><b>Tapahtumiin on vapaa pääsy!</b></p>", "sv": "<p>Helsingforsdagen i Malm bjuder på samhällskonst, dans och spelningar med Laineen Kasperi och F på kvällen. Kom och fira sommardagen i staden!</p><p>Tidtabell<br>14.30–18.30 Unga sommarjobbare vid Malms ungdomsarbetsenhet har planerat samhällskonst för alla åldrar <br>15.00–17.00 Malms församlings aktivitetspunkt <br>16.00–16.45 Stadsdans <br>17.00–18.00 Laineen Kasperi <br>19.00–20.00 F</p><p>kl. 14.30–18.30 Unga sommarjobbare vid Malms ungdomsarbetsenhet har planerat samhällskonst för alla åldrar<br>Sommarjobbarna vid enheten för ungdomsarbete i Malm ordnar feel good-verksamhet som är öppen för alla. Kom med!<br>kl. 16.00–19.00 Malms församlings aktivitetspunkt</p><p>kl. 16.00–16.45 Stadsdans<br>Danslektioner med låg tröskel under ledning av proffs från Tanssiteatteri Tsuumi, där alla är välkomna.</p><p>kl. 17–18 Laineen Kasperi<br>Laineen Kaseri är känd som en rappare, producent och artist som skakar om publikens medvetande. Under sin karriär har Laine arbetat med nästan alla konstarter, och han har samarbetat med många av de största artisterna i vårt land. <br>Laineen Kasperis senaste album ”Jumala on lomalla” kom våren 2025 och har fått ett fint mottagande.</p><p>Nedan följer ett meddelande som kom till Laineen Kasperis telefon efter en spelning:<br>”Alltså vilken jä--a bra spelning i går! <br>En rent spirituell upplevelse! Fantastiskt att se en så mäktig sändning och höra det lyriska budskapet, som känns som att det kanaliseras direkt ur nån evig visdomskälla. Du är superbra och klär den universella förståelsen i ord.”</p><p>kl. 19–20 F<br>Den Emma-belönade rap/R&B-artisten F släppte sitt nya album Self-helpless våren 2024. Self-helpless är en antites till att hela tiden utveckla sig själv och en hyllning till det halvfärdiga.</p><p>Visuellt bugar albumet mot ikoniska 90-talsstjärnor som Anna Nicole Smith och Pamela Anderson. Från albumet släpptes fem singlar: Taas mennään, som imponerade med sin musikvideo, Muija on ku kone, Teetä (feat. Tuplakääk), Naispaholainen II och Exit. F, som hyllats för sina djärva och visuellt uppfinningsrika livespelningar, är bäst känd för sin hit Ihana, som sålt guld.</p><p>F är en mångsidig artist som skapar starka albumhelheter och har varit nominerad på Emma-galan flera gånger. År 2021 belönades hon med priset för årets musikvideo.</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>Helsinki Day in Malmi will offer community art, dance and the evening's top performances: Laineen Kasperi and F. Come and celebrate a summer’s day in the city!</p><p>Schedule<br>14.30–18.30 Community art for all ages, created by Malmi Youth Work Unit's summer interns <br>15.00–17.00 Malmi parish activity point <br>16.00–16.45 Dancing in the City <br>17.00–18.00 Laineen Kasperi <br>19.00–20.00 F</p><p>14.30–18.30 Community art for all ages, created by the Malmi Youth Work Unit's summer interns<br>Malmi Youth Work Unit’s summer workers host pleasant activities open to all. Join us!<br>16.00–19.00 Malmi parish activity point</p><p>16.00–16.45 Dancing in the City<br>Low-threshold dance classes for everyone hosted by Tsuumi Dance Theatre professionals.</p><p>17.00–18.00 Laineen Kasperi<br>Laineen Kasperi is known as a rapper, producer and performer who shakes the audience to their core. During his career, Laine has worked in almost every field of art and collaborated with many of the top artists in Finland. <br>Laineen Kasperi's latest album Jumala on lomalla was released in spring 2025, and has been very well received.</p><p>Below is a message that Laineen Kasperi received on his phone after a show:<br>\"I mean, God-damn, you gave a great performance last night! <br>It was a truly spiritual experience! It's incredible to watch such a powerful performer and listen to a lyrical message that seems to be channeled directly from some source of eternal wisdom. But you are a top creator and a poet that can put the universal understanding into words.\"</p><p>19.00–20.00 F<br>Emma Award-winning rap/R&B artist F released her new album Self-helpless in spring 2024. Self-helpless is the antithesis of continuous self-improvement and a celebration of unfinished business.</p><p>Visually, the album bows to iconic 90s stars like Anna Nicole Smith and Pamela Anderson. Five singles were released from the album: Taas mennään, Muija on ku kone, Teetä (feat. Double Head), Female Devil II and Exit. Praised for her bold and visually inventive live shows, F is best known for her gold-selling hit Ihana.</p><p>A versatile artist who creates strong albums, she has been nominated in the Emma Gaala awards several times, and she won Music Video of the Year in 2021.</p><p>Entry to the events is free of charge!</p>" }, "name": { "fi": "Helsinki-päivä Malmilla – Malmin tapahtumakesä 2026", "sv": "Helsingforsdagen i Malm – Malms evenemangssommar 2026", "en": "Helsinki Day in Malmi – Malmi Summer of Events 2026" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/01BA3D940BFC1583059744C211303906/Helsinki-paiva_Malmilla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/01BA3D940BFC1583059744C211303906/Helsingforsdagen_i_Malm", "en": "http://www.malmitalo.fi/en/events/event/01BA3D940BFC1583059744C211303906/Helsinki_Day_in_Malmi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68271/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpiqsre6a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2384919, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-02T11:10:20.052263Z", "last_modified_time": "2026-06-02T11:48:15.255611Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1308f754-a3dc-4247-b519-dca4807bc35c.png", "name": "", "cropping": "124,0,725,600", "photographer_name": "", "alt_text": "Jonny Dieb: Affections and Reflections - Contemporary Art Across Cultural Intersections", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384919/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-02T11:26:28.988248Z", "last_modified_time": "2026-06-12T12:50:43.353976Z", "date_published": "2026-06-02T10:06:00Z", "start_time": "2026-06-07T07:00:00Z", "end_time": "2026-06-26T15: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, "location_extra_info": { "fi": "Galleria Betoni", "sv": "Galleri Betoni", "en": "Gallery Betoni" }, "provider_contact_info": null, "short_description": { "fi": "Nykytaidetta kulttuurienvälisellä vivahteella", "sv": "Samtidskonst i gränslandet mellan kulturer", "en": "Contemporary Art Across Cultural Intersections" }, "provider": null, "description": { "fi": "<p><em>Affections and Reflections (Tunteita ja pohdintoja)</em> on näyttely, joka perustuu henkilökohtaisiin kokemuksiin sekä menneisyyden ja nykyisyyden väliseen jatkuvaan yhteyteen. Teokset on luonut Suomessa asuva taideopiskelija <strong>Jonny Dieb</strong>, jonka juuret ovat Brasiliassa ja Yhdysvalloissa. Teokset tutkivat, mitä tarkoittaa elää kulttuurien välissä ja sopeutua ajan myötä tapahtuviin muutoksiin.</p><p>Dieb asuu nykyään Suomessa suomalaisen perheensä kanssa ja ammentaa inspiraatiota sekä monikulttuurisesta taustastaan Amerikassa että elämästään Euroopassa. Nämä vaikutteet yhdistyvät hänen maalauksissaan tavalla, joka tuntuu syvästi henkilökohtaiselta, mutta samalla kutsuu katsojia muodostamaan omia tulkintojaan. Hän lähestyy taidetta keinona ymmärtää tunteita ja tukea omaa sekä teoksia katsovien hyvinvointia.</p><p><em>Affections and Reflections</em> -näyttelyn kautta katsojia kutsutaan pohtimaan, miten kulttuuriset identiteetit muotoutuvat ja miten eri taustoista tulevat taiteilijat jatkavat niiden uudelleenmäärittelyä ja laajentamista nykykontekstissa.</p><p>Näyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>", "sv": "<p><em>Affections and Reflections</em> <em>(Känslor och reflektioner) </em>är en utställning som bygger på personliga erfarenheter och en ständig koppling mellan dåtid och nutid. Verken är skapade av konststudenten <strong>Jonny Dieb</strong>, som bor i Finland och har rötter i Brasilien och USA, och utforskar vad det innebär att leva mellan olika kulturer och anpassa sig till förändringar över tid.</p><p>Dieb bor numera i Finland med sin finska familj och hämtar inspiration från sin mångkulturella bakgrund i Amerika samt från sitt liv i Europa. Dessa influenser samverkar i hans målningar på ett sätt som känns djupt personligt, samtidigt som de inbjuder betraktaren att bilda sig en egen uppfattning. Han ser på konsten som ett sätt att förstå känslor och främja välbefinnande, både för sig själv och för dem som upplever verken.</p><p>Genom <em>Affections and Reflections</em> uppmanas betraktaren att reflektera över hur kulturella identiteter formas, och hur konstnärer med olika bakgrunder fortsätter att omdefiniera och utvidga dem i ett samtida sammanhang.</p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>", "en": "<p><em>Affections and Reflections</em> is an exhibition based on personal experience and an ongoing connection between past and present. Created by fine art student <strong>Jonny Dieb</strong>, who lives in Finland and has roots in Brazil and the United States, the works explore what it means to live between cultures and adapt to change over time.</p><p>Now living in Finland with his Finnish family, Dieb draws from his multicultural background across the Americas as well as his life in Europe. These influences come together in his paintings in a way that feels deeply personal, while also inviting viewers to form their own interpretations. He approaches art as a way to understand emotions and support well-being, both for himself and for those experiencing the work.</p><p>Through <em>Affections and Reflections</em>, viewers are invited to reflect on how cultural identities are shaped, and how artists from different backgrounds continue to redefine and expand them in a contemporary context.</p><p>The exhibition can be seen during the library opening hours. Welcome!</p>" }, "name": { "fi": "Jonny Dieb: Affections and Reflections - Nykytaidetta kulttuurienvälisellä vivahteella (taidenäyttely)", "sv": "Jonny Dieb: Affections and Reflections - Samtidskonst i gränslandet mellan kulturer (konstutställning)", "en": "Jonny Dieb: Affections and Reflections - Contemporary Art Across Cultural Intersections (art exhibition)" }, "info_url": { "fi": "https://www.jonnydieb.com/", "sv": "https://www.jonnydieb.com/", "en": "https://www.jonnydieb.com/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiqsre6a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpifns3km", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2384797, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-01T09:32:13.952559Z", "last_modified_time": "2026-06-01T09:32:13.952573Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5c63a162-b88c-49cb-a84c-d6657a75a929.png", "name": "", "cropping": "26,0,826,800", "photographer_name": "", "alt_text": "InterLab ry: Elämää sivujen välissä - kirjaveistoksia ja kollaaseja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384797/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T09:51:04.916883Z", "last_modified_time": "2026-06-12T12:50:04.716648Z", "date_published": "2026-06-01T09:13:00Z", "start_time": "2026-06-28T07:00:00Z", "end_time": "2026-07-17T15: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, "location_extra_info": { "fi": "Vitriinigalleria (kirjaston ylempi kerros)", "sv": "Glassmontern & vägggalleri (bibliotekets övre våning)", "en": "Showcase Gallery (the upper floor of the library)" }, "provider_contact_info": null, "short_description": { "fi": "InterLab ry:n kirjaveistosten ja kollaasien näyttely", "sv": "InterLab f.d.:s utställning av bokskulpturer och collage", "en": "An exhibition of book sculptures and collages by InterLab ry" }, "provider": null, "description": { "fi": "<p>Tässä näyttelyssä esillä olevat kirjaveistokset on toteutettu osallistujien toimesta osana espoolaisen yhdistyksen InterLab ry:n hanketta <em>Vanhakin on kaunista</em>. Teokset on valmistettu kirjoista, jotka ovat olleet hävitysuhan alla. Niille on annettu uusi elämä taiteen kautta.</p><p>Näyttely <em>Elämä sivujen välissä</em> tuo esiin erityisesti kirjaveistoksen ja kollaasin ilmaisumuotoja. Teoksissa kirja on sekä tekstin kantaja, että materiaali, muisto ja lähtökohta uudelle tarinalle.</p><p>Hankkeen tavoitteena on edistää kierrätystä, ekologista ajattelua ja kestävää luovuutta sekä vahvistaa muistojen ja esineiden merkitystä osana yhteistä kulttuuriperintöä. Vanhoista kirjoista syntyneet teokset muistuttavat siitä, että myös poisheitettäväksi tarkoitetuissa materiaaleissa piilee arvoa, tarinoita ja kauneutta.</p><p>InterLab on taiteellisen ja innovatiivisen toiminnan edistävä espoolainen yhdistys, joka on perustettu vuonna 2017. Yhdistyksen tavoitteena on luoda taiteellisia projekteja, jotka keskittyvät luovaan toimintaan ja nykytaiteeseen. Monet yhdistyksen projektit tähtäävät kollaasin, teatterin ja virtuaalitodellisuuden luovaan yhdistämiseen. Tiimi kattaa laajan kirjon ammattilaisia eri taiteen aloilta, mukaan lukien teatteri, valokuvaus, elokuva, taidemaalaus, musiikki ja tanssi.</p><p>Hanketta Vanhakin on kaunista tukee Espoon kaupunki / KulttuuriEspoo.</p><p>Näyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>", "sv": "<p>De bokskulpturer som visas i denna utställning har skapats av deltagarna som en del av projektet <em>”Vanhakin on kaunista” (Även det gamla är vackert)</em>, som drivs av föreningen InterLab ry i Espoo. Verken är tillverkade av böcker som hotats av kassering. Genom konsten har de fått nytt liv.</p><p>Utställningen <em>”Elämä sivujen välissä” (Livet mellan sidorna)</em> lyfter särskilt fram uttrycksformerna bokskulptur och collage. I verken är boken både bärare av text och material, minne och utgångspunkt för en ny berättelse.</p><p>Projektets mål är att främja återvinning, ekologiskt tänkande och hållbar kreativitet samt att stärka minnenas och föremålens betydelse som en del av vårt gemensamma kulturarv. Verken som skapats av gamla böcker påminner om att även material som är avsett att kastas bort rymmer värde, berättelser och skönhet.</p><p>InterLab är en förening i Espoo som främjar konstnärlig och innovativ verksamhet och som grundades 2017. Föreningens mål är att skapa konstnärliga projekt som fokuserar på kreativ verksamhet och samtidskonst. Många av föreningens projekt syftar till att kreativt kombinera collage, teater och virtuell verklighet. Teamet består av ett brett spektrum av yrkesverksamma inom olika konstområden, inklusive teater, fotografi, film, måleri, musik och dans.</p><p>Projektet <em>”Vanhakin on kaunista”</em> stöds av Espoo stad / KulturEsbo.</p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>", "en": "<p>The book sculptures on display in this exhibition were created by participants as part of the project “<em>Even Old Things Are Beautiful”</em> organized by the Espoo-based association InterLab ry. The works were made from books that were at risk of being discarded. Through art, they have been given a new lease on life.</p><p>The exhibition <em>“Life Between the Pages”</em> highlights, in particular, the expressive forms of book sculptures and collages. In these works, the book serves as both a carrier of text and a material, a memory, and a starting point for a new story.</p><p>The project aims to promote recycling, ecological thinking, and sustainable creativity, as well as to reinforce the significance of memories and objects as part of our shared cultural heritage. The works created from old books serve as a reminder that even materials intended for disposal hold value, stories, and beauty.</p><p>InterLab is an Espoo-based association founded in 2017 that promotes artistic and innovative activities. The association’s goal is to create artistic projects focused on creative activities and contemporary art. Many of the association’s projects aim to creatively combine collage, theater, and virtual reality. The team includes a wide range of professionals from various artistic fields, including theater, photography, film, painting, music, and dance.</p><p>The project <em>“Even Old Things Are Beautiful”</em> is supported by the City of Espoo / CultureEspoo.</p><p>The exhibition is open during library hours. Welcome!</p>" }, "name": { "fi": "Elämä sivujen välissä (kirjaveistoksia ja kollaaseja)", "sv": "Livet mellan sidorna (bokskulpturer och collage)", "en": "Life Between the Pages (book sculptures and collages)" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifns3km/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplyazw5i", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385114, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-12T12:37:34.361086Z", "last_modified_time": "2026-06-12T12:37:34.361099Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/7a81e0df-d668-4e79-a723-6395873806c6.jpg", "name": "", "cropping": "540,0,2700,2160", "photographer_name": "Tomi Hänninen", "alt_text": "Valokuvaajan SM-viikko", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-12T12:49:15.144252Z", "last_modified_time": "2026-06-12T12:49:15.144270Z", "date_published": "2026-06-12T12:10:00Z", "start_time": "2026-07-21T07:00:00Z", "end_time": "2026-08-03T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Vitriinigalleria (kirjaston ylempi kerros)", "sv": "Glassmontern & vägggalleri (bibliotekets övre våning)", "en": "Showcase Gallery (the upper floor of the library)" }, "provider_contact_info": null, "short_description": { "fi": "Tomi Hännisen urheiluvalokuvia SM-viikoilta.", "sv": "Tomi Hänninens sportbilder från SM-veckorna.", "en": "Tomi Hänninen's sports photos from the Finnish Championship Weeks." }, "provider": null, "description": { "fi": "<p>Valokuvaaja <strong>Tomi Hännisellä</strong> on vuosikymmenten kokemus urheilukuvaamisesta ja hänen kuviaan urheilutapahtumista niin meiltä kuin maailmaltakin on nähty useissa medioissa ja näyttelyissä. Hän on myös toiminut urheilun monilajitapahtuma <a href=\"https://sm-viikko.fi/\">SM-viikon</a> hovikuvaajana tapahtuman alusta lähtien ja kuvannut lähes kaikki 100 vuosien saatossa mukana ollutta urheilulajia.</p><p><em>Valokuvaajan SM-viikko</em> -näyttelyssä nähdään Tomi Hännisen suosikkiotoksia menneiden vuosien SM-viikoilta. </p><p>Valokuvanäyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>", "sv": "<p>Fotografen <strong>Tomi Hänninen</strong> har årtionden av erfarenhet av sportfotografering, och hans bilder från sportevenemang både här hemma och utomlands har visats i flera medier och på utställningar. Han har också varit officiell fotograf för den mångsidiga idrottsevenemanget <a href=\"https://sm-viikko.fi/sv/\">SM-veckan</a> sedan starten och har fotograferat nästan alla de 100 idrottsgrenar som har deltagit genom åren.</p><p>I utställningen <em>”Fotografens SM-vecka”</em> visas Tomi Hänninens favoritbilder från tidigare års SM-veckor. </p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>", "en": "<p>Photographer <strong>Tomi Hänninen</strong> has decades of experience in sports photography, and his photos of sporting events—both in Finland and around the world—have been featured in numerous media outlets and exhibitions. He has also served as the official photographer for the multi-sport event <a href=\"https://sm-viikko.fi/en/\">SM Week</a> since its inception and has photographed nearly all of the 100 sports that have been featured over the years.</p><p>The <em>“Photographer’s SM Week”</em> exhibition features Tomi Hänninen’s favorite shots from past SM Weeks. </p><p>The exhibition can be seen during the library opening hours. Welcome!</p>" }, "name": { "fi": "Valokuvaajan SM-viikko (valokuvanäyttely)", "sv": "Fotografens SM-vecka (fotoutställning)", "en": "Photographer's SM Week (sport photo exhibition)" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplyazw5i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplc7uf4y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7ugse/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-10T11:36:24.665059Z", "last_modified_time": "2026-06-12T10:53:25.376350Z", "date_published": null, "start_time": "2026-08-22T07:30:00Z", "end_time": "2026-08-22T08: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, "location_extra_info": { "fi": "Aikuisten pelihuone", "sv": "Spelrum för vuxna", "en": "Game room for adults" }, "provider_contact_info": null, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "provider": null, "description": { "fi": "<p>Час сказки для детей, родители тоже могут присутствовать! </p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p><p><br></p><p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat venäjänkielisiä ja lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>Lauantaisin klo 10:30-11 22.8, 19.9, 17.10, 21.11 & 19.12.</p>", "sv": "<p>Kom och dyka in i sagornas värld på Entresse biblioteket. Sagostunderna är på ryska och riktar sig till barnfamiljer. Varmt välkomna alla!</p><p>Lördagar kl. 10.30–11.00 den 22.8, 19.9, 17.10, 21.11 & 19.12.</p>", "en": "<p>Come dive into the world of fairy tales at the Entressen Library. Fairy tale moments are in Russian and aimed at families with children. A warm welcome to all!</p><p>Saturdays from 10:30 to 11:00 a.m 22.8, 19.9, 17.10, 21.11 & 19.12.</p>" }, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7uf4y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplc7ufge", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7ugse/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-10T11:36:24.803466Z", "last_modified_time": "2026-06-12T10:53:25.341052Z", "date_published": null, "start_time": "2026-09-19T07:30:00Z", "end_time": "2026-09-19T08: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, "location_extra_info": { "fi": "Aikuisten pelihuone", "sv": "Spelrum för vuxna", "en": "Game room for adults" }, "provider_contact_info": null, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "provider": null, "description": { "fi": "<p>Час сказки для детей, родители тоже могут присутствовать! </p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p><p><br></p><p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat venäjänkielisiä ja lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>Lauantaisin klo 10:30-11 22.8, 19.9, 17.10, 21.11 & 19.12.</p>", "sv": "<p>Kom och dyka in i sagornas värld på Entresse biblioteket. Sagostunderna är på ryska och riktar sig till barnfamiljer. Varmt välkomna alla!</p><p>Lördagar kl. 10.30–11.00 den 22.8, 19.9, 17.10, 21.11 & 19.12.</p>", "en": "<p>Come dive into the world of fairy tales at the Entressen Library. Fairy tale moments are in Russian and aimed at families with children. A warm welcome to all!</p><p>Saturdays from 10:30 to 11:00 a.m 22.8, 19.9, 17.10, 21.11 & 19.12.</p>" }, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7ufge/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplc7uerq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7ugse/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-10T11:36:24.936708Z", "last_modified_time": "2026-06-12T10:53:25.304591Z", "date_published": null, "start_time": "2026-10-17T07:30:00Z", "end_time": "2026-10-17T08: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, "location_extra_info": { "fi": "Aikuisten pelihuone", "sv": "Spelrum för vuxna", "en": "Game room for adults" }, "provider_contact_info": null, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "provider": null, "description": { "fi": "<p>Час сказки для детей, родители тоже могут присутствовать! </p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p><p><br></p><p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat venäjänkielisiä ja lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>Lauantaisin klo 10:30-11 22.8, 19.9, 17.10, 21.11 & 19.12.</p>", "sv": "<p>Kom och dyka in i sagornas värld på Entresse biblioteket. Sagostunderna är på ryska och riktar sig till barnfamiljer. Varmt välkomna alla!</p><p>Lördagar kl. 10.30–11.00 den 22.8, 19.9, 17.10, 21.11 & 19.12.</p>", "en": "<p>Come dive into the world of fairy tales at the Entressen Library. Fairy tale moments are in Russian and aimed at families with children. A warm welcome to all!</p><p>Saturdays from 10:30 to 11:00 a.m 22.8, 19.9, 17.10, 21.11 & 19.12.</p>" }, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7uerq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplc7udru", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7ugse/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-10T11:36:25.074153Z", "last_modified_time": "2026-06-12T10:53:25.265024Z", "date_published": null, "start_time": "2026-12-19T08:30:00Z", "end_time": "2026-12-19T09: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, "location_extra_info": { "fi": "Aikuisten pelihuone", "sv": "Spelrum för vuxna", "en": "Game room for adults" }, "provider_contact_info": null, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "provider": null, "description": { "fi": "<p>Час сказки для детей, родители тоже могут присутствовать! </p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p><p><br></p><p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat venäjänkielisiä ja lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>Lauantaisin klo 10:30-11 22.8, 19.9, 17.10, 21.11 & 19.12.</p>", "sv": "<p>Kom och dyka in i sagornas värld på Entresse biblioteket. Sagostunderna är på ryska och riktar sig till barnfamiljer. Varmt välkomna alla!</p><p>Lördagar kl. 10.30–11.00 den 22.8, 19.9, 17.10, 21.11 & 19.12.</p>", "en": "<p>Come dive into the world of fairy tales at the Entressen Library. Fairy tale moments are in Russian and aimed at families with children. A warm welcome to all!</p><p>Saturdays from 10:30 to 11:00 a.m 22.8, 19.9, 17.10, 21.11 & 19.12.</p>" }, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7udru/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplxe5x34", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7ugse/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-12T10:53:25.178677Z", "last_modified_time": "2026-06-12T10:53:25.178696Z", "date_published": null, "start_time": "2026-11-21T08:30:00Z", "end_time": "2026-11-21T09: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, "location_extra_info": { "fi": "Aikuisten pelihuone", "sv": "Spelrum för vuxna", "en": "Game room for adults" }, "provider_contact_info": null, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "provider": null, "description": { "fi": "<p>Час сказки для детей, родители тоже могут присутствовать! </p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p><p><br></p><p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat venäjänkielisiä ja lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>Lauantaisin klo 10:30-11 22.8, 19.9, 17.10, 21.11 & 19.12.</p>", "sv": "<p>Kom och dyka in i sagornas värld på Entresse biblioteket. Sagostunderna är på ryska och riktar sig till barnfamiljer. Varmt välkomna alla!</p><p>Lördagar kl. 10.30–11.00 den 22.8, 19.9, 17.10, 21.11 & 19.12.</p>", "en": "<p>Come dive into the world of fairy tales at the Entressen Library. Fairy tale moments are in Russian and aimed at families with children. A warm welcome to all!</p><p>Saturdays from 10:30 to 11:00 a.m 22.8, 19.9, 17.10, 21.11 & 19.12.</p>" }, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe5x34/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplc7ugse", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7udru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7uerq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7ufge/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7uf4y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe5x34/?format=api" } ], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-10T11:36:24.052896Z", "last_modified_time": "2026-06-12T10:53:24.723497Z", "date_published": null, "start_time": "2026-08-22T07:30:00Z", "end_time": "2026-12-19T09: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, "location_extra_info": { "fi": "Aikuisten pelihuone", "sv": "Spelrum för vuxna", "en": "Game room for adults" }, "provider_contact_info": null, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "provider": null, "description": { "fi": "<p>Час сказки для детей, родители тоже могут присутствовать! </p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p><p><br></p><p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat venäjänkielisiä ja lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>Lauantaisin klo 10:30-11 22.8, 19.9, 17.10, 21.11 & 19.12.</p>", "sv": "<p>Kom och dyka in i sagornas värld på Entresse biblioteket. Sagostunderna är på ryska och riktar sig till barnfamiljer. Varmt välkomna alla!</p><p>Lördagar kl. 10.30–11.00 den 22.8, 19.9, 17.10, 21.11 & 19.12.</p>", "en": "<p>Come dive into the world of fairy tales at the Entressen Library. Fairy tale moments are in Russian and aimed at families with children. A warm welcome to all!</p><p>Saturdays from 10:30 to 11:00 a.m 22.8, 19.9, 17.10, 21.11 & 19.12.</p>" }, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplc7ugse/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplxe5zam", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe52wy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385112, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-12T10:42:48.413672Z", "last_modified_time": "2026-06-12T10:42:48.413685Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3a6a4178-a496-4c74-97e8-0ad5090d7eca.png", "name": "", "cropping": "0,60,960,1020", "photographer_name": "Espoon kaupungin kuvituskuva", "alt_text": "kuvituskuva henkilöstä lukemassa kirjastossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385112/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-12T10:45:15.190033Z", "last_modified_time": "2026-06-12T10:45:39.596439Z", "date_published": null, "start_time": "2026-09-08T13:30:00Z", "end_time": "2026-09-08T15: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, "location_extra_info": { "fi": "Ryhmätyötila Aisti " }, "provider_contact_info": null, "short_description": { "fi": "Selkolukupiirissä luemme suomenkielisiä selkokirjoja ja kokoonnumme keskustelemaan luetuista kirjoista." }, "provider": null, "description": { "fi": "Selkolukupiiri<p><strong>Entressen kirjasto - Ryhmätyötila Aisti</strong></p><p><strong>Tiistaisin 8.9. / 6.10. / 3.11. / 1.12. klo 16:30-18.00</strong></p><p>Selkolukupiirissä luemme suomenkielisiä selkokirjoja ja kokoonnumme keskustelemaan luetuista kirjoista.</p><p>Selkolukupiiri on avoin kaikille, mutta erityisen hyvin se sopii suomea opiskeleville maahanmuuttajille ja henkilöille, joilla on jokin lukemiseen liittyvä hidaste tai vaikeus.</p><p><br></p><p>Lukupiirin ensimmäinen kirja julkaistaan heinäkuussa.</p><p><br></p><p><br></p><p>Järjestäjänä kirjasto</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": " Selkolukupiiri" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe5zam/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplxe5zom", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe52wy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385112, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-12T10:42:48.413672Z", "last_modified_time": "2026-06-12T10:42:48.413685Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3a6a4178-a496-4c74-97e8-0ad5090d7eca.png", "name": "", "cropping": "0,60,960,1020", "photographer_name": "Espoon kaupungin kuvituskuva", "alt_text": "kuvituskuva henkilöstä lukemassa kirjastossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385112/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-12T10:45:15.297254Z", "last_modified_time": "2026-06-12T10:45:39.528792Z", "date_published": null, "start_time": "2026-10-06T13:30:00Z", "end_time": "2026-10-06T15: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, "location_extra_info": { "fi": "Ryhmätyötila Aisti " }, "provider_contact_info": null, "short_description": { "fi": "Selkolukupiirissä luemme suomenkielisiä selkokirjoja ja kokoonnumme keskustelemaan luetuista kirjoista." }, "provider": null, "description": { "fi": "Selkolukupiiri<p><strong>Entressen kirjasto - Ryhmätyötila Aisti</strong></p><p><strong>Tiistaisin 8.9. / 6.10. / 3.11. / 1.12. klo 16:30-18.00</strong></p><p>Selkolukupiirissä luemme suomenkielisiä selkokirjoja ja kokoonnumme keskustelemaan luetuista kirjoista.</p><p>Selkolukupiiri on avoin kaikille, mutta erityisen hyvin se sopii suomea opiskeleville maahanmuuttajille ja henkilöille, joilla on jokin lukemiseen liittyvä hidaste tai vaikeus.</p><p><br></p><p>Lukupiirin ensimmäinen kirja julkaistaan heinäkuussa.</p><p><br></p><p><br></p><p>Järjestäjänä kirjasto</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": " Selkolukupiiri" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe5zom/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplxe5z3m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe52wy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385112, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-12T10:42:48.413672Z", "last_modified_time": "2026-06-12T10:42:48.413685Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3a6a4178-a496-4c74-97e8-0ad5090d7eca.png", "name": "", "cropping": "0,60,960,1020", "photographer_name": "Espoon kaupungin kuvituskuva", "alt_text": "kuvituskuva henkilöstä lukemassa kirjastossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385112/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-12T10:45:15.419613Z", "last_modified_time": "2026-06-12T10:45:39.458423Z", "date_published": null, "start_time": "2026-11-03T14:30:00Z", "end_time": "2026-11-03T16: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, "location_extra_info": { "fi": "Ryhmätyötila Aisti " }, "provider_contact_info": null, "short_description": { "fi": "Selkolukupiirissä luemme suomenkielisiä selkokirjoja ja kokoonnumme keskustelemaan luetuista kirjoista." }, "provider": null, "description": { "fi": "Selkolukupiiri<p><strong>Entressen kirjasto - Ryhmätyötila Aisti</strong></p><p><strong>Tiistaisin 8.9. / 6.10. / 3.11. / 1.12. klo 16:30-18.00</strong></p><p>Selkolukupiirissä luemme suomenkielisiä selkokirjoja ja kokoonnumme keskustelemaan luetuista kirjoista.</p><p>Selkolukupiiri on avoin kaikille, mutta erityisen hyvin se sopii suomea opiskeleville maahanmuuttajille ja henkilöille, joilla on jokin lukemiseen liittyvä hidaste tai vaikeus.</p><p><br></p><p>Lukupiirin ensimmäinen kirja julkaistaan heinäkuussa.</p><p><br></p><p><br></p><p>Järjestäjänä kirjasto</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": " Selkolukupiiri" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe5z3m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplxe52ju", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe52wy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385112, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-12T10:42:48.413672Z", "last_modified_time": "2026-06-12T10:42:48.413685Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3a6a4178-a496-4c74-97e8-0ad5090d7eca.png", "name": "", "cropping": "0,60,960,1020", "photographer_name": "Espoon kaupungin kuvituskuva", "alt_text": "kuvituskuva henkilöstä lukemassa kirjastossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385112/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-12T10:45:15.516633Z", "last_modified_time": "2026-06-12T10:45:39.386656Z", "date_published": null, "start_time": "2026-12-01T14:30:00Z", "end_time": "2026-12-01T16: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, "location_extra_info": { "fi": "Ryhmätyötila Aisti " }, "provider_contact_info": null, "short_description": { "fi": "Selkolukupiirissä luemme suomenkielisiä selkokirjoja ja kokoonnumme keskustelemaan luetuista kirjoista." }, "provider": null, "description": { "fi": "Selkolukupiiri<p><strong>Entressen kirjasto - Ryhmätyötila Aisti</strong></p><p><strong>Tiistaisin 8.9. / 6.10. / 3.11. / 1.12. klo 16:30-18.00</strong></p><p>Selkolukupiirissä luemme suomenkielisiä selkokirjoja ja kokoonnumme keskustelemaan luetuista kirjoista.</p><p>Selkolukupiiri on avoin kaikille, mutta erityisen hyvin se sopii suomea opiskeleville maahanmuuttajille ja henkilöille, joilla on jokin lukemiseen liittyvä hidaste tai vaikeus.</p><p><br></p><p>Lukupiirin ensimmäinen kirja julkaistaan heinäkuussa.</p><p><br></p><p><br></p><p>Järjestäjänä kirjasto</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": " Selkolukupiiri" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe52ju/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplxe52wy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe5zam/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe5zom/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe5z3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe52ju/?format=api" } ], "images": [ { "id": 2385112, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-12T10:42:48.413672Z", "last_modified_time": "2026-06-12T10:42:48.413685Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3a6a4178-a496-4c74-97e8-0ad5090d7eca.png", "name": "", "cropping": "0,60,960,1020", "photographer_name": "Espoon kaupungin kuvituskuva", "alt_text": "kuvituskuva henkilöstä lukemassa kirjastossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385112/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-12T10:45:14.507330Z", "last_modified_time": "2026-06-12T10:45:38.771631Z", "date_published": null, "start_time": "2026-09-08T13:30:00Z", "end_time": "2026-12-01T16: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, "location_extra_info": { "fi": "Ryhmätyötila Aisti " }, "provider_contact_info": null, "short_description": { "fi": "Selkolukupiirissä luemme suomenkielisiä selkokirjoja ja kokoonnumme keskustelemaan luetuista kirjoista." }, "provider": null, "description": { "fi": "Selkolukupiiri<p><strong>Entressen kirjasto - Ryhmätyötila Aisti</strong></p><p><strong>Tiistaisin 8.9. / 6.10. / 3.11. / 1.12. klo 16:30-18.00</strong></p><p>Selkolukupiirissä luemme suomenkielisiä selkokirjoja ja kokoonnumme keskustelemaan luetuista kirjoista.</p><p>Selkolukupiiri on avoin kaikille, mutta erityisen hyvin se sopii suomea opiskeleville maahanmuuttajille ja henkilöille, joilla on jokin lukemiseen liittyvä hidaste tai vaikeus.</p><p><br></p><p>Lukupiirin ensimmäinen kirja julkaistaan heinäkuussa.</p><p><br></p><p><br></p><p>Järjestäjänä kirjasto</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": " Selkolukupiiri" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe52wy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }