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=33
{ "meta": { "count": 37596, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=34", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=32" }, "data": [ { "id": "espoo_le:agqm3tzyca", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz2xa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T09:39:21.600649Z", "last_modified_time": "2024-03-15T09:39:21.600673Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Miestenkahvila_helmet.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Miehiä kahvin äärellä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-23T09:38:58.153450Z", "last_modified_time": "2026-09-23T09:38:58.153464Z", "date_published": null, "start_time": "2027-02-19T11:00:00Z", "end_time": "2027-02-19T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli", "sv": "Akseli", "en": "Akseli" }, "description": { "fi": "<p>Miesten kahvila arabiaa puhuville miehille</p>", "sv": "<p>Ett herrcafé för arabisktalande män</p>", "en": "<p>A men's cafe for Arabic speaking men</p>" }, "short_description": { "fi": "Miesten kahvila arabiaa puhuville miehille", "sv": "Ett herrcafé för arabisktalande män", "en": "A men's cafe for Arabic speaking men" }, "name": { "fi": "Miesten kahvila", "sv": "Herrcafe", "en": "Men's cafe" }, "provider": { "fi": "Mirsal", "sv": "Mirsal", "en": "Mirsal" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzyca/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqm3tzynq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz2xa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T09:39:21.600649Z", "last_modified_time": "2024-03-15T09:39:21.600673Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Miestenkahvila_helmet.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Miehiä kahvin äärellä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-23T09:38:58.074300Z", "last_modified_time": "2026-09-23T09:38:58.074314Z", "date_published": null, "start_time": "2027-02-12T11:00:00Z", "end_time": "2027-02-12T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli", "sv": "Akseli", "en": "Akseli" }, "description": { "fi": "<p>Miesten kahvila arabiaa puhuville miehille</p>", "sv": "<p>Ett herrcafé för arabisktalande män</p>", "en": "<p>A men's cafe for Arabic speaking men</p>" }, "short_description": { "fi": "Miesten kahvila arabiaa puhuville miehille", "sv": "Ett herrcafé för arabisktalande män", "en": "A men's cafe for Arabic speaking men" }, "name": { "fi": "Miesten kahvila", "sv": "Herrcafe", "en": "Men's cafe" }, "provider": { "fi": "Mirsal", "sv": "Mirsal", "en": "Mirsal" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzynq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqm3tzyzi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz2xa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T09:39:21.600649Z", "last_modified_time": "2024-03-15T09:39:21.600673Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Miestenkahvila_helmet.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Miehiä kahvin äärellä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-23T09:38:57.993578Z", "last_modified_time": "2026-09-23T09:38:57.993592Z", "date_published": null, "start_time": "2027-02-05T11:00:00Z", "end_time": "2027-02-05T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli", "sv": "Akseli", "en": "Akseli" }, "description": { "fi": "<p>Miesten kahvila arabiaa puhuville miehille</p>", "sv": "<p>Ett herrcafé för arabisktalande män</p>", "en": "<p>A men's cafe for Arabic speaking men</p>" }, "short_description": { "fi": "Miesten kahvila arabiaa puhuville miehille", "sv": "Ett herrcafé för arabisktalande män", "en": "A men's cafe for Arabic speaking men" }, "name": { "fi": "Miesten kahvila", "sv": "Herrcafe", "en": "Men's cafe" }, "provider": { "fi": "Mirsal", "sv": "Mirsal", "en": "Mirsal" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzyzi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqm3tzzfm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz2xa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T09:39:21.600649Z", "last_modified_time": "2024-03-15T09:39:21.600673Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Miestenkahvila_helmet.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Miehiä kahvin äärellä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-23T09:38:57.912542Z", "last_modified_time": "2026-09-23T09:38:57.912556Z", "date_published": null, "start_time": "2027-01-29T11:00:00Z", "end_time": "2027-01-29T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli", "sv": "Akseli", "en": "Akseli" }, "description": { "fi": "<p>Miesten kahvila arabiaa puhuville miehille</p>", "sv": "<p>Ett herrcafé för arabisktalande män</p>", "en": "<p>A men's cafe for Arabic speaking men</p>" }, "short_description": { "fi": "Miesten kahvila arabiaa puhuville miehille", "sv": "Ett herrcafé för arabisktalande män", "en": "A men's cafe for Arabic speaking men" }, "name": { "fi": "Miesten kahvila", "sv": "Herrcafe", "en": "Men's cafe" }, "provider": { "fi": "Mirsal", "sv": "Mirsal", "en": "Mirsal" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzzfm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqm3tzzqu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz2xa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T09:39:21.600649Z", "last_modified_time": "2024-03-15T09:39:21.600673Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Miestenkahvila_helmet.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Miehiä kahvin äärellä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-23T09:38:57.828862Z", "last_modified_time": "2026-09-23T09:38:57.828876Z", "date_published": null, "start_time": "2027-01-22T11:00:00Z", "end_time": "2027-01-22T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli", "sv": "Akseli", "en": "Akseli" }, "description": { "fi": "<p>Miesten kahvila arabiaa puhuville miehille</p>", "sv": "<p>Ett herrcafé för arabisktalande män</p>", "en": "<p>A men's cafe for Arabic speaking men</p>" }, "short_description": { "fi": "Miesten kahvila arabiaa puhuville miehille", "sv": "Ett herrcafé för arabisktalande män", "en": "A men's cafe for Arabic speaking men" }, "name": { "fi": "Miesten kahvila", "sv": "Herrcafe", "en": "Men's cafe" }, "provider": { "fi": "Mirsal", "sv": "Mirsal", "en": "Mirsal" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzzqu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqm3tzz6e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz2xa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T09:39:21.600649Z", "last_modified_time": "2024-03-15T09:39:21.600673Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Miestenkahvila_helmet.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Miehiä kahvin äärellä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-23T09:38:57.749580Z", "last_modified_time": "2026-09-23T09:38:57.749594Z", "date_published": null, "start_time": "2027-01-15T11:00:00Z", "end_time": "2027-01-15T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli", "sv": "Akseli", "en": "Akseli" }, "description": { "fi": "<p>Miesten kahvila arabiaa puhuville miehille</p>", "sv": "<p>Ett herrcafé för arabisktalande män</p>", "en": "<p>A men's cafe for Arabic speaking men</p>" }, "short_description": { "fi": "Miesten kahvila arabiaa puhuville miehille", "sv": "Ett herrcafé för arabisktalande män", "en": "A men's cafe for Arabic speaking men" }, "name": { "fi": "Miesten kahvila", "sv": "Herrcafe", "en": "Men's cafe" }, "provider": { "fi": "Mirsal", "sv": "Mirsal", "en": "Mirsal" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzz6e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqm3tz2li", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz2xa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T09:39:21.600649Z", "last_modified_time": "2024-03-15T09:39:21.600673Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Miestenkahvila_helmet.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Miehiä kahvin äärellä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-23T09:38:57.620459Z", "last_modified_time": "2026-09-23T09:38:57.620475Z", "date_published": null, "start_time": "2027-01-08T11:00:00Z", "end_time": "2027-01-08T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli", "sv": "Akseli", "en": "Akseli" }, "description": { "fi": "<p>Miesten kahvila arabiaa puhuville miehille</p>", "sv": "<p>Ett herrcafé för arabisktalande män</p>", "en": "<p>A men's cafe for Arabic speaking men</p>" }, "short_description": { "fi": "Miesten kahvila arabiaa puhuville miehille", "sv": "Ett herrcafé för arabisktalande män", "en": "A men's cafe for Arabic speaking men" }, "name": { "fi": "Miesten kahvila", "sv": "Herrcafe", "en": "Men's cafe" }, "provider": { "fi": "Mirsal", "sv": "Mirsal", "en": "Mirsal" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz2li/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqm3tz2xa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzwhu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzwue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzw7y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzxle/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzxwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzyca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzynq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzyzi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzzfm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzzqu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tzz6e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz2li/?format=api" } ], "images": [ { "id": 150446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T09:39:21.600649Z", "last_modified_time": "2024-03-15T09:39:21.600673Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Miestenkahvila_helmet.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Miehiä kahvin äärellä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-23T09:38:56.589933Z", "last_modified_time": "2026-09-23T09:38:56.589951Z", "date_published": null, "start_time": "2027-01-08T11:00:00Z", "end_time": "2027-03-26T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli", "sv": "Akseli", "en": "Akseli" }, "description": { "fi": "<p>Miesten kahvila arabiaa puhuville miehille</p>", "sv": "<p>Ett herrcafé för arabisktalande män</p>", "en": "<p>A men's cafe for Arabic speaking men</p>" }, "short_description": { "fi": "Miesten kahvila arabiaa puhuville miehille", "sv": "Ett herrcafé för arabisktalande män", "en": "A men's cafe for Arabic speaking men" }, "name": { "fi": "Miesten kahvila", "sv": "Herrcafe", "en": "Men's cafe" }, "provider": { "fi": "Mirsal", "sv": "Mirsal", "en": "Mirsal" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz2xa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqm3tz3fu", "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/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz46u/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493935, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-27T10:56:01.330324Z", "last_modified_time": "2025-11-27T10:56:01.330340Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/39006b2b-94af-417b-8e50-05780f069792.jpg", "name": "Mikko Airaksinen", "cropping": "100,0,533,434", "photographer_name": "Maru Peltonen", "alt_text": "Mikko Airaksinen Lukupiirin vetäjä kirja kädessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493935/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-23T09:32:32.448134Z", "last_modified_time": "2026-09-23T09:32:32.448149Z", "date_published": null, "start_time": "2026-12-10T16:00:00Z", "end_time": "2026-12-10T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Viherlaakson kirjaston lukupiiri</p><p>Vetäjä: Mikko Airaksinen</p><p>Paikkana Viherlaakson kirjasto, kuukauden toinen torstai klo 18-19:30.</p><ul><li>kaikki ovat tervetulleita</li><li>saa liittyä kesken kauden</li><li>saa tulla vaikka ei olisi lukenut kirjaa, tai olisi, muttei pitänyt siitä</li><li>osallistujat varaavat kirjat itse.</li></ul><p>to 8.10. Itäranta, Emmi: Teemestarin kirja</p><p>to 12.11. Kuang, R.F.: Yellowface</p><p>to 10. 12 Atwood, Margaret: Nimeltään Grace</p><p> </p><p>2027</p><p> </p><p>to 14.1.</p><p>to 11.2.</p><p>to 11.3.</p><p>to 8.4.</p><p>to 13.5.</p><p><br></p>" }, "short_description": { "fi": "Luetaan ja keskustellaan kirjoista." }, "name": { "fi": "Viherlaakson kirjaston lukupiiri" }, "provider": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz3fu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqm3tz35i", "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/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz46u/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493935, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-27T10:56:01.330324Z", "last_modified_time": "2025-11-27T10:56:01.330340Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/39006b2b-94af-417b-8e50-05780f069792.jpg", "name": "Mikko Airaksinen", "cropping": "100,0,533,434", "photographer_name": "Maru Peltonen", "alt_text": "Mikko Airaksinen Lukupiirin vetäjä kirja kädessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493935/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-23T09:32:32.352590Z", "last_modified_time": "2026-09-23T09:32:32.352604Z", "date_published": null, "start_time": "2026-11-12T16:00:00Z", "end_time": "2026-11-12T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Viherlaakson kirjaston lukupiiri</p><p>Vetäjä: Mikko Airaksinen</p><p>Paikkana Viherlaakson kirjasto, kuukauden toinen torstai klo 18-19:30.</p><ul><li>kaikki ovat tervetulleita</li><li>saa liittyä kesken kauden</li><li>saa tulla vaikka ei olisi lukenut kirjaa, tai olisi, muttei pitänyt siitä</li><li>osallistujat varaavat kirjat itse.</li></ul><p>to 8.10. Itäranta, Emmi: Teemestarin kirja</p><p>to 12.11. Kuang, R.F.: Yellowface</p><p>to 10. 12 Atwood, Margaret: Nimeltään Grace</p><p> </p><p>2027</p><p> </p><p>to 14.1.</p><p>to 11.2.</p><p>to 11.3.</p><p>to 8.4.</p><p>to 13.5.</p><p><br></p>" }, "short_description": { "fi": "Luetaan ja keskustellaan kirjoista." }, "name": { "fi": "Viherlaakson kirjaston lukupiiri" }, "provider": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz35i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqm3tz4ni", "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/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz46u/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493935, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-27T10:56:01.330324Z", "last_modified_time": "2025-11-27T10:56:01.330340Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/39006b2b-94af-417b-8e50-05780f069792.jpg", "name": "Mikko Airaksinen", "cropping": "100,0,533,434", "photographer_name": "Maru Peltonen", "alt_text": "Mikko Airaksinen Lukupiirin vetäjä kirja kädessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493935/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-23T09:32:32.254780Z", "last_modified_time": "2026-09-23T09:32:32.254795Z", "date_published": null, "start_time": "2026-10-08T15:00:00Z", "end_time": "2026-10-08T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Viherlaakson kirjaston lukupiiri</p><p>Vetäjä: Mikko Airaksinen</p><p>Paikkana Viherlaakson kirjasto, kuukauden toinen torstai klo 18-19:30.</p><ul><li>kaikki ovat tervetulleita</li><li>saa liittyä kesken kauden</li><li>saa tulla vaikka ei olisi lukenut kirjaa, tai olisi, muttei pitänyt siitä</li><li>osallistujat varaavat kirjat itse.</li></ul><p>to 8.10. Itäranta, Emmi: Teemestarin kirja</p><p>to 12.11. Kuang, R.F.: Yellowface</p><p>to 10. 12 Atwood, Margaret: Nimeltään Grace</p><p> </p><p>2027</p><p> </p><p>to 14.1.</p><p>to 11.2.</p><p>to 11.3.</p><p>to 8.4.</p><p>to 13.5.</p><p><br></p>" }, "short_description": { "fi": "Luetaan ja keskustellaan kirjoista." }, "name": { "fi": "Viherlaakson kirjaston lukupiiri" }, "provider": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz4ni/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqm3tz46u", "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/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz3fu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz35i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz4ni/?format=api" } ], "images": [ { "id": 1493935, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-27T10:56:01.330324Z", "last_modified_time": "2025-11-27T10:56:01.330340Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/39006b2b-94af-417b-8e50-05780f069792.jpg", "name": "Mikko Airaksinen", "cropping": "100,0,533,434", "photographer_name": "Maru Peltonen", "alt_text": "Mikko Airaksinen Lukupiirin vetäjä kirja kädessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493935/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-23T09:32:31.787308Z", "last_modified_time": "2026-09-23T09:32:31.787323Z", "date_published": null, "start_time": "2026-10-08T15:00:00Z", "end_time": "2026-12-10T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Viherlaakson kirjaston lukupiiri</p><p>Vetäjä: Mikko Airaksinen</p><p>Paikkana Viherlaakson kirjasto, kuukauden toinen torstai klo 18-19:30.</p><ul><li>kaikki ovat tervetulleita</li><li>saa liittyä kesken kauden</li><li>saa tulla vaikka ei olisi lukenut kirjaa, tai olisi, muttei pitänyt siitä</li><li>osallistujat varaavat kirjat itse.</li></ul><p>to 8.10. Itäranta, Emmi: Teemestarin kirja</p><p>to 12.11. Kuang, R.F.: Yellowface</p><p>to 10. 12 Atwood, Margaret: Nimeltään Grace</p><p> </p><p>2027</p><p> </p><p>to 14.1.</p><p>to 11.2.</p><p>to 11.3.</p><p>to 8.4.</p><p>to 13.5.</p><p><br></p>" }, "short_description": { "fi": "Luetaan ja keskustellaan kirjoista." }, "name": { "fi": "Viherlaakson kirjaston lukupiiri" }, "provider": null, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3tz46u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqm3f67bi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386414, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-23T09:16:39.223780Z", "last_modified_time": "2026-09-23T09:16:39.223801Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/912d6dcb-6992-4d84-ab3d-61dac3ab18b7.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Terttu Sjelvgren ja kirjan kansikuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386414/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-23T09:18:43.695933Z", "last_modified_time": "2026-09-23T09:18:43.695998Z", "date_published": null, "start_time": "2026-10-28T15:30:00Z", "end_time": "2026-10-28T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "description": { "fi": "<p>Espoon Kirjailijat ry:n jäsen Terttu Sjelvgren kertoo polustaan kirjailijaksi ja esittelee esikoisteoksensa (Tunnustan vaienneeni, taiteilijanimi Ida Paackari) matkaa kirjaksi. Mistä hän sai kirjan idean? Mistä löytyi taustatietoja? Miten juoni rakentui? Entä millainen oli kirjan kustannuspolku?</p><p>Ylisukupolvinen trauma, vuosikymmeniä vaiettu perhesalaisuus alkaa avautua, kun päähenkilön (Raili-äiti) tytär (Ella) saa käsiinsä äidin vanhat muistikirjat, joissa tämä kuvaa vankila-aikaansa Hämeenlinnan kuritushuoneella 1960-62 ja elämänsä merkityksellisiä käännekohtia. Sanat alkavat hengittää, ja Ella pysähtyy äidin tekstin äärelle. Tunteet hyökyvät ylitse. Ella pohdiskelee ja analysoi tarinan valossa omia kokemuksiaan ja muistojaan.</p><p>Kriminologisen kirjaston kirjastonhoitaja Hannu Kylkisalo nosti kirjan kuukauden kirjaksi ja lausui siitä näin: <a href=\"https://www.facebook.com/photo?fbid=1590938693042265&set=pb.100063784471592.-2207520000\">https://www.facebook.com/photo?fbid=1590938693042265&set=pb.100063784471592.-2207520000</a></p><p>Tilaisuus on avoin kaikille.</p><p><br></p>", "sv": "<p>Terttu Sjelvgren, medlem i Espoon Kirjailijat ry, berättar om sin väg till författarskapet och presenterar hur hennes debutverk (Tunnustan vaienneeni, under pseudonymen Ida Paackari) blev till. Varifrån fick hon idén till boken? Var hittade hon bakgrundsinformation? Hur byggdes handlingen upp? Och hur såg bokens utgivningsprocess ut? Evenemanget hålls på finska.</p>", "en": "<p>Terttu Sjelvgren, a member of the Espoo Writers’ Association, talks about her journey to becoming a writer and discusses the process of turning her debut work (I Confess I Kept Silent, under the pen name Ida Paackari) into a book. Where did she get the idea for the book? Where did she find the background information? How did the plot take shape? And what was the publishing process like? The event will be held in Finnish.</p>" }, "short_description": { "fi": "Espoon Kirjailijat ry:n jäsen Terttu Sjelvgren kertoo polustaan kirjailijaksi ja esittelee esikoisteoksensa matkaa kirjaksi.", "sv": "Terttu Sjelvgren, medlem i Espoon Kirjailijat ry, berättar om sin väg till författarskapet och presenterar hur hennes debutverk.", "en": "Terttu Sjelvgren, a member of the Espoo Writers’ Association, talks about her journey to becoming a writer and discusses the process of turning her debut work ." }, "name": { "fi": "Sinustakin voi tulla kirjailija!", "sv": "Även du kan bli författare!", "en": "You too could become a writer!" }, "provider": { "fi": "Terttu Sjelvgren", "sv": "Terttu Sjelvgren", "en": "Terttu Sjelvgren" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqm3f67bi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69608", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "18 € / 14 € / 8 €", "sv": "18 € / 14 € / 8 €", "en": "18 € / 14 € / 8 €" }, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385587, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-10T07:14:30.264701Z", "last_modified_time": "2026-07-10T07:14:30.264718Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792308.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385587/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-10T07:14:30.112064Z", "last_modified_time": "2026-09-23T09:15:45.008947Z", "date_published": null, "start_time": "2026-12-12T14:00:00Z", "end_time": "2026-12-12T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Tanssikeitaan joulunäytös Stoan musiikkisalissa tarjoaa syyskauden kauniit ja rytmikkäät tanssit yleisön iloksi.</p><p>Lavalla tanssin valoa sädehtivät valaisevat Keitaan oppilasryhmät ja opettajat. Tervetuloa mukaan iloitsemaan itämaisesta tanssista!</p><p>1995 perustettu Tanssikeidas on perinteikäs, nykyään herttoniemeläinen itämaisen tanssin studio, jonka tunnetaan laadukkaasta opetuksestaan ja monipuolisista esityksistä.</p><p>Kesto: n. 1,5 t<br>Soveltuu kaiken ikäisille.</p><p>Liput: aikuiset 18 € / eläkeläiset, opiskelijat sekä varushenkilöt ja sivarit 14 € / alle 12 v. lapset 8 €.</p><p>Lipunmyynti alkaa syksyllä osoitteessa lippu.fi.</p>", "sv": "<p>Tanssikeidas (Dansens oas) julföreställning i Stoas musiksal bjuder på höstsäsongens vackra och rytmiska danser till publikens glädje.</p><p>På scenen sprider Tanssikeidas elevgrupper och lärare dansens ljus. Välkommen att njuta av orientalisk dans! <br> <br>Tanssikeidas, som grundades 1995, är en traditionsrik studio för orientalisk dans som numera är belägen i Hertonäs och som är känd för sin högkvalitativa undervisning och sina mångsidiga föreställningar. <br> <br>Längd: cirka 1,5 h <br>Passar för alla åldrar.</p><p>Biljetter: vuxna 18 €/pensionärer, studerande samt värnpliktiga och civiltjänstgörande 14 €/barn under 12 år 8 €.</p><p>Biljettförsäljningen inleds i höst på lippu.fi.</p>", "en": "<p>Tanssikeidas’s Christmas show in the Stoa music hall delights the audience with beautiful and rhythmic dances from the autumn season.</p><p>The student groups and teachers of Tanssikeidas fill the stage with the light of dance. Come and join us in celebrating oriental dance! <br> <br>Founded in 1995 and now located in Herttoniemi, Tanssikeidas is a long-established studio for oriental dance, known for its high-quality teaching and varied performances. <br> <br>Duration: roughly 1.5 h <br>Suitable for all ages</p><p>Tickets: 18€ for adults / €14 for pensioners, students, conscripts and those performing civilian service / €8 for children under 12.</p><p>Tickets will become available in the autumn via lippu.fi.</p>" }, "short_description": { "fi": "Tanssikeitaan joulunäytös Stoan musiikkisalissa tarjoaa syyskauden kauniit ja rytmikkäät tanssit yleisön iloksi.", "sv": "Tanssikeidas (Dansens oas) julföreställning i Stoas musiksal bjuder på höstsäsongens vackra och rytmiska danser till publikens glädje.", "en": "Tanssikeidas’s Christmas show in the Stoa music hall delights the audience with beautiful and rhythmic dances from the autumn season." }, "name": { "fi": "Valon ja ilon tanssi: Tanssikeitaan joulunäytös", "sv": "Ljusets och glädjens dans: Tanssikeidas julföreställning", "en": "A Dance of Light and Joy: a Christmas show by Tanssikeidas" }, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7073961D46BB4A6EE44E39799DBC70AE/Valon_ja_ilon_tanssi_Tanssikeitaan_joulunaytos_", "sv": "http://www.stoa.fi/sv/evenemang/event/7073961D46BB4A6EE44E39799DBC70AE/Ljusets_och_gladjens_dans_Tanssikeidas_julforestallning_", "en": "http://www.stoa.fi/en/events/event/7073961D46BB4A6EE44E39799DBC70AE/A_Dance_of_Light_and_Joy_a_Christmas_show_by_Tanssikeidas_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69608/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69326", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385563, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T10:15:03.669438Z", "last_modified_time": "2026-07-08T10:15:03.669462Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793939.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385563/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T10:15:03.510646Z", "last_modified_time": "2026-09-23T09:15:44.579517Z", "date_published": null, "start_time": "2026-12-11T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Tieteen ja toivon klubissa kuullaan Puistokatu 4:n tutkijoiden näkökulmia aikamme kuumiin kysymyksiin sekä Olavi Uusivirran musiikkia</p><p>Puheenvuoroissa käsitellään mm. tuloeroja, kiertotalouden valuvikoja sekä sukupolvien välistä anteeksiantoa. Myös yleisölle tarjotaan mahdollisuus kommenttipuheenvuoroihin ja aikaa yhteiseen keskusteluun.</p><p>Klubia kipparoi laulaja-lauluntekijä <b>Olavi Uusivirta</b>, joka esittää tutkijoiden puheenvuorojen välissä kappaleita uransa eri vaiheilta.</p><p><b>Puistokatu 4</b> on Kaivopuistossa sijaitseva Tieteen ja toivon talo, joka tutkimuksellaan ja tapahtumillaan pyrkii kohti kestäviä tulevaisuuksia ja ymmärrystä siitä, mitä tarkoittaa hyvä elämä planeetallamme ja planeettamme kanssa. Puistokatu 4:n tutkijoista mukana ovat <b>Mikael Nurminen, Lotta Staffans, Teija Ahopelto</b> ja <b>Hanna Paulomäki</b>.</p>", "sv": "<p>I Tieteen ja toivon klubi får vi höra synpunkter från forskarna på Parkgatan 4 på vår tids brännande frågor samt musik av Olavi Uusivirta.</p><p>I anförandena tas upp bland annat inkomstskillnader, tankefel inom den cirkulära ekonomin samt förlåtelse mellan generationerna. Också publiken ges möjlighet att yttra sig och diskutera tillsammans.</p><p>Klubben leds av sångaren och låtskrivaren <b>Olavi Uusivirta</b>, som mellan forskarnas anföranden framför låtar från olika skeden av sin karriär.</p><p><b>Parkgatan 4</b> är ”ett hus för vetenskap och hopp” i Brunnsparken som genom sin forskning och sina evenemang strävar mot en hållbar framtid och en förståelse för vad ett gott liv på och i samklang med vår planet innebär. Av forskarna på Parkgatan 4 deltar <b>Mikael Nurminen, Lotta Staffans, Teija Ahopelto</b> och <b>Hanna Paulomäki</b>.</p>", "en": "<p>At the Club for Science and Hope, we get to hear the views of researchers from Puistokatu 4 on the burning issues of our time, as well as music by Olavi Uusivirta.</p><p>The speeches focus on topics such as income inequality, shortcomings in circular economy and intergenerational forgiveness. The audience can also make comments and take part in a group discussion.</p><p>The club is hosted by singer-songwriter <b>Olavi Uusivirta</b>, who performs songs from different stages of his career between the researchers’ speeches.</p><p>Located in Kaivopuisto, <b>Puistokatu 4</b> is a Space for Science and Hope that, through its research and events, strives towards sustainable futures and an understanding of what it means to live well on our planet and in harmony with it. The researchers from Puistokatu 4 include <b>Mikael Nurminen, Lotta Staffans, Teija Ahopelto</b> and <b>Hanna Paulomäki</b>.</p>" }, "short_description": { "fi": "Tieteen ja toivon klubissa kuullaan Puistokatu 4:n tutkijoiden näkökulmia aikamme kuumiin kysymyksiin sekä Olavi Uusivirran musiikkia", "sv": "I Tieteen ja toivon klubi får vi höra synpunkter från forskarna på Parkgatan 4 på vår tids brännande frågor samt musik av Olavi Uusivirta.", "en": "At the Club for Science and Hope, we get to hear the views of researchers from Puistokatu 4 on the burning issues of our time, as well as music by Olavi Uusivirta." }, "name": { "fi": "Puistokatu 4 x Stoa: Tieteen ja toivon klubi & Olavi Uusivirta", "sv": "Puistokatu 4 x Stoa: Tieteen ja toivon klubi & Olavi Uusivirta", "en": "Puistokatu 4 x Stoa: Tieteen ja toivon klubi & Olavi Uusivirta" }, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9485E1FCBF2D441BB082A20D3597BEF5/Puistokatu_4_x_Stoa_Tieteen_ja_toivon_klubi_Olavi_Uusivirta", "sv": "http://www.stoa.fi/sv/evenemang/event/9485E1FCBF2D441BB082A20D3597BEF5/Puistokatu_4_x_Stoa_Tieteen_ja_toivon_klubi_Olavi_Uusivirta", "en": "http://www.stoa.fi/en/events/event/9485E1FCBF2D441BB082A20D3597BEF5/Puistokatu_4_x_Stoa_Tieteen_ja_toivon_klubi_Olavi_Uusivirta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69326/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68838", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-unohdettu-saari-malmitalo-22108143/", "sv": "https://www.lippu.fi/event/kino-helios-unohdettu-saari-malmitalo-22108143/", "en": "https://www.lippu.fi/event/kino-helios-unohdettu-saari-malmitalo-22108143/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386242, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-11T09:15:13.585113Z", "last_modified_time": "2026-09-11T09:15:13.585128Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792065.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386242/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-11T09:15:13.455485Z", "last_modified_time": "2026-09-23T09:15:19.024859Z", "date_published": null, "start_time": "2026-10-10T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Parhaan ystävyyden puolesta kannattaa taistella.</p><p>DreamWorks Animation on aiemmin tuonut katsojille tarinoita unohtumattomista siteistä pojan ja lohikäärmeen välillä Näin koulutat lohikäärmeesi -elokuvissa, jätin ja aasin välillä Shrek-elokuvissa sekä robotin ja hanhenpoikasen välillä elokuvassa Villi robotti. Nyt luvassa on huikean tunteikas tarina kahdesta parhaasta ystävyksestä, joiden täytyy yhdistää voimansa eron uhatessa elokuvassa Unohdettu saari.</p><p>Uuden alkuperäistarinan on käsikirjoittanut ja ohjannut Oscar-ehdokas Joel Crawford ja Januel Mercado. Tuottajana toimii Oscar-ehdokas Mark Swift. Sama tiimi on myös ollut tekemässä elokuvaa Saapasjalkakissa: Viimeinen toivomus.</p><p>Grammy- ja Oscar-palkittu supertähti H.E.R. ja Liza Soberano (Lisa Frankenstein, Alone/Together) ovat Jo ja Raissa, high schoolista valmistunut parivaljakko. He ovat olleet parhaita ystäviä ala-asteelta asti, mutta nyt elämä uhkaa erottaa ystävykset.</p><p>Juhliessaan viimeistä yhteistä iltaansa Jo ja Raissa törmäävät salaperäiseen portaaliin, joka kuljettaa heidät Nakalin mielikuvitukselliselle saarelle. Saari on täynnä maagisia ja myyttisiä olentoja, joista ystävysten filippiiniläisperheet ovat kertoneet tarinoita.</p><p>Uusista tuttavuuksista paljastuu niin ystäviä kuin vihollisiakin. Apunaan hyvää tarkoittava mutta melko avuton ihmiskoira Raww (Dave Franco) sekä pieni mutta pippurinen joukko muita kamuja Jo ja Raissa ottavat mittaa karmeasta Manananggalista (Tony-palkittu ikoni Lea Salonga), saaren pelätyimmästä olennosta. Kun parille paljastuu, että hinta kotiinpaluusta on kaikkien yhteisten muistojen menettäminen, Jon ja Raissan täytyy keksiä keino päästä pois saarelta unohtamatta toisiaan.</p><p>Ikäraja: 7 <br>Kesto: 109 min<br>Ensi-ilta: 09.10.2026<br>Kieli: puhuttu suomeksi</p>", "sv": "<p>Det är värt att kämpa för sin bästa vän.</p><p>DreamWorks Animation har tidigare bjudit tittarna på berättelser om oförglömliga band mellan en pojke och en drake i filmerna Draktränaren, mellan en jätte och en åsna i Shrek-filmerna samt mellan en robot och en gåsunge i filmen Den vilda roboten. Nu väntar en oerhört gripande berättelse om två bästa vänner som måste förena sina krafter när de hotas att skiljas åt i filmen Bortglömda ön. <br> <br>Den nya originalberättelsen har skrivits och regisserats av den Oscarnominerade Joel Crawford samt Januel Mercado. Producent är Oscarnominerade Mark Swift. Samma team har också varit med och gjort filmen Mästerkatten 2. <br> <br>Den Grammy- och Oscarbelönade superstjärnan H.E.R. och Liza Soberano (Lisa Frankenstein, Alone/Together) spelar Jo och Raissa, som båda just har gått ut high school. De har varit bästa vänner ända sedan grundskolan, men nu hotar livet att skilja dem åt. <br> <br>När Jo och Raissa firar sin sista gemensamma kväll stöter de på en mystisk portal som för dem till fantasiön Nakali. Ön är full av magiska och mytiska varelser, som vännernas filippinska familjer har berättat historier om.</p><p>Bland de nya bekanta finns både vänner och fiender. Tillsammans med den välmenande men ganska hjälplösa människohunden Raww (Dave Franco) och en liten men naggande god skara andra kompisar tar Jo och Raissa sig an den fasansfulla Manananggal (den Tonybelönade ikonen Lea Salonga), öns mest fruktade varelse. När paret inser att priset för att återvända hem är att förlora alla sina gemensamma minnen måste Jon och Raissa hitta ett sätt att ta sig bort från ön utan att glömma varandra. <br> <br>Åldersgräns: 7 <br>Längd: 109 min. <br>Premiär: 9.10.2026 <br>Språk: dubbad på finska</p>", "en": "<p>The best friendship is worth fighting for.</p><p>DreamWorks Animation has previously brought audiences stories of unforgettable bonds between a boy and a dragon in the How to Train Your Dragon films, between an ogre and a donkey in the Shrek films, and between a robot and a gosling in The Wild Robot. Now, get ready for a moving story about two best friends who must join forces when faced with the threat of separation in the film Forgotten Island. <br> <br>The new original story was written and directed by Oscar nominee Joel Crawford in collaboration with Januel Mercado. The producer is Oscar nominee Mark Swift. The same team also worked on the film Puss in Boots: The Last Wish. <br> <br>Grammy and Oscar-winning superstar H.E.R. and Liza Soberano (Lisa Frankenstein, Alone/Together) star as Jo and Raissa, a pair of high school graduates. They have been best friends since primary school, but now life threatens to separate them. <br> <br>While celebrating their last evening together, Jo and Raissa come across a mysterious portal that transports them to the mystical island of Nakali. The island is full of magical and mythical creatures that the friends’ Filipino families have been telling stories about.</p><p>Their new acquaintances include both friends and foes. With the help of Raww (Dave Franco), a well-meaning but rather hapless were-aspin, and a small but feisty group of other pals, Jo and Raissa take on the terrifying Manananggal (Tony Award-winning icon Lea Salonga), the island’s most feared creature. Upon realising that the price of returning home is losing all of their shared memories, Jo and Raissa must find a way to escape the island without forgetting each other. <br> <br>Age rating: 7 <br>Duration: 109 min <br>Premiere: 9 October 2026 <br>Language: spoken in Finnish</p>" }, "short_description": { "fi": "Parhaan ystävyyden puolesta kannattaa taistella.", "sv": "Det är värt att kämpa för sin bästa vän.", "en": "The best friendship is worth fighting for." }, "name": { "fi": "Unohdettu saari (7) – Kino Helios", "sv": "Bortglömda ön (7) – Kino Helios", "en": "Forgotten Island (7) – Kino Helios" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/657AF470EEC019592ACEE87A7232D689/Unohdettu_saari_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/657AF470EEC019592ACEE87A7232D689/Bortglomda_on_7_", "en": "http://www.malmitalo.fi/en/events/event/657AF470EEC019592ACEE87A7232D689/Forgotten_Island_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68838/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68827", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-heart-of-the-beast-malmitalo-22107928/", "sv": "https://www.lippu.fi/event/kino-helios-heart-of-the-beast-malmitalo-22107928/", "en": "https://www.lippu.fi/event/kino-helios-heart-of-the-beast-malmitalo-22107928/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386237, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-11T09:15:06.987097Z", "last_modified_time": "2026-09-11T09:15:06.987113Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792048.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386237/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-11T09:15:06.828572Z", "last_modified_time": "2026-09-23T09:15:12.878814Z", "date_published": null, "start_time": "2026-10-01T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Jouduttuaan vakavaan lentokoneonnettomuuteen entinen erikoisjoukkojen upseeri James Belmont (Brad Pitt) ja hänen taistelukoiransa Odin jäävät eristyksiin syvälle Alaskan erämaahan.</p><p>Yhdessä he joutuvat armottomaan selviytymiskamppailuun luonnonvoimia vastaan. Maineikkaan ohjaaja David Ayerin Heart of the Beast on intensiivinen seikkailutrilleri, joka tutkii miehen ja hänen parhaan ystävänsä murtumatonta sidettä heidän kohdatessaan tähänastisen elämänsä suurimman taistelun.</p><p>Ikäraja: 12<br>Kesto: 101 min<br>Ensi-ilta: 25.09.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>", "sv": "<p>Efter att ha råkat ut för en allvarlig flygolycka blir den före detta specialstyrkeofficeren James Belmont (Brad Pitt) och hans stridshund Odin isolerade djupt inne i Alaskas vildmark.</p><p>Tillsammans tvingas de in i en skoningslös kamp för överlevnad mot naturens krafter. Den hyllade regissören David Ayers Heart of the Beast är en intensiv äventyrsthriller som utforskar det obrytbara bandet mellan en man och hans bästa vän när de ställs inför den största kampen hittills i sina liv.</p><p>Åldersgräns: 12 <br>Längd: 101 min. <br>Premiär: 25.9.2026 <br>Språk: engelska <br>Textning: finska, svenska</p>", "en": "<p>After being involved in a serious plane crash, former special forces officer James Belmont (Brad Pitt) and his combat dog, Odin, find themselves stranded deep in the Alaskan wilderness.</p><p>Together, they find themselves in a merciless struggle for survival against the forces of nature. Heart of the Beast, directed by the acclaimed David Ayer, is an intense adventure thriller that explores the unbreakable bond between a man and his best friend as they face the greatest battle of their lives.</p><p>Age rating: 12 <br>Duration: 101 min <br>Premiere: 25 September 2026 <br>Language: English <br>Subtitles: Finnish, Swedish</p>" }, "short_description": { "fi": "Jouduttuaan vakavaan lentokoneonnettomuuteen entinen erikoisjoukkojen upseeri James Belmont (Brad Pitt) ja hänen taistelukoiransa Odin jäävät eristyksiin syvälle Alaskan erämaahan.", "sv": "Efter att ha råkat ut för en allvarlig flygolycka blir den före detta specialstyrkeofficeren James Belmont (Brad Pitt) och hans stridshund Odin isolerade djupt inne i Alaskas vildmark.", "en": "After being involved in a serious plane crash, former special forces officer James Belmont (Brad Pitt) and his combat dog, Odin, find themselves stranded deep in the Alaskan wilderness." }, "name": { "fi": "Heart of the Beast (12) – Kino Helios", "sv": "Heart of the Beast (12) – Kino Helios", "en": "Heart of the Beast (12) – Kino Helios" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4E7B8091093B3C0F0038C19A5A913C78/Heart_of_the_Beast_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4E7B8091093B3C0F0038C19A5A913C78/Heart_of_the_Beast_12_", "en": "http://www.malmitalo.fi/en/events/event/4E7B8091093B3C0F0038C19A5A913C78/Heart_of_the_Beast_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68827/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68824", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-rakkautta-ja-virtahepoja-malmitalo-22107475/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-rakkautta-ja-virtahepoja-malmitalo-22107475/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-rakkautta-ja-virtahepoja-malmitalo-22107475/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386233, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-11T08:15:24.577644Z", "last_modified_time": "2026-09-11T08:15:24.577703Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792044.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386233/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-11T08:15:24.450785Z", "last_modified_time": "2026-09-23T09:15:11.645347Z", "date_published": null, "start_time": "2026-09-30T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Kaksi toisilleen tuntematonta, hieman eksyksissä olevaa ihmistä kohtaavat ystäviensä häissä.</p><p>Touko tuntee välitöntä vetoa Eevikseen. Paikalla on myös Toukon puoliso, menestynyt laulajatähti Leena, joka aistii kasvavan vetovoiman näiden kahden välillä. Yhden kesäillan aikana Kreikan rantakallioilla jutellaan rehellisesti rakkaudesta, eroista, nähdyksi tulemisen kaipuusta ja haluista – samalla kun juhlitaan ikimuistoisia häitä.</p><p>Dome Karukosken romanttinen draamaelokuva Rakkautta ja virtahepoja perustuu kirjailija Emmi-Liia Sjöholmin menestysromaaniin Virtahevot. Karukoski ja Sjöholm ovat käsikirjoittaneet elokuvan yhdessä. Pääosissa Pihla Viitala (Eevi), Aku Sipola (Touko) ja Jenni Vartiainen (Leena).</p><p>Ikäraja:12<br>Kesto: 102 min<br>Ensi-ilta: 25.09.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>", "sv": "<p>Två människor som inte känner varandra och som känner sig lite vilsna träffas på sina vänners bröllop.</p><p>Touko känner sig genast dragen till Eevis. På plats finns också Toukos fru, den framgångsrika sångaren Leena, som anar den växande attraktionen mellan de två. Under en sommarkväll på några strandklippor i Grekland förs ärliga samtal om kärlek, uppbrott, begära och längtan efter att bli sedd – samtidigt som man firar ett oförglömligt bröllop.</p><p>Dome Karukoskis romantiska dramafilm Rakkautta ja virtahepoja bygger på författaren Emmi-Liia Sjöholms succéroman Virtahevot. Karukoski och Sjöholm har tillsammans skrivit manuset till filmen. I huvudrollerna Pihla Viitala (Eevi), Aku Sipola (Touko) och Jenni Vartiainen (Leena). <br> <br>Åldersgräns: 12 <br>Längd: 102 min. <br>Premiär: 25.9.2026 <br>Språk: finska <br>Textning: finska</p>", "en": "<p>Two people who do not know each other and are a little lost meet at their friends’ wedding.</p><p>Touko feels an immediate attraction to Eevis. Also present at the wedding is Touko’s wife, the successful pop star Leena, who senses the growing attraction between the two. Over the course of a single summer evening on the seashore cliffs of Greece, the characters talk candidly about love, break-ups, the need to be seen and desires – all while celebrating a wedding to remember.</p><p>Dome Karukoski’s romantic drama Hippo Love is based on the best-selling novel Virtahevot by Emmi-Liia Sjöholm. Karukoski and Sjöholm co-wrote the screenplay for the film. Starring Pihla Viitala (Eevis), Aku Sipola (Touko) and Jenni Vartiainen (Leena). <br> <br>Age rating: 12 <br>Duration: 102 min <br>Premiere: 25 September 2026 <br>Language: Finnish <br>Subtitles: Finnish</p>" }, "short_description": { "fi": "Kaksi toisilleen tuntematonta, hieman eksyksissä olevaa ihmistä kohtaavat ystäviensä häissä.", "sv": "Två människor som inte känner varandra och som känner sig lite vilsna träffas på sina vänners bröllop.", "en": "Two people who do not know each other and are a little lost meet at their friends’ wedding." }, "name": { "fi": "Rakkautta ja virtahepoja (12) – Kino Helios", "sv": "Rakkautta ja virtahepoja (12) – Kino Helios", "en": "Hippo Love (12) – Kino Helios" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/298E051F08602AE8CB71A3DB777F29B9/Rakkautta_ja_virtahepoja_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/298E051F08602AE8CB71A3DB777F29B9/Rakkautta_ja_virtahepoja_12_", "en": "http://www.malmitalo.fi/en/events/event/298E051F08602AE8CB71A3DB777F29B9/Hippo_Love_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68824/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68820", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-myrskyn-ikkuna-malmitalo-22106580/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-myrskyn-ikkuna-malmitalo-22106580/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-myrskyn-ikkuna-malmitalo-22106580/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386227, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-11T07:15:52.513918Z", "last_modified_time": "2026-09-11T07:15:52.513934Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792038.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386227/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-11T07:15:52.401480Z", "last_modified_time": "2026-09-23T09:15:08.216980Z", "date_published": null, "start_time": "2026-09-24T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Tositapahtumiin perustuva Myrskyn ikkuna (Pressure) kuvaa jännittäviä 72 tuntia ennen h-hetkeä, jolloin vapaan maailman kohtalo on vaakalaudalla.</p><p>Kenraali Dwight D. Eisenhower (Brendan Fraser) ja kapteeni James Stagg (Andrew Scott) joutuvat mahdottoman valinnan eteen: käynnistääkö historian suurin ja vaarallisin mereltä tehtävä maihinnousu Normandiaan – vai riskeerata koko sodan häviäminen.</p><p>Ikäraja:12<br>Kesto: 100 min<br>Ensi-ilta: 18.09.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>", "sv": "<p>Filmen Pressure, som bygger på verkliga händelser, skildrar de spännande 72 timmarna före det avgörande ögonblicket, då den fria världens öde står på spel.</p><p>General Dwight D. Eisenhower (Brendan Fraser) och kapten James Stagg (Andrew Scott) står inför ett omöjligt val: Ska de sätta igång historiens största och farligaste landstigning från havet i Normandie – eller riskera att förlora hela kriget? <br> <br>Åldersgräns: 12 <br>Längd: 100 min. <br>Premiär: 18.9.2026 <br>Språk: engelska <br>Textning: finska, svenska</p>", "en": "<p>Based on true events, Pressure depicts the tense 72 hours leading up to a moment of truth, when the fate of the free world hangs in the balance.</p><p>General Dwight D. Eisenhower (Brendan Fraser) and Captain James Stagg (Andrew Scott) are faced with an impossible choice: whether to launch the largest and most dangerous amphibious landing in history on the coast of Normandy – or risk losing the entire war.</p><p>Age rating: 12 <br>Duration: 100 min <br>Premiere: 18 September 2026 <br>Language: English <br>Subtitles: Finnish, Swedish</p>" }, "short_description": { "fi": "Tositapahtumiin perustuva Myrskyn ikkuna (Pressure) kuvaa jännittäviä 72 tuntia ennen h-hetkeä, jolloin vapaan maailman kohtalo on vaakalaudalla.", "sv": "Filmen Pressure, som bygger på verkliga händelser, skildrar de spännande 72 timmarna före det avgörande ögonblicket, då den fria världens öde står på spel.", "en": "Based on true events, Pressure depicts the tense 72 hours leading up to a moment of truth, when the fate of the free world hangs in the balance." }, "name": { "fi": "Myrskyn ikkuna (12) – Kino Helios", "sv": "Pressure (12) – Kino Helios", "en": "Pressure (12) – Kino Helios" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B72CF48B2401058674BBA5DF4E4AA5E8/Myrskyn_ikkuna_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B72CF48B2401058674BBA5DF4E4AA5E8/Pressure_12_", "en": "http://www.malmitalo.fi/en/events/event/B72CF48B2401058674BBA5DF4E4AA5E8/Pressure_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68820/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68819", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-myrskyn-ikkuna-malmitalo-22106580/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-myrskyn-ikkuna-malmitalo-22106580/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-myrskyn-ikkuna-malmitalo-22106580/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386223, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-11T07:15:13.668158Z", "last_modified_time": "2026-09-11T07:15:13.668174Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792036.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386223/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-11T07:15:13.491345Z", "last_modified_time": "2026-09-23T09:15:07.330793Z", "date_published": null, "start_time": "2026-09-23T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "location_extra_info": null, "description": { "fi": "<p>Tositapahtumiin perustuva Myrskyn ikkuna (Pressure) kuvaa jännittäviä 72 tuntia ennen h-hetkeä, jolloin vapaan maailman kohtalo on vaakalaudalla.</p><p>Kenraali Dwight D. Eisenhower (Brendan Fraser) ja kapteeni James Stagg (Andrew Scott) joutuvat mahdottoman valinnan eteen: käynnistääkö historian suurin ja vaarallisin mereltä tehtävä maihinnousu Normandiaan – vai riskeerata koko sodan häviäminen.</p><p>Ikäraja:12<br>Kesto: 100 min<br>Ensi-ilta: 18.09.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>", "sv": "<p>Filmen Pressure, som bygger på verkliga händelser, skildrar de spännande 72 timmarna före det avgörande ögonblicket, då den fria världens öde står på spel.</p><p>General Dwight D. Eisenhower (Brendan Fraser) och kapten James Stagg (Andrew Scott) står inför ett omöjligt val: Ska de sätta igång historiens största och farligaste landstigning från havet i Normandie – eller riskera att förlora hela kriget? <br> <br>Åldersgräns: 12 <br>Längd: 100 min. <br>Premiär: 18.9.2026 <br>Språk: engelska <br>Textning: finska, svenska</p>", "en": "<p>Based on true events, Pressure depicts the tense 72 hours leading up to a moment of truth, when the fate of the free world hangs in the balance.</p><p>General Dwight D. Eisenhower (Brendan Fraser) and Captain James Stagg (Andrew Scott) are faced with an impossible choice: whether to launch the largest and most dangerous amphibious landing in history on the coast of Normandy – or risk losing the entire war.</p><p>Age rating: 12 <br>Duration: 100 min <br>Premiere: 18 September 2026 <br>Language: English <br>Subtitles: Finnish, Swedish</p>" }, "short_description": { "fi": "Tositapahtumiin perustuva Myrskyn ikkuna (Pressure) kuvaa jännittäviä 72 tuntia ennen h-hetkeä, jolloin vapaan maailman kohtalo on vaakalaudalla.", "sv": "Filmen Pressure, som bygger på verkliga händelser, skildrar de spännande 72 timmarna före det avgörande ögonblicket, då den fria världens öde står på spel.", "en": "Based on true events, Pressure depicts the tense 72 hours leading up to a moment of truth, when the fate of the free world hangs in the balance." }, "name": { "fi": "Myrskyn ikkuna (12) – Kino Helios", "sv": "Pressure (12) – Kino Helios", "en": "Pressure (12) – Kino Helios" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8E9A177DDF2DE0F909881915C22B9B2D/Myrskyn_ikkuna_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8E9A177DDF2DE0F909881915C22B9B2D/Pressure_12_", "en": "http://www.malmitalo.fi/en/events/event/8E9A177DDF2DE0F909881915C22B9B2D/Pressure_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68819/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }