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&hide_recurring_children=true&page=75
{ "meta": { "count": 21732, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=76", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=74" }, "data": [ { "id": "helsinki:agnjwkrsua", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/170/?format=api" }, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": { "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/170/signup-group/create", "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/170/signup-group/create", "en": "https://linkedregistrations.test.hel.ninja/en/registration/170/signup-group/create" } } ], "data_source": "helsinki", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2025-11-19T08:10:25.363828Z", "last_modified_time": "2025-11-19T08:10:25.363843Z", "date_published": null, "start_time": "2025-11-28T07:00:00Z", "end_time": "2025-11-28T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 1, "enrolment_start_time": "2025-11-19T10:00:00+02:00", "enrolment_end_time": "2025-11-28T08:59:00+02:00", "local": false, "replaced_by": null, "location_extra_info": { "fi": "" }, "short_description": { "fi": "Miltä talvisen metsän värit tuntuvat ja tuoksuvat? Mitä kaikkea kätkeytyy lumiskinosten alle? Uinuuko mänty talvipakkasilla?" }, "provider": { "fi": "Annantalo" }, "name": { "fi": "Vauvojen värikylpy - testi" }, "description": { "fi": "<p>Miltä talvisen metsän värit tuntuvat ja tuoksuvat? Mitä kaikkea kätkeytyy lumiskinosten alle? Uinuuko mänty talvipakkasilla?</p>" }, "info_url": { "fi": "https://www.annantalo.fi/" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agnjwkrsua/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmtglff4m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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:p2846/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtgle7t4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfaby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfaqi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfa6i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfbmi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfb2i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfcja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfcxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfdfu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfdum/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglfec4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglferi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglffaa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglffoe/?format=api" } ], "images": [ { "id": 1490716, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-08T12:09:26.771770Z", "last_modified_time": "2025-09-08T12:09:26.771783Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/963619ed-ce1b-47c9-b1fb-81dee8d52f69.jpg", "name": "Tasty Snack", "cropping": "0,177,926,1103", "photographer_name": "Pexels", "alt_text": "Tasty Snack", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490716/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-09-10T10:05:16.677147Z", "last_modified_time": "2025-11-19T07:05:41.335138Z", "date_published": null, "start_time": "2025-09-12T12:30:00Z", "end_time": "2025-12-12T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaivabiblioteket", "en": "Lippulaiva library" }, "short_description": { "fi": "Tervetuloa mukaan Lippulaivan kirjastossa joka perjantai kello 15.30 - 17.00 järjestettävään Tasty Snack -kokkikerhoon.", "sv": "Välkommen till matlagningsklubben Tasty Snack varje fredag kl. 15.30-17.00 på Lippulaiva bibliotek.", "en": "Welcome to the Tasty Snack cooking club every Friday from 15.30 to 17.00 at the Lippulaivan Library." }, "provider": null, "name": { "fi": "Tasty Snack- kokkikerho lapsille ja nuorille", "sv": "Tasty Snack- matlagningsklubb för barn och ungdomar", "en": "Tasty Snack- cooking club for children and young people" }, "description": { "fi": "<p>Tervetuloa mukaan Lippulaivan kirjastossa joka tiistai ja perjantai järjestettävään kokkikerhoon</p><p>Kokkikerhossa valmistamme yhdessä simppeleitä, hauskoja ja maukkaita välipaloja, herkkuja ja ruokia. Ruokalistalle kuuluu nopeita ja edullisia To Go -snackseja, yllätyksellisiä makutrendejä maailmalta, takuuvarmoja peruspurtavia sekä toivereseptejä. Oletko kokeillut tehdä itse leipää? Entäs Bobateetä? Sambuuseja? Tule mukaan oppimaan ja herkuttelemaan! Ruoka-aineallergiat ja erityisruokavaliot huomioidaan ryhmän toiminnassa.</p><p>Tilaisuus on suomeksi, mutta voit osallistua ryhmään myös auttavalla suomen taidolla.</p><p>Ryhmään ei tarvitse ilmoittautua, ja ryhmään mahtuu 12 osallistujaa. Voit kysyä lisätietoa osoitteesta info@asadfriigym.fi.</p><p>Tapahtuman järjestää Harrastuspolku Espoo.</p><p>Huom! Kerhoa ei pidetä pyhinä, eikä loma-aikoina.</p>", "sv": "<p>Välkommen till Tasty Snack -matlagningsklubben som äger rum varje tisdag och fredag på Lippulaivans bibliotek.</p><p>I mellanmålsgruppen tillverkar vi enkla, roliga och smakliga mellanmål, delikatesser och maträtter tillsammans. På menyn finns snabba och förmånliga snacks, överraskande smaktrender från hela världen, bombsäkra tilltugg samt önskerecept. Har du provat att baka bröd själv? Eller laga bubbelte? Samosas? Kom med och lär dig och ät gott! Födoämnesallergier och specialdieter beaktas i gruppens verksamhet.</p><p>Detta evenemang är på finska.</p><p>Du behöver inte anmäla dig till den här gruppen och det ryms med 12 deltagare. Om du behöver mer information, skicka e-post till info@asadfriigym.fi.</p>", "en": "<p>Welcome to the Tasty Snack -cooking club, we work together to prepare simple, fun and tasty snacks, treats and dishes. The menu includes fast and affordable To Go snacks, surprising flavour trends from around the world, guaranteed snack staples and recipes the participants want to prepare. Have you tried making your own bread? What about boba tea? Sambuus pastries? Come and learn and enjoy the treats you have created! Food allergies and special diets are taken into account in the group's activities.</p><p>This hobby is organised in Finnish but you can take part in the group if you are a beginner in learning Finnish.</p><p>You don't need registrate for this group, and there is 12 places in the group. You can ask more information from e-mail info@asadfriigym.fi.</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglff4m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnhz54x3e", "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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493788, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-22T08:25:47.463283Z", "last_modified_time": "2024-10-22T08:25:47.463314Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/111531fc-3bb9-4dac-807b-8dd89c6b637a.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Albanialaista tanssia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493788/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-13T10:41:36.481381Z", "last_modified_time": "2025-11-18T16:39:40.886340Z", "date_published": null, "start_time": "2025-11-30T11:00:00Z", "end_time": "2025-11-30T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Tule tutustumaan albanialaiseen kulttuuriin. Musiikkia, tanssia ja runoja. Tervetuloa!", "sv": "Kom och upptäck den albanska kulturen. Musik, dans och dikter. Välkommen!", "en": "Come and discover the Albanian culture. Music, dance and poems. Welcome!" }, "provider": null, "name": { "fi": "Albanialainen kulttuuritapahtuma", "sv": "Albansk kultur evengemang", "en": "Albanian cultural event" }, "description": { "fi": "<p>Tule tutustumaan albanialaiseen kulttuuriin.</p><p>Espoon, Helsingin ja Kirkkonummen koululaiset esittävät albanialaista musiikkia, tanssia ja runoja.</p><p>Tervetuloa!</p>", "sv": "<p>Kom och upptäcka den albanska kulturen.</p><p>Skolbarn från Esbo, Helsingfors och Kyrkslätt kommer att framföra albansk musik, dans och dikter.</p><p>Välkommen till oss!</p>", "en": "<p>Come and discover Albanian culture.</p><p>Schoolchildren from Espoo, Helsinki and Kirkkonummi will perform Albanian music, dance and poems.</p><p>Welcome!</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhz54x3e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66574", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491294, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-05T10:13:07.937132Z", "last_modified_time": "2025-11-05T10:13:07.937148Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775024.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491294/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-11-05T10:13:07.812621Z", "last_modified_time": "2025-11-18T15:12:50.962879Z", "date_published": null, "start_time": "2025-11-22T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "Nuoren polven saksofonistilahjakkuus Oona Mattsson kohtaa Suomen jazzkentän veteraanikompin, basisti Ville Herralan ja rumpali Mika Kallion." }, "provider": null, "name": { "fi": "We Jazz -lastenkonsertti – Mattsson / Herrala / Kallio", "sv": "We Jazz -lastenkonsertti", "en": "We Jazz -lastenkonsertti" }, "description": { "fi": "<p>Nuoren polven saksofonistilahjakkuus Oona Mattsson kohtaa Suomen jazzkentän veteraanikompin, basisti Ville Herralan ja rumpali Mika Kallion.</p><p>Kesällä debytoineen Mattsson / Herrala / Kallio -trion ohjelmisto koostuu tarkoin valituista jazzhistorian helmistä, herkästi ja vapaasti tulkittuina.</p><p>Lapsen oikeuksia juhlitaan Koko perheen taidepäivässä Stoassa! Tehdas-teatteri tuo eläinmaailman ihmeet perheen pienimpien ulottuville, ja We Jazz kutsuu kaiken ikäiset jammailemaan hyvän musiikin tahdissa. Uulun sanattomassa muskarissa päästään itsekin musisoimaan, ja Stoan aulasta löytyy hauska miniperhe-työpaja. Taitavat kasvomaalaajamme loihtivat kävijöille eläimellistä ilmettä.<br> <br>We Jazzin vuotuista pääfestivaalia on kuvailtu termeillä ”installaatio” ja ”utopia”. Nämä sanat kiteyttävät We Jazzin hengen ja suuntaavat ajatuksia perinteisen jazzfestivaalikentän ulkopuolelle.<br>Jazzin esittämisen tapojen uudistaminen onkin yksi tapahtuman keskeisistä pyrkimyksistä parhaan mahdollisen musiikin tarjoilemisen ohella. We Jazz on osuva läpileikkaus omaäänisestä jazzmusiikista halki genren laajan tyylispektrin.</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/10366B43143D7DEF432E0EF64A5D85B3/We_Jazz_-lastenkonsertti", "sv": "http://www.stoa.fi/sv/evenemang/event/10366B43143D7DEF432E0EF64A5D85B3/We_Jazz_-lastenkonsertti", "en": "http://www.stoa.fi/en/events/event/10366B43143D7DEF432E0EF64A5D85B3/We_Jazz_-lastenkonsertti" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66574/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnjojjotu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493836, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-18T12:08:52.276006Z", "last_modified_time": "2025-11-18T12:08:52.276021Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/029d26e0-64ca-48b8-b00d-eec547c5896b.jpg", "name": "", "cropping": "218,0,862,644", "photographer_name": "", "alt_text": "Suomi sanoo tarvitsevansa osaajia, mutta haluaa halpatyövoimaa - Veera Kontulan valokuvia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493836/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-18T12:25:36.844017Z", "last_modified_time": "2025-11-18T12:36:22.345801Z", "date_published": "2025-11-18T12:04:00Z", "start_time": "2025-12-08T08:00:00Z", "end_time": "2025-12-31T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Galleria Anna", "sv": "Galleri Anna", "en": "Gallery Anna" }, "short_description": { "fi": "Veera Kontulan opinnäytetyön valokuvasarja", "sv": "Veera Kontulas examensarbetes fotoserie", "en": "Photos from Veera Kontula's thesis" }, "provider": null, "name": { "fi": "Suomi sanoo tarvitsevansa osaajia, mutta haluaa halpatyövoimaa (valokuvia)", "sv": "Finland säger att det behöver kvalificerade arbetare, men vill ha lågavlönade anställda (foton)", "en": "Finland says it needs skilled workers, but wants cheap labor (photos)" }, "description": { "fi": "<p><strong>Veera Kontula</strong>n opinnäytetyön valokuvasarjassa on kymmenen Suomeen muuttanutta, joilla on korkeakoulututkinto. He eivät kuitenkaan ole saaneet koulutustaan vastaavaa työtä tai matka sinne on ollut kivinen. Filosofian professori on tehnyt töitä siivoojana eläkkeelle asti ja myy tällä hetkellä Iso numero -lehteä. Tai viestinnän asiantuntija saa vain parin päivän pätkiä. Suuri osa maahan muuttaneista on korkeakoulutettuja, niin kuin myös kuvasarjan henkilöt.</p><p>Kuvasarja on esillä 25.11.2025 Mediaillan ajan Median museo ja arkisto Merkissä, jonka jälkeen kuvat siirtyvät Sellon kirjaston Galleria Annaan maanantaina 8.12.2025.</p><p>\"Opin kuvasarjaa tehdessäni aiheen olevan jatkuvasti pinnalla Suomeen muuttaneiden keskuudessa. Tilanne on monelle arkea, eikä paljoa lohduta, kun kuulee työkaverin pikaruokalassa etsineen lakialan töitä viimeiset kymmenen vuotta. Osa on myös maksanut suuren summan rahaa siitä, että pääsisi opiskelemaan. Suomalaisesta korkeakoulusta valmistuminen ei kuitenkaan aina auta työnsaantiin.</p><p>Herää kysymys, että miksi suomalaista koulutusta mainostetaan ulkomaille, jos sillä ei ole tarkoituskaan saada töitä täältä? Suomeen muuttaminen ei ole halpa ja helppo prosessi. Silti moni on sen valmis tekemään, mutta onko Suomi valmis antamaan mahdollisuuksia?</p><p>Suomi menettää suuren määrän koulutettuja henkilöitä. Samaan aikaan puhutaan, että Suomesta pitäisi tehdä houkuttelevampi maa huippuosaajille. Osaajista suuri osa ei kuitenkaan saa töitä ja lähtevät muualle.”</p>", "sv": "<p>Veera Kontulas examensarbetes fotoserie. Temat är varför det är så svårt för utlänningar att hitta arbete i Finland. </p>", "en": "<p>Photos from Veera Kontula's thesis. The theme is why is it so difficult for foreigners to find work in Finland? </p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjojjotu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66142", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1417602, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-05T09:12:54.012541Z", "last_modified_time": "2025-08-05T09:12:54.012555Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772391.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1417602/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-05T09:12:53.964140Z", "last_modified_time": "2025-11-18T12:13:00.229665Z", "date_published": null, "start_time": "2025-11-19T08:45:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "Itä-Helsingin musiikkiopiston oppilaat lavalla – tule mukaan nauttimaan IHMOn oppilaiden musiikin ilosta ja taitavasta musisoinnista. Huom! klo 10.45 näytökseen mahtuu vielä, mutta varausjärjestelmä on kaatunut. Tiedustelut: katariina.metsalampi@hel.fi", "sv": "Elever från Östra Helsingfors musikinstitut intar scenen – kom och njut av musikglädje och skickligt musicerande från IHMO-eleverna.", "en": "Students from the East Helsinki Music Institute on stage – come and feel the joy of IHMO student´s music and their skillful musicianship." }, "provider": null, "name": { "fi": "Lapset soittavat lapsille -konsertti", "sv": "Lapset soittavat lapsille -konsertti", "en": "Children playing for children -concert" }, "description": { "fi": "<p>Itä-Helsingin musiikkiopiston oppilaat lavalla – tule mukaan nauttimaan IHMOn oppilaiden musiikin ilosta ja taitavasta musisoinnista. Huom! klo 10.45 näytökseen mahtuu vielä, mutta varausjärjestelmä on kaatunut. Tiedustelut: katariina.metsalampi@hel.fi</p><p>Konsertissa kuulet monia eri soittimia, luvassa myös laulua ja leikkiä yhdessä yleisön kanssa. Konsertti soveltuu koko perheelle.</p><p>Ikäsuositus 2+<br>Kesto: 30 min<br>Kieli: suomi</p><p>Konsertti on maksuton, paikkavaraukset 19.10. alkaen kultus.hel.fi</p>", "sv": "<p>Elever från Östra Helsingfors musikinstitut intar scenen – kom och njut av musikglädje och skickligt musicerande från IHMO-eleverna.</p><p>Konserten kommer att innehålla många olika instrument, sång och lek tillsammans med publiken. Konserten är lämplig för hela familjen.</p><p>Åldersrekommendation 2+<br>Längd: 30 minuter<br>Språk: finska</p><p>Konserten är gratis, bokningar från 19.10 på kultus.hel.fi</p>", "en": "<p>Students from the East Helsinki Music Institute on stage – come and feel the joy of IHMO student´s music and their skillful musicianship.</p><p>The concert will feature many different instruments, and there will also be singing and playing together with the audience. The concert is suitable for the whole family.</p><p>Free of charge, booking necessary: kultus.hel.fi</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/385425D066EA33A97A774A8D6A7A97EB/Lapset_soittavat_lapsille_-konsertti", "sv": "http://www.annantalo.fi/sv/evenemang/event/385425D066EA33A97A774A8D6A7A97EB/Lapset_soittavat_lapsille_-konsertti", "en": "http://www.annantalo.fi/en/events/event/385425D066EA33A97A774A8D6A7A97EB/Children_playing_for_children_-concert" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66142/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnifdfai4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493805, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-14T12:36:02.435017Z", "last_modified_time": "2025-11-14T12:36:02.435107Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f8af09c2-f93c-4e81-8131-b5e877323b8d.jpg", "name": "Kari Ålander: Portals – Cyberpunk", "cropping": "200,0,1200,1000", "photographer_name": "", "alt_text": "Kari Ålander: Portaaleja – unia uusista maailmoista", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493805/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-14T12:49:35.434085Z", "last_modified_time": "2025-11-18T10:36:12.484568Z", "date_published": null, "start_time": "2025-11-16T08:00:00Z", "end_time": "2025-12-05T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Galleria Anna", "sv": "Galleri Anna", "en": "Gallery Anna" }, "short_description": { "fi": "Kari Ålanderin valokuvapohjaista taidetta", "sv": "Kari Ålanders fotobaserade konst", "en": "Photography-based art by Kari Ålander" }, "provider": null, "name": { "fi": "Kari Ålander: Portaaleja – unia uusista maailmoista (näyttely)", "sv": "Kari Ålander: Portaler – drömmar om nya världar (utställning)", "en": "Kari Ålander: Portals – Dreams of New Worlds (exhibition)" }, "description": { "fi": "Kari Ålander<strong>: Taide ja radikaali uudelleenluominen</strong><p>\"Olen Kari Ålander, valokuvapohjaisen digitaalisen grafiikan tekijä. Taiteeni syntyy tutkiessani ja ylittäessäni valokuvailmaisun perinteisiä rajoja.</p><p><strong>Työskentelytapani</strong></p><p>Jokainen teokseni perustana on yksi itse ottamani valokuva. Työstän tätä alkuperäistä kuvaa digitaalisesti luomalla useita tasoja ja manipuloimalla värejä, valoisuuseroja sekä terävyyttä. En lisää kuvaan ulkopuolisia elementtejä. Taidemuotona kyseessä on grafiikka, sillä nähtävissä oleva teos on vedos.</p><p>Prosessini kulku on vaihe vaiheelta itse kehittämäni. Radikaaliksi menetelmäni tekee se, että lähden työstämään valokuvaa hyläten siitä kaiken sen, mikä on alun perin tehnyt siitä valokuvan. Työskentelytapani on tullut mahdolliseksi modernin teknologian myötä, minkä olen hyödyntänyt estottomasti omaan visiooni luottaen.</p><p><strong>”Kariversumi”</strong></p><p>Olen siirtynyt harrastevalokuvauksesta (aloitettu n. 1965) valokuvapohjaiseen taiteeseen (Taiqu/art, 2022 ->). Olen tutkinut valokuvallisen ilmaisun rajoja jo varhain, käytännössä alusta alkaen, muun muassa ottamalla tarkoituksellisesti vinoja kuvia ja zoomaamalla valotuksen aikana.</p><p>Taiteeni on kuvailtu astuvan radikaalisti ulos tavanomaisesta. Se haastaa perinteiset käsitykset ja on monin tavoin ainutlaatuista. TM, graafikko Ilkka Kumpunen on nimittänyt tyyliäni surrealistis-ekspressiiviseksi digitaaliseksi maalaukseksi, joka vie askeleita pois esittävyydestä ja kuljettaa kuvan omaan maailmaani, ”kariversumiin”.</p><p>Vaikka kuvissani voi tunnistaa esittäviä piirteitä, ne on lopulta kuljetettu toisaalle, jossa muoto ja ekspressiivisyys ottavat mittaa toisistaan. Toivon, että jokainen katsoja kohtaa teoksissa omat tulkintansa, todellisuutensa ja merkityksensä.</p><p><strong>”Portaaleja -näyttely”</strong></p><p>Tämä, uusi näyttelyni edustaa tuotannossani jotakin jälleen aivan uutta. Se kulkee esittävän ja ekspressiivisen abstraktin rajoilla, pyrkien tuomaan kohteistaan esiin kaikkein olennaisimman – jättäen kuitenkin tulkinnan täysin katsojalle. Ajatukseni on, että mitä katsommekin, näemme siitä vain oman tulkintamme, joka syntyy kaikesta siitä, mitä olemme ja mitä toivomme olevamme. </p><p>Kun katsot teoksiani, näe sinäkin omat unesi uusista maailmoista, uusista mahdollisuuksista ja koko ajan uudesta omasta itsestäsi.\"</p>", "sv": "<p><strong>Kari Ålander</strong> är en skapare av fotobaserad digital grafik vars konst föds ur utforskandet och överskridandet av fotografiska uttrycksgränser.</p><p>Utställningen navigerar mellan gränserna för representativ och expressiv abstraktion, i ett försök att framhäva motivens essens samtidigt som tolkningen helt och hållet överlåts åt betraktaren.</p>", "en": "<p><strong>Kari Ålander</strong> is a creator of photo-based digital graphics whose art is born out of exploring and transcending the boundaries of photographic expression.</p><p>The exhibition navigates the boundaries between representational and expressive abstraction, striving to bring out the essence of its subjects while leaving interpretation entirely up to the viewer.</p>" }, "info_url": { "fi": "https://www.taiqu.fi/art", "sv": "https://www.taiqu.fi/art", "en": "https://www.taiqu.fi/art" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnifdfai4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agms5kfff4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agms5kfdt4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agms5kfeae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agms5kfenq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agms5kfezy/?format=api" } ], "images": [ { "id": 1490708, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-09T12:18:45.626877Z", "last_modified_time": "2025-09-09T12:18:45.626900Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c49afcff-11f0-4229-b38a-f57a8bd3e62d.png", "name": "", "cropping": "218,0,782,563", "photographer_name": "Vlada Karpovich", "alt_text": "Person holding a cup, open book on teir lap. On the book lays an orange leaf.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490708/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-09T12:21:01.906693Z", "last_modified_time": "2025-11-18T08:58:31.640379Z", "date_published": null, "start_time": "2025-09-23T15:00:00Z", "end_time": "2025-12-16T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "short_description": { "fi": "Kirjastossa alkaa yhteisöllinen lukupiiri, jossa tarinat heräävät eloon keskustelun kautta. ", "sv": "Vi startar en gemenskapsinriktad bokcirkel där berättelser väcks till liv genom samtal.", "en": "We’re launching a community Book Club where stories come alive through discussion." }, "provider": null, "name": { "fi": "English Book Club", "sv": "English Book Club", "en": "English Book Club" }, "description": { "fi": "<p>✨ Uutta kirjastossa! ✨</p><p>Kirjastossa alkaa yhteisöllinen lukupiiri, jossa tarinat heräävät eloon keskustelun kautta.</p><p>Tule mukaan tutkimaan kirjoja yhdessä muiden kanssa – luvassa on hyviä lukukokemuksia, lämpimiä keskusteluja ja mahdollisuus tavata muita kirjallisuuden ystäviä!</p><p><strong>21.10. Alchemist / Paolo Coelho</strong></p><p>Lukupiiri on englanninkielinen.</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>✨ Nytt på biblioteket! ✨</p><p>Vi startar en gemenskapsinriktad bokcirkel där berättelser väcks till liv genom samtal.</p><p><strong>21.10. Alchemist / Paolo Coelho</strong></p><p>Kom med och utforska böcker tillsammans – fina läsupplevelser, varma diskussioner och en chans att träffa andra bokälskare väntar på dig!</p><p>Bokcirkeln är på engelska.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>✨ New at the library! ✨</p><p>We’re launching a community Book Club where stories come alive through discussion.</p><p><strong>21st Oct. Alchemist by Paolo Coelho</strong></p><p>Join us as we explore books together. Great reads, warm conversations, and a chance to meet fellow book lovers await you!</p><p><br></p><p>#HelloEspoo</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agms5kfff4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnjd7y5z4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493826, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-17T12:59:55.605672Z", "last_modified_time": "2025-11-17T12:59:55.605687Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/443c6f30-1286-4139-9ada-d99ca86e0830.jpg", "name": "", "cropping": "12,0,589,577", "photographer_name": "", "alt_text": ".......", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493826/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-17T12:57:59.636233Z", "last_modified_time": "2025-11-18T08:11:04.753089Z", "date_published": null, "start_time": "2025-12-14T14:00:00Z", "end_time": "2025-12-14T15: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, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "short_description": { "fi": "Tervetuloa laulamaan tamil lauluja 80-luvulta tähän päivään klo 16-17:30 Salonkiin 14.12.", "en": "Welcome to sing a long tamil songs from the 80's to latest from 4 pm to 5.30pm 14.12." }, "provider": { "fi": "Beats & Bonds ", "en": "Beats & Bonds " }, "name": { "fi": "Englanninkielinen tamil laulujen yhteislaulutilaisuus", "en": "Beats & Bonds presents sing-a-long" }, "description": { "fi": "<p>Tervetuloa laulamaan tamil lauluja 80-luvulta tähän päivään klo 16-17:30 Salonkiin 14.12.</p>", "en": "<p>Welcome to sing a long tamil songs from the 80's to latest from 4 pm to 5.30pm on Sunday 14.12!</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjd7y5z4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnfgisu24", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-05T07:27:43.666016Z", "last_modified_time": "2025-11-18T07:40:11.906187Z", "date_published": "2025-11-05T07:15:00Z", "start_time": "2025-11-27T15:30:00Z", "end_time": "2025-11-27T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kaija", "sv": "Kaija", "en": "Kaija" }, "short_description": { "fi": "Tervetuloa kuulemaan, kun kuusi Espoon Kirjailijat ry:n kirjailijaa esittelee tuoreimman kirjansa. Tilaisuuden juontaa kirjailija Leena Sainio.", "sv": "Välkommen att höra sex författare från Espoon Kirjailijat ry presentera sin senaste bok. Författaren Leena Sainio är värd för evenemanget.", "en": "Welcome to hear six authors from the Espoon Kirjailijat ry present their latest book. The event will be hosted by author Leena Sainio." }, "provider": { "fi": "Espoon Kirjailijat ry", "sv": "Espoon Kirjailijat ry", "en": "Espoon Kirjailijat ry" }, "name": { "fi": "Uusien kirjojen ilta", "sv": "Kväll med nya böcker", "en": "Evening of new books" }, "description": { "fi": "<p>Tervetuloa kuulemaan, kun kuusi Espoon Kirjailijat ry:n kirjailijaa esittelee tuoreimman kirjansa. Tilaisuuden juontaa kirjailija Leena Sainio.</p><p>Kirjastaan ovat kertomassa seuraavat kirjailijat:</p><ul><li>Sanna Aaltonen, <a href=\"https://helmet.finna.fi/Record/helmet.2612304?sid=5172303509\">Louhikurun kutsu</a></li><li>Jorma Heikkilä, Kiirastuleni Kilpilahdessa</li><li>Outi Hongisto, <a href=\"https://helmet.finna.fi/Record/helmet.2616526?sid=5172304439\">Järjestely</a></li><li>Katri Karasma, Akka-puu ja tekoäly</li><li>Pirkko Kärnä, Kuulen polun</li><li>Toni Tuomanen, <a href=\"https://helmet.finna.fi/Record/helmet.2622406?sid=5172304895\">Punk fiction</a></li></ul><p>Linkit johtavat helmet-sivulle, josta voit tehdä varauksen kirjasta.</p><p>Lämpimästi tervetuloa!</p>", "sv": "<p>Välkommen att höra sex författare från Espoon Kirjailijat ry presentera sin senaste bok. Författaren Leena Sainio är värd för evenemanget.</p><p>Följande författare kommer att tala om sina böcker: Sanna Aaltonen, Jorma Heikkilä, Outi Hongisto, Katri Karasma, Pirkko Kärnä, Toni Tuomanen.</p>", "en": "<p>Welcome to hear six authors from the Espoon Kirjailijat ry present their latest book. The event will be hosted by author Leena Sainio.</p><p>The following authors will talk about their books: Sanna Aaltonen, Jorma Heikkilä, Outi Hongisto, Katri Karasma, Pirkko Kärnä, Toni Tuomanen.</p>" }, "info_url": { "fi": "https://espoonkirjailijat.fi/", "sv": "https://espoonkirjailijat.fi/", "en": "https://espoonkirjailijat.fi/" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfgisu24/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm7fr56vq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr523i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr53pq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr5324/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr54fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr54qq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr55si/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr56la/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnawpvxlm/?format=api" } ], "images": [ { "id": 1491121, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-10-17T14:27:20.273288Z", "last_modified_time": "2025-10-17T14:27:20.273303Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/558523d5-82a0-44ad-978f-d012f4cee3a5.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Opetuksen kerho", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491121/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-17T14:51:44.974783Z", "last_modified_time": "2025-11-17T13:47:18.145675Z", "date_published": null, "start_time": "2025-10-17T14:00:00Z", "end_time": "2025-12-19T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "\nHUOM! RYHMÄ ON TÄYNNÄ!\nTervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!", "en": "NOTE! THE GROUP IS FULL! \nWelcome in a club in Arabic to learn, craft and to get support in your studies! " }, "provider": null, "name": { "fi": "RYHMÄ TÄYNNÄ! Arabiankielinen opetuskerho lapsille ja nuorille ", "en": "FULLY BOOKED! EDUCATIONAL CLUB FOR CHILDREN AND YOUTH IN ARABIC" }, "description": { "fi": "<p>HUOM! RYHMÄ ON TÄYNNÄ!</p><p>Tervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!</p><p> </p><p>Kerho on suunnattu arabian kielen taitoisille kouluikäisille lapsille ja nuorille. Vetäjänä vapaaehtoinen opettaja.</p><p> </p><p>Kerho järjestetään joka perjantai klo 17-19. Lämpimästi tervetuloa!</p><p>#HelloEspoo</p><p> </p>", "en": "<p>NOTE! THE GROUP IS FULL!</p><p>Welcome to Arabic learning club, where you could enjoy learning Arabic language, and doing different activities like craft and getting support in your studies!</p><p> </p><p>The club is aimed for school. No pre-registration. Welcome!</p><p><br></p><p>#HelloEspoo</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr56vq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnjd7y6pq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491283, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-04T13:10:53.750963Z", "last_modified_time": "2025-11-04T13:10:53.750978Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/89c7852d-f786-4eeb-85a2-4c3a4967c3fa.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kuvassa mies ja nainen 40-luvulta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491283/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-17T12:29:19.015843Z", "last_modified_time": "2025-11-17T12:29:19.015861Z", "date_published": null, "start_time": "2025-12-12T12:00:00Z", "end_time": "2025-12-12T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "short_description": { "fi": "Mikäli sinua kiinnostavat Itämeri, sota-ajan historia ja \n\njännittävät, aidot ihmiskohtalot, kannattaa tulla kuulolle. ", "sv": "Författare Vesa Linna , evengeman är på finska", "en": "Author Vesa Linna. Event is in Finnish" }, "provider": null, "name": { "fi": "Kirjailijavieraana Vesa Linna", "sv": "Författare Vesa Linna , evengeman är på finska", "en": "Author Vesa Linna. Event is in Finnish" }, "description": { "fi": "<p>Mikäli sinua kiinnostavat Itämeri, sota-ajan historia ja </p><p>jännittävät, aidot ihmiskohtalot, kannattaa tulla kuulolle </p><p>Sellon kirjastoon.</p><p><br></p><p>Tietokirjailija ja ammattivalokuvaaja Vesa Linna kertoo </p><p>tuoreesta kirjastaan Itämeri 1916 - 1945 - Taistelu </p><p>Suursaaresta ja muita tositarinoita sodista. </p>", "sv": "<p>Författare Vesa Linna , evengeman är på finska.</p>", "en": "<p>Author Vesa Linna. Event is in Finnish.</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjd7y6pq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66114", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "19€/17€", "sv": "19€/17€", "en": "19€/17€" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4029940", "sv": "https://www.lippu.fi/eventseries/name-4029940", "en": "https://www.lippu.fi/eventseries/name-4029940" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493825, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-17T12:13:05.173227Z", "last_modified_time": "2025-11-17T12:13:05.173237Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772171.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493825/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-17T12:13:05.012099Z", "last_modified_time": "2025-11-17T12:13:05.348434Z", "date_published": null, "start_time": "2025-12-13T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "Pukinmäen taidekoulujen jouluproduktio 2025 kutsuu sinut unohtumattomalle matkalle halki avaruuden – ja suoraan ihmisyyden ytimiin.", "sv": "Pukinmäen taidekouluts julproduktion 2025 bjuder dig med på en oförglömlig resa genom rymden och rakt in i mänsklighetens kärna.", "en": "The 2025 Christmas production by Pukinmäki art schools invites you on an unforgettable journey through space and straight to the heart of humanity." }, "provider": null, "name": { "fi": "Pikku Prinssi", "sv": "Den Lille Prinsen", "en": "The Little Prince" }, "description": { "fi": "<p>Pukinmäen taidekoulujen jouluproduktio 2025 kutsuu sinut unohtumattomalle matkalle halki avaruuden – ja suoraan ihmisyyden ytimiin.</p><p>Antoine de Saint-Exupéryn rakastettu tarina Pikku Prinssi herää eloon ainutlaatuisessa monitaiteisessa esityksessä, jossa esiintyvät lähes kaikki taidekoulujen 400 oppilasta.<br> <br>Malmisalin lavan valloittavat musiikin, teatterin, tanssin ja sirkuksen eri-ikäiset taitajat. Esityksen visuaalisen maailman luovat kuvataideoppilaiden teokset, jotka projisoidaan osaksi näyttämökuvaa.<br> <br>Eri taiteenlajeista ja eri-ikäisten oppilaiden esityksistä punoutuu kokonaisuus, jonka ytimessä loistaa ajaton viisaus: \"Vain sydämellään näkee hyvin. Tärkeimpiä asioita ei näe silmillä.”</p><p>Kesto: 1 t 45 min, sis. väliajan<br> <br>Esitykset:<br>pe 12.12. klo 18.00<br>la 13.12. klo 14.00 ja 18.00</p><p>Liput: 19€/17€</p>", "sv": "<p>Pukinmäen taidekouluts julproduktion 2025 bjuder dig med på en oförglömlig resa genom rymden och rakt in i mänsklighetens kärna.</p><p>Antoine de Saint-Exupérys älskade berättelse Den lille prinsen kommer till liv i en unik multikonstnärlig föreställning när nästan alla av de 400 studerandena vid konstskolorna medverkar.<br> <br>Scenen i salen i Malms kultur tas över av musik-, teater-, dans- och cirkusartister i alla åldrar. Föreställningens visuella värld skapas av konststuderandenas verk som projiceras på scenen.<br> <br>De olika konstarterna och uppträdandena av studerande i olika åldrar väver samman en helhet med en tidlös visdom som kärna: ”Det är bara hjärtat som ser bra. Man kan inte se de viktigaste sakerna med ögonen.”</p><p>Längd: 1 timme 45 minuter, inklusive 20 minuters paus<br> <br>Föreställningar:<br>fre. 12.12 kl. 18.00<br>lör. 13.12. kl. 14 och 18</p>", "en": "<p>The 2025 Christmas production by Pukinmäki art schools invites you on an unforgettable journey through space and straight to the heart of humanity.</p><p>The 2025 Christmas production by Pukinmäki art schools invites you on an unforgettable journey through space and straight to the heart of humanity.</p><p>Antoine de Saint-Exupéry's beloved story The Little Prince comes to life in a unique multidisciplinary performance featuring nearly all of the 400 students from the art schools.<br> <br>The stage of Malmisali will be taken over by talented performers of all ages in music, theatre, dance and circus. The visual world of the performance is created by art students' works, projected as part of the stage design.<br> <br>The various art forms and performances by students of various ages weave together a unified whole – one that shines with a timeless truth: \"One sees clearly only with the heart. What is essential is invisible to the eye.\"</p><p>Duration: 1 hour 45 minutes, including a 20-minute intermission<br> <br>Performances:<br>Fri 12 December at 18:00<br>Sat 13 December at 14:00 and 18:00</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/83051D31CE765CFEEE94849967A5C27E/Pikku_Prinssi_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/83051D31CE765CFEEE94849967A5C27E/Den_Lille_Prinsen", "en": "http://www.malmitalo.fi/en/events/event/83051D31CE765CFEEE94849967A5C27E/The_Little_Prince" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66114/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66113", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "19€/17€", "sv": "19€/17€", "en": "19€/17€" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4029940", "sv": "https://www.lippu.fi/eventseries/name-4029940", "en": "https://www.lippu.fi/eventseries/name-4029940" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493824, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-17T12:13:04.550766Z", "last_modified_time": "2025-11-17T12:13:04.550820Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772170.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493824/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-17T12:13:04.346157Z", "last_modified_time": "2025-11-17T12:13:04.761979Z", "date_published": null, "start_time": "2025-12-13T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "Pukinmäen taidekoulujen jouluproduktio 2025 kutsuu sinut unohtumattomalle matkalle halki avaruuden – ja suoraan ihmisyyden ytimiin.", "sv": "Pukinmäen taidekouluts julproduktion 2025 bjuder dig med på en oförglömlig resa genom rymden och rakt in i mänsklighetens kärna.", "en": "The 2025 Christmas production by Pukinmäki art schools invites you on an unforgettable journey through space and straight to the heart of humanity." }, "provider": null, "name": { "fi": "Pikku Prinssi", "sv": "Den Lille Prinsen", "en": "The Little Prince" }, "description": { "fi": "<p>Pukinmäen taidekoulujen jouluproduktio 2025 kutsuu sinut unohtumattomalle matkalle halki avaruuden – ja suoraan ihmisyyden ytimiin.</p><p>Antoine de Saint-Exupéryn rakastettu tarina Pikku Prinssi herää eloon ainutlaatuisessa monitaiteisessa esityksessä, jossa esiintyvät lähes kaikki taidekoulujen 400 oppilasta.<br> <br>Malmisalin lavan valloittavat musiikin, teatterin, tanssin ja sirkuksen eri-ikäiset taitajat. Esityksen visuaalisen maailman luovat kuvataideoppilaiden teokset, jotka projisoidaan osaksi näyttämökuvaa.<br> <br>Eri taiteenlajeista ja eri-ikäisten oppilaiden esityksistä punoutuu kokonaisuus, jonka ytimessä loistaa ajaton viisaus: \"Vain sydämellään näkee hyvin. Tärkeimpiä asioita ei näe silmillä.”</p><p>Kesto: 1 t 45 min, sis. väliajan<br> <br>Esitykset:<br>pe 12.12. klo 18.00<br>la 13.12. klo 14.00 ja 18.00</p><p>Liput: 19€/17€</p>", "sv": "<p>Pukinmäen taidekouluts julproduktion 2025 bjuder dig med på en oförglömlig resa genom rymden och rakt in i mänsklighetens kärna.</p><p>Antoine de Saint-Exupérys älskade berättelse Den lille prinsen kommer till liv i en unik multikonstnärlig föreställning när nästan alla av de 400 studerandena vid konstskolorna medverkar.<br> <br>Scenen i salen i Malms kultur tas över av musik-, teater-, dans- och cirkusartister i alla åldrar. Föreställningens visuella värld skapas av konststuderandenas verk som projiceras på scenen.<br> <br>De olika konstarterna och uppträdandena av studerande i olika åldrar väver samman en helhet med en tidlös visdom som kärna: ”Det är bara hjärtat som ser bra. Man kan inte se de viktigaste sakerna med ögonen.”</p><p>Längd: 1 timme 45 minuter, inklusive 20 minuters paus<br> <br>Föreställningar:<br>fre. 12.12 kl. 18.00<br>lör. 13.12. kl. 14 och 18</p>", "en": "<p>The 2025 Christmas production by Pukinmäki art schools invites you on an unforgettable journey through space and straight to the heart of humanity.</p><p>Antoine de Saint-Exupéry's beloved story The Little Prince comes to life in a unique multidisciplinary performance featuring nearly all of the 400 students from the art schools.<br> <br>The stage of Malmisali will be taken over by talented performers of all ages in music, theatre, dance and circus. The visual world of the performance is created by art students' works, projected as part of the stage design.<br> <br>The various art forms and performances by students of various ages weave together a unified whole – one that shines with a timeless truth: \"One sees clearly only with the heart. What is essential is invisible to the eye.\"</p><p>Duration: 1 hour 45 minutes, including a 20-minute intermission<br> <br>Performances:<br>Fri 12 December at 18:00<br>Sat 13 December at 14:00 and 18:00</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C39AD6DAC157374C3E58877B8EEF9ADC/Pikku_Prinssi", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C39AD6DAC157374C3E58877B8EEF9ADC/Den_Lille_Prinsen", "en": "http://www.malmitalo.fi/en/events/event/C39AD6DAC157374C3E58877B8EEF9ADC/The_Little_Prince" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66113/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66112", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "19€/17€", "sv": "19€/17€", "en": "19€/17€" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4029940", "sv": "https://www.lippu.fi/eventseries/name-4029940", "en": "https://www.lippu.fi/eventseries/name-4029940" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493820, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-17T11:15:12.718481Z", "last_modified_time": "2025-11-17T11:15:12.718495Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772169.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493820/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-17T11:15:12.520071Z", "last_modified_time": "2025-11-17T11:15:12.952278Z", "date_published": null, "start_time": "2025-12-12T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "Pukinmäen taidekoulujen jouluproduktio 2025 kutsuu sinut unohtumattomalle matkalle halki avaruuden – ja suoraan ihmisyyden ytimiin.", "sv": "Pukinmäen taidekouluts julproduktion 2025 bjuder dig med på en oförglömlig resa genom rymden och rakt in i mänsklighetens kärna.", "en": "The 2025 Christmas production by Pukinmäki art schools invites you on an unforgettable journey through space and straight to the heart of humanity." }, "provider": null, "name": { "fi": "Pikku Prinssi", "sv": "Den Lille Prinsen", "en": "The Little Prince" }, "description": { "fi": "<p>Pukinmäen taidekoulujen jouluproduktio 2025 kutsuu sinut unohtumattomalle matkalle halki avaruuden – ja suoraan ihmisyyden ytimiin.</p><p>Antoine de Saint-Exupéryn rakastettu tarina Pikku Prinssi herää eloon ainutlaatuisessa monitaiteisessa esityksessä, jossa esiintyvät lähes kaikki taidekoulujen 400 oppilasta.<br> <br>Malmisalin lavan valloittavat musiikin, teatterin, tanssin ja sirkuksen eri-ikäiset taitajat. Esityksen visuaalisen maailman luovat kuvataideoppilaiden teokset, jotka projisoidaan osaksi näyttämökuvaa.<br> <br>Eri taiteenlajeista ja eri-ikäisten oppilaiden esityksistä punoutuu kokonaisuus, jonka ytimessä loistaa ajaton viisaus: \"Vain sydämellään näkee hyvin. Tärkeimpiä asioita ei näe silmillä.”</p><p>Kesto: 1 t 45 min, sis. väliajan<br> <br>Esitykset:<br>pe 12.12. klo 18.00<br>la 13.12. klo 14.00 ja 18.00</p><p>Liput: 19€/17€</p>", "sv": "<p>Pukinmäen taidekouluts julproduktion 2025 bjuder dig med på en oförglömlig resa genom rymden och rakt in i mänsklighetens kärna.</p><p>Antoine de Saint-Exupérys älskade berättelse Den lille prinsen kommer till liv i en unik multikonstnärlig föreställning när nästan alla av de 400 studerandena vid konstskolorna medverkar.<br> <br>Scenen i salen i Malms kultur tas över av musik-, teater-, dans- och cirkusartister i alla åldrar. Föreställningens visuella värld skapas av konststuderandenas verk som projiceras på scenen.<br> <br>De olika konstarterna och uppträdandena av studerande i olika åldrar väver samman en helhet med en tidlös visdom som kärna: ”Det är bara hjärtat som ser bra. Man kan inte se de viktigaste sakerna med ögonen.”</p><p>Längd: 1 timme 45 minuter, inklusive 20 minuters paus<br> <br>Föreställningar:<br>fre. 12.12 kl. 18.00<br>lör. 13.12. kl. 14 och 18</p>", "en": "<p>The 2025 Christmas production by Pukinmäki art schools invites you on an unforgettable journey through space and straight to the heart of humanity.</p><p>Antoine de Saint-Exupéry's beloved story The Little Prince comes to life in a unique multidisciplinary performance featuring nearly all of the 400 students from the art schools.<br> <br>The stage of Malmisali will be taken over by talented performers of all ages in music, theatre, dance and circus. The visual world of the performance is created by art students' works, projected as part of the stage design.<br> <br>The various art forms and performances by students of various ages weave together a unified whole – one that shines with a timeless truth: \"One sees clearly only with the heart. What is essential is invisible to the eye.\"</p><p>Duration: 1 hour 45 minutes, including a 20-minute intermission<br> <br>Performances:<br>Fri 12 December at 18:00<br>Sat 13 December at 14:00 and 18:00</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7E32F229152E95944C6A93969802E431/Pikku_Prinssi", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7E32F229152E95944C6A93969802E431/Den_Lille_Prinsen", "en": "http://www.malmitalo.fi/en/events/event/7E32F229152E95944C6A93969802E431/The_Little_Prince" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66112/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67464", "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: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:755/?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": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-eleanor-the-great-malmitalo-20945905/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493817, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-17T09:12:34.065940Z", "last_modified_time": "2025-11-17T09:12:34.065953Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777311.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493817/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-17T09:12:33.992274Z", "last_modified_time": "2025-11-17T09:12:34.161677Z", "date_published": null, "start_time": "2025-12-12T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "Scarlett Johanssonin ohjaamassa draamaelokuvassa musertavan menetyksen jälkeen nokkela ja ylpeästi hankala 94-vuotias Eleanor Morgenstein (June Squibb) kertoo tarinan, joka alkaa elää vaarallista omaa elämäänsä." }, "provider": null, "name": { "fi": "Kino Helios: Eleanor The Great" }, "description": { "fi": "<p>Scarlett Johanssonin ohjaamassa draamaelokuvassa musertavan menetyksen jälkeen nokkela ja ylpeästi hankala 94-vuotias Eleanor Morgenstein (June Squibb) kertoo tarinan, joka alkaa elää vaarallista omaa elämäänsä.</p><p>Ikäraja: ei tiedossa<br>Kesto: 98 min<br>Ensi-ilta: 28.11.2025<br>Kieli: englanti<br>Tekstitys: suomi</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B05BC2FE22EDDB4D81108AC900DD0628/Kino_Helios_Eleanor_The_Great" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67464/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67462", "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: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:755/?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": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-eleanor-the-great-malmitalo-20945904/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493816, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-17T09:12:32.818010Z", "last_modified_time": "2025-11-17T09:12:32.818023Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777308.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493816/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-17T09:12:32.743628Z", "last_modified_time": "2025-11-17T09:12:32.910900Z", "date_published": null, "start_time": "2025-12-05T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "Scarlett Johanssonin ohjaamassa draamaelokuvassa musertavan menetyksen jälkeen nokkela ja ylpeästi hankala 94-vuotias Eleanor Morgenstein (June Squibb) kertoo tarinan, joka alkaa elää vaarallista omaa elämäänsä." }, "provider": null, "name": { "fi": "Kino Helios: Eleanor The Great" }, "description": { "fi": "<p>Scarlett Johanssonin ohjaamassa draamaelokuvassa musertavan menetyksen jälkeen nokkela ja ylpeästi hankala 94-vuotias Eleanor Morgenstein (June Squibb) kertoo tarinan, joka alkaa elää vaarallista omaa elämäänsä.</p><p>Ikäraja: ei tiedossa<br>Kesto: 98 min<br>Ensi-ilta: 28.11.2025<br>Kieli: englanti<br>Tekstitys: suomi</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/26A1CF063EAF4907077A2818127CEE5D/Kino_Helios_Eleanor_The_Great" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67462/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67461", "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: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:755/?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": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-eleanor-the-great-malmitalo-20945771/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493815, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-17T09:12:32.044484Z", "last_modified_time": "2025-11-17T09:12:32.044498Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777344.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493815/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-17T09:12:31.940439Z", "last_modified_time": "2025-11-17T09:12:32.168379Z", "date_published": null, "start_time": "2025-12-03T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "Scarlett Johanssonin ohjaamassa draamaelokuvassa musertavan menetyksen jälkeen nokkela ja ylpeästi hankala 94-vuotias Eleanor Morgenstein (June Squibb) kertoo tarinan, joka alkaa elää vaarallista omaa elämäänsä." }, "provider": null, "name": { "fi": "Kino Helios: Eleanor The Great" }, "description": { "fi": "<p>Scarlett Johanssonin ohjaamassa draamaelokuvassa musertavan menetyksen jälkeen nokkela ja ylpeästi hankala 94-vuotias Eleanor Morgenstein (June Squibb) kertoo tarinan, joka alkaa elää vaarallista omaa elämäänsä.</p><p>Ikäraja: ei tiedossa<br>Kesto: 98 min<br>Ensi-ilta: 28.11.2025<br>Kieli: englanti<br>Tekstitys: suomi</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A22F6ADB3D3A01F661704BF278282B9C/Kino_Helios_Eleanor_The_Great" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67461/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnjciv3fu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493818, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-17T08:26:11.352278Z", "last_modified_time": "2025-11-17T08:26:11.352292Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e17fe6e7-e130-4550-b956-2b1380d1e46e.png", "name": "", "cropping": "0,286,1428,1714", "photographer_name": "", "alt_text": "Ukrainan kielellä kirjoitettu mainos tapahtumasta ja piirrettyjä poroja ja lahjoja ja joulupukki", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493818/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-11-17T08:31:13.021177Z", "last_modified_time": "2025-11-17T08:31:13.021195Z", "date_published": null, "start_time": "2025-12-05T15:30:00Z", "end_time": "2025-12-05T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "en": "Stage" }, "short_description": { "fi": "Joululauluja", "en": "Christmasmusic " }, "provider": null, "name": { "fi": "Ukrainalaista joulumusiikkia lapsille", "en": "Ukranian Christmas music for kids" }, "description": { "fi": "<p>Tervetuloa nauttimaan ukrainan kielellä lauletuista joululauluista!</p>", "en": "<p>Welcome to liten to ukranian Christmas songs!</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjciv3fu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67459", "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: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:755/?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": "6 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-20945713/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493814, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-17T08:13:22.201299Z", "last_modified_time": "2025-11-17T08:13:22.201314Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777383.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493814/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-17T08:13:22.098226Z", "last_modified_time": "2025-11-17T08:13:22.338851Z", "date_published": null, "start_time": "2025-12-20T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta." }, "provider": null, "name": { "fi": "Kino Helios: Tonttu (7)" }, "description": { "fi": "<p>Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta.</p><p>Lumi ja Talvi ovat olleet erottamattomat koko elämänsä ajan, kunnes kohtalo yllättäen ajaa heidät erilleen. Lumi päätyy taianomaiseen tonttumaahan, jossa tontut valmistavat joululahjat kaikille maailman lapsille. Alkaa seikkailu, joka vaatii rohkeutta, luottamusta ja kekseliäisyyttä. Tontut ovat aluksi epäluuloisia tyhjästä tupsahtavaa ihmislasta kohtaan, mutta tonttulapsi Pyry ottaa Lumin mielenkiinnolla vastaan. Pyry on kiinnostunut uusista seikkailuista ja ystävyys Lumin kanssa näyttää mahdollisuudelta jännittävään matkaan. Talvinen retki tonttujen taianomaisessa maailmassa on täynnä yllätyksiä ja joulun ihmeitä.<br>Joonas Berghäll ja Hannes Vartiainen ovat ohjanneet Tonttu-elokuvan, jota on kuvattu Kemin Lumilinnassa, Levillä, Rovaniemellä ja Helsingissä. Elokuvan lapsirooleissa nähdään Soma Zimmatore, Thea Achillea ja Marco Stylianou. Muissa rooleissa nähdään huippuammattilaisia kuten Sara Melleri, Jarkko Niemi, Alma Pöysti, Eero Milonoff, Kati Outinen ja Vesa Vierikko. Mukana myös Tonttu-maailman vartijoina tubettaja, artisti Seksikäs-Suklaa ja artisti Musta Barbaari. Sivurooleissa nähdään myös vaikuttajat Viivi ja Venla.<br>Robin Packalen julkaisee suomalaisen Tonttu-elokuvan tunnuskappaleen Piece by Piece keskiviikkona 12.11. Se on yhteisjulkaisu ruotsalaisartisti Clara Maen kanssa. Kappale on tehty suomalaisvoimin – Packalenin mukana kappaletta ovat olleet tekemässä ILON, Camu Creutz sekä Elias Hjelm.</p><p>Ikäraja: 7<br>Kesto: 81 min<br>Ensi-ilta: 14.11.2025<br>Kieli: puhuttu suomeksi<br>Tekstitys: suomi</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/517B1D2F194F725A2E88BDA279BBE3F0/Kino_Helios_Tonttu_7_" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67459/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }