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=59&weekday=6%2C7
{ "meta": { "count": 6462, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=60&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=58&weekday=6%2C7" }, "data": [ { "id": "espoo_le:agnpzw5n44", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [ { "id": 1494114, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T07:14:36.549164Z", "last_modified_time": "2025-12-08T07:14:36.549179Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8bb2903f-2067-414e-823d-1a6c096c2476.jpg", "name": "", "cropping": "0,70,709,780", "photographer_name": "", "alt_text": "Kuvassa on taiteilija Tea Tuomisen taideteos", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T07:14:46.582250Z", "last_modified_time": "2025-12-08T07:14:46.582269Z", "date_published": null, "start_time": "2025-12-10T06:00:00Z", "end_time": "2025-12-29T18: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": "Tervetuloa katsomaan Tea Tuominen: Kerroksia ajassa-näyttelyä kirjaston aukioloaikojen puitteissa 10.-29.12.25" }, "info_url": null, "description": { "fi": "<p>Taide on kulkenut mukanani vuosia, lähinnä omana ilonani. Maalaan abstraktia akryylitaidetta kerros kerrokselta - tunteen, ajan ja värin rytmissä. Teokseni syntyvät hiljalleen, usein aluksi vailla suunnitelmaa, kunnes jokin sisäinen hetki osuu kohdalleen. </p><p>Nyt on aika jakaa teokseni myös muille. Ehkä joku löytää niistä palan itseään - tai vain hetken hiljaisuutta sävyjen keskellä. Jotain tuttua, vaikkei osaisi sanoa mitä.</p><p><br></p><p>Tämä näyttely on kurkistus siihen, miltä levollisuus näyttää silmissäni.</p><p><br></p><p>Tervetuloa katsomaan tai vain pysähtymään hetkeksi.</p>" }, "name": { "fi": "Näyttely: Tea Tuominen: Kerroksia ajassa" }, "provider_contact_info": null, "location_extra_info": { "fi": "Näyttelyseinä" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnpzw5n44/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66888", "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/event/suurlaehettilaeaet-savoy-teatteri-20550988/", "sv": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/", "en": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/" }, "description": null, "price": { "fi": "38,90 € / S&D 100,60 €", "sv": "38,90 € / S&D 100,60 €", "en": "38,90 € / S&D 100,60 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490497, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-21T15:14:23.262790Z", "last_modified_time": "2025-08-21T15:14:23.262806Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776509.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490497/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-21T15:14:23.139549Z", "last_modified_time": "2025-12-07T15:12:46.881825Z", "date_published": null, "start_time": "2025-12-13T17: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": "Suurlähettiläät juhlii tänä vuonna 35-‑vuotista taivaltaan. Sen verran on kulunut ensimmäisestä singlestä – ja kun osa bändin jäsenistäkin viettää tänä vuonna tasavuosijuhliaan – on syytä juhlaan ja kunnioittaa menneitä vuosikymmeniä.", "sv": "I år firar Suurlähettiläät 35-årsjubileum. Så lång tid har gått sedan den första singeln – och med tanke på att vissa medlemmar i bandet firar jämna år i år finns det anledning att fira och hedra de årtionden som gått.", "en": "Suurlähettiläät are celebrating their 35-year history this year. That's how long it has beensince the band'sfirstsingle – and with somemembersof thebandcelebrating their milestone birthdays thisyear – there's plenty of reason to celebrate and honour the past decades." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A97408785726628A844435B194961916/Suurlahettilaat", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/A97408785726628A844435B194961916/Suurlahettilaat", "en": "http://www.savoyteatteri.fi/en/events/event/A97408785726628A844435B194961916/Suurlahettilaat" }, "description": { "fi": "<p>Suurlähettiläät juhlii tänä vuonna 35-‑vuotista taivaltaan. Sen verran on kulunut ensimmäisestä singlestä – ja kun osa bändin jäsenistäkin viettää tänä vuonna tasavuosijuhliaan – on syytä juhlaan ja kunnioittaa menneitä vuosikymmeniä.</p><p>Yhtye nousi suomalaisen bändipopin kaanoniin heti vuonna 1991 debyyttialbumillaan Omituisten otusten kerho, josta ikivihreiksi nousi kappaleet Elokuun 11. ja Pitääxunaina?. Nopeassa tahdissa klassikkokimara jatkui mm. biiseillä Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot ja Mitä miehen tulee olla?<br> <br>Savoy Teatterissa 13.12. on luvassa yhtyeen juhlakiertueen 2025 viimeinen keikka ja runsas kattaus biisejä bändin uran varrelta. Suomisoulia, joka on tehnyt Suurlähettiläistä sukupolvien ajan rakastetun.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</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>Konsertin Show&Dinner-lippupaketit ovat loppuunmyyty, mutta illallinen on mahdollista tilata suoraan Savoy-teatterin ravintola Minnen verkkokaupasta: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat<br> <br>Huomioithan, että Minnen illalliskattauksessa on rajallinen määrä paikkoja jäljellä.</b></p><p>Show & Dinner -lippu 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</p><p>TAI</p><p><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</p><p>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>I år firar Suurlähettiläät 35-årsjubileum. Så lång tid har gått sedan den första singeln – och med tanke på att vissa medlemmar i bandet firar jämna år i år finns det anledning att fira och hedra de årtionden som gått.</p><p>Bandet skrev in sig i den finska bandpopens historia genast 1991 med sitt debutalbum Omituisten otusten kerho, från vilket låtarna Elokuun 11. och Pitääxunaina? blev evergreens. Den tempofyllda klassiska cocktailen fortsatte med låtar som Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot och Mitä miehen tulee olla?.</p><p>Den 13 december är Savoy-teatern värd för den sista konserten på bandets jubileumsturné 2025, och en hel uppsättning låtar från bandets karriär utlovas. Den finska soulen som gjort Suurlähettiläät älskat i generationer.</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>Biljettpaketen Show & Dinner till konserten är slutsålda, men det går bra att beställa middag direkt i Savoy-teaterns restaurang Minnes webbutik: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat</p><p>Observera att det finns ett begränsat antal platser kvar till Minnes middagsdukning.</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>Suurlähettiläät are celebrating their 35-year history this year. That's how long it has beensince the band'sfirstsingle – and with somemembersof thebandcelebrating their milestone birthdays thisyear – there's plenty of reason to celebrate and honour the past decades.</p><p>The band shot to fame in the Finnish band pop scene right at the start, in 1991, with their debut album Omituisten otusten kerho. The album’s songs Elokuun 11. and Pitääxunaina? became evergreen hits. The band continued to churn out classics at a fast pace, with songs such as Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot and Mitä miehen tulee olla?</p><p>On 13 December, the Savoy Theatre will host the last show of the band's 2025 anniversary tour, offering a wide range of songs from the band's career: The Finnish soul that has made Suurlähettiläät a beloved band across generations.</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 concert’s Show & Dinner ticket packages are sold out, but it is possible to order dinner directly from the Savoy Theatre's Restaurant Minne's online shop (website in Finnish): https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat</p><p>Please note that there are a limited number of seats left for the dinner service at Restaurant Minne.</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": "Suurlähettiläät – Loppuunmyyty! / Sold out!", "sv": "Suurlähettiläät – Slutsåld!", "en": "Suurlähettiläät – Sold out!" }, "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:66888/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20000235", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849161/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kuningatarnaytelma-helsingin-kaupunginteatteri-20000235/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kuningatarnaytelma-helsingin-kaupunginteatteri-20000235/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kuningatarnaytelma-helsingin-kaupunginteatteri-20000235/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360030, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:19.912887Z", "last_modified_time": "2025-03-17T22:17:19.912902Z", "url": "https://www.lippu.fi/obj/mam/finland/9c/af/kuningatar222-tickets_369620_3121710_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360030/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:45.119947Z", "last_modified_time": "2025-12-05T23:15:06.115006Z", "date_published": null, "start_time": "2025-12-05T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jussi Moila - Sini Pesonen KUNINGATARNÄYTELMÄ Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Jussi Moila - Sini Pesonen<br><strong>KUNINGATARNÄYTELMÄ</strong></p><p>Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654. Jussi Moilan kirjoittama ja Sini Pesosen ohjaama historiallinen nykydraama hengittää vahvasti tätä päivää teemoillaan vallasta, sukupuolesta ja rakkaudesta.</p><p>Nuoreen Kristinaan kohdistuu järkälemäisiä odotuksia. Hän on tyttö, jota kasvatetaan kuninkaaksi. Nainen, jonka tulee turvata kuningassuku avioitumalla ja synnyttämällä perillinen. Hallitsija, jonka täytyy olla sodassa ryvettyneen kansakuntansa keulakuva ja johtaja.</p><p>Mutta Kristina haluaa jotain aivan muuta. Hän haluaa tehdä synkästä ja sivistymättömästä Ruotsista tieteen ja taiteen johtotähden, eurooppalaisen vapauden ja sivistyksen valtakunnan. Ja Kristina haluaa hovineitonsa Bellen.</p><p>Ristipaine julkisen roolin ja yksityiselämän välillä synnyttää hurjaa, hauskaa ja koskettavaa draamaa. Anarkistisen kuningatar Kristinan kiehtovassa roolissa nähdään Elsi Sloan. Belleä näyttelee Aino Sirje.</p><p>Rooleissa: Rauno Ahonen, Pekka Huotari, Vappu Nalbantoglu, Aino Seppo, Aino Sirje, Elsi Sloan, Alvari Stenbäck, Mikko Vihma, Joachim Wigelius, Vilma Sippola</p><p>Ohjaus: Sini Pesonen<br>Koreografia: Kaisa Torkkel<br>Lavastus: Tinja Salmi<br>Pukusuunnittelu: Henna-Riikka Taskinen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Valosuunnittelu: Kari Leppälä<br>Videosuunnittelu: Tinja Salmi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Henna Piirto<br>Erikoistehosteet: Markku Ahonen</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>" }, "name": { "fi": "Kuningatarnäytelmä" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000235/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19999934", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849160/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999934/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999934/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999934/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360032, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.766941Z", "last_modified_time": "2025-03-17T22:17:20.766955Z", "url": "https://www.lippu.fi/obj/mam/finland/a1/8c/sutinaa222-tickets_369148_3117437_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360032/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:45.022457Z", "last_modified_time": "2025-12-05T23:15:05.992473Z", "date_published": null, "start_time": "2025-12-05T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Sandy Rustin SUTINAA JA SÄÄTÖÄ Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni kynnet sinisinä, mutta samalla hypätään päätä pahkaa syvään päätyyn niin riemukkaasti, että katsojan onnellinen osa on nauraa vedet silmissä mukana!</p><p>Sylvia (Pihla Penttinen) ja hänen salarakkaansa Beau (Sauli Suonpää) ovat saapuneet jokavuotiselle syntiselle huvilatapaamiselleen. Tällä kertaa Sylvia pudottaa Beaulle todellisen uutispommin, ja kertoo jättäneensä miehensä. Sähkeellä!</p><p>Tämä on vasta alkua, sillä seuraavaksi kaksikon puolisot (Emilia Sinisalo ja Heikki Ranta) pelmahtavat samalle huvilalle! Todellinen salaisuuksien Pandoran lipas revähtää auki ja niin henkilöiden identiteetit kuin avioliittokäsitykset joutuvat kiivaasti kieppuvaan myllyyn.</p><p>Broadwaylla ensi-iltansa vuonna 2023 saanut Sutinaa ja säätöä sijoittuu herkullisesti 1920-luvun Englantiin, mutta sen käänteet ja käänteissä kärvistelevät ihmiset ovat täyttä tätä päivää, tunnistettavia ja samaistuttavia, kaikessa hullunkurisuudessaan rakastettavia ja pakahduttavan hauskoja.</p><p>Sutinaa ja säätöä on uusi ja raikas farssikomedia parisuhteista. Kuumana kuplivaa sutinaa ja sysipimeitä salaisuuksia pulppuava parituntinen, jonka aikana katsoja tulee yllätetyksi monta kertaa – aivan kuten komedian henkilötkin.</p><p>Rooleissa: Pihla Penttinen, Sauli Suonpää, Emilia Sinisalo, Heikki Ranta, Ella Lymi ja Mikko Virtanen</p><p>Suomentaja: Reita Lounatvuori<br>Ohjaus: Sari Siikander<br>Lavastus: Peter Ahlqvist<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Äänisuunnittelu: Eero Niemi<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Dramaturgi: Ari-Pekka Lahti</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner</p>", "en": "<p>Sandy Rustin<br><strong>SUTINAA JA SÄÄTÖÄ</strong></p>" }, "name": { "fi": "Sutinaa Ja Säätöä" }, "provider_contact_info": null, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999934/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19506317", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506317/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506317/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506317/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.124713Z", "last_modified_time": "2025-02-17T11:16:42.124728Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:26.573660Z", "last_modified_time": "2025-12-05T23:15:05.886384Z", "date_published": null, "start_time": "2025-12-05T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin," }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en" }, "description": { "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Wilhelm Blomberg, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>", "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>" }, "name": { "fi": "Moulin Rouge! Musikaali" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19506317/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn6ceeyi", "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/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?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:p2901/?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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd5mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd5ym/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd6ei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd6oy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd6ze/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd7dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd7oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd7y4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceaea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceaqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cea3i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cebgm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cebqy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceb4a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cechy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cecsy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cec5q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cedii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceduy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceea4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceelu/?format=api" } ], "images": [ { "id": 150450, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-17T07:59:13.420035Z", "last_modified_time": "2024-01-17T07:59:13.420055Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/shakki.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "shakkinappuloita pelilaudalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-12-02T12:04:10.465231Z", "last_modified_time": "2025-12-05T12:54:05.938353Z", "date_published": null, "start_time": "2026-01-08T15:00:00Z", "end_time": "2026-05-28T15: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": "Klubi on tarkoitettu jo alkeet osaaville pelaajille. Opastusta saatavilla. ", "sv": "Klubben är för spelare som redan kan grunderna. Vägledning finns tillgänglig.", "en": "The club is for players who already know the basics. Guidance available." }, "info_url": null, "description": { "fi": "<p>Klubi on tarkoitettu jo alkeet osaaville pelaajille. Opastusta saatavilla. Tervetuloa!</p>", "sv": "<p><br></p><p>Klubben är för spelare som redan kan grunderna. Vägledning finns tillgänglig.</p>", "en": "<p>The club is for players who already know the basics. Guidance available.</p>" }, "name": { "fi": "Shakkiklubi", "sv": "Schackklubb ", "en": "Chess Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Pointti", "sv": "Pointti", "en": "Pointti" }, "provider": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceeyi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnntkqnye", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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:p556/?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:agnntkqjbu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqjke/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqjsm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqj3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqkdi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqkky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqksu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqk2y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqlku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqls4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkql24/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqmcq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqmj4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqmru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqmzu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqnbe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqniq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqnqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agno4rclhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agno4rcmum/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs7gum/?format=api" } ], "images": [ { "id": 1490710, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-10T07:15:40.691205Z", "last_modified_time": "2025-09-10T07:15:40.691220Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/7748b1a8-abc8-43d7-b337-f8bfc73f5ba6.png", "name": "", "cropping": "218,0,782,563", "photographer_name": "eenevski", "alt_text": "Pöydällä paperi, jossa lukee \"Let's Discuss\". Paper with a text \"Let's Discuss\".", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490710/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T11:13:04.313604Z", "last_modified_time": "2025-12-05T11:13:46.845088Z", "date_published": null, "start_time": "2026-01-07T16:00:00Z", "end_time": "2026-05-27T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Sinulle, joka haluat pitää englannin kielen taitosi ajan tasalla, keskustella kiinnostavista aiheista ja viettää aikaa rennossa ilmapiirissä.", "sv": "Håll dina engelskkunskaper aktuella, diskutera intressanta ämnen med likasinnade och umgås i en avslappnad miljö.", "en": "Keep your English language skills up to date, discuss interesting topics with like-minded individuals, and socialise in a relaxing environment." }, "info_url": null, "description": { "fi": "<p>Englanninkielinen keskusteluryhmä on tarkoitettu niille, jotka haluavat pitää englannin kielen taitonsa ajan tasalla, keskustella kiinnostavista aiheista samanhenkisten ihmisten kanssa ja viettää aikaa rennossa ilmapiirissä.</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Den engelskspråkiga diskussionsgruppen är för personer som vill hålla sina engelskkunskaper aktuella, diskutera intressanta ämnen med likasinnade och umgås i en avslappnad miljö.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>The English discussion group is for people who want to keep their English language skills up to date, discuss interesting topics with like-minded individuals, and socialise in a relaxing environment. The only rule is that we keep the conversation in English. We meet in once per week in Tapiola library.</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Englanninkielinen keskusteluryhmä", "sv": "Engelskspråkig diskussionsgrupp", "en": "English Discussion Group" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqnye/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67257", "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:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491324, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-07T09:13:45.145784Z", "last_modified_time": "2025-11-07T09:13:45.145799Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772167.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491324/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T09:13:44.946637Z", "last_modified_time": "2025-12-04T16:12:51.601710Z", "date_published": null, "start_time": "2025-12-04", "end_time": "2026-01-10", "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": "Valitut taideteokset ovat taiteilijoilta Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero ja Ozeya Vineyard, sekä Greta Granö ja gallery of light and shadow.", "sv": "Konstnärer: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya och Aero Vineyard, och Greta Granö och gallery of light and shadow.", "en": "The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and Greta Granö and a gallery of light and shadow." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION", "sv": "http://www.vuotalo.fi/sv/evenemang/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION", "en": "http://www.vuotalo.fi/en/events/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION" }, "description": { "fi": "<p>Valitut taideteokset ovat taiteilijoilta Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero ja Ozeya Vineyard, sekä Greta Granö ja gallery of light and shadow.</p><p>REFRACTION (Refraktio) on valoa ja muistia käsittelevä ryhmänäyttely, jonka on kuratoinut Yasmin Ibrahim. Vuoden pimeimpänä kuukautena palaamme valossa kylpeviin muistoihin ja niiden vaihtumiseen, muuttumiseen ja pysähtymiseen. Teokset liikkuvat henkilökohtaisen ja julkisen välillä ja käyttävät valoa metaforisesti ja kirjaimellisesti heijastamaan omia kokemuksiamme ja sitä, miten ne näyttäytyvät ulkomaailmalle.</p><p>Näyttely on ammentanut inspiraatiota Yasmin Ibrahimin omasta suhteesta valoon pohjoiselle pallonpuoliskolle globaalista etelästä saapuneena maahanmuuttajana. Kukin työ esittelee valon haurautta, sitä kuinka valo muuttaa muistia ja rikkoo ja vakiinnuttaa sen.</p><p>Valittujen teosten tekijät ovat Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero ja Ozeya Vineyard ja gallery of light and shadow. Jokainen työ tarkastelee valon käyttöä ja suhdettamme siihen, sekä sitä mitä meidän pitäisi valaista. Kuraattorina Ibrahim on kiinnostunut Suomessa varjoon jääneiden taiteilijoiden valon kuvauksista ja käytöstä sekä muistin kyvystä liikuttaa tai jähmettää meidät ja ottaa meidät mukaan tai sulkea meidät ulkopuolelle.</p><p>Tervetuloa avajaisiin Vuotaloon 4.12. klo 18.30–20.00!</p><p>Kuva credit: Still from “Stepping into the Light\"<br>Legendary Overall Mother Lola Gorgeous Gucci <br>Xclusive Lanvin House Ball 2023.</p>", "sv": "<p>Konstnärer: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya och Aero Vineyard, och Greta Granö och gallery of light and shadow.</p><p>REFRACTION är en grupputställning om ljus och minnen, kuraterad av Yasmin Ibrahim. Under årets mörkaste månad minns vi minnen fyllda av ljus, och hur de skiftar, förändras och stagnerar. I rörelsen mellan det personliga och det offentliga används ljuset på ett metaforiskt och bokstavligt sätt för att reflektera över vad vi upplever och hur det porträtteras för omvärlden.</p><p>Med inspiration från Yasmin Ibrahims egen relation till ljuset som en invandrare från den globala södern som nu bor på norra halvklotet visar alla de utvalda konstverken hur skört ljuset är, hur det förändrar minnet och vad som stör och stabiliserar det.</p><p>De utvalda konstverken är skapade av Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero och Ozeya Vineyard samt gallery of light and shadow. Varje verk utforskar hur vi använder ljus, vår relation till ljuset och vad vi borde belysa. Som kurator är Ibrahim intresserad av hur underrepresenterade konstnärer i Finland skildrar och använder ljus, och hur minnen kan förflytta sig, frysa, stänga ut eller inkludera oss.</p><p>Välkommen till invigningen på Nordhuset den 4 december kl. 18.30–20.00!</p><p>Med stöd av Catalysti ry och TAIKE.</p>", "en": "<p>The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and Greta Granö and a gallery of light and shadow.</p><p>REFRACTION is a group exhibition curated by Yasmin Ibrahim on light and memory. During the darkest month of the year, we remember memories engulfed in light, how they shift, change and become stagnant. Moving between the personal and the public, light is used in a metaphoric and literal sense to reflect what we experience and how it is portrayed to the outside world.</p><p>Inspired by Yasmin Ibrahim’s own relationship to light as an immigrant from the Global South living in the Northern Hemisphere, each selected artwork shows the fragility of light, how it changes memory, what disrupts and settles it.</p><p>The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and a gallery of light and shadow. Each piece looks at the use of light, our relationship to it, and what should be shed light on. As a curator, Ibrahim is interested in the depictions and usage of light by underrepresented artists in Finland, and how memory can move, freeze, exclude or include us.</p><p>Welcome to the opening at Vuotalo on 4.12 between 18:30-20:00!<br>Supported by Catalysti ry and TAIKE.</p><p>Photo credit: Still from “Stepping into the Light\"</p><p>Legendary Overall Mother Lola Gorgeous Gucci<br> <br>Xclusive Lanvin House Ball 2023.</p>" }, "name": { "fi": "REFRACTION – Kuratoinut Yasmin Ibrahim", "sv": "REFRACTION – Kurerad av Yasmin Ibrahim", "en": "REFRACTION – Curated by Yasmin Ibrahim" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67257/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnotqwcee", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "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:agnotqwava/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnotqwbgq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnotqwbne/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnotqwbu4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnotqwb3y/?format=api" } ], "images": [ { "id": 1494090, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T13:05:49.978934Z", "last_modified_time": "2025-12-04T13:05:49.978948Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/baafaf82-fb8a-4fe9-8ac5-659901285934.jpg", "name": "", "cropping": "0,200,1200,1400", "photographer_name": "", "alt_text": "Maisema ja linnut", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494090/?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-12-04T13:17:42.065505Z", "last_modified_time": "2025-12-04T13:17:42.065524Z", "date_published": null, "start_time": "2026-01-30T15:30:00Z", "end_time": "2026-05-08T15: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": "Tarinoiden lukeminen lapsille espanjaksi" }, "info_url": null, "description": { "fi": "<p>Tarinoiden lukeminen lapsille espanjaksi</p>" }, "name": { "fi": "Cuentacuentos" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Kirjasto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnotqwcee/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22s2hi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [ { "name": "extlink_instagram", "link": "http://www.instagram.com/tapiolankirjasto", "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:agmk22syx4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22szdq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22szpy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22sz3m/?format=api" } ], "images": [ { "id": 1490255, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-06-16T08:48:48.109280Z", "last_modified_time": "2025-06-16T08:48:48.109294Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/36b381d6-d08e-493e-8924-579bc40511c3.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Taru Mäkelä", "alt_text": "Kuvassa kuvaelementteinä neulontaa, pienoismallin rakentamista ja piirtämistä, keskellä kuva miehestä, joka pitää käsissään kirjaa ja katsoo kameraan hymyillen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490255/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-16T09:00:19.849830Z", "last_modified_time": "2025-12-04T12:30:33.357044Z", "date_published": null, "start_time": "2025-09-09T09:00:00Z", "end_time": "2025-12-09T12: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": "Tervetuloa inspiroitumaan kirjallisuudesta ja löytämään uutta luettavaa, jutustelemaan, tai ihan vain nauttimaan omasta hiljaisesta ajastasi tarinoiden äärellä.", "sv": "Välkommen att inspireras av litteraturen och hitta ny läsning, småprata eller bara njuta av din egen lugna stund i sällskap av berättelser.", "en": "Welcome to be inspired by literature and discover new reading, have a chat, or simply enjoy a quiet moment with stories." }, "info_url": null, "description": { "fi": "<p>Tervetuloa inspiroitumaan kirjallisuudesta ja löytämään uutta luettavaa, jutustelemaan, tai ihan vain nauttimaan omasta hiljaisesta ajastasi tarinoiden äärellä. Tule kuuntelemaan ääneen luettuja katkelmia valituista teoksista vapaalla tyylillä - jos kaipaat käsillesi tekemistä, pakkaa piirustusvälineet tai neuletyö mukaasi, tai vaikkapa Warcraft-projektisi. Piirustusvälineitä saat käyttöösi myös kirjastolta.</p><p>Tarinoimassa mukana pitkän linjan kirjastopedagogimme Mikko Airaksinen</p><p>Kuva: Taru Mäkelä</p>", "sv": "<p>Välkommen att inspireras av litteraturen och hitta ny läsning, småprata eller bara njuta av din egen lugna stund i sällskap av berättelser.</p><p>En bibliotekarie läser högt. Du kan samtidigt handarbeta</p><p>Evenemanget är på finska.</p>", "en": "<p>Welcome to be inspired by literature and discover new reading, have a chat, or simply enjoy a quiet moment with stories.</p><p>A librarian reads aloud. You can do handicrafts at the same time.</p><p>The event is in Finnish.</p>" }, "name": { "fi": "Peruttu / Tarinatapaaminen", "sv": "Berättelseträff", "en": "Story gathering" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapiolan kirjaston tapahtumatila Heikki", "sv": "Hagalunds bibliotek, Evenemangslokalen Heikki", "en": "Tapiola Library, event space Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s2hi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnosho2jm", "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: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: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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshouby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoul4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshouwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshou7e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshovh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshovrm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshov3a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshowea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshowoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshowy4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoxby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoxkq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoxuq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshox5u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoyie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoyra/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoy24/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshozdy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshozmy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshozwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnosho2ae/?format=api" } ], "images": [ { "id": 1490544, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-27T09:41:09.795605Z", "last_modified_time": "2025-08-27T09:41:09.795621Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/eca7a27f-ae0c-4f6b-9806-c8f3b48cec55.jpg", "name": "", "cropping": "214,0,1066,853", "photographer_name": "Kuva Ingrid und Stefan Melichar Pixabaystä", "alt_text": "Kuvassa on eri värisiä noppia.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490544/?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-12-04T10:36:19.583464Z", "last_modified_time": "2025-12-04T10:36:19.583484Z", "date_published": null, "start_time": "2026-01-07T13:30:00Z", "end_time": "2026-05-27T15: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": "Pöytäroolipelikerho", "sv": "Bordrollspelklubb", "en": "Tabletop role-playing club" }, "info_url": null, "description": { "fi": "<p>Jos fantasiaseikkailut ja pelit kuten Dungeons & Dragons ovat sinun mieleen niin Nuortentila Pointti tarjoaa mahdollisuuden tutustua ja kokeilla pöytäroolipelaamista. Kerhoporukka kokoontuu keskiviikkoisin yhteisen pöydän ääreen suunnittelemaan ja pelaamaan fantasiaroolipelejä. Sinulla ei tarvitse olla aikaisempaa kokemusta pelaamisesta tai pelinvetämisestä. Toiminta on maksutonta.</p><p> </p><p>Pointissa on myös MtG korttipelailua satunnaisesti pitkin viikkoa. Lisätiedot joko paikanpäältä tai sähköpostilla: ville.rusanen@espoo.fi</p><p>Toiminta on suunnattu 13 - 25 vuotiaille.</p><p> </p><p>Tervetuloa mukaan!</p>", "sv": "<p>Om du gillar fantasyäventyr och spel som Dungeons & Dragons erbjuder ungdomscentret Pointti dig möjligheten att lära dig mer om och prova på rollspel. Klubben träffas på onsdagar runt ett gemensamt bord för att planera och spela fantasyrollspel. Du behöver inte ha någon tidigare erfarenhet av att spela eller leda spel. Aktiviteten är gratis.</p><p><br></p><p>Pointti erbjuder också MtG-kortspel ibland under veckan. För mer information, fråga på plats eller skicka ett e-postmeddelande till: ville.rusanen@espoo.fi</p><p>Aktiviteterna riktar sig till ungdomar i åldern 13–25 år.</p><p><br></p><p>Välkommen!</p>", "en": "<p>If you like fantasy adventures and games such as Dungeons & Dragons, youth center Pointti offers you the opportunity to learn about and try tabletop role-playing games. The club meets on Wednesdays around a shared table to plan and play fantasy role-playing games. You don't need to have any previous experience of playing or running games. The activity is free of charge.</p><p><br></p><p>Pointti also offers MtG card games occasionally throughout the week. For more information, ask at the venue or send an email to: ville.rusanen@espoo.fi</p><p>The activities are aimed at 13- to 25-year-olds.</p><p><br></p><p>Welcome!</p>" }, "name": { "fi": "Pöytäroolipelikerho", "sv": "Bordrollspelklubb", "en": "Tabletop role-playing club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Mörkö huone", "sv": "Mörkä i rummet", "en": "Mörkö room" }, "provider": { "fi": "Nuori Espoo", "sv": "Nuori Espoo", "en": "Nuori Espoo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnosho2jm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66098", "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:42/?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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1255101, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-14T07:14:26.183131Z", "last_modified_time": "2025-07-14T07:14:26.183147Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771486.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1255101/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-14T07:14:26.071859Z", "last_modified_time": "2025-12-04T07:12:45.435180Z", "date_published": null, "start_time": "2025-12-06T13:00:00Z", "end_time": "2025-12-06T14: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": "Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D47937E17671141BE0754F25B0DB9136/Itsenaisyyspaivan_juhla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D47937E17671141BE0754F25B0DB9136/Firande_av_sjalvstandighetsdagen", "en": "http://www.malmitalo.fi/en/events/event/D47937E17671141BE0754F25B0DB9136/Independence_Day_Celebration" }, "description": { "fi": "<p>Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!</p><p>Ennen Malmisalin juhlaohjelmaa Pienessä salissa näytetään klo 13 Muistoja Sortavalasta -dokumentti, johon on myös vapaa pääsy. Myös Sortavalan laulujuhlat 1935 -valokuvanäyttely on nähtävillä Malmitalon aulatilassa!</p><p>Malmisalin juhlaohjelmassa on luvassa Finlandia-palkinnon juuri saaneen Tomi Kontion juhlapuhe ja lausuntaa. Musiikillisesta annista vastaa pianisti Janne Oksanen ja duo Aili Järvelä. Oksanen soittaa konsertissaan Toivo Kuulan ja Armas Järnefeltin tuotantoa, kun taas paikallinen Järvelä duo soittaa omaa tuotantoaan.</p><p>Aikataulu klo 15–16</p><p>Tervetulosanat: Tiina Laukkanen, Malmitalon johtaja<br>Juhlapuhe: Tomi Kontio, kirjailija ja runoilija<br>Juhlakonsertti: Janne Oksanen, pianisti<br>Lausunta: Tomi Kontio<br>Konsertti: Aili Järvelä ja Sigurdur Rögnvaldsson<br>Loppusanat: Mirka Vainikka, Malmi-Seuran puheenjohtaja<br>Maamme-laulu</p><p>Ohjelman jälkeen kahvitarjoilu klo 16 alkaen Malmitalon aulassa.</p><p>Vapaa pääsy. Huomioithan, että paikkoja salissa on rajoitetusti.</p><p>Yhteistyössä Malmi-Seura ja Malmitalo</p><p>Kesto: 1 tunti</p>" }, "name": { "fi": "Itsenäisyyspäivän juhla", "sv": "Firande av självständighetsdagen", "en": "Independence Day Celebration" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66098/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnoiltyeq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltwmu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltw3q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltxje/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltxwm/?format=api" } ], "images": [ { "id": 1494028, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T11:21:23.720844Z", "last_modified_time": "2025-12-03T11:21:23.720860Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png", "name": "Perhekerho", "cropping": "92,0,544,453", "photographer_name": "", "alt_text": "Kuvassa erilaisia perheitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?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-12-03T11:39:38.885567Z", "last_modified_time": "2025-12-03T11:39:38.885584Z", "date_published": null, "start_time": "2025-12-08T14:30:00Z", "end_time": "2025-12-29T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 16.30–18.30. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.", "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 16.30–18.30. Kom och lek och umgås med andra familjer.", "en": "Family club at Sello Library's Lastenmaa on Mondays from 4:30 p.m. to 6:30 p.m. Come play and spend time with other families." }, "info_url": null, "description": { "fi": "<p>Perhekerho Sellon kirjaston Lastenmaan Jaminurkassa maanantaisin klo 16.30–18.30 (poikkeuksena 8.12 ja 15.12, jolloin tapaamme Lastenmaan leikkialueella). Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry. Nähdään! Terveisin ohjaajat Nawres, Gehan ja Ghada.</p><p>#helloespoo</p><p><br></p>", "sv": "<p>Familjeklubb på Sello-bibliotekets Jaminurkka måndagar kl. 16.30–18.30 (utom den 8 december och 15 december, då vi träffas på lekplatsen Lastenmaa). Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry. Vi ses där! Vänliga hälsningar, instruktörerna Nawres, Gehan och Ghada.</p><p>#helloespoo</p>", "en": "<p>Family club at Sello Library's Jaminurkka on Mondays from 4:30 p.m. to 6:30 p.m. (except on December 8 and December 15, when we will meet at the Lastenmaa playground). Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry. See you there! Best regards, instructors Nawres, Gehan, and Ghada.</p><p>#helloespoo</p>" }, "name": { "fi": "Perhekerho", "sv": "Familjeklubb", "en": "Family club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenmaa", "sv": "Lastenmaa", "en": "Lastenmaa" }, "provider": { "fi": "Suomen maahanmuuttajien liitto ry", "sv": "Suomen maahanmuuttajien liitto ry", "en": "Suomen maahanmuuttajien liitto ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltyeq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnohqfb6i", "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:p1808/?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:p4354/?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": [ { "id": 1494025, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T10:08:32.632275Z", "last_modified_time": "2025-12-03T10:08:32.632296Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d5a79665-31ee-4e0a-8bbe-aaa3a3055c78.jpg", "name": "", "cropping": "140,0,503,362", "photographer_name": "", "alt_text": "Taidetyöpajan vetäjät Marja Koskela ja Miina Virtanen", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494025/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T10:08:44.790606Z", "last_modified_time": "2025-12-03T10:08:44.790634Z", "date_published": null, "start_time": "2025-12-13T09:00:00Z", "end_time": "2025-12-13T12: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": "Käsityötaidetta ja musiikkia yhdistävä lauantaipajojen sarja 7–13 -vuotiaille ukrainalaisille ja suomalaisille koululaisille. ", "en": "A series of Saturday workshops combining crafts and music for Ukrainian and Finnish schoolchildren aged 7–13. " }, "info_url": null, "description": { "fi": "<p>Käsityötaidetta ja musiikkia yhdistävä lauantaipajojen sarja 7–13 -vuotiaille ukrainalaisille ja suomalaisille koululaisille. Hankkeen tavoitteena on edistää eri kulttuureista tulevien nuorten välistä ystävyyttä ja luovan toiminnan mahdollistamaa itseilmaisua yhdessä jaetussa hetkessä turvallisessa ympäristössä. Työpajassa ei vaadita ennakko-osaamista ja työpajassa osallistujat pääsevät kokeilemaan luovaa käsillä tekemistä sekä musisointia.</p><p>Ohjaajina työpajassa ovat Marja Koskela ja Miina Virtanen ja ukrainen kielen tulkkina Tatyana Pitchulina.</p><p>Ilmoittaudu täällä:<a href=\" https://link.webropolsurveys.com/EP/49979A9234D8716C\"> https://link.webropolsurveys.com/EP/49979A9234D8716C</a></p>", "en": "<p>A series of Saturday workshops combining crafts and music for Ukrainian and Finnish schoolchildren aged 7–13. The aim of the project is to promote friendship between young people from different cultures and self-expression through creative activities in a shared moment in a safe environment. No prior knowledge is required for the workshop, and participants will have the opportunity to try their hand at creative crafts and music-making.</p><p><br></p><p>The workshop will be led by Marja Koskela and Miina Virtanen, with Tatyana Pitchulina acting as Ukrainian interpreter.</p><p><br></p><p>Register here: <a href=\"https://link.webropolsurveys.com/EP/49979A9234D8716C\">https://link.webropolsurveys.com/EP/49979A9234D8716C</a></p><p><br></p><p><br></p>" }, "name": { "fi": "Käsityötaiteen ja musiikin lauantaipaja", "en": "Saturday workshop on crafts and music" }, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli", "en": "Akseli" }, "provider": { "fi": "Espoo Creative", "en": "Espoo Creative" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnohqfb6i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67438", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493798, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-14T09:12:56.454666Z", "last_modified_time": "2025-11-14T09:12:56.454683Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780907.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493798/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-14T09:12:56.364029Z", "last_modified_time": "2025-12-03T09:12:45.174872Z", "date_published": null, "start_time": "2025-12-06T13:00:00Z", "end_time": "2025-12-06T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule juhlistamaan Suomen itsenäisyyttä Sitratorille, tarjolla lohi- ja kasviskeittoa, glögiä, pipareita sekä mukavaa ohjelmaa!", "sv": "Kom och fira Finlands självständighet på Cittertorget! Lax- och grönsakssoppa, glögg samt pepparkakor serveras och trevligt program utlovas.", "en": "Come and celebrate Finland's independence at Sitratori square and enjoy salmon and vegetable soup, glogg, gingerbread biscuits and a fun programme!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D651833586DE2449C7E10414F4F23075/Itsenaisyyspaivan_juhla_Sitratorilla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D651833586DE2449C7E10414F4F23075/Firande_av_sjalvstandighetsdagen_pa_Cittertorget", "en": "http://www.kanneltalo.fi/en/events/event/D651833586DE2449C7E10414F4F23075/Independence_Day_celebration_at_Sitratori_square" }, "description": { "fi": "<p>Tule juhlistamaan Suomen itsenäisyyttä Sitratorille, tarjolla lohi- ja kasviskeittoa, glögiä, pipareita sekä mukavaa ohjelmaa!</p><p>Tunnelmallisessa tapahtumassa nautitaan yhdessä kuorolaulusta, sirkuksesta ja valotaiteesta – tilaisuus on maksuton ja kaikille avoin.</p><p>Lämminhenkinen tapahtuma järjestetään edellisvuosista poiketen Sitratorilla. Näin varmistamme, että kaikki halukkaat mahtuvat mukaan! Mukana tapahtumassa ovat myös D-asema Kannelmäki ja Lännen aikuissosiaalityö.</p><p><b>Juhlan aikataulu:</b><br>klo 15-17 Lohi- ja kasviskeittotarjoilu. Tarjolla myös glögiä ja pipareita! Huomioithan, että ruokaa on tarjolla rajattu määrä.</p><p>klo 15–15.30 ja klo 16.20–16.45 Posetiivari esiintyy!</p><p>klo 15.30 ja klo 16.45 Kassandra-kuoron esitykset</p><p>klo 16 Valosirkus Spektrin esitys</p><p>Vapaa pääsy!</p>", "sv": "<p>Kom och fira Finlands självständighet på Cittertorget! Lax- och grönsakssoppa, glögg samt pepparkakor serveras och trevligt program utlovas.</p><p>Under det stämningsfulla evenemanget njuter man tillsammans av körsång, cirkus och ljuskonst – tillställningen är avgiftsfri och öppen för alla.</p><p>Till skillnad från tidigare år ordnar man det varma och hjärtliga evenemanget på Cittertorget. Så här säkerställer man att alla intresserade får plats! Även D-osasto Kannelmäki och Vuxensocialarbete, västra deltar i evenemanget.</p><p><b>Festens tidtabell:</b><br>kl. 15.00–17.00 Servering av lax- och grönsakssoppa samt glögg och pepparkakor (vänligen observera att det finns en begränsad mängd mat att tillgå)<br>kl. 15.00–15.30 och 16.20-16.45 Posetiivari uppträder<br>kl. 15.30 och 16.45 Uppträdanden av Kassandrakören<br>kl 16.00 Valosirkus Spektris programnummer</p><p>Fritt inträde!</p>", "en": "<p>Come and celebrate Finland's independence at Sitratori square and enjoy salmon and vegetable soup, glogg, gingerbread biscuits and a fun programme!</p><p>The programme for the atmospheric evening also includes choral singing, circus entertainment and light art – free and open to all.</p><p>Unlike in previous years, the warm-hearted event will be held at Sitratori square. This way we can make sure that everyone who wants to join us will be able to! D-asema Kannelmäki and western adult social work will also be present at the event.</p><p>Celebration programme:<br>15.00–17.00 Salmon and vegetable soup served. There will also be glogg and gingerbread biscuits! Please note that there is a limited amount of food available.<br>15.00–15.30 and 16.20–16.45 Barrel organ player performance!<br>15.30 and 16.45 Performances by the Kassandra choir<br>16.00 Light Circus Spektri</p><p>Free entry!</p>" }, "name": { "fi": "Itsenäisyyspäivän juhla Sitratorilla", "sv": "Firande av självständighetsdagen på Cittertorget", "en": "Independence Day celebration at Sitratori square" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67438/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk225yce", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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": [], "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:agmk225puq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225qcu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225qru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225rby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225rry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225scq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225squ/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225tau/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225ucm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225uru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225vbi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225vsq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225wda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225wrq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225xbm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225xs4/?format=api" } ], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-19T09:44:03.957058Z", "last_modified_time": "2025-12-03T08:47:24.407195Z", "date_published": null, "start_time": "2025-08-19T15:00:00Z", "end_time": "2025-12-09T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30", "sv": "Letar du efter en plats där du kan öva på att tala finska? ", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p><strong>EI kielikahvilaa 14.10.2025 koulujen syyslomalla</strong></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p><br></p><p>Inget språkcafé den 14 oktober 2025 under höstlovet</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p><br></p><p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p><br></p><p><strong>No language café on October 14, 2025, during the school autumn break</strong></p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "SPR:n kielikahvila ", "sv": "Finskt språkcafé ", "en": "Finnish Language Cafe " }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225yce/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6nrbbpm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrbcau/?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": 1491099, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-15T06:28:46.622009Z", "last_modified_time": "2025-10-15T06:28:46.622025Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/aa8fb267-f840-4582-9896-6e420a631013.jpg", "name": "", "cropping": "0,0,480,480", "photographer_name": "Kissojen omistaja Jaana", "alt_text": "lukukissat Marvin ja Lenni poseeraavat valjaat päällä lastenkirjojen kanssa sohvalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491099/?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-15T06:31:49.190750Z", "last_modified_time": "2025-12-03T07:42:46.594093Z", "date_published": null, "start_time": "2025-12-20T11:00:00Z", "end_time": "2025-12-20T12: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": "Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 25.10., 22.11. ja 20.12. klo 13-14.30", "en": "Marvin and Lenni will be listening patiently on Saturdays, October 25, November 22, and December 20, from 1:00 p.m. to 2:30 p.m." }, "info_url": { "fi": "https://suomenkarvakaverit.fi/", "en": "https://suomenkarvakaverit.fi/" }, "description": { "fi": "Entressen kirjastolla pääsee nyt lukemaan myös kissoille!<p><strong>Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 25.10., 22.11. ja 20.12. klo 13-14.30</strong></p><p>Voit varata oman rauhallisen lukuhetken, jos lukeminen tuntuu hankalalta tai jännittää. Voit tulla harjoittelemaan Marvinin ja Lennin kanssa myös jos haluat harjoitella kieltä. Kissoille voi lukea millä kielellä tahansa.</p><p><br></p><p><br></p><p>Lukulemmikki</p><p>#HelloEspoo</p>", "en": "The Entressen Library now offers reading sessions for cats!<p><strong>Marvin and Lenni will be listening patiently on Saturdays, October 25, November 22, and December 20, from 1:00 p.m. to 2:30 p.m.</strong></p><p>You can book your own reading time if reading feels difficult or makes you nervous. You can also come and practice with Marvin and Lenni if you want to practice the language. You can read to cats in any language.</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Lukukissat Marvin ja Lenni tavattavissa", "en": "Reading cats Marvin and Lenni available for a meeting" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenosasto", "en": "children's section" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrbbpm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6nrbcau", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "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:agm6nrbagu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrba74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrbbpm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4b7si5y/?format=api" } ], "images": [ { "id": 1491099, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-15T06:28:46.622009Z", "last_modified_time": "2025-10-15T06:28:46.622025Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/aa8fb267-f840-4582-9896-6e420a631013.jpg", "name": "", "cropping": "0,0,480,480", "photographer_name": "Kissojen omistaja Jaana", "alt_text": "lukukissat Marvin ja Lenni poseeraavat valjaat päällä lastenkirjojen kanssa sohvalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491099/?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-15T06:31:48.225860Z", "last_modified_time": "2025-12-03T07:42:46.189534Z", "date_published": null, "start_time": "2025-10-25T10:00:00Z", "end_time": "2025-12-20T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 25.10., 22.11. ja 20.12. klo 13-14.30", "en": "Marvin and Lenni will be listening patiently on Saturdays, October 25, November 22, and December 20, from 1:00 p.m. to 2:30 p.m." }, "info_url": { "fi": "https://suomenkarvakaverit.fi/", "en": "https://suomenkarvakaverit.fi/" }, "description": { "fi": "Entressen kirjastolla pääsee nyt lukemaan myös kissoille!<p><strong>Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 25.10., 22.11. ja 20.12. klo 13-14.30</strong></p><p>Voit varata oman rauhallisen lukuhetken, jos lukeminen tuntuu hankalalta tai jännittää. Voit tulla harjoittelemaan Marvinin ja Lennin kanssa myös jos haluat harjoitella kieltä. Kissoille voi lukea millä kielellä tahansa.</p><p><br></p><p><br></p><p>Lukulemmikki</p><p>#HelloEspoo</p>", "en": "The Entressen Library now offers reading sessions for cats!<p><strong>Marvin and Lenni will be listening patiently on Saturdays, October 25, November 22, and December 20, from 1:00 p.m. to 2:30 p.m.</strong></p><p>You can book your own reading time if reading feels difficult or makes you nervous. You can also come and practice with Marvin and Lenni if you want to practice the language. You can read to cats in any language.</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Lukukissat Marvin ja Lenni tavattavissa", "en": "Reading cats Marvin and Lenni available for a meeting" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenosasto", "en": "children's section" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrbcau/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn65v2ny", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@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": [ { "name": "extlink_instagram", "link": "http://www.instagram.com/tapiolankirjasto", "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:agnn65vyq4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn65vy6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn65vzlq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn65vzxa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn65v2cu/?format=api" } ], "images": [ { "id": 1490255, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-06-16T08:48:48.109280Z", "last_modified_time": "2025-06-16T08:48:48.109294Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/36b381d6-d08e-493e-8924-579bc40511c3.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Taru Mäkelä", "alt_text": "Kuvassa kuvaelementteinä neulontaa, pienoismallin rakentamista ja piirtämistä, keskellä kuva miehestä, joka pitää käsissään kirjaa ja katsoo kameraan hymyillen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490255/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-02T13:30:24.280755Z", "last_modified_time": "2025-12-02T13:30:24.280794Z", "date_published": null, "start_time": "2026-01-20T10:00:00Z", "end_time": "2026-05-19T11: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": "Tervetuloa inspiroitumaan kirjallisuudesta ja löytämään uutta luettavaa, jutustelemaan, tai ihan vain nauttimaan omasta hiljaisesta ajastasi tarinoiden äärellä.", "sv": "Välkommen att inspireras av litteraturen och hitta ny läsning, småprata eller bara njuta av din egen lugna stund i sällskap av berättelser.", "en": "Welcome to be inspired by literature and discover new reading, have a chat, or simply enjoy a quiet moment with stories." }, "info_url": null, "description": { "fi": "<p>Tervetuloa inspiroitumaan kirjallisuudesta ja löytämään uutta luettavaa, jutustelemaan, tai ihan vain nauttimaan omasta hiljaisesta ajastasi tarinoiden äärellä. Tule kuuntelemaan ääneen luettuja katkelmia valituista teoksista vapaalla tyylillä - jos kaipaat käsillesi tekemistä, pakkaa piirustusvälineet tai neuletyö mukaasi, tai vaikkapa Warcraft-projektisi. Piirustusvälineitä saat käyttöösi myös kirjastolta.</p><p>Tarinoimassa mukana pitkän linjan kirjastopedagogimme Mikko Airaksinen</p><p>Kuva: Taru Mäkelä</p>", "sv": "<p>Välkommen att inspireras av litteraturen och hitta ny läsning, småprata eller bara njuta av din egen lugna stund i sällskap av berättelser.</p><p>En bibliotekarie läser högt. Du kan samtidigt handarbeta</p><p>Evenemanget är på finska.</p>", "en": "<p>Welcome to be inspired by literature and discover new reading, have a chat, or simply enjoy a quiet moment with stories.</p><p>A librarian reads aloud. You can do handicrafts at the same time.</p><p>The event is in Finnish.</p>" }, "name": { "fi": "Tarinatapaaminen", "sv": "Berättelseträff", "en": "Story gathering" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn65v2ny/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn65v5y4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn65v2ze/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn65v3my/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn65v4bi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn65v4tm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn65v5f4/?format=api" } ], "images": [ { "id": 1490184, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-07-29T05:57:10.528056Z", "last_modified_time": "2025-07-29T05:57:10.528070Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/87b0edd7-4678-4b4f-9aa7-bf1c991f2125.jpg", "name": "Lukeminen", "cropping": "216,0,1064,848", "photographer_name": "Image by StockSnap from Pixabay", "alt_text": "Kuvassa aikuinen lukee kirjaa lapselle rottinkituolissa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490184/?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-12-02T13:29:25.611348Z", "last_modified_time": "2025-12-02T13:29:25.611366Z", "date_published": null, "start_time": "2026-01-23T07:30:00Z", "end_time": "2026-05-15T07: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": "Englanninkielinen satuhetki", "sv": "Sagostund på engelska", "en": "Story time in English" }, "info_url": null, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Luemme tarinoita lapsille englanninkielellä kerran kuukaudessa perjantaisin klo 9.30-10 (23.1, 20.2, 20.3, 24.4 & 15.5).</p>", "sv": "<p>Välkommen till en öppen sagostund. Vi läser sagor för barn på engelska</p><p>Morgonsagostund en gång i månaden på fredagar kl. 9.30-10 (23.1, 20.2, 20.3, 24.4 & 15.5).</p>", "en": "<p>Welcome to an open story time. We read stories to children in English.</p><p>Morning story time once a month on fridays at 9.30-10 (23.1, 20.2, 20.3, 24.4 & 15.5).</p>" }, "name": { "fi": "Englanninkielinen satuhetki", "sv": "Sagostund på engelska", "en": "Story time in English" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn65v5y4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }