Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=71&weekday=6%2C7
{ "meta": { "count": 6457, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=72&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=70&weekday=6%2C7" }, "data": [ { "id": "espoo_le:agndu5evfy", "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/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agndu5esdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agndu5etc4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agndu5etyu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agndu5eun4/?format=api" } ], "images": [ { "id": 150370, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-15T10:22:13.113892Z", "last_modified_time": "2024-03-15T10:22:13.113919Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/caleb-george-pH88tHG-1yw-unsplash.jpg", "name": "", "cropping": "520,0,2603,2082", "photographer_name": "", "alt_text": "soittimia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150370/?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-10-31T13:07:59.845890Z", "last_modified_time": "2025-10-31T13:07:59.845909Z", "date_published": null, "start_time": "2025-11-03T15:30:00Z", "end_time": "2025-11-24T16: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, "short_description": { "fi": "Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Kurssi on suunnattu nuorille. Osallistuminen on maksutonta.", "sv": "Bandkurs för unga", "en": "Band course for young people" }, "info_url": null, "description": { "fi": "<p>Tule mukaan Ison Omenan kirjaston soittohuoneessa järjestettävään bändikurssiin! Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Pääset soittamaan rumpuja, bassoa, kitaraa ja pianoa. Tarkoituksena on harjoitella perusteet kaikista soittimista ja soittaa yhdessä nuorten toivomia kappaleita. Osallistuminen on maksutonta. Kurssille mahtuu kerralla 8 osallistujaa. Ei ennakkoilmoittautumista.</p><p>Kurssi järjestetään maanantaisin neljä kertaa</p><p><strong>3.11 klo 17.30-18.30</strong></p><p><strong>10.11 klo 17-18</strong></p><p><strong>17.11 klo 17-18</strong></p><p><strong>24.11 klo 17-18</strong></p><p><br></p><p>#musiikki #kitara #rummut #piano #bändi #kurssi</p><p>Kurssin vetäjänä toimii musiikkipedagogi Lauri Iljin</p><p>lauri.iljin(at)espoo.fi</p>", "sv": "<p>Bandkurs på Iso Omena bibliotek! Under kursen kommer du att få spela och öva på bandinstrument. Kursen riktar sig till 12-20-åringar. Deltagandet är kostnadsfritt.</p><p><br></p><p>Kursen är fyra gånger på måndagar:</p><p><strong>3.11 kl 17.30-18.30</strong></p><p><strong>10.11 kl 17-18</strong></p><p><strong>17.11 kl 17-18</strong></p><p><strong>24.11 kl 17-18</strong></p>", "en": "<p>Band course for young people at the Iso Omena Library! During the course you will be able to play and practice band instruments. The course is aimed for 12-20 year olds. Participation is free of charge.</p><p>The course is four times on Mondays:</p><p><strong>3.11 at 17.30-18.30</strong></p><p><strong>10.11 at 17-18</strong></p><p><strong>17.11 at 17-18</strong></p><p><strong>24.11 at 17-18</strong></p>" }, "name": { "fi": "Bändisoittimia nuorille", "sv": "Bandkurs för unga", "en": "Band course for young people" }, "provider_contact_info": null, "location_extra_info": { "fi": "soittohuone", "sv": "musicrum", "en": "music room" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agndu5evfy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agndu5ewny", "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/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-31T12:42:57.690965Z", "last_modified_time": "2025-10-31T12:42:57.690985Z", "date_published": null, "start_time": "2025-11-01T13:15:00Z", "end_time": "2025-11-01T15: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, "short_description": { "fi": "Uusimman futispelin mestaruus" }, "info_url": null, "description": { "fi": "<p>FC26-turnaus Messissä 1.11. klo 15.15-17.30, yli 7-vuotiaille. Tervetuloa ottamaan mittaa uusimman futispelin mestaruudesta!</p>" }, "name": { "fi": "FC26-turnaus messissä" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agndu5ewny/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67204", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/", "en": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491179, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-24T06:13:29.732318Z", "last_modified_time": "2025-10-24T06:13:29.732334Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777372.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491179/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-24T06:13:29.631260Z", "last_modified_time": "2025-10-30T11:13:44.304372Z", "date_published": null, "start_time": "2025-11-22T16: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, "short_description": { "fi": "Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0FD6E77017A884A0EC7A422BEF84FDDD/Kino_Helios_Wicked_for_Good", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0FD6E77017A884A0EC7A422BEF84FDDD/Kino_Helios_Wicked_for_Good", "en": "http://www.malmitalo.fi/en/events/event/0FD6E77017A884A0EC7A422BEF84FDDD/Kino_Helios_Wicked_for_Good" }, "description": { "fi": "<p>Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni.</p><p>Viime vuoden maailmanlaajuinen elokuvatapaus saa nyt eeppisen, sävähdyttävän ja tunteellisen päätöksensä. Ozin noitien viimeinen, aiemmin kertomaton luku alkaa Elphaban ja Glindan välirikosta ja elämästä valintojensa seurausten kanssa.</p><p>Wicked: For Good perustuu sukupolvensa ilmiöksi nousseeseen musikaalinäytelmään. Elokuvaa tähdittää taas loistava näyttelijäkaarti kärjessään Oscar®-ehdokkuuden ansainneet supertähdet Cynthia Erivo ja Ariana Grande. Elokuvan alkuperäismusiikista vastaavat John Powell ja Stephen Schwartz, ja sävellykset ja sanoitukset ovat Stephen Schwartzin käsialaa.</p><p>Ikäraja: 12<br>Kesto: 138 min<br>Ensi-ilta: 21.11.2025</p><p>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Kino Helios: Wicked for Good", "sv": "Kino Helios: Wicked for Good", "en": "Kino Helios: Wicked for Good" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67204/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67203", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/", "en": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491178, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-24T06:13:28.657177Z", "last_modified_time": "2025-10-24T06:13:28.657189Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777302.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491178/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-24T06:13:28.507740Z", "last_modified_time": "2025-10-30T11:13:43.449187Z", "date_published": null, "start_time": "2025-11-21T13: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, "short_description": { "fi": "Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4DE398A332ACF1CA5D2C790CE96282F6/Kino_Helios_Wicked_for_Good", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4DE398A332ACF1CA5D2C790CE96282F6/Kino_Helios_Wicked_for_Good", "en": "http://www.malmitalo.fi/en/events/event/4DE398A332ACF1CA5D2C790CE96282F6/Kino_Helios_Wicked_for_Good" }, "description": { "fi": "<p>Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni.</p><p>Viime vuoden maailmanlaajuinen elokuvatapaus saa nyt eeppisen, sävähdyttävän ja tunteellisen päätöksensä. Ozin noitien viimeinen, aiemmin kertomaton luku alkaa Elphaban ja Glindan välirikosta ja elämästä valintojensa seurausten kanssa.</p><p>Wicked: For Good perustuu sukupolvensa ilmiöksi nousseeseen musikaalinäytelmään. Elokuvaa tähdittää taas loistava näyttelijäkaarti kärjessään Oscar®-ehdokkuuden ansainneet supertähdet Cynthia Erivo ja Ariana Grande. Elokuvan alkuperäismusiikista vastaavat John Powell ja Stephen Schwartz, ja sävellykset ja sanoitukset ovat Stephen Schwartzin käsialaa.</p><p>Ikäraja: 12<br>Kesto: 138 min<br>Ensi-ilta: 21.11.2025</p><p>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Kino Helios: Wicked for Good", "sv": "Kino Helios: Wicked for Good", "en": "Kino Helios: Wicked for Good" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67203/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnaxliabe", "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:agggfz65fm/?format=api" }, { "@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:agggfz66by/?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:agggfz66oi/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/1321666955996035", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-22T10:37:11.187615Z", "last_modified_time": "2025-10-30T10:24:43.257100Z", "date_published": null, "start_time": "2025-11-01T10:00:00Z", "end_time": "2025-11-01T15: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, "short_description": { "fi": "Sellon kirjastossa järjestetään Musafestarit lauantaina 1.11.2025. Artistit ovat nyt julkaistu! ", "sv": "Sellobibliotek ordnar en musikfestival lördagen den 1.11.2025. Artisterna är nu presenterade!", "en": "Sello Library will host a Music Festival on Saturday 1.11.2025. The artists are now announced!" }, "info_url": null, "description": { "fi": "<p>Sellon kirjastossa järjestetään Musafestarit lauantaina 1.11.2025</p><p><br></p><p>Musafestareiden ohjelma on nyt julkaistu! Ohjelmassa on uskomattoman hieno kattaus erilaisia esiintymisiä sooloesityksistä bändeihin. Luvassa on muun muassa klassista musiikkia, poppia, funkkia, instrumentaalista musiikkia, covereita ja omia kappaleita. Artisteihin voit tutustua alla olevan ohjelman avulla. Tule nauttimaan musiikista Sellon kirjaston lavalle lauantaina 1.11 klo 12 eteenpäin!</p><p><br></p><p><strong>Sara Aurelia klo 12.00 </strong></p><ul><li>Sara Aurelia tekee lauluja elämän eri vuodenajoista, särkyneisyydestä ja toivon säteistä, etsimisestä ja löytämisestä. Keikalla kuullaan kitaran säestyksellä folk/pop-kappaleita, joissa on vaikutteita eri musiikkityyleistä. </li></ul><p> </p><p><strong>Ukulele Alisa klo 12.20 </strong></p><ul><li>Ukulele Alisa esittää akustista hyvän mielen musiikkia ukulelen säestyksellä. Keikoilla hän esittää sekä omia teoksiaan että cover kappaleita. Sellon keikalla Ukulele Alisa keskittyy omiin kappaleisiinsa, jotka koskettavat ja luovat lämminhenkisen tunnelman. </li></ul><p> </p><p><strong>Jasmin Skinnari klo 12.40 </strong></p><ul><li>Laulan kitaristin säestyksellä muutaman kappaleen. Ne ovat omaa käsialaani ja kertovat elämäni iloista, suruista ja pohdinnoista. </li></ul><p> </p><p><strong>Aamu Aurora klo 13.00 </strong></p><ul><li>Olen laulaja-lauluntekijä ja runoilija. Kappaleissani on vaikutteita niin jazzista, popista kuin etnomusiikistakin, ehkä jopa klassisesta. Elämän ilot, riemut sekä haikeus soivat suomenkielisessä, hieman elokuvallisessa musiikissani. </li></ul><p><br></p><p><strong>Dee Kourtsman klo 13.20 </strong></p><ul><li>Dee Kourtsman is a Helsinki-based indie folk guitarist, singer, and songwriter. Dee’s music is one-third Celtic, one-third Russian, and one-third a meditation on the city by the northern sea. Dee calls this style “Baltic trance” and always refers to his pieces as songs, each with its own story and characters. His performances are best described by listeners: \"Every time, it’s a wonder how Dee manages to visualize far lands, distant beacons, desert mirages, the inconsolable loneliness of the city, and the guiding lights of joy - without even putting it into words.\" </li></ul><p><br></p><p><strong>Mika H. klo 13.40 </strong></p><ul><li>Mika H. esittää omia kappaleitaan, joiden tyylilaji on Pop / Melodinen Rock. </li></ul><p> </p><p><strong>Talvikki klo 14.00 </strong></p><ul><li>Talvikki esittää omia akustisia sävellyksiä. Kappaleiden tyylilajeina toimivat folk ja pop/rock. </li></ul><p> </p><p><strong>Duo \"Gimer & Nicole\" klo 14.20 </strong></p><ul><li>Duo “Gimer & Nicole esittävät klarinetille ja pianolle sävelletyn teoksen: Carl Maria von Weber \"Concertino for Clarinet and Piano\" op.26. </li></ul><p><br></p><p><strong>TAUKO/BREAK 14.40-15.00 </strong></p><p><br></p><p><strong>Le Song Choir klo 15.00</strong> </p><ul><li>Le Song Choir is a Chinese Choir based in the metropolitan area. Our choir was established in 2015. We sing in Mandarin, English, and Finnish. </li></ul><p><br></p><p><strong>NQMT band(Not Quite My Tempo Band) klo 15.20 </strong></p><ul><li>NQMT band is a rock/indie band. The Band has four players. Mike as vocalist/ background guitar, Luka as Lead guitar, Ishan as Drummer and Annikki on Bass </li></ul><p><br></p><p><strong>Jääkissa Bändi klo 15.40 </strong></p><ul><li>Yhtyeemme koostuu joukosta musiikkia rakastavia työssäkäyviä ihmisiä. Soitamme iloista ja lämminhenkistä pop- ja rockmusiikkia, joka tuo hyvää mieltä kuulijoille. Esiintymisemme välittää energiaa, ystävyyttä ja rakkautta elämään. 🎶 </li></ul><p> </p><p><strong>Nayae klo 16.00 </strong></p><ul><li>We are a group of passionate teenagers wanting to share our love of music with other people and hope it brings them as much joy as it brings us. I hope you enjoy the song.</li></ul><p> </p><p><strong>Minus Bella klo 16.20 </strong></p><ul><li>We are an alternative rock band called Minus Bella, and we try to bring as much energy to our performances as possible. Everyone in our band is extremely passionate about music. We have 4 members: singer, bass, drums and guitar, but we also have a very cool manager. </li></ul><p><br></p><p><strong>Vlad Guiavganen klo 16.40 </strong></p><ul><li>I am 15 years old and will play acoustic percussion fingerstyle-guitar instrumental music. </li></ul><p><br></p><p><strong>Zenev Band klo 17.00 </strong></p><ul><li>The band plays in a country-folk style. Artem Zenev – guitar, music, arrangements; Boris Sukhodoev – guitar; Mikhail Teselkin – percussion. </li></ul><p><br></p><p> </p><p><br></p><p>#festarit #festivaali #musiikki #konsertti #esitys</p>", "sv": "<p>Sellobibliotek ordnar en musikfestival lördagen den 26.4.2025</p><p><br></p><p>Musikfestivalens line-up är nu publicerad! Programmet innehåller en otrolig mängd uppträdanden, allt från soloakter till band. Det blir klassisk musik, pop, funk, instrumentalmusik, covers och originallåtar. Kolla in artisterna i programmet nedan. Kom och njut av musiken på Sellobibliotekets stage lördagen den 1.11 från kl. 12.00!</p><p>(översatt av DeepL)</p><p><br></p><p><br></p><p><strong>Sara Aurelia klo 12.00 </strong></p><ul><li>Sara Aurelia tekee lauluja elämän eri vuodenajoista, särkyneisyydestä ja toivon säteistä, etsimisestä ja löytämisestä. Keikalla kuullaan kitaran säestyksellä folk/pop-kappaleita, joissa on vaikutteita eri musiikkityyleistä. </li></ul><p> </p><p><strong>Ukulele Alisa klo 12.20</strong> </p><ul><li>Ukulele Alisa esittää akustista hyvän mielen musiikkia ukulelen säestyksellä. Keikoilla hän esittää sekä omia teoksiaan että cover kappaleita. Sellon keikalla Ukulele Alisa keskittyy omiin kappaleisiinsa, jotka koskettavat ja luovat lämminhenkisen tunnelman. </li></ul><p> </p><p><strong>Jasmin Skinnari klo 12.40 </strong></p><ul><li>Laulan kitaristin säestyksellä muutaman kappaleen. Ne ovat omaa käsialaani ja kertovat elämäni iloista, suruista ja pohdinnoista. </li></ul><p> </p><p><strong>Aamu Aurora klo 13.00 </strong></p><ul><li>Olen laulaja-lauluntekijä ja runoilija. Kappaleissani on vaikutteita niin jazzista, popista kuin etnomusiikistakin, ehkä jopa klassisesta. Elämän ilot, riemut sekä haikeus soivat suomenkielisessä, hieman elokuvallisessa musiikissani. </li></ul><p><br></p><p><strong>Dee Kourtsman klo 13.20</strong> </p><ul><li>Dee Kourtsman is a Helsinki-based indie folk guitarist, singer, and songwriter. Dee’s music is one-third Celtic, one-third Russian, and one-third a meditation on the city by the northern sea. Dee calls this style “Baltic trance” and always refers to his pieces as songs, each with its own story and characters. His performances are best described by listeners: \"Every time, it’s a wonder how Dee manages to visualize far lands, distant beacons, desert mirages, the inconsolable loneliness of the city, and the guiding lights of joy - without even putting it into words.\" </li></ul><p><br></p><p><strong>Mika H. klo 13.40 </strong></p><ul><li>Mika H. esittää omia kappaleitaan, joiden tyylilaji on Pop / Melodinen Rock. </li></ul><p> </p><p><strong>Talvikki klo 14.00 </strong></p><ul><li>Talvikki esittää omia akustisia sävellyksiä. Kappaleiden tyylilajeina toimivat folk ja pop/rock. </li></ul><p> </p><p><strong>Duo \"Gimer & Nicole\" klo 14.20 </strong></p><ul><li>Duo “Gimer & Nicole esittävät klarinetille ja pianolle sävelletyn teoksen: Carl Maria von Weber \"Concertino for Clarinet and Piano\" op.26. </li></ul><p><br></p><p><strong>TAUKO/BREAK 14.40-15.00 </strong></p><p><br></p><p><strong>Le Song Choir klo 15.00 </strong></p><ul><li>Le Song Choir is a Chinese Choir based in the metropolitan area. Our choir was established in 2015. We sing in Mandarin, English, and Finnish. </li></ul><p><br></p><p><strong>NQMT band(Not Quite My Tempo Band) klo 15.20 </strong></p><ul><li>NQMT band is a rock/indie band. The Band has four players. Mike as vocalist/ background guitar, Luka as Lead guitar, Ishan as Drummer and Annikki on Bass </li></ul><p><br></p><p><strong>Jääkissa Bändi klo 15.40 </strong></p><ul><li>Yhtyeemme koostuu joukosta musiikkia rakastavia työssäkäyviä ihmisiä. Soitamme iloista ja lämminhenkistä pop- ja rockmusiikkia, joka tuo hyvää mieltä kuulijoille. Esiintymisemme välittää energiaa, ystävyyttä ja rakkautta elämään. 🎶 </li></ul><p> </p><p><strong>Nayae klo 16.00 </strong></p><ul><li>We are a group of passionate teenagers wanting to share our love of music with other people and hope it brings them as much joy as it brings us. I hope you enjoy the song.</li></ul><p> </p><p><strong>Minus Bella klo 16.20 </strong></p><ul><li>We are an alternative rock band called Minus Bella, and we try to bring as much energy to our performances as possible. Everyone in our band is extremely passionate about music. We have 4 members: singer, bass, drums and guitar, but we also have a very cool manager. </li></ul><p><br></p><p><strong>Vlad Guiavganen klo 16.40 </strong></p><ul><li>I am 15 years old and will play acoustic percussion fingerstyle-guitar instrumental music. </li></ul><p><br></p><p><strong>Zenev Band klo 17.00 </strong></p><ul><li>The band plays in a country-folk style. Artem Zenev – guitar, music, arrangements; Boris Sukhodoev – guitar; Mikhail Teselkin – percussion. </li></ul><p><br></p><p><br></p><p>#festival #musik #konsert</p>", "en": "<p>Sello Library will host a Music Festival on Saturday 26.4.2025</p><p>The Music Festival line-up is now out! The programme features an incredible line-up of performances ranging from solo acts to bands. There will be classical music, pop, funk, instrumental music, covers and original songs. Check out the artists in the programme below. Come and enjoy the music on the Sello Library stage on Saturday 1.11 from 12.00!</p><p><br></p><p><strong>Sara Aurelia klo 12.00 </strong></p><ul><li>Sara Aurelia tekee lauluja elämän eri vuodenajoista, särkyneisyydestä ja toivon säteistä, etsimisestä ja löytämisestä. Keikalla kuullaan kitaran säestyksellä folk/pop-kappaleita, joissa on vaikutteita eri musiikkityyleistä. </li></ul><p> </p><p><strong>Ukulele Alisa klo 12.20 </strong></p><ul><li>Ukulele Alisa esittää akustista hyvän mielen musiikkia ukulelen säestyksellä. Keikoilla hän esittää sekä omia teoksiaan että cover kappaleita. Sellon keikalla Ukulele Alisa keskittyy omiin kappaleisiinsa, jotka koskettavat ja luovat lämminhenkisen tunnelman. </li></ul><p> </p><p><strong>Jasmin Skinnari klo 12.40 </strong></p><ul><li>Laulan kitaristin säestyksellä muutaman kappaleen. Ne ovat omaa käsialaani ja kertovat elämäni iloista, suruista ja pohdinnoista. </li></ul><p> </p><p><strong>Aamu Aurora klo 13.00 </strong></p><ul><li>Olen laulaja-lauluntekijä ja runoilija. Kappaleissani on vaikutteita niin jazzista, popista kuin etnomusiikistakin, ehkä jopa klassisesta. Elämän ilot, riemut sekä haikeus soivat suomenkielisessä, hieman elokuvallisessa musiikissani. </li></ul><p><br></p><p><strong>Dee Kourtsman klo 13.20</strong> </p><ul><li>Dee Kourtsman is a Helsinki-based indie folk guitarist, singer, and songwriter. Dee’s music is one-third Celtic, one-third Russian, and one-third a meditation on the city by the northern sea. Dee calls this style “Baltic trance” and always refers to his pieces as songs, each with its own story and characters. His performances are best described by listeners: \"Every time, it’s a wonder how Dee manages to visualize far lands, distant beacons, desert mirages, the inconsolable loneliness of the city, and the guiding lights of joy - without even putting it into words.\" </li></ul><p><br></p><p><strong>Mika H. klo 13.40 </strong></p><ul><li>Mika H. esittää omia kappaleitaan, joiden tyylilaji on Pop / Melodinen Rock. </li></ul><p> </p><p><strong>Talvikki klo 14.00 </strong></p><ul><li>Talvikki esittää omia akustisia sävellyksiä. Kappaleiden tyylilajeina toimivat folk ja pop/rock. </li></ul><p> </p><p><strong>Duo \"Gimer & Nicole\" klo 14.20 </strong></p><ul><li>Duo “Gimer & Nicole esittävät klarinetille ja pianolle sävelletyn teoksen: Carl Maria von Weber \"Concertino for Clarinet and Piano\" op.26. </li></ul><p><br></p><p><strong>TAUKO/BREAK 14.40-15.00 </strong></p><p><br></p><p><strong>Le Song Choir klo 15.00</strong> </p><ul><li>Le Song Choir is a Chinese Choir based in the metropolitan area. Our choir was established in 2015. We sing in Mandarin, English, and Finnish. </li></ul><p><br></p><p><strong>NQMT band(Not Quite My Tempo Band) klo 15.20 </strong></p><ul><li>NQMT band is a rock/indie band. The Band has four players. Mike as vocalist/ background guitar, Luka as Lead guitar, Ishan as Drummer and Annikki on Bass </li></ul><p><br></p><p><strong>Jääkissa Bändi klo 15.40 </strong></p><ul><li>Yhtyeemme koostuu joukosta musiikkia rakastavia työssäkäyviä ihmisiä. Soitamme iloista ja lämminhenkistä pop- ja rockmusiikkia, joka tuo hyvää mieltä kuulijoille. Esiintymisemme välittää energiaa, ystävyyttä ja rakkautta elämään. 🎶 </li></ul><p> </p><p><strong>Nayae klo 16.00</strong> </p><ul><li>We are a group of passionate teenagers wanting to share our love of music with other people and hope it brings them as much joy as it brings us. I hope you enjoy the song.</li></ul><p> </p><p><strong>Minus Bella klo 16.20</strong> </p><ul><li>We are an alternative rock band called Minus Bella, and we try to bring as much energy to our performances as possible. Everyone in our band is extremely passionate about music. We have 4 members: singer, bass, drums and guitar, but we also have a very cool manager. </li></ul><p><br></p><p><strong>Vlad Guiavganen klo 16.40 </strong></p><ul><li>I am 15 years old and will play acoustic percussion fingerstyle-guitar instrumental music. </li></ul><p><br></p><p><strong>Zenev Band klo 17.00 </strong></p><ul><li>The band plays in a country-folk style. Artem Zenev – guitar, music, arrangements; Boris Sukhodoev – guitar; Mikhail Teselkin – percussion. </li></ul><p><br></p><p>#music #festival #performance #live </p>" }, "name": { "fi": "Sellon kirjaston Musafestarit VI", "sv": "Sellobibliotekets musikfestival VI", "en": "Sello Library Music Festival VI" }, "provider_contact_info": null, "location_extra_info": { "fi": "lava", "sv": "stage", "en": "stage" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaxliabe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66510", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/virve-rosti-freeman-menneisyyden-vangit/virve-rosti-freeman-ja-menneisyyden-vangit-3913241/", "sv": "https://www.lippu.fi/artist/virve-rosti-freeman-menneisyyden-vangit/virve-rosti-freeman-ja-menneisyyden-vangit-3913241/", "en": "https://www.lippu.fi/artist/virve-rosti-freeman-menneisyyden-vangit/virve-rosti-freeman-ja-menneisyyden-vangit-3913241/" }, "description": null, "price": { "fi": "38,90 €, S&D 98,90 €", "sv": "38,90 €, S&D 98,90 €", "en": "38,90 €, S&D 98,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 985989, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-10T12:14:52.231811Z", "last_modified_time": "2025-06-10T12:14:52.231833Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774778.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985989/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T06:13:51.402685Z", "last_modified_time": "2025-10-30T10:13:10.074012Z", "date_published": null, "start_time": "2025-11-07T17: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, "short_description": { "fi": "Legendaarinen kokoonpano Virve Rosti, Freeman & Menneisyyden Vangit Savoy-teatterissa parhaimpaan pikkujouluaikaan!", "sv": "Legendarisk sammansättning av Virve Rosti, Freeman och Menneisyyden Vangit på Savoy-teatern under bästa julfestsäsong!", "en": "The legendary line-up Virve Rosti, Freeman & Menneisyyden Vangit come to the Savoy Theatre to celebrate the height of the Christmas season!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/31F438691EB9E84EA67CA3D4B0833F89/Virve_Rosti_Freeman_ja_Menneisyyden_Vangit", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/31F438691EB9E84EA67CA3D4B0833F89/Virve_Rosti_Freeman_och_Menneisyyden_Vangit", "en": "http://www.savoyteatteri.fi/en/events/event/31F438691EB9E84EA67CA3D4B0833F89/Virve_Rosti_Freeman_and_Menneisyyden_Vangit" }, "description": { "fi": "<p>Legendaarinen kokoonpano Virve Rosti, Freeman & Menneisyyden Vangit Savoy-teatterissa parhaimpaan pikkujouluaikaan!</p><p>Kesto n. 2 h, sisältää väliajan<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b>Konsertin Show&Dinner-lippupakettien myynti on päättynyt Lippu.fi.ssä, mutta illallinen on mahdollista tilata suoraan Savoy-teatterin ravintola Minnen verkkokaupasta: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-ja-dinner-virve-rosti-freeman-ja-menneisyyden-vangit </b></p><p>Huomioithan, että Minnen illalliskattauksessa on rajallinen määrä paikkoja jäljellä.</p><p>Konserttiin on myynnissä Savoy-teatterin yhteydessä toimivan Minne Garden-ravintolan herkullinen kolmen ruokalajin illallinen, joka tarjoillaan kaksi tuntia ennen esitystä. Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.</p><p><b>Show & Dinner -lippu</b> sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun.</p><p><b>Menu Classic</b> <br>Rapuskagen, paahdettua mallasleipää, etikkakurkkua ja siianmätiä L<br>Matalassa lämmössä kypsytettyä häränfileetä, paahdettua palsternakkaa ja aligot-perunaa L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G<br> <br>TAI<br> <br><b>Menu Green</b> <br>Punajuuricarpaccio, kuusenkerkkächeddaria ja pikkelöityjä sieniä L,G<br>Grillattua savojinkaalta, kikhernepyrettä ja haudutettua pinaattia L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G<br> <br>Menun hinta ei sisällä juomia. <br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua. <br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</p>", "sv": "<p>Legendarisk sammansättning av Virve Rosti, Freeman och Menneisyyden Vangit på Savoy-teatern under bästa julfestsäsong!</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Till konserten säljs en utsökt trerätters middag på restaurang Minne Garden intill Savoy-teatern som serveras två timmar före föreställningen. Grupper med fler än tolv personer är välkomna att skicka e-post till myynti@minnehelsinki.fi för bokning.</p><p>Biljetten Show & Dinner inkluderar en entrébiljett och en meny med kött eller vegetarisk mat som serveras till borden.</p><p>Menu Classic<br>Kräftskagen, rostat maltbröd, ättiksgurka och sikrom L<br>Oxfilé tillagad på låg värme, rostad palsternacka och pommes aligot L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>ELLER</p><p>Menu Green<br>Rödbetscarpaccio, granskottscheddar och picklad svamp L, G<br>Grillad savoykål, kikärtspuré och stuvad spenat L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>Menypriset inkluderar inte drycker.<br>Middagen serveras i Savoy-teaterns restaurang Minne Garden två timmar före kvällens föreställning.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p>", "en": "<p>The legendary line-up Virve Rosti, Freeman & Menneisyyden Vangit come to the Savoy Theatre to celebrate the height of the Christmas season!</p><p>Duration approx. 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>A delicious three-course dinner at the Savoy Theatre's Minne Garden restaurant is available for purchase for the concert evening, served two hours before the performance. Groups of more than 12 people should kindly contact the restaurant at: myynti@minnehelsinki.fi.</p><p>The Show & Dinner ticket includes an entrance ticket and a meat or vegetarian menu served to tables.</p><p>Menu Classic<br>Toast skagen, toasted malt bread, pickled cucumber and whitefish roe L<br>Beef fillet cooked at low heat, roasted parsnips and pommes aligot, L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>OR</p><p>Menu Green<br>Beetroot carpaccio, spruce sprout cheddar and pickled mushrooms L,G<br>Grilled savoy cabbage, chickpea puree and braised spinach L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>The price of the menu does not include drinks.<br>The dinner will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the evening's performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p>" }, "name": { "fi": "Virve Rosti, Freeman ja Menneisyyden Vangit", "sv": "Virve Rosti, Freeman och Menneisyyden Vangit", "en": "Virve Rosti, Freeman and Menneisyyden Vangit" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Sunborn Events Oy", "sv": "Sunborn Events Oy", "en": "Sunborn Events Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66510/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66673", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/juuret-maassa-siivet-ilmassa-annamaret-balvvosbaiki-3923301/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/juuret-maassa-siivet-ilmassa-annamaret-balvvosbaiki-3923301/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/juuret-maassa-siivet-ilmassa-annamaret-balvvosbaiki-3923301/" }, "description": null, "price": { "fi": "15 € / 7 € / 0 €", "sv": "15 € / 7 € / 0 €", "en": "15 € / 7 € / 0 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1154819, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-01T09:12:26.848330Z", "last_modified_time": "2025-07-01T09:12:26.848343Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774624.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154819/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-01T09:12:26.793764Z", "last_modified_time": "2025-10-30T10:13:08.143908Z", "date_published": null, "start_time": "2025-10-31T17: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, "short_description": { "fi": "Tule kokemaan saamelaista joikua, jouhikkoa, elektroniikkaa ja videotaidetta yhdistävä monitaiteinen konsertti.", "sv": "Kom och upplev den multikonstnärliga konserten som kombinerar samisk jojk, stråkharpa, elektronik och videokonst.", "en": "Come and experience a multi-artistic concert that combines Sami joik, the jouhikko bowed lyre, electronics and video art." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/AC9A1A98B0FBD9F89777A6C9DDD58790/LOPPUUNMYYTY_nn_m_ret_B_lvvosba_ki_", "sv": "http://www.caisa.fi/sv/evenemang/event/AC9A1A98B0FBD9F89777A6C9DDD58790/SLUTSALD_nn_m_ret_B_lvvosba_ki_", "en": "http://www.caisa.fi/en/events/event/AC9A1A98B0FBD9F89777A6C9DDD58790/SOLD_OUT_nn_m_ret_B_lvvosba_ki_" }, "description": { "fi": "<p>Tule kokemaan saamelaista joikua, jouhikkoa, elektroniikkaa ja videotaidetta yhdistävä monitaiteinen konsertti.</p><p>Ánnámáret-työryhmän yhdessä luoma Bálvvosbáiki-konsertti (Palvospaikka) vie kuulijansa elämyksellisiin maailmoihin saamelaisten luohtien (eli joikujen), jouhikon ja elektroniikan vuoropuhelun luoman musiikin ja musiikkia säestävän videotaiteen kanssa. Luohtien aiheet pohtivat, miten saamelainen maailmankatsomus näkyy tämän päivän saamelaisessa elämässä.<br> <br>Ikäsuositus: Sopii kaikenikäisille <br>Esityksen kieli: Pohjoissaame <br>Esityksen kesto: 60 min. Ei väliaikaa.<br>Sisältöhuomio: ajoittain kovia ääniä ja välkkyviä valoja. <br> <br>Esiintyjät<br>Ánnámáret – joiku <br>Ilkka Heinonen – jouhikko <br>Turkka Inkilä – elektroniikka ja shakuhachi <br>Marja Viitahuhta – videotaide</p><p><b>Juuret maassa, siivet ilmassa</b> on konserttisarja, joka juhlistaa monimuotoisuuden voima ja musiikin yhdistävää vaikutusta. Sarja tuo esille sen, kuinka erilaiset juuret – kulttuuriset, historialliset ja yksilölliset - voivat yhdessä kasvattaa siivet, jotka kantavat kohti uutta ja ainutlaatuista tulevaisuutta. <br>Jokainen esiintyjä ja esitys on voitto elämän monimuotoisuudelle ja taiteen voimauttavalle vaikutukselle. Sarja on matka tarinoihin, joissa kohtaavat identiteetti, rohkeus ja elämän ainutlaatuisuus.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381797/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>", "sv": "<p>Kom och upplev den multikonstnärliga konserten som kombinerar samisk jojk, stråkharpa, elektronik och videokonst.</p><p>Konserten Bálvvosbáiki (Palvospaikka), som skapats tillsammans av arbetsgruppen Ánnámáret, tar sina åhörare till upplevelserika världar med samernas luohti (dvs. jojk), musik som skapas av en dialog mellan stråkharpa och elektronik samt videokonst som ackompanjerar musiken. Jojkarnas teman reflekterar över hur den samiska världsåskådningen syns i dagens samiska liv.</p><p>Åldersrekommendation: Passar för alla åldrar <br>Föreställningens språk: Nordsamiska <br>Föreställningens längd: 60 minuter. Utan paus.<br>Innehållsvarning: ibland höga ljud och flimrande ljus.</p><p><b>Artister</b><br>Ánnámáret – jojk <br>Ilkka Heinonen – stråkharpa <br>Turkka Inkilä – elektronik och shakuhachi <br>Marja Viitahuhta – videokonst</p><p><b>Juuret maassa, siivet ilmassa</b> är en konsertserie som hyllar kraften i mångfald och musikens förenande inverkan. Serien lyfter fram hur olika rötter – kulturella, historiska och individuella – tillsammans kan få vingar som bär dem mot en ny och unik framtid.</p><p>Varje artist och varje föreställning är en triumf för livets mångfald och konstens stärkande kraft. Serien är en resa genom berättelser om identitet, mod och det unika i livet.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381797/?affiliate=FSF#tab=\">HÄR</a></u></p>", "en": "<p>Come and experience a multi-artistic concert that combines Sami joik, the jouhikko bowed lyre, electronics and video art.</p><p>Co-created by the Ánnámáret team, the Bálvvosbáiki (place of worship) concert takes the listener to unforgettable worlds through music consisting of a dialogue between Sami joiks, the jouhikko bowed lyre and electronics, as well as accompanying video art. The themes of the joiks contemplate how the Sami worldview is reflected in Sami life today.</p><p>Recommended age: Suitable for all ages <br>Language of the performance: North Sami <br>Duration of the performance: 60 min, no intermission.<br>Content warning: occasional loud noises and flickering lights.</p><p><b>Performers</b><br>Ánnámáret – joik <br>Ilkka Heinonen – jouhikko bowed lyre <br>Turkka Inkilä – electronics and shakuhachi <br>Marja Viitahuhta - video art</p><p><b>Roots in the Ground, Wings in the Air</b> is a concert series that celebrates the power of diversity and the unifying power of music. The series highlights how different roots – cultural, historical and individual – can together grow wings that carry us towards a new and unique future.</p><p>Every performer and performance is a triumph for the diversity of life and the empowering effect of art. The series is a journey into stories in which identity, courage and the uniqueness of life come together.</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381797/?affiliate=FSF#tab=\">HERE</a></u></p>" }, "name": { "fi": "LOPPUUNMYYTY Ánnámáret – Bálvvosbaíki – Juuret maassa, siivet ilmassa", "sv": "SLUTSÅLD Ánnámáret – Bálvvosbaíki – Juuret maassa, siivet ilmassa", "en": "SOLD OUT Ánnámáret – Bálvvosbaíki – Roots in the Ground, Wings in the Air" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66673/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66750", "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: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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491223, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-30T09:13:51.161421Z", "last_modified_time": "2025-10-30T09:13:51.161436Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772843.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491223/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-30T09:13:51.029231Z", "last_modified_time": "2025-10-30T09:13:51.326904Z", "date_published": null, "start_time": "2025-12-06T11: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, "short_description": { "fi": "Sortavala oli sotia edeltävällä ajalla monin tavoin poikkeuksellinen kaupunki.", "sv": "Sortavala var på många sätt en exceptionell stad under förkrigstiden.", "en": "Sortavala was an exceptional town in many ways in the pre-war period." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FFB6E975344431674D986DE26731F562/Kulttuuria_taynna_-_muistoja_Sortavalasta_-dokumentti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/FFB6E975344431674D986DE26731F562/Dokumentarfilmen_Kulttuuria_taynna_muistoja_Sortavalasta", "en": "http://www.malmitalo.fi/en/events/event/FFB6E975344431674D986DE26731F562/Full_of_Culture_Muistoja_Sortavalasta_a_Documentary" }, "description": { "fi": "<p>Sortavala oli sotia edeltävällä ajalla monin tavoin poikkeuksellinen kaupunki.</p><p>Sen sijainti Laatokan pohjoisrannalla tuolloisten Karjalan laulumaiden äärellä sekä kaupungin vireä ja yritteliäs ilmapiiri loivat hyvät edellytykset monipuoliselle kulttuurielämälle. Voi sanoa, että Sortavalan yhteiskunnallinen ja kulttuurinen merkitys oli huomattavasti sen kokoa suurempi.</p><p>Haastatteludokumentti valottaa eri näkökulmista Sortavalan ja sen ympäristön kulttuuri- ja sivistyselämää, sen vaikuttajia ja ihmisten arkea. Kertojina on Sortavala-asiantuntijoita sekä Sortavalassa nuoruutensa viettäneitä alkuperäisiä sortavalalaisia.</p><p>Dokumentin on käsikirjoittanut ja ohjannut Sortavala-seuran puheenjohtaja Marja Lampi ja se on toteutettu yhteistyössä Metropolia ammattikorkeakoulun elokuva- ja televisioalan opiskelijoiden kanssa. Valmistusvuosi 2023.</p><p>Kesto 1 tunti</p><p>Vapaa pääsy!</p>", "sv": "<p>Sortavala var på många sätt en exceptionell stad under förkrigstiden.</p><p>Dess läge vid Ladogas norra strand vid de dåtida Karelens områden där Kalevaladikterna samlades in, samt stadens livliga och företagsamma atmosfär skapade goda förutsättningar för ett mångsidigt kulturliv. Man kan säga att Sortavalas sociala och kulturella betydelse var långt större än dess storlek.</p><p>Intervjudokumentären belyser det kulturella och civiliserade livet i Sortavala med omnejd ur olika perspektiv, dess påverkare och människornas vardag. Berättarna är Sortavalakännare och ursprungliga Sortavalabor som tillbringade sin ungdom i Sortavala.</p><p>Dokumentären är skriven och regisserad av Sortavala-sällskapets ordförande Marja Lampi och den har genomförts i samarbete med studerande inom film- och tv-branschen vid Metropolia yrkeshögskola. Filmen blev klar 2023.</p><p>Längd: 1 timme<br>Fritt inträde!</p>", "en": "<p>Sortavala was an exceptional town in many ways in the pre-war period.</p><p>Its location on the northern shore of Lake Ladoga, close to the traditional song lands of Karelia, along with the town's lively and enterprising spirit, created excellent conditions for a diverse cultural life. It can be said that Sortavala's societal and cultural significance is akin to that of a town far greater in size.</p><p>The interview documentary sheds light on the cultural and intellectual life of Sortavala and its surroundings, its key figures and the everyday lives of its people from various perspectives. The narrators include experts on Sortavala as well as original residents who spent their youth in the town.</p><p>The documentary was written and directed by Marja Lampi, chair of the Sortavala Society, and it was produced in collaboration with film and television students from Metropolia University of Applied Sciences. Year of production: 2023.</p><p>Duration: 1 hour<br>Free entry!</p>" }, "name": { "fi": "Kulttuuria täynnä - muistoja Sortavalasta -dokumentti", "sv": "Dokumentärfilmen Kulttuuria täynnä – muistoja Sortavalasta", "en": "Full of Culture – Muistoja Sortavalasta, a Documentary" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66750/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agndiba7ii", "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/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-30T06:47:20.727026Z", "last_modified_time": "2025-10-30T06:47:20.727044Z", "date_published": "2025-10-30T06:42:00Z", "start_time": "2025-11-03T06:00:00Z", "end_time": "2025-11-29T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Luontoa, elämää ja vähän fantasiaa kuvattuna surrealistisin ilmein, suoraan sensuroimatta aivoryönälän uumenista.", "sv": "Välkommen att besöka utställning i Hagalund biblioteken.", "en": "Welcome to an art exhibition in Tapiola Library." }, "info_url": null, "description": { "fi": "<p>Luontoa, elämää ja vähän fantasiaa kuvattuna surrealistisin ilmein, suoraan sensuroimatta AivoRyönälän uumenista.</p><p>Kiira Lahti / BlingRosie Illustrations</p>", "sv": "<p>Välkommen att besöka utställning i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Welcome to an art exhibition in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>" }, "name": { "fi": "Näyttely: AivoRyönälä", "sv": "Utställning: AivoRyönälä", "en": "Art exhibition: AivoRyönälä" }, "provider_contact_info": null, "location_extra_info": { "fi": "Näyttelyseinä Kaija", "sv": "Utställningsväggen Kaija", "en": "Exhibition wall Kaija" }, "provider": { "fi": "Kiira Lahti / BlingRosie Illustrations", "sv": "Kiira Lahti / BlingRosie Illustrations", "en": "Kiira Lahti / BlingRosie Illustrations" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agndiba7ii/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65098", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=annantalo", "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=annantalo", "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=annantalo" }, "description": null, "price": { "fi": "Lopuunmyyty / Utsåld / Sold out", "sv": "Lopuunmyyty / Utsåld / Sold out", "en": "Lopuunmyyty / Utsåld / Sold out" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490542, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-27T08:13:51.128255Z", "last_modified_time": "2025-08-27T08:13:51.128272Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763874.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490542/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-27T08:13:50.976603Z", "last_modified_time": "2025-10-29T12:13:11.384749Z", "date_published": null, "start_time": "2025-10-28T14:00:00Z", "end_time": "2025-11-01T19: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, "short_description": { "fi": "Suosittu pakopeli Uneton palaa taas Annantaloon!", "sv": "Det populära flyktspelet Uneton återvänder till Annegården!", "en": "Popular escape room Uneton is back at Annantalo!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DE6C0A41B3C45215A1A4F00FBE1F5CE5/UNETON", "sv": "http://www.annantalo.fi/sv/evenemang/event/DE6C0A41B3C45215A1A4F00FBE1F5CE5/UNETON_Somnlos_", "en": "http://www.annantalo.fi/en/events/event/DE6C0A41B3C45215A1A4F00FBE1F5CE5/UNETON_Sleepless_" }, "description": { "fi": "<p>Suosittu pakopeli Uneton palaa taas Annantaloon!</p><p>Pakopelissä seurataan tarinaa, ratkotaan siihen liittyviä hauskoja ja haastavia pulmatehtäviä sekä avataan lukkoja. Pelissä riittää pähkäiltävää aikuisillekin. Kaiken keskiössä on yhteistyö!</p><p>Mitä ihmisen mielelle käy, jos se ei saa koskaan unta? Mitä jos hereillä oleva mieli jumittuu ikuiseen painajaiseen? Pyhäinpäivään sijoittuva peli sukeltaa kummallisiin unikuviin. Uneton on jännittävä seikkailu läpi levottoman mielen maisemien. Matkalla sukelletaan ajatusten, tieteen ja taiteen maailmoihin ja etsitään apua tilanteeseen. Keksikää keino päästä jälleen levolliseen uneen, ennen kuin mieli hajoaa lopullisesti!</p><p>Peli sisältää jännittäviä tilanteita. Peliä pelataan oman perheen/ryhmän kanssa. Peliä pelaa samaan aikaan useampi ryhmä.</p><p>Peli tapahtuu viitenä päivänä 28.10.–1.11.2025 (ma-pe klo 16–21 ja la klo 11.40–15). Lähtöjä on 20 min. välein.</p><p>Pelin kokonaiskesto: enintään 60 min<br>Ikäsuositus: 10+<br>Kieli: suomi<br>Liput: 20 €/ryhmä (+palvelumaksu) | Lippu.fi <b>lipunmyynti alkaa ma 22.9. klo 16</b></p><p>_</p><p>Pelisuunnittelu: Maaria Klemetti yhteistyössä Annantalon kanssa<br>Työryhmä: Harri Piispanen, Karoliina Helminen ja Maaria Klemetti<br>Valo- ja äänisuunnittelu, lavastus: Nicolas Salo ja Jukka Järvi<br>Puvustus: Niina Huovinen<br>Tuottaja: Harri Piispanen / Annantalo</p>", "sv": "<p>Det populära flyktspelet Uneton återvänder till Annegården!</p><p>Det populära flyktspelet Uneton (Sömnlös) återvänder till Annegården!</p><p>I flyktspelet följer man med en berättelse, löser anknytande roliga och utmanande problem och öppnar lås.</p><p>Spelet innehåller även huvudbry för vuxna. Nyckeln ligger i samarbete!</p><p>Vad händer med människans hjärna om man aldrig får sömn? Tänk om det vakna sinnet fastnar i en evig mardröm? Spelet ordnas på allhelgonadagen och dyker in märkliga drömbilder. Sömnlös är ett spännande äventyr genom ett landskap av oroliga sinnen. På resan fördjupar vi oss i tankarnas, vetenskapens och konstens världar och söker efter hjälp för situationen. Kom på ett sätt att återgå till en vilsam sömn innan sinnet bryts ner för gott!</p><p>Spelet innehåller spännande situationer. Spelet spelas med din egen familj/grupp. Spelet spelas av flera grupper samtidigt.</p><p>Spelets längd; högst 60 min<br>Åldersrekommendation: 10+<br>Språk: finska<br>Biljetter 20 € | Lippu.fi</p><p>_</p><p>Speldesign: Maaria Klemetti i samarbete med Annegården<br>Arbetsgrupp: Harri Piispanen, Karoliina Helminen och Maaria Klemetti<br>Ljus- och ljuddesign: Nicolas Salo och Jukka Järvi<br>Kostymer: Niina Huovinen<br>Producer: Harri Piispanen / Annegården</p>", "en": "<p>Popular escape room Uneton is back at Annantalo!</p><p>In this escape room game, you follow a story, solve fun and challenging puzzles, and open locks.</p><p>There is plenty to make even adults think in the game. Working together is what it’s all about!</p><p>What happens to the human mind if it never sleeps? What if you were to get stuck in a never-ending waking nightmare? Set on All Saints' Day, the game dives into strange dreams. Sleepless is an exciting adventure through a restless mindscape. Along the way, you will dive into the worlds of thought, science and art, to seek help for the situation. Find a way to get back to restful sleep before your mind finally breaks down!</p><p>The game is . You play the game with your own family/group. Several groups play the game simultaneously.</p><p>Total duration of the game: up to 60 min<br>Age recommendation: 10+<br>Language: Finnish<br>Tickets € 20 group ticket | Lippu.fi (available at the end of September)<br>_</p><p>Game design: Maaria Klemetti in collaboration with Annantalo<br>Working group: Harri Piispanen, Karoliina Helminen and Maaria Klemetti<br>Light and sound design: Nicolas Salo and Jukka Järvi<br>Costumes: Niina Huovinen<br>Producer: Harri Piispanen / Annantalo</p>" }, "name": { "fi": "UNETON", "sv": "UNETON (Sömnlös)", "en": "UNETON (Sleepless)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65098/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnb7vm4t4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnb7vm44y/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-10-26T08:45:47.933139Z", "last_modified_time": "2025-10-29T09:41:24.941151Z", "date_published": null, "start_time": "2025-11-15T08:30:00Z", "end_time": "2025-11-15T09: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, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "info_url": null, "description": { "fi": "<p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>15.11.2025 Kellonaika: 10.30-11.00 / tila: aikuisten pelihuone</p><p>20.12.2025 Kellonaika: 10.30-11.00 / tila: Aikuisten pelihuone</p><p><br></p><p>Час сказки для детей, родители тоже могут присутствовать! </p><p>5.11. и 20.12. в 10.30-11.00</p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p>", "sv": "<p>Sagostund på ryska</p><p>Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn. Du är varmt välkommen!</p><p>15.11.2025 kl. 10.30-11.00</p><p>20.12.2025 Kl.10.30-11.00</p>", "en": "<p>Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children. You are warmly welcome!</p><p>15.11.2025 10.30-11.00</p><p>20.12. 10.30-11.00</p>" }, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "provider_contact_info": null, "location_extra_info": { "fi": "aikuisten pelihuone" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnb7vm4t4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnb7vm4kq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnb7vm44y/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-10-26T08:45:48.056719Z", "last_modified_time": "2025-10-29T09:41:24.873162Z", "date_published": null, "start_time": "2025-12-20T08:30:00Z", "end_time": "2025-12-20T09: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, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "info_url": null, "description": { "fi": "<p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>15.11.2025 Kellonaika: 10.30-11.00 / tila: aikuisten pelihuone</p><p>20.12.2025 Kellonaika: 10.30-11.00 / tila: Aikuisten pelihuone</p><p><br></p><p>Час сказки для детей, родители тоже могут присутствовать! </p><p>5.11. и 20.12. в 10.30-11.00</p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p>", "sv": "<p>Sagostund på ryska</p><p>Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn. Du är varmt välkommen!</p><p>15.11.2025 kl. 10.30-11.00</p><p>20.12.2025 Kl.10.30-11.00</p>", "en": "<p>Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children. You are warmly welcome!</p><p>15.11.2025 10.30-11.00</p><p>20.12. 10.30-11.00</p>" }, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "provider_contact_info": null, "location_extra_info": { "fi": "aikuisten pelihuone" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnb7vm4kq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnb7vm44y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnb7vm4kq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnb7vm4t4/?format=api" } ], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-10-26T08:45:47.445159Z", "last_modified_time": "2025-10-29T09:41:24.372452Z", "date_published": null, "start_time": "2025-11-15T08:30:00Z", "end_time": "2025-12-20T09: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, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "info_url": null, "description": { "fi": "<p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>15.11.2025 Kellonaika: 10.30-11.00 / tila: aikuisten pelihuone</p><p>20.12.2025 Kellonaika: 10.30-11.00 / tila: Aikuisten pelihuone</p><p><br></p><p>Час сказки для детей, родители тоже могут присутствовать! </p><p>5.11. и 20.12. в 10.30-11.00</p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p>", "sv": "<p>Sagostund på ryska</p><p>Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn. Du är varmt välkommen!</p><p>15.11.2025 kl. 10.30-11.00</p><p>20.12.2025 Kl.10.30-11.00</p>", "en": "<p>Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children. You are warmly welcome!</p><p>15.11.2025 10.30-11.00</p><p>20.12. 10.30-11.00</p>" }, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "provider_contact_info": null, "location_extra_info": { "fi": "aikuisten pelihuone" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnb7vm44y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncwof32e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-10-28T13:30:00.591662Z", "last_modified_time": "2025-10-28T13:30:00.591683Z", "date_published": "2025-10-28T13:16:00Z", "start_time": "2025-10-29T08:00:00Z", "end_time": "2025-11-14T18: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, "short_description": { "fi": "Elokuvan taikaa™ on lasten elokuvakasvatusprojekti ja interaktiivinen näyttely.", "sv": "Elokuvan taikaa™ (Filmens magi) är en interaktiv utställning och ett filmutbildningsprojekt för barn.", "en": "Elokuvan taikaa™ (The Magic of Film) is a film education project for children and an interactive exhibition." }, "info_url": null, "description": { "fi": "<p>ELOKUVAN TAIKAA™ on lasten luova konsepti, joka on kiertänyt kulttuuritiloja ja kouluja vuodesta 2022. Konseptissa sukelletaan mielikuvitusmaailmaan ja lähdetään etsimään oman elokuvan hahmoja, tapahtumapaikkoja ja tarinaa.</p><p>ELOKUVAN TAIKAA™ konsepti eroaa muista elokuvakasvatuskonsepteista tekoälyavusteisuudellaan. Tekoälyn avulla lasten omat elokuvat tuodaan eloon niin tekstinä, kuin kuvina, ja videoina.</p><p>Sellon näyttelyssä pääset lukemaan lasten luomia elokuvia. Lapsilla on mahdollisuus osallistua luomistyöhön myös itse Lastenmaan puolella. Työpajat on mahdollistanut Espoon Kaupungin Kulttuuriavustus.</p><p>Tervetuloa mukaan mielikuvitusmatkalle!</p><p>ELOKUVAN TAIKAA™ konseptin on luonut elokuvantekijä, taiteilija ja kulttuurituottaja <strong>Riikka Mustakallio</strong>, aka Rigulio Graak.</p><p><br></p>", "sv": "<p>Elokuvan taikaa™ (Filmens magi) är ett filmutbildningsprojekt för barn och en interaktiv utställning.</p>", "en": "<p>Elokuvan taikaa™ (The Magic of Film) is a film education project for children and an interactive exhibition.</p>" }, "name": { "fi": "Elokuvan taikaa™ -näyttely", "sv": "Filmens magi (Elokuvan taikaa™) utställning", "en": "The magic of film (Elokuvan taikaa™) exhibition" }, "provider_contact_info": null, "location_extra_info": { "fi": "Galleria Anna", "sv": "Galleri Anna", "en": "Gallery Anna" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncwof32e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67217", "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: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491213, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T13:12:11.397283Z", "last_modified_time": "2025-10-28T13:12:11.397295Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778560.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491213/?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-10-28T13:12:11.313189Z", "last_modified_time": "2025-10-28T13:12:11.534075Z", "date_published": null, "start_time": "2025-12-13T10:00:00Z", "end_time": "2025-12-13T15: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, "short_description": { "fi": "Päivä kokoaa yhteen arabian kieltä puhuvat, monikulttuuriset perheet sekä kaikki, joita arabian kieli ja kulttuurit kiinnostavat.", "en": "Organised by Familia and Mirsal, the event brings together Arabic speakers, multicultural families, and everyone interested in the Arabic language and cultures." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/571D85114C399BEBC3A16A9E73EEDB10/Arabian_kielen_paiva", "en": "http://www.stoa.fi/en/events/event/571D85114C399BEBC3A16A9E73EEDB10/Arabic_Language_Day_" }, "description": { "fi": "<p>Päivä kokoaa yhteen arabian kieltä puhuvat, monikulttuuriset perheet sekä kaikki, joita arabian kieli ja kulttuurit kiinnostavat.</p><p>Tapahtuman järjestävät Familia ja Mirsal yhteistyössä.</p><p>Ohjelmassa on musiikkia ja esiintymisiä, työpajoja, ruokaa, käsitöitä ja lasten taidetta, sekä paneelikeskusteluja ja puheenvuoroja, joissa käsitellään muun muassa:<br>- Monikielinen kielenkehitys – miten kielet elävät rinnakkain perheissä ja yhteisöissä<br>- Yhteen puhaltaminen – miksi yhteistyö ja yhteisöllisyys ovat tärkeämpiä kuin kilpailu tai “me, myself and I” -ajattelu</p><p>Arabian kielen päivä muistuttaa, että kieli on enemmän kuin viestintää – se on silta kulttuurien välillä, osa identiteettiä ja yhteisöllisyyden lähde. Päivä tekee näkyväksi arabikulttuurin monimuotoisuuden ja sen merkityksen Suomessa asuville ihmisille.</p><p>Tule juhlimaan yhteyttä, luovuutta ja kulttuuria – yhdessä!<br>Tervetuloa kaikenikäiset!</p><p>Vapaa pääsy, Stoan aulassa.</p>", "en": "<p>Organised by Familia and Mirsal, the event brings together Arabic speakers, multicultural families, and everyone interested in the Arabic language and cultures.</p><p>The day features music, performances, workshops, food, crafts, and children’s art, as well as panel discussions and talks on topics such as:<br>- Multilingual language development – how languages grow and coexist in families and communities<br>- Unity over division – why collaboration matters more than competition or the “me, myself and I” mindset within communities</p><p>Arabic Language Day reminds us that language is more than communication – it’s a bridge between cultures, a part of identity, and a source of belonging.</p><p>The event highlights the richness and diversity of Arabic culture and its meaningful place in Finnish society.</p><p>Join us to celebrate connection, creativity, and culture – together!</p><p>Stoa Lobby, Helsinki<br>Free entry<br>All ages welcome!</p>" }, "name": { "fi": "Arabian kielen päivä – Juhla kielelle, kulttuurille, identiteetille ja yhteisölle!", "en": "Arabic Language Day – A celebration of language, culture, identity, and community!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67217/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67161", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491107, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-16T08:14:06.944853Z", "last_modified_time": "2025-10-16T08:14:06.944905Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778306.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491107/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-16T07:13:29.543914Z", "last_modified_time": "2025-10-28T12:13:09.586282Z", "date_published": null, "start_time": "2025-12-03", "end_time": "2025-12-18", "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, "short_description": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E1EBD0E510949000D0798569E8C610AB/Majakat_ja_pookit", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E1EBD0E510949000D0798569E8C610AB/Majakat_ja_pookit", "en": "http://www.vuotalo.fi/en/events/event/E1EBD0E510949000D0798569E8C610AB/Majakat_ja_pookit" }, "description": { "fi": "<p>Näyttelyssäni katsojat pääsevät tutustumaan suomalaisiin majakoihin ja pookeihin. Majakassa on vilkkuva valo eli loisto, joka sijaitsee ylhäällä majakkatornissa. Pookit ovat tunnusmajakoita, joissa ei ole valoa.</p><p>Olen harrastanut majakoilla käymistä ja samalla valokuvannut niitä noin 25 vuoden ajan. Olen ehtinyt käydä melkein kaikilla Suomen majakoilla. Suomessa on lähemmäksi 50 majakkaa ja pookeja tätäkin enemmän.</p><p>On olemassa paljon muitakin merimerkkejä, kuten poijuja, viittoja, reimareita ja linjavaloja, joiden avulla turvallinen meriliikenne toimii. Yksi hauskimmista merimerkeistä on kummeli. Kummelit ovat isoja kivikasoja veden äärellä. Ne on yleensä maalattu valkoisiksi. Suomessa on myös käytetty majakkalaivoja pahimmissa haaksirikkopaikoissa. 1800-luvun lopun ja 1900-luvun alun taitteessa rakennettiin useimmat suomalaiset majakat, viimeisimmät rakennettiin 1950-luvulla. Majakat on rakennettu pääasiassa kallioista louhituista kivistä, teräsbetonista ja tiilistä. Pookit on rakennettu melkein kaikki puusta.</p><p>Moneen majakkaan pääsee sisälle tutustumaan kesäaikana. Monen majakan pihapiirissä on rakennuksia, joissa voi yöpyä. Olen asunut Märketin majakalla yhteensä noin 30 päivää ja ollut siellä talkoolaisena. Siellä voivat myös turistit yöpyä, kuten myös Kylmäpihlajan majakassa ja Bengtskärin majakassa. Kallbådan majakkaan on myös viime kesänä valmistunut tiloja yöpymiseen. Autoillen saavutettavia ovat myös Kallon-, Marjaniemen-, Suomenlinnan- ja Utön-majakat. <br> <br>Toivon, että kuvat innostavat muitakin retkeilemään Suomen rannikolla!<br> <br>Kaarina Uusikivi<br> <br>Näyttely sijaitsee Vuotalon 2. kerroksessa, vitriinikäytävällä. Tervetuloa!</p>" }, "name": { "fi": "Majakat ja pookit", "sv": "Majakat ja pookit", "en": "Majakat ja pookit" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67161/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agncvl2bqi", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:41835/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "" }, "description": null, "price": null } ], "data_source": "helsinki", "publisher": "ahjo:u021900", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-28T11:58:40.056859Z", "last_modified_time": "2025-10-28T11:58:40.056873Z", "date_published": null, "start_time": "2025-10-28T07:00:00Z", "end_time": "2025-11-18T07: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": 3, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lorem ipsum Leenan testi strategiajulkaisijalla." }, "info_url": { "fi": "" }, "description": { "fi": "<p>Lorem ipsum Leenan testi strategiajulkaisijalla.</p>" }, "name": { "fi": "Leenan syksyn sieniretki " }, "provider_contact_info": null, "location_extra_info": { "fi": "" }, "provider": { "fi": "Leena" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agncvl2bqi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncve33li", "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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490895, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-24T11:15:24.338597Z", "last_modified_time": "2025-09-24T11:15:24.338612Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f4bc4400-b3f9-4892-a9da-f4be46535368.png", "name": "", "cropping": "250,0,746,496", "photographer_name": "", "alt_text": "Valkoinen, partasuinen mies valkoisessa harsohameessa ja mustassa hupparissa istuu värikästä seinää vasten.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490895/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-28T11:00:15.530215Z", "last_modified_time": "2025-10-28T11:00:15.530233Z", "date_published": null, "start_time": "2025-12-13T13:00:00Z", "end_time": "2025-12-13T13:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tanssiteatteri Tsuumin esitys tekee katsojasta koreografin kun tanssitaiteilija Patrik Riipinen herättää katsojien visiot eloon yleisön silmien edessä. ", "sv": "Dansteater Tsuumis föreställning gör publiken till koreograf när danskonstnären Patrik Riipinen väcker åskådarnas visioner till liv inför deras ögon.", "en": "Dance Theatre Tsuumi’s performance turns the audience into choreographers as dance artist Patrik Riipinen brings their visions to life before their eyes." }, "info_url": null, "description": { "fi": "<p>Tule katsomaan millaisia esityksiä syntyy kirjastossa kun päätösvalta teoksen vaatetuksesta, musiikista, teemasta ja tilan käytöstä annetaan tällä kertaa esityksen katsojille. Työpajamaisessa teoksessa pääset itse kokeilemaan koreografin työhön liittyviä valintoja ja ihailemaa omaa tai toisen katsojan luomaa tanssiteosta. Aiempaa kokemusta ei tarvita, uteliaisuus ja kokeilunhalu riittävät!</p><p>Voit tulla tekemään teoksen vaikka moneen kertaan, sillä Tsuumi on teoksen kanssa kiertueella Espoon kaupungin kirjastossa.</p><p><br></p><p>TAPIOLAN KIRJASTO</p><p>pe ilta 24.10. 18.30 </p><p>ja la 25.10. klo 13 ja 15.30</p><p> </p><p>ISON OMENAN KIRJASTO</p><p>ke 29.10. klo 17</p><p>to 30.10. klo 9.30-10.30 ja klo 12.30-13.30 </p><p> </p><p>LIPPULAIVAN KIRJASTO</p><p>Keskiviikko 12.11. klo 10 ja klo 17 </p><p>Torstai 13.11. iltanäytös klo 17.00 </p><p> </p><p>ENTRESSEN KIRJASTO</p><p>pe 28.11. Klo 17 </p><p>la 29.11. klo 13 ja 15.30 </p><p> </p><p>SELLON KIRJASTO</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>", "sv": "<p>Kom och se vilka föreställningar som uppstår i biblioteket när beslut om verkets kostym, musik, tema och rumsanvändning denna gång ges till publiken. I det verkstadsliknande verket får du själv prova på koreografens val och beundra ett dansverk skapat av dig själv eller en annan åskådare. Ingen tidigare erfarenhet behövs – nyfikenhet och lust att prova räcker!</p><p>Du kan komma och skapa ett verk flera gånger, eftersom Tsuumi turnerar med föreställningen i Esbo stads bibliotek.</p><p><br></p><p>TAPIOLA BIBLIOTEK</p><p>pe ilta 24.10. 18.30 </p><p>ja la 25.10. klo 13 ja 15.30</p><p> </p><p>ISON OMENA BIBLIOTEK</p><p>ke 29.10. klo 17</p><p>to 30.10. klo 9.30-10.30 ja klo 12.30-13.30 </p><p> </p><p>LIPPULAIVA BIBLIOTEK</p><p>Keskiviikko 12.11. klo 10 ja klo 17 </p><p>Torstai 13.11. iltanäytös klo 17.00 </p><p> </p><p>ENTRESSEN BIBLIOTEK</p><p>pe 28.11. Klo 17 </p><p>la 29.11. klo 13 ja 15.30 </p><p> </p><p>SELLO BIBLIOTEK</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>", "en": "<p>Come and see what kinds of performances emerge in the library when the decisions about costume, music, theme, and use of space are handed over to the audience. In this workshop-like piece, you’ll get to try out the choices a choreographer makes and admire a dance work created by yourself or another viewer. No prior experience is needed – curiosity and a willingness to experiment are enough!</p><p><br></p><p>You can come and create a piece more than once, as Tsuumi is touring with the performance in the libraries of the City of Espoo.</p><p><br></p><p>TAPIOLA LIBRARY</p><p>pe ilta 24.10. 18.30 </p><p>ja la 25.10. klo 13 ja 15.30</p><p> </p><p>ISON OMENA LIBRARY</p><p>ke 29.10. klo 17</p><p>to 30.10. klo 9.30-10.30 ja klo 12.30-13.30 </p><p> </p><p>LIPPULAIVA LIBRARY</p><p>Keskiviikko 12.11. klo 10 ja klo 17 </p><p>Torstai 13.11. iltanäytös klo 17.00 </p><p> </p><p>ENTRESSE LIBRARY</p><p>pe 28.11. Klo 17 </p><p>la 29.11. klo 13 ja 15.30 </p><p> </p><p>SELLO LIBRARY</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>" }, "name": { "fi": "Tanssiteatteri Tsuumi: Your Solo in Me", "sv": "Dansteater Tsuumi: Your Solo in Me", "en": "Dance Theatre Tsuumi: Your Solo in Me" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": { "fi": "Tsuumi", "sv": "Tsuumi", "en": "Tsuumi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve33li/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm4f3hx2e", "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/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/3310271165810610/3310271212477272/", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3hqhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3hrdy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3hrve/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3hsf4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3hsv4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3htgq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3htxe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3huha/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3huxa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3hvhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3hvya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3hwie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3hwyq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3hxji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve37yu/?format=api" } ], "images": [ { "id": 1491029, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-08T07:45:06.398951Z", "last_modified_time": "2025-10-08T07:45:06.398966Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d5447785-399b-4a30-8c8f-49c0a38675a6.png", "name": "Kirjastokaveri.", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Viisi erilaista piirrettyä ihmishahmoa. Eri-ikäisiä, eri kulttuuritaustoista.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491029/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-08T07:49:10.531454Z", "last_modified_time": "2025-10-28T10:43:22.352954Z", "date_published": null, "start_time": "2025-10-22T09:00:00Z", "end_time": "2025-12-17T12: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, "short_description": { "fi": "Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!", "en": "Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language. " }, "info_url": null, "description": { "fi": "Tervetuloa kirjastoon!\nTapaa kirjastokaveri omalla kielelläsi!<p><br></p><p>Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p><br></p><p>ARABIANKIELINEN KIRJASTOKAVERI TAVATTAVISSA:</p><p><br></p><p>Joka kuun ensimmäinen maanantai klo 18–20:</p><ul><li>maanantai 3.11. <strong>HUOM! Siirretty</strong> <strong>maanantaille 10.11.</strong></li><li>maanantai 1.12.</li></ul><p>Joka kuun viimeinen tiistai klo 8:30–10:30</p><ul><li>tiistai 28.10.</li><li>tiistai 25.11.</li><li>tiistai 16.12. HUOM! Päivää aikaistettu.</li></ul><p>Joka keskiviikko klo 12–14:</p><ul><li>keskiviikkoisin 22.10.2025–17.12.2025</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "Welcome to the library!\nMeet a library buddy in your own language!<p><br></p><p>Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language.</p><p>No pre-registration, you are most warmly welcome!</p><p><br></p><p>MEET AN ARABIC SPEAKING LIBRARY BUDDY:</p><p><br></p><p>Every first Monday of the month at 18–20:</p><ul><li>Monday 3.11. <strong>NOTICE! Postponed to Monday 10.11.</strong></li><li>Monday 1.12.</li></ul><p>Every last Tuesday of the month at 8:30–10:30</p><ul><li>Tuesday 28.10.</li><li>Tuesday 25.11.</li><li>Tuesday 16.12. NOTICE! Earlier date.</li></ul><p>Every Wednesday at 12–14:</p><ul><li>Wednesday 22.10.2025–17.12.2025</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": " Kirjastokaveri: ARABIA", "en": "Library buddy: ARABIC" }, "provider_contact_info": null, "location_extra_info": { "fi": "Aula", "en": "Lobby" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4f3hx2e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnanpljva", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-21T12:11:46.467221Z", "last_modified_time": "2025-10-28T10:40:59.528841Z", "date_published": "2025-10-21T11:34:00Z", "start_time": "2025-10-25T07:00:00Z", "end_time": "2025-11-14T18: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, "short_description": { "fi": "Kolmen taiteilijan yhteisnäyttely: Elena Hynninen, Nijole Kalinauskaite, Natalia Uusihakala", "sv": "Gemensam konstutställning av tre konstnärer: Elena Hynninen, Nijole Kalinauskaite, Natalia Uusihakala", "en": "Joint art exhibition by three artists: Elena Hynninen, Nijole Kalinauskaite, Natalia Uusihakala" }, "info_url": null, "description": { "fi": "<p><em>\"Kauneus on perustavanlaatuinen kosminen laki ja evoluution liikkeellepaneva voima\" </em></p><p><em>~ Nikolai Roerich</em></p><p>Yhteisnäyttelyn kuvataiteilijat:</p><ul><li><strong>Elena Hynninen</strong></li><li><strong>Nijole Kalinauskaite</strong></li><li><strong>Natalia Uusihakala</strong></li></ul><p>Выставка пройдет с <strong>25.10 - 14.11.2025</strong></p><p>В библиотеке Селло, 2 этаж витринная галлерея</p><p>«Красота — фундаментальный космический закон и движущая сила эволюции»</p><p>Николай Рерих</p>", "sv": "<p><em>”Skönhet är en grundläggande kosmisk lag och evolutionens drivkraft” </em></p><p><em>~ Nikolai Roerich</em></p><p>Konstnärer: </p><ul><li><strong>Elena Hynninen</strong></li><li><strong>Nijole Kalinauskaite</strong></li><li><strong>Natalia Uusihakala</strong></li></ul><p>Välkommen!</p>", "en": "<p><em>“Beauty is a fundamental cosmic law and the driving force of evolution” </em></p><p><em>~ Nikolai Roerich</em></p><p>Artists: </p><ul><li><strong>Elena Hynninen</strong></li><li><strong>Nijole Kalinauskaite</strong></li><li><strong>Natalia Uusihakala</strong></li></ul><p>Welcome!</p>" }, "name": { "fi": "Kauneuden voima (näyttely) - Сила красоты (выставка)", "sv": "Skönhetens kraft (konstutställning)", "en": "The power of beauty (art exhibition)" }, "provider_contact_info": null, "location_extra_info": { "fi": "Vitriinigalleria (2. krs)", "sv": "Glassmontern & dess vägggalleri (2:a våningen)", "en": "Showcase gallery (2nd floor)" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnanpljva/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }