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=21&weekday=6%2C7
{ "meta": { "count": 6964, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=22&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=20&weekday=6%2C7" }, "data": [ { "id": "kulke:68512", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384803, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T12:13:30.743514Z", "last_modified_time": "2026-06-01T12:13:30.743545Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790092.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384803/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T12:13:30.607157Z", "last_modified_time": "2026-06-01T12:13:30.936335Z", "date_published": null, "start_time": "2026-08-07T06:00:00Z", "end_time": "2026-08-29T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jussi Rinta-Hoiska: Lukosta valoon", "sv": "Jussi Rinta-Hoiska: Lukosta valoon", "en": "Jussi Rinta-Hoiska: Lukosta valoon" }, "short_description": { "fi": "Jussi Rinta-Hoiska on työskennellyt yhteiskunnallisten aiheiden parissa lähes 20 vuoden ajan. Näyttelyssä on esillä vanhoja ja uusia valokuva- ja videoteoksia." }, "description": { "fi": "<p>Jussi Rinta-Hoiska on työskennellyt yhteiskunnallisten aiheiden parissa lähes 20 vuoden ajan. Näyttelyssä on esillä vanhoja ja uusia valokuva- ja videoteoksia.</p><p><i>”Ensimmäinen taidevalokuvani Lukosta valoon valmistui vuonna 2006. Tästä on kulunut lähes 20 vuotta.</p><p>Näyttelyn teokset kertovat nuoren tytön matkasta. Alussa tyttö ei tiedä, mihin suuntaan mennä. Häneltä puuttuu tietoa, ja hän tuntee olevansa ulkopuolinen. Lopulta tyttö löytää avaimen ja pääsee vapaaksi suljetusta tilasta.</p><p>Matkallaan tyttö tutkii yhteiskuntaa ja itseään. Hän kulkee pimeästä valoon, oppii ymmärtämään omaa elämäänsä ja löytää itsevarmuutta kielen kautta. Lopulta hän kasvaa vahvemmaksi ja jatkaa eteenpäin.</i></p><p>Näyttelyyn järjestetään opastus suomalaisella viittomakielellä lauantaina 22.08.2026 klo 13.00–14.00.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/8C1B1D1737BCC328A3D394F41E9C5324/Jussi_Rinta-Hoiska_Lukosta_valoon", "sv": "http://www.caisa.fi/sv/evenemang/event/8C1B1D1737BCC328A3D394F41E9C5324/Jussi_Rinta-Hoiska_Lukosta_valoon", "en": "http://www.caisa.fi/en/events/event/8C1B1D1737BCC328A3D394F41E9C5324/Jussi_Rinta-Hoiska_Lukosta_valoon" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68512/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:0165596d-a00b-469a-8baf-1618b41fb45e", "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/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" } ], "created_time": "2026-06-01T11:21:48.344183Z", "last_modified_time": "2026-06-01T11:21:48.344226Z", "date_published": "2026-06-01T11:12:15Z", "start_time": "2026-06-14T05:00:00Z", "end_time": "2026-06-14T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "1.6. pistotestaaminen" }, "short_description": { "fi": "Tässä tapahtuman kuvaus yleiset-välilehdellä." }, "description": { "fi": "<div><p>Tapahtuman kuvaus </p></div>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Annansalo" }, "provider": { "fi": "Annantalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0165596d-a00b-469a-8baf-1618b41fb45e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68267", "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:105/?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/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1682701, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-20T11:14:04.020162Z", "last_modified_time": "2026-03-20T11:14:04.020177Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786122.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1682701/?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-03-20T11:14:03.875581Z", "last_modified_time": "2026-06-01T11:13:42.332148Z", "date_published": null, "start_time": "2026-06-06T07:00:00Z", "end_time": "2026-06-06T11:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten lauantai: Rokkasoppa, Riemukas perhemuskari, kirjaston lukukeidas ja työpajoja – Malmin tapahtumakesä 2026", "sv": "Barnens lördag: Rokkasoppa, glatt familjemusiklekis, bibliotekets läsoas och verkstäder – Malms evenemangssommar 2026", "en": "Children’s Saturday: Rokkasoppa, a joyful family music playschool, a reading oasis in the library and workshops – Malmi Summer of Events 2026" }, "short_description": { "fi": "Ihastuttava lasten lauantai rokkaa, muskaroi ja kuljettaa kohti kivoja perhehetkiä lukukeitaan ja työpajojen myötä. Nyt koko perhe Malmille!", "sv": "Under barnens härliga lördag får du rocka, musikleka och ta del av trevliga familjestunder med läsoas och verkstäder. Ta med hela familjen till Malm!", "en": "The delightful Children’s Saturday will feature rocking music, a music playschool and fun family moments with a reading oasis and workshops. Bring the whole family to Malmi!" }, "description": { "fi": "<p>Ihastuttava lasten lauantai rokkaa, muskaroi ja kuljettaa kohti kivoja perhehetkiä lukukeitaan ja työpajojen myötä. Nyt koko perhe Malmille!</p><p>Malmin tapahtumakesän lasten lauantai tarjoaa koko perheelle iloa ja riemua! Päivän aikana pääsee lukemaan, musisoimaan, askartelemaan ja nauttimaan lasten omasta rokkimeiningistä.</p><p><b>Päivän ohjelma</p><p>klo 10.00–16.00 Kirjaston lukukeidas</b><br>Kirjasto pystyttää lukukeitaan Malmitalon sisäänkäynnin läheisyyteen. Ota kirja mukaan ja tule lukemaan. <br>Paikka: Malmitalon rappuset</p><p><b> klo 11.00-15.00 Lasten uimataidon edistäminen </b><br>Tule keskustelemaan lasten uimataidosta samalla kun samalla kun perheen pienimmät voivat käydä pulahtamassa pallomereen.<br>Mukana KASKO, Fimu ry ja Monaliiku ry.<br>Apulaispormestari Shawn Huff vierailee tapahtumassa klo 12.30-13.30.</p><p><b>klo 12.00–16.00 Malmin nuorisotyöyksikön kesätyönuorten ideoimia pelejä ja leikkejä perheen pienille</b><br>Kesätyöntekijät toteuttavat kaikille avointa hyvän mielen toimintaa. Tule mukaan leikkimään ja viihtymään. <br>Paikka: Ala-Malmin tori</p><p><b>klo 12.00–14.00 Pukinmäen taidekoulu: Klovni Dattarataa</b><br>Paikka: Ala-Malmin tori</p><p><b>klo 12.00-15.00 Vehreä ja viihtyisä Ala-Malmin tori kaikille kaupunkilaisille 2027</b><br>Paikka: Ala-Malmin tori</p><p><b>klo 12.00–14.00 Pohjois-Helsingin kuvataidekoulun pinssityöpaja'</b><br>Paikka: Ala-Malmin tori</p><p><b>klo 12.00–14.00 Yksin hanke: Kollaasitaidetta ja tikkariperhosia</b><br>Paikka: Ala-Malmin tori</p><p><b>klo 13.00–13.30 Riemukas perhemuskari</b><br><i>”Pyöri kuin pyörre – veden pinnalla! Leiju kuin pilvi – taivaan kannella!”</i><br>Riemukkaassa perhemuskarissa lauletaan, leikitään ja musisoidaan yhdessä kesäisissä tunnelmissa. Muskarin ohjaa musiikin maisteri ja lastenmuusikko Henna-Maija Kuki.<br>Paikka: Konttilava, Ala-Malmin tori</p><p><b>klo 14.00–14.45 Rokkasoppa</b><br>Eskari-ikäinen Rokkasoppa on muksurockbändi, jonka laulut kertovat mauista, hajuista, tuntemuksista ja fiiliksistä rokkitvistillä, joka saa myös aikuisten peput heilumaan tahdissa. \"Ruuassa ja Rokissa parasta on se, että saa tykätä just siitä, mistä tykkää. Kaikkea pitää kuitenkin maistaa.\" <br>Paikka: Konttilava, Ala-Malmin tori</p><p>Tapahtumiin on vapaa pääsy!</p>", "sv": "<p>Under barnens härliga lördag får du rocka, musikleka och ta del av trevliga familjestunder med läsoas och verkstäder. Ta med hela familjen till Malm!</p><p>Barnens lördag under Malms evenemangssommar bjuder på glädje och skoj för hela familjen! Under dagen kan du läsa, musicera, pyssla och njuta av rockstämning för barn.</p><p><b>Dagens program</p><p>kl. 10.00–16.00<br>Bibliotekets läsoas</b><br>Biblioteket ordnar en läsoas nära ingången till Malms kulturhus. Ta med en bok och kom och läs.<br>Plats: Malms kulturhus trappa</p><p><b> klo 11.00-15.00 Lasten uimataidon edistäminen </b><br>Tule keskustelemaan lasten uimataidosta samalla kun samalla kun perheen pienimmät voivat käydä pulahtamassa pallomereen.<br>Mukana KASKO, Fimu ry ja Monaliiku ry.<br>Apulaispormestari Shawn Huff vierailee tapahtumassa klo 12.30-13.30.</p><p><b>kl. 12.00–16.00<br>Spel och lekar för den yngsta, som planerats av unga sommarjobbare vid Malms ungdomsarbetsenhet</b><br>Sommarjobbarna ordnar feel good-verksamhet som är öppen för alla. Kom med och lek och ha roligt.<br>Plats: Nedre Malms torg</p><p><b>klo 12.00-15.00 Vehreä ja viihtyisä Ala-Malmin tori kaikille kaupunkilaisille 2027, Paikka: Ala-Malmin tori</p><p><b>kl. 12.00–14.00 Pukinmäen taidekoulut: Clownen Dattarataa</b><br>Plats: Nedre Malms torg</p><p><b>kl. 12.00–14.00 Pohjois-Helsingin kuvataidekoulus pinsverkstad</b><br>Plats: Nedre Malms torg</p><p><b>kl. 12.00–14.00 Yksin-projektet: Collagekonst och slickepinnsfjärilar</b><br>Plats: Nedre Malms torg</p><p><b>kl. 13.00–13.30<br>Glatt familjemusiklekis</b><br><i>”Snurra som en virvel – på vattenytan! Sväva som ett moln – på himlen!”</i><br>I det glada familjemusiklekiset får vi sjunga, leka och musicera tillsammans i sommaren. Programmet leds av musikmagistern och barnmusikern Henna-Maija Kuki.<br>Plats: Containerscenen, Nedre Malms torg</p><p><b>kl. 14.00–14.45<br>Rokkasoppa</b><br>Rokkasoppa är ett barnrockband som nu nått förskoleåldern. Deras låtar handlar om smaker, dofter, känslor och stämningar med en rockig twist som även får de vuxnas rumpor att svänga i takt. ”Det bästa med mat och rock är att man får gilla det som man gillar. Men man måste smaka på allt.”<br>Plats: Containerscenen, Nedre Malms torg</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>The delightful Children’s Saturday will feature rocking music, a music playschool and fun family moments with a reading oasis and workshops. Bring the whole family to Malmi!</p><p>As part of the Malmi Summer of Events, Children’s Saturday will provide joy and fun for the whole family! During the day, you can read, play music, do arts and crafts and enjoy rocking music for children.</p><p><b>The day’s programme</p><p>10.00–16.00<br>Reading oasis in the library</b><br>The library will set up a reading oasis near the entrance to the Malmitalo. Bring a book and come read with us.<br>Place: Malmitalo stairs</p><p><b> klo 11.00-15.00 Lasten uimataidon edistäminen </b><br>Tule keskustelemaan lasten uimataidosta samalla kun samalla kun perheen pienimmät voivat käydä pulahtamassa pallomereen.<br>Mukana KASKO, Fimu ry ja Monaliiku ry.<br>Apulaispormestari Shawn Huff vierailee tapahtumassa klo 12.30-13.30.</p><p><b>12.00–16.00<br>Games and play activities for the youngest members of the family, created by the Malmi Youth Work Unit’s young summer workers</b><br>Summer workers will provide enjoyable activities open to all. Join us for fun and games!<br>Place: Ala-Malmi Square</p><p><b>klo 12.00-15.00 Vehreä ja viihtyisä Ala-Malmin tori kaikille kaupunkilaisille 2027, Paikka: Ala-Malmin tori</p><p><b>12.00–14.00<br>Pukinmäki Art School: Clown Dattarataa</b><br>Place: Ala-Malmi Square</p><p><b>12.00–14.00<br>Pin-making workshop by Helsinki Upper Secondary School of Visual Arts</b><br>Place: Ala-Malmi Square</p><p><b>12.00–14.00<br>The Yksin (‘Alone’) project: Collage art and lollipop butterflies</b><br>Place: Ala-Malmi Square</p><p><b>13.00–13.30<br>Joyful family music playschool</b><br><i>“Spin like a whirlpool – on the surface of the water! Float like a cloud – up in the sky!\"</i><br>This joyful family music playschool will involve singing, play and making music together in a summery atmosphere. The music playschool will be led by Master of Music and children’s musician Henna-Maija Kuki.<br>Place: Container stage, Ala-Ala-Malmi Square</p><p><b>14.00–14.45<br>Rokkasoppa</b><br>Having reached preschool age, Rokkasoppa are a children’s rock band whose songs are about tastes, smells, sensations and feelings with a rock twist that will have even the adults shaking their butts. “The best thing about food and rock is that you’re free to like what you like. But you do have to taste everything.”<br>Place: Container stage, Ala-Ala-Malmi Square</p><p>Entry to the events is free of charge!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF826880E5BB479091D11E88120EA497/Lasten_lauantai_Rokkasoppa_Riemukas_perhemuskari_kirjaston_lukukeidas_ja_tyopajoja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CF826880E5BB479091D11E88120EA497/Barnens_lordag_Rokkasoppa_glatt_familjemusiklekis_bibliotekets_lasoas_och_verkstader", "en": "http://www.malmitalo.fi/en/events/event/CF826880E5BB479091D11E88120EA497/Children_s_Saturday_Rokkasoppa_a_joyful_family_music_playschool_a_reading_oasis_in_the_library_and_workshops" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68267/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpifns2rm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwdz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsooq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnspkm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsqee/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsq5y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsrwa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnssoa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsthi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsuba/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsu2y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsvum/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnswom/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsxli/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsyeu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsy6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnszym/?format=api" } ], "images": [ { "id": 2384795, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T09:47:43.155385Z", "last_modified_time": "2026-06-01T09:47:43.155398Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/20b4ddf5-8e3c-402a-99c4-b68fc1ec6a8a.png", "name": "", "cropping": "232,0,815,582", "photographer_name": "", "alt_text": "Vanhuksia jumppaamassa. Venyttelevät käsiä tuolilla istuen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384795/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:ago62xjtq4/?format=api" } ], "created_time": "2026-06-01T09:59:11.554145Z", "last_modified_time": "2026-06-01T10:17:44.882318Z", "date_published": null, "start_time": "2026-08-31T09:00:00Z", "end_time": "2026-12-07T10:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Seniorien tuolijumppa Ison Omenan kirjastossa", "sv": "Stolgympa för seniorer på Iso Omena bibliotek", "en": "Chair exercise for seniors at the Iso Omena Library" }, "short_description": { "fi": "Tuolijumppaa kirjastolla maanantaisin 31.8.-11.12.2026 klo 12:00-12:45. Tervetuloa!", "sv": "Stolgymnastik på biblioteket måndagar 31 Aug –11 Dec 2026 kl. 12.00–12.45. Välkommen!", "en": "Chair exercises at the library on Mondays, Aug 31–Dec 11. 2026, from 12:00 to 12:45 p.m. Welcome!" }, "description": { "fi": "<p>Espoon kaupungin liikunta- ja urheiluyksikkö järjestää tuolijumppaa kirjastolla maanantaisin 31.8..-11.12.2026 klo 12:00-12:45 / Ison Omenan kirjasto, Palvelutori 3 krs.</p><p>Monipuolista sovellettua jumppaa pääasiassa tuolilla istuen. Harjoituksia voidaan tehdä myös seisten tuolin tukea hyödyntäen. Tunti sisältää liikkuvuutta ylläpitäviä, lihaksia vahvistavia ja tasapainoa haastavia liikkeitä. Ryhmä on suunnattu erityisryhmille ja senioreille, joilla on toimintakyvyn rajoituksia. Ryhmään voi osallistua myös liikkumisen apuvälineen kanssa. </p><p>Ei ennakkoilmoittautumista. Voit tulla mukaan, kun sinulle sopii</p><p><br></p><p>Jumpat myös keskiviikkoisin kello 10:00-10:45</p><p><br></p><p>Tervetuloa! </p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Esbo stads idrotts- och fritidsavdelning anordnar stolgymnastik på biblioteket på måndagar den 31.8. - 11.12. 12:00-12:45</p><p><br></p><p>Ochså på Onsdagar 10:00-10:45</p><p>Välkommen! </p><p><br></p><p>#HelloEspoo</p>", "en": "<p>The City of Espoo’s Sports and Recreation Unit is hosting chair exercises at the library on Mondays from Aug 31 to December 11. 2026, from 12:00 p.m. to 12:45 p.m. </p><p>Welcome! </p><p>Also on Wednesdays 10:00-10:45</p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifns2rm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68261", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1823577, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-17T09:13:36.186298Z", "last_modified_time": "2026-04-17T09:13:36.186320Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786540.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1823577/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-04-17T09:13:36.063417Z", "last_modified_time": "2026-06-01T10:13:40.093959Z", "date_published": null, "start_time": "2026-06-19", "end_time": "2026-08-15", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Rosamai Kirjokangas: Lähellä ja kätkössä – Taidenäyttely kahvila Naperossa", "sv": "Rosamai Kirjokangas: Lähellä ja kätkössä (nära och dolt) – Konstutställning på kafé Napero", "en": "Rosamai Kirjokangas: Near and Hidden – Art exhibition at Café Napero" }, "short_description": { "fi": "Hiljaiset arjen hetket, pienet suojapaikat ja eläinolennot kohtaavat Rosamai Kirjokankaan näyttelyssä.", "sv": "Lugna vardagsögonblick, små skyddade platser och djurgestalter möts i Rosamai Kirjokangas utställning.", "en": "Quiet everyday moments, small shelters and animal creatures come together in this exhibition by Rosamai Kirjokangas." }, "description": { "fi": "<p>Hiljaiset arjen hetket, pienet suojapaikat ja eläinolennot kohtaavat Rosamai Kirjokankaan näyttelyssä.</p><p>Esillä on vesiväri-, öljypastelli-, tussi- ja akryylitöitä.</p><p>Näyttelyn avajaiset järjestetään Kahvila Naperossa 26.6. klo 15–17 - Tervetuloa!</p><p>Vapaa pääsy</p>", "sv": "<p>Lugna vardagsögonblick, små skyddade platser och djurgestalter möts i Rosamai Kirjokangas utställning.</p><p>I utställningen ingår verk i akvarell, oljepastell, tusch och akryl.</p><p>Vernissage ordnas på kafé Napero 26.6 kl. 15–17 – Välkommen!</p><p>Fritt inträde</p>", "en": "<p>Quiet everyday moments, small shelters and animal creatures come together in this exhibition by Rosamai Kirjokangas.</p><p>The exhibition will feature watercolour, oil pastel, marker and acrylic works.</p><p>The opening of the exhibition will be held at Café Napero on 26 June at 15.00–17.00 – hope to see you there!</p><p>Free entry</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D25BFDF5A577C1762C20817A5AFC30D7/Rosamai_Kirjokangas_Lahella_ja_katkossa", "sv": "http://www.annantalo.fi/sv/evenemang/event/D25BFDF5A577C1762C20817A5AFC30D7/Rosamai_Kirjokangas_Lahella_ja_katkossa_nara_och_dolt_", "en": "http://www.annantalo.fi/en/events/event/D25BFDF5A577C1762C20817A5AFC30D7/Rosamai_Kirjokangas_Near_and_Hidden" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68261/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpie7wpwm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7weim/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wfx4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7whay/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7widm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wjhi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wki4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wlmm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wmou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wnra/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wouy/?format=api" } ], "images": [ { "id": 2384793, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T08:48:20.669067Z", "last_modified_time": "2026-06-01T08:48:20.669078Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8a20647d-b37f-403c-8668-114338e18b56.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "Mustalla pohjalla hämyinen kuja jossa nainen kävelee katulamppujen valossa. Teksti: Dekkariklubi syksy 2026", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384793/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T08:59:17.279066Z", "last_modified_time": "2026-06-01T08:59:17.279082Z", "date_published": null, "start_time": "2026-08-06T12:00:00Z", "end_time": "2026-12-10T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Dekkariklubi syyskausi 2026", "sv": "Deckarklubben, på Finska", "en": "Crime Fiction Club, in Finnish" }, "short_description": { "fi": "Keskustelua dekkareista joka toinen torstai. Tapahtuma on suomenkielinen. ", "sv": "Diskussion om deckare varannan torsdag.\nEvenemanget är på finska.", "en": "Discussion about crime fiction every other Thursday.\nThe event is in Finnish." }, "description": { "fi": "<p>1. Tapaaminen to 6.8. Klo 15-17. Dekkari: Anu Patrakka: Ihailija, 2025 (271s.) “Etsivä Nelson Monteiro-sarjan 3. osa vie lukijan kiehtovalle matkalle Lissabonin fado ravintoloihin. Rikokset ulottuvat kauas Neilikkavallankumouksen aikaan”.</p><p> </p><p>2. To 20.8. Klo 15-17. Dekkari: Barbara Nadel: Arabeski, 2011 (335s.)</p><p>“Nadel tarjoaa juurevaa ihmiskuvausta ja vahvaa paikallisväriä Turkin yhteiskunnasta ja monikerroksellisesta kulttuurista. Tässä Mehmet Suleyman ratkoo arabeskilaulajan vaimon murhaa”.</p><p>\t </p><p>3. To 3.9. Klo 15-17. Dekkari: Johan Theorin: Hämärän hetki, 2008 (429s.)</p><p>“Kirjailijan esikoisteos. Tapahtuu Öölannin saarella Ruotsissa. Päähenkilö on yli 80 v. Gerlof Davidson, eläköitynyt merikapteeni, joka jatkaa 20v jälkeen pojanpoikansa etsintöjä pojan äidin Julian kanssa, kun löytyy uusi johtolanka.” “kirja on lukuelämys, joka jää mieleen”.</p><p>\t </p><p>4. To 17.9. Klo 15-17. Dekkari: Peter James: Kuolleen miehen kasvot, 2025 (416s.+karttoja) “Rikosetsivä Roy Grace tutkii voiko kuollut mies olla tappaja? Jamesin kirjat ovat nopeatempoisia, täynnä odottamattomia juonenkäänteitä, uhkaavia henkilöhahmoja ja tarkkoja kuvauksia nykyaikaisesta poliisityöstä”.</p><p>\t </p><p>5. To 1.10. Klo 15-17. Dekkari: Donna Leon: Hetken huumaa, 2023 (319s.)</p><p> “Komisario Guido Brunettin tutkimukset, nro 30, Venetsiassa”.</p><p> </p><p>6. To 15.10. Klo 15-17. Dekkari: Aamos Honka: Punainen verkko, 2025 (489s.) “Tiedustelumaailman sisäpiiriläisen trilleri vie hybridi operaatioiden salattuun ytimeen”.</p><p> </p><p>7. To 29.10. Klo 15-17. Dekkari: Fred Vargas: Varjojen tallaajat, 2025 (478s.)</p><p> “Komisario Adamsbergin tutkimuksia, 10 osa. Adamsberg tutkii rikoksia bretagnelaiskylässä Ranskassa”. “Kirjailija Vargas on myös arkeologi ja historioitsija”.</p><p> </p><p>8. To 12.11. Klo 15-17. Dekkari: Laura Andersson: Kuolema Kulosaaressa, 2022 (415s.) “Lili Loimola yksityisetsivänä. Hyvän mielen dekkarisarjan avaus, taustana sodanjälkeinen Helsinki 1940-luvulla.”</p><p> </p><p>9. To 26.11. Klo 15-17. Dekkari: Sofie Sarenbrant: Häpeänurkka, 2021 (445s. “Emma Sköld-sarjan 7. Osa. Romaani on kuin huima vuoristorata-ajelu, jonka ei soisi ikinä loppuvan”.</p><p> </p><p>10. To 10.12. Klo 15-17. Dekkari: Joël Dicker: Huoneen 622 arvoitus, 2021 (648s.) “Murhamysteeri juonikoukkujen mestarilta! Arvoitus palatsimaisessa hotellissa Alppien katveessa Sveitsissä”.</p><p> Dekkariklubissa puhutaan osallistujien itse vapaasti valitsemista ja lukemista dekkareista. </p>", "sv": "<p>I Deckarklubben diskuterar deltagarna de deckare som de själva fritt har valt och läst. Se boklistan på de finskspråkiga sidorna.</p>", "en": "<p>In the Crime Fiction Club, participants discuss crime novels they have freely chosen and read themselves.See the book list on the Finnish‑language pages.</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wpwm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpieryuya", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15344/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery36m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T07:43:38.834481Z", "last_modified_time": "2024-04-19T07:43:38.834499Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/freia_23.jpg", "name": "", "cropping": "74,0,266,191", "photographer_name": "", "alt_text": "Lukukoira Freia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T07:44:22.724779Z", "last_modified_time": "2026-06-01T07:44:22.724790Z", "date_published": null, "start_time": "2026-11-28T09:00:00Z", "end_time": "2026-11-28T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lukukoira Freia", "sv": "Läshund Freia", "en": "Reading dog Freia" }, "short_description": { "fi": "Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "description": { "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle.</p><p>Freia on tavattavissa lauantaisin:</p><p>lauantai 22.8. klo 11-12</p><p>lauantai 5.9. klo 11-12</p><p>lauantai 19.9. klo 11-12</p><p>lauantai 3.10 klo 11-12</p><p>lauantai 24.10. klo 11-12</p><p>lauantai 7.11. klo 11-12</p><p>lauantai 21.11. klo 11-12</p><p>lauantai 5.12. klo 11-12</p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.</p><p> 22.8. klo 11-12</p><p>5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p>5.12. klo 11-12</p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener.</p><p> 22.8. klo 11-12</p><p> 5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p> 5.12. klo 11-12</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryuya/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpieryv5a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15344/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery36m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T07:43:38.834481Z", "last_modified_time": "2024-04-19T07:43:38.834499Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/freia_23.jpg", "name": "", "cropping": "74,0,266,191", "photographer_name": "", "alt_text": "Lukukoira Freia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T07:44:22.682624Z", "last_modified_time": "2026-06-01T07:44:22.682635Z", "date_published": null, "start_time": "2026-11-14T09:00:00Z", "end_time": "2026-11-14T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lukukoira Freia", "sv": "Läshund Freia", "en": "Reading dog Freia" }, "short_description": { "fi": "Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "description": { "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle.</p><p>Freia on tavattavissa lauantaisin:</p><p>lauantai 22.8. klo 11-12</p><p>lauantai 5.9. klo 11-12</p><p>lauantai 19.9. klo 11-12</p><p>lauantai 3.10 klo 11-12</p><p>lauantai 24.10. klo 11-12</p><p>lauantai 7.11. klo 11-12</p><p>lauantai 21.11. klo 11-12</p><p>lauantai 5.12. klo 11-12</p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.</p><p> 22.8. klo 11-12</p><p>5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p>5.12. klo 11-12</p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener.</p><p> 22.8. klo 11-12</p><p> 5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p> 5.12. klo 11-12</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryv5a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpierywy4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15344/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery36m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T07:43:38.834481Z", "last_modified_time": "2024-04-19T07:43:38.834499Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/freia_23.jpg", "name": "", "cropping": "74,0,266,191", "photographer_name": "", "alt_text": "Lukukoira Freia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T07:44:22.639664Z", "last_modified_time": "2026-06-01T07:44:22.639675Z", "date_published": null, "start_time": "2026-10-31T09:00:00Z", "end_time": "2026-10-31T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lukukoira Freia", "sv": "Läshund Freia", "en": "Reading dog Freia" }, "short_description": { "fi": "Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "description": { "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle.</p><p>Freia on tavattavissa lauantaisin:</p><p>lauantai 22.8. klo 11-12</p><p>lauantai 5.9. klo 11-12</p><p>lauantai 19.9. klo 11-12</p><p>lauantai 3.10 klo 11-12</p><p>lauantai 24.10. klo 11-12</p><p>lauantai 7.11. klo 11-12</p><p>lauantai 21.11. klo 11-12</p><p>lauantai 5.12. klo 11-12</p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.</p><p> 22.8. klo 11-12</p><p>5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p>5.12. klo 11-12</p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener.</p><p> 22.8. klo 11-12</p><p> 5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p> 5.12. klo 11-12</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpierywy4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpieryxv4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15344/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery36m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T07:43:38.834481Z", "last_modified_time": "2024-04-19T07:43:38.834499Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/freia_23.jpg", "name": "", "cropping": "74,0,266,191", "photographer_name": "", "alt_text": "Lukukoira Freia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T07:44:22.597106Z", "last_modified_time": "2026-06-01T07:44:22.597117Z", "date_published": null, "start_time": "2026-10-17T08:00:00Z", "end_time": "2026-10-17T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lukukoira Freia", "sv": "Läshund Freia", "en": "Reading dog Freia" }, "short_description": { "fi": "Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "description": { "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle.</p><p>Freia on tavattavissa lauantaisin:</p><p>lauantai 22.8. klo 11-12</p><p>lauantai 5.9. klo 11-12</p><p>lauantai 19.9. klo 11-12</p><p>lauantai 3.10 klo 11-12</p><p>lauantai 24.10. klo 11-12</p><p>lauantai 7.11. klo 11-12</p><p>lauantai 21.11. klo 11-12</p><p>lauantai 5.12. klo 11-12</p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.</p><p> 22.8. klo 11-12</p><p>5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p>5.12. klo 11-12</p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener.</p><p> 22.8. klo 11-12</p><p> 5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p> 5.12. klo 11-12</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryxv4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpieryyqu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15344/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery36m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T07:43:38.834481Z", "last_modified_time": "2024-04-19T07:43:38.834499Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/freia_23.jpg", "name": "", "cropping": "74,0,266,191", "photographer_name": "", "alt_text": "Lukukoira Freia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T07:44:22.551757Z", "last_modified_time": "2026-06-01T07:44:22.551769Z", "date_published": null, "start_time": "2026-10-03T08:00:00Z", "end_time": "2026-10-03T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lukukoira Freia", "sv": "Läshund Freia", "en": "Reading dog Freia" }, "short_description": { "fi": "Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "description": { "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle.</p><p>Freia on tavattavissa lauantaisin:</p><p>lauantai 22.8. klo 11-12</p><p>lauantai 5.9. klo 11-12</p><p>lauantai 19.9. klo 11-12</p><p>lauantai 3.10 klo 11-12</p><p>lauantai 24.10. klo 11-12</p><p>lauantai 7.11. klo 11-12</p><p>lauantai 21.11. klo 11-12</p><p>lauantai 5.12. klo 11-12</p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.</p><p> 22.8. klo 11-12</p><p>5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p>5.12. klo 11-12</p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener.</p><p> 22.8. klo 11-12</p><p> 5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p> 5.12. klo 11-12</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryyqu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpieryzlm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15344/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery36m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T07:43:38.834481Z", "last_modified_time": "2024-04-19T07:43:38.834499Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/freia_23.jpg", "name": "", "cropping": "74,0,266,191", "photographer_name": "", "alt_text": "Lukukoira Freia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T07:44:22.506026Z", "last_modified_time": "2026-06-01T07:44:22.506038Z", "date_published": null, "start_time": "2026-09-19T08:00:00Z", "end_time": "2026-09-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, "name": { "fi": "Lukukoira Freia", "sv": "Läshund Freia", "en": "Reading dog Freia" }, "short_description": { "fi": "Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "description": { "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle.</p><p>Freia on tavattavissa lauantaisin:</p><p>lauantai 22.8. klo 11-12</p><p>lauantai 5.9. klo 11-12</p><p>lauantai 19.9. klo 11-12</p><p>lauantai 3.10 klo 11-12</p><p>lauantai 24.10. klo 11-12</p><p>lauantai 7.11. klo 11-12</p><p>lauantai 21.11. klo 11-12</p><p>lauantai 5.12. klo 11-12</p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.</p><p> 22.8. klo 11-12</p><p>5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p>5.12. klo 11-12</p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener.</p><p> 22.8. klo 11-12</p><p> 5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p> 5.12. klo 11-12</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryzlm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpiery2ie", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15344/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery36m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T07:43:38.834481Z", "last_modified_time": "2024-04-19T07:43:38.834499Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/freia_23.jpg", "name": "", "cropping": "74,0,266,191", "photographer_name": "", "alt_text": "Lukukoira Freia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T07:44:22.458900Z", "last_modified_time": "2026-06-01T07:44:22.458911Z", "date_published": null, "start_time": "2026-09-05T08:00:00Z", "end_time": "2026-09-05T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lukukoira Freia", "sv": "Läshund Freia", "en": "Reading dog Freia" }, "short_description": { "fi": "Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "description": { "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle.</p><p>Freia on tavattavissa lauantaisin:</p><p>lauantai 22.8. klo 11-12</p><p>lauantai 5.9. klo 11-12</p><p>lauantai 19.9. klo 11-12</p><p>lauantai 3.10 klo 11-12</p><p>lauantai 24.10. klo 11-12</p><p>lauantai 7.11. klo 11-12</p><p>lauantai 21.11. klo 11-12</p><p>lauantai 5.12. klo 11-12</p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.</p><p> 22.8. klo 11-12</p><p>5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p>5.12. klo 11-12</p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener.</p><p> 22.8. klo 11-12</p><p> 5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p> 5.12. klo 11-12</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery2ie/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpiery3c4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15344/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery36m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T07:43:38.834481Z", "last_modified_time": "2024-04-19T07:43:38.834499Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/freia_23.jpg", "name": "", "cropping": "74,0,266,191", "photographer_name": "", "alt_text": "Lukukoira Freia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T07:44:22.406005Z", "last_modified_time": "2026-06-01T07:44:22.406018Z", "date_published": null, "start_time": "2026-08-22T08:00:00Z", "end_time": "2026-08-22T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lukukoira Freia", "sv": "Läshund Freia", "en": "Reading dog Freia" }, "short_description": { "fi": "Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "description": { "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle.</p><p>Freia on tavattavissa lauantaisin:</p><p>lauantai 22.8. klo 11-12</p><p>lauantai 5.9. klo 11-12</p><p>lauantai 19.9. klo 11-12</p><p>lauantai 3.10 klo 11-12</p><p>lauantai 24.10. klo 11-12</p><p>lauantai 7.11. klo 11-12</p><p>lauantai 21.11. klo 11-12</p><p>lauantai 5.12. klo 11-12</p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.</p><p> 22.8. klo 11-12</p><p>5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p>5.12. klo 11-12</p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener.</p><p> 22.8. klo 11-12</p><p> 5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p> 5.12. klo 11-12</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery3c4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpiery36m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15344/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryuya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryv5a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpierywy4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryxv4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryyqu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryzlm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery2ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery3c4/?format=api" } ], "images": [ { "id": 150687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T07:43:38.834481Z", "last_modified_time": "2024-04-19T07:43:38.834499Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/freia_23.jpg", "name": "", "cropping": "74,0,266,191", "photographer_name": "", "alt_text": "Lukukoira Freia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T07:44:21.615633Z", "last_modified_time": "2026-06-01T07:44:21.615650Z", "date_published": null, "start_time": "2026-08-22T08:00:00Z", "end_time": "2026-11-28T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lukukoira Freia", "sv": "Läshund Freia", "en": "Reading dog Freia" }, "short_description": { "fi": "Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "description": { "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle.</p><p>Freia on tavattavissa lauantaisin:</p><p>lauantai 22.8. klo 11-12</p><p>lauantai 5.9. klo 11-12</p><p>lauantai 19.9. klo 11-12</p><p>lauantai 3.10 klo 11-12</p><p>lauantai 24.10. klo 11-12</p><p>lauantai 7.11. klo 11-12</p><p>lauantai 21.11. klo 11-12</p><p>lauantai 5.12. klo 11-12</p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.</p><p> 22.8. klo 11-12</p><p>5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p>5.12. klo 11-12</p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener.</p><p> 22.8. klo 11-12</p><p> 5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p> 5.12. klo 11-12</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery36m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpiery7oe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?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:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery5je/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery5we/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery6ay/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery6mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery6xm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery7ce/?format=api" } ], "images": [ { "id": 153506, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T13:24:38.726896Z", "last_modified_time": "2024-12-18T13:24:38.726925Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3c25c00f-49c1-45df-a6d9-ab0ae4ca9c83.png", "name": "", "cropping": "58,0,778,719", "photographer_name": "", "alt_text": "Koira, jolla on suussa keltaisia kesäkukkia ja vihreä nurmikko taustalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153506/?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-01T07:28:35.652853Z", "last_modified_time": "2026-06-01T07:28:35.652865Z", "date_published": null, "start_time": "2026-07-01T15:00:00Z", "end_time": "2026-12-02T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lukukoira Lady", "sv": "Läshunden Lady", "en": "Reading dog Lady" }, "short_description": { "fi": "Jos lukeminen tuntuu vaikealta, Ladyn kanssa on kiva opetella ja samalla voi antaa rapsutuksia.", "sv": "Om läsning känns svårt är det trevligt att öva med Lady, och samtidigt kan man klappa henne.", "en": "If reading feels difficult, it’s nice to practice with Lady, and you can give her some pets at the same time." }, "description": { "fi": "<p>Jos lukeminen tuntuu vaikealta, lukulemmikki Ladyn kanssa on kiva opetella ja samalla voi antaa rapsutuksia.</p>", "sv": "<p>Om läsning känns svårt är det trevligt att öva med Lady, och samtidigt kan man klappa henne.</p>", "en": "<p>If reading feels difficult, it’s nice to practice with Lady, and you can give her some pets at the same time.</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery7oe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69039", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201310, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-15T09:14:14.303871Z", "last_modified_time": "2026-05-15T09:14:14.303893Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785723.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201310/?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-15T09:14:14.218047Z", "last_modified_time": "2026-06-01T07:13:43.689660Z", "date_published": null, "start_time": "2026-08-30T11: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, "name": { "fi": "Mutaveijarit – Espan lavan kauden päättäjäiset", "sv": "Mutaveijarit – Säsongsavslutning på Esplanadestraden", "en": "Mutaveijarit – Espa Stage Season’s Closing Party" }, "short_description": { "fi": "Mutaveijarit kutsuu kaikenikäiset kuulijat mukaan vauhdikkaalle musiikkimatkalle ystävyyden, luonnon ja kuravellin riemukkaaseen maailmaan.", "sv": "Mutavejarit bjuder lyssnare i alla åldrar på en fartfylld musikresa till vänskapens, naturens och lervällingens glada värld.", "en": "Mutaveijarit (“muddy mates”) invites people of all ages on a musical journey to the wonderful world of friendship, nature and mud." }, "description": { "fi": "<p>Mutaveijarit kutsuu kaikenikäiset kuulijat mukaan vauhdikkaalle musiikkimatkalle ystävyyden, luonnon ja kuravellin riemukkaaseen maailmaan.</p><p>Seikkailemme yhdessä ympäri ämpäri maailman, sukellamme välillä merten ja järvien läpi, kohtaamme monenmoista ystävää ja tuttua ja ihmettelemme yhdessä montaa juttua. Konsertissa pääset mukaan laulamaan ja leikkimään Mutaveijareiden valloittavaan maailmaan.</p><p>Riemukas ja supersuosittu Mutaveijarit on maanmainio lastenmusiikkiyhtye, joka on tunnettu valloittavasta lavaesiintymisestään ja mukaansatempaavista lauluistaan. Yhtyeen musiikissa mielikuvitus on päästetty valloilleen ja eri musiikkityylejä yhdistellään rohkeasti ja leikkisästi.</p><p>Musiikillisesti ja sanoituksellisesti oivaltavat laulut yhdessä innostavien ja pedagogisesti monipuolisten laululeikkien kanssa tempaavat kuulijansa musiikilliselle retkelle, jonka hauskoissa ja jännittävissä käänteissä viihtyvät niin lapset kuin aikuisetkin.</p><p><i>Hyppää kyytiin nyt, laita kiinni turvavyö!</i></p><p>Mutaveijarit: Veikko Muikku, Johanna Mäkitalo, Mari Nieminen, Jussi Nikula, Miia Reko, Eveliina Saikkonen, Saija Santavirta, Leena Untamala</p>", "sv": "<p>Mutavejarit bjuder lyssnare i alla åldrar på en fartfylld musikresa till vänskapens, naturens och lervällingens glada värld.</p><p>Vi ger oss ut på äventyr runt om i världen, dyker ibland genom hav och sjöar, möter många olika slags vänner och bekanta och förundras över många saker tillsammans. På konserten får du vara med och sjunga och leka i världen som Mutaveijarit erövrat.</p><p>Den glada och superpopulära Mutaveijarit är en toppen barnmusikgrupp som är känd för sina fascinerande scenframträdanden och medryckande sånger. I bandets musik har fantasin fått löpa fritt och olika musikstilar kombineras modigt och lekfullt. De musikaliskt och textmässigt insiktsfulla sångerna tillsammans med inspirerande och pedagogiskt mångsidiga sånglekar rycker lyssnarna med på en musikalisk resa, som har roliga och spännande vändningar där både barn och vuxna trivs.</p><p><i>Hoppa in och spänn fast säkerhetsbältet!</i></p><p>Mutaveijarit: Veikko Muikku, Johanna Mäkitalo, Mari Nieminen, Jussi Nikula, Miia Reko, Eveliina Saikkonen, Saija Santavirta, Leena Untamala</p>", "en": "<p>Mutaveijarit (“muddy mates”) invites people of all ages on a musical journey to the wonderful world of friendship, nature and mud.</p><p>We will embark on a journey across the world together, occasionally diving into the depths of seas and lakes, meeting friends and acquaintances along the way and marvelling at all the wonders of the world. During the concert, the audience has the chance to sing and play along in the enchanting world of Mutaveijarit.</p><p>The hilarious and super-popular Mutaveijarit is a nationally renowned children's music group known for their captivating stage performances and exciting songs. The music of the band is awash with imagination and boldly and playfully combines different music styles. The musically and lyrically insightful songs, combined with inspirational and pedagogically versatile singing games, whisk the listener away on a musical journey that is fun and exciting for people of all ages.</p><p><i>Get in now, fasten your seat belt!</i></p><p>Mutaveijarit: Veikko Muikku, Johanna Mäkitalo, Mari Nieminen, Jussi Nikula, Miia Reko, Eveliina Saikkonen, Saija Santavirta, Leena Untamala</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/4C124063A83FF3509A637A9416E084B7/Mutaveijarit", "sv": "http://www.espanlava.fi/sv/evenemang/event/4C124063A83FF3509A637A9416E084B7/Mutaveijarit", "en": "http://www.espanlava.fi/en/events/event/4C124063A83FF3509A637A9416E084B7/Mutaveijarit" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69039/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69038", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201309, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-15T09:14:13.944954Z", "last_modified_time": "2026-05-15T09:14:13.944969Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785722.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201309/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-15T09:14:13.843033Z", "last_modified_time": "2026-06-01T07:13:43.459282Z", "date_published": null, "start_time": "2026-08-28T17:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Back to the Future – Paluu tulevaisuuteen", "sv": "Back to the Future – Tillbaka till framtiden", "en": "Back to the Future" }, "short_description": { "fi": "Tule aikamatkalle 1980-luvulle katsomaan Paluu tulevaisuuteen -elokuvaa oikealla 35mm filmiprojektorilla esitettynä.", "sv": "Gör en tidsresa till 1980-talet och se filmen Tillbaka till framtiden visad med en riktig 35 mm filmprojektor.", "en": "Take a trip back in time to the 1980s and watch Back to the Future on a real 35 mm film projector." }, "description": { "fi": "<p>Tule aikamatkalle 1980-luvulle katsomaan Paluu tulevaisuuteen -elokuvaa oikealla 35mm filmiprojektorilla esitettynä.</p><p>Elokuvasta esitetään sama kopio, jota vuonna 1985 näytettiin teattereissa.</p><p>Esitys alkaa hämärän laskeuduttua noin kello 20.30.</p><p>Tapahtuma on ikärajaton ja pääsymaksuton.<br>Kesto: noin 2 tuntia, lyhyt väliaika.<br>Esityskieli: englanti, tekstitys suomeksi ja ruotsiksi.</p><p>Pukeuduthan sään mukaisesti; kannattaa myös ottaa oma istuin matkaan!</p><p>Tekninen toteutus Helsingin Studiopalvelut <br>https://helsinginstudiopalvelut.com/</p>", "sv": "<p>Gör en tidsresa till 1980-talet och se filmen Tillbaka till framtiden visad med en riktig 35 mm filmprojektor.</p><p>Filmen visas i samma kopia som visades på biografer 1985.</p><p>Föreställningen börjar efter skymningen omkring kl. 20.30.</p><p>Evenemanget har ingen åldersgräns eller inträdesavgift.<br>Längd: cirka 2 timmar, kort paus.<br>Filmens språk är engelska, med textning på finska och svenska.</p><p>Klä dig efter vädret; det är också värt att ta med en egen sits!</p><p>Tekniskt genomförande Helsingin Studiopalvelut <br>https://helsinginstudiopalvelut.com/</p>", "en": "<p>Take a trip back in time to the 1980s and watch Back to the Future on a real 35 mm film projector.</p><p>The film will be shown in the same print that was shown in theatres in 1985.</p><p>The screening will start after dusk at around 20.30.</p><p>The event is free of charge for all ages.<br>Duration: about 2 hours, short intermission.<br>Language: English with subtitles in Finnish and Swedish.</p><p>Dress for the weather and bring your own seat!</p><p>Technical implementation Helsingin Studiopalvelut <br>https://helsinginstudiopalvelut.com/</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C86AEDB62D914FDCF2BAC958D124CC85/Back_to_the_Future_Paluu_tulevaisuuteen", "sv": "http://www.espanlava.fi/sv/evenemang/event/C86AEDB62D914FDCF2BAC958D124CC85/Back_to_the_Future_Tillbaka_till_framtiden", "en": "http://www.espanlava.fi/en/events/event/C86AEDB62D914FDCF2BAC958D124CC85/Back_to_the_Future" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69038/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69037", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201308, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-15T09:14:13.343791Z", "last_modified_time": "2026-05-15T09:14:13.343811Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785721.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201308/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-15T09:14:13.240037Z", "last_modified_time": "2026-06-01T07:13:43.252145Z", "date_published": null, "start_time": "2026-08-28T16: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, "name": { "fi": "Hissun Kissun", "sv": "Hissun Kissun", "en": "Hissun Kissun" }, "short_description": { "fi": "Suomalaisen psykedeelisen popin tulokas Hissun Kissun julkaisi debyyttialbuminsa Kaleidoskooppi keväällä 2026.", "sv": "Nykomlingen inom finländsk psykedelisk pop, Hissun Kissun, släppte sitt debutalbum Kaleidoskooppi våren 2026.", "en": "Finnish psychedelic pop newcomer Hissun Kissun released their debut album Kaleidoskooppi in spring 2026." }, "description": { "fi": "<p>Suomalaisen psykedeelisen popin tulokas Hissun Kissun julkaisi debyyttialbuminsa Kaleidoskooppi keväällä 2026.</p><p>Kaleidoskooppi on omaleimaisen psykedeelisen popin taidonnäyte, jonka heleät syntetisaattorit, eteeriset laulumelodiat ja kirskuvat fuzz-kitarat luotaavat kuulijan matkalle syvälle omaan maailmaansa. Kaleidoskoopin tavoin albumi heijastaa useista eri vaikutteista ja tyylisuuntauksista olevat elementit jatkuvasti vaihtuviksi ja symmetrisiksi kuvioiksi luoden monipuolisen ja monimuotoisen kokonaisuuden, jossa yhdistyy moderni psykedelia, tanssittavat rytmit sekä lumoavat sävellykset.</p><p>Vuonna 2023 Tampereella perustettu Hissun Kissun syntyi rakkaudesta popmusiikkia, fuzzia ja analogisia syntetisaattoreita kohtaan. Sen vuoksi onkin sopivaa, että yhtye ponnistaa juuri Tampereelta, suomalaisen psykedeelisen musiikin pääkallopaikalta.</p><p>Jäsenten muihin yhtyeisiin kuuluvat muun muassa kokoonpanot Radio Supernova, Polymoon ja Skyjoggers. Hissun Kissun yhdisteleekin erilaisia vaikutteita, joiden lopputuloksena on omaleimainen psykedeelinen mansepop, jossa kuuluu kaikuja niin dream popista, psykedeelisestä rokista, diskosta kuin myös elektronisesta musiikista.</p>", "sv": "<p>Nykomlingen inom finländsk psykedelisk pop, Hissun Kissun, släppte sitt debutalbum Kaleidoskooppi våren 2026.</p><p>Kaleidoskooppi är ett konststycke av särpräglad psykedelisk pop med mjuka syntetisatorer, eteriska sångmelodier och skärande fuzz-gitarrer som tar lyssnaren på en resa djupt in i sin egen värld. Likt ett kalejdoskop reflekterar albumet element från många olika influenser och genrer i ständigt föränderliga och symmetriska mönster, vilket skapar en mångsidig och mångfacetterad helhet som kombinerar modern psykedelia, dansbara rytmer och förtjusande kompositioner.</p><p>Hissun Kissun, som grundades i Tammerfors 2023, föddes ur kärleken till popmusik, fuzz och analoga syntetisatorer. Det är därför passande att bandet är baserat just i Tammerfors, högborgen för den finländska psykedeliska musiken.</p><p>Medlemmarnas andra band inkluderar Radio Supernova, Polymoon och Skyjoggers. Hissun Kissun kombinerar olika influenser, vilket resulterar i en särpräglad psykedelisk mansepop med ekon av dream pop, psykedelisk rock, disco och även elektronisk musik.</p>", "en": "<p>Finnish psychedelic pop newcomer Hissun Kissun released their debut album Kaleidoskooppi in spring 2026.</p><p>Kaleidoskooppi is a masterpiece of distinctive psychedelic pop, with gentle synths, ethereal vocal melodies and sizzling fuzz guitars that take the listener on a journey deep into their own world. Like a kaleidoscope, the album reflects elements from many different influences and genres in ever-changing and symmetrical patterns, creating a diverse and multifaceted experience that combines modern psychedelia, danceable rhythms and enchanting compositions.</p><p>Hissun Kissun, founded in Tampere in 2023, was born out of love for pop music, fuzz and analogue synthesisers. It is therefore fitting that the band is based in Tampere, the main hub of Finnish psychedelic music.</p><p>The members' other bands include Radio Supernova, Polymoon and Skyjoggers. Hissun Kissun combines different influences, resulting in distinctive psychedelic Tampere-based pop with echoes of dream pop, psychedelic rock, disco and electronic music.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/4FE9E33F31D5D44CF09F7C918B94C3B3/Hissun_Kissun", "sv": "http://www.espanlava.fi/sv/evenemang/event/4FE9E33F31D5D44CF09F7C918B94C3B3/Hissun_Kissun", "en": "http://www.espanlava.fi/en/events/event/4FE9E33F31D5D44CF09F7C918B94C3B3/Hissun_Kissun" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69037/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpieeirve", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2384790, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T06:36:05.206824Z", "last_modified_time": "2026-06-01T06:36:05.206837Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/43461cea-1adb-4bdd-8105-7893307a6c14.jpg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Tanja Kontisen teos", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384790/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T06:48:56.450647Z", "last_modified_time": "2026-06-01T06:48:56.450658Z", "date_published": null, "start_time": "2026-06-01T05: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, "name": { "fi": " Kesän kukat -näyttely " }, "short_description": { "fi": "Tanja Kontinen on harrastelijataiteilijana piirtänyt ja maalannut pienestä pitäen. " }, "description": { "fi": "<p>Tanja Kontinen on harrastelijataiteilijana piirtänyt ja maalannut pienestä pitäen. \"Piirrän enimmäkseen lyijykynillä tai piirustuskyniä käyttäen ja aiheena töissäni ovat useimmiten kukat.\" kertoo Tanja. </p><p><br></p><p>Näyttelyyn tulevat työt poikkeavat siitä, mitä hän yleensä tekee. Nyt hän on käyttänyt akvarellikyniä ensimmäistä kertaa. Töissä yhdistyvät Tanjalle mieluisin eli piirtäminen ja akvarellikynien käyttö. \"Minusta idea oli kiva toteuttaa ja sain tekniikan haltuun. Työni ovat saaneet inspiraatiota Suomen luonnossa esiintyvistä kesän kauneimmista kukista.\" kuvailee Tanja. </p><p><br></p><p>Työt on tehty akvarellipaperille. Käytin töissäni Sakura Micron 01 waterproof pen, Pilot drawing pen 02 ja Stabilo aquacolor -värikyniä. </p><p><br></p><p> </p><p><br></p><p>Kiitos, kun tulit katsomaan töitäni. Lämpimästi tervetuloa Tapiolan kirjastoon!</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Näyttelyvitriini" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieeirve/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }