Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=73
{ "meta": { "count": 21732, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=74", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=72" }, "data": [ { "id": "hko:2-3793", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://liput.helsinginkaupunginorkesteri.fi/fi/buyingflow/tickets/14576/12518/" }, "description": { "fi": "Hinta", "sv": "Priset", "en": "Price" }, "price": { "fi": "8.00 - 49.50 €", "sv": "8.00 - 49.50 €", "en": "8.00 - 49.50 €" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-25T07:04:00.542459Z", "last_modified_time": "2025-11-25T07:09:56.814881Z", "date_published": null, "start_time": "2025-12-12T17:00:00Z", "end_time": "2025-12-12T19: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": "Miltä kuulostavat vedenalaiset lelupianot tai hämmentynyt keskustelu tikan kanssa? Pekka Kuusiston johtamassa konsertissa on ihmenäkyjä ja fantasiaa.", "sv": "Hur låter leksakspianon under vatten eller ett förvirrat samtal med en hackspett? Konserten bjuder på fantastiska syner och visioner.", "en": "What do underwater toy pianos sound like, or a confused conversation with a woodpecker? The concert offers fantastic sights and visions." }, "info_url": { "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/3793", "sv": "https://helsinginkaupunginorkesteri.fi/sv/node/3793", "en": "https://helsinginkaupunginorkesteri.fi/en/node/3793" }, "description": { "fi": "<p>Miltä kuulostavat vedenalaiset lelupianot tai hämmentynyt keskustelu tikan kanssa? Pekka Kuusiston johtamassa konsertissa on ihmenäkyjä ja fantasiaa.</p>", "sv": "<p>Hur låter leksakspianon under vatten eller ett förvirrat samtal med en hackspett? Konserten bjuder på fantastiska syner och visioner.</p>", "en": "<p>What do underwater toy pianos sound like, or a confused conversation with a woodpecker? The concert offers fantastic sights and visions.</p>" }, "name": { "fi": "HKO - Ihmenäkyjä", "sv": "HSO - Fantastiska syner ", "en": "HPO - Fantastic Sights" }, "provider_contact_info": null, "location_extra_info": { "fi": "Musiikkitalo Konserttisali", "en": "Musiikkitalo Concert Hall" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-3793/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-3792", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://liput.helsinginkaupunginorkesteri.fi/fi/buyingflow/tickets/14575/12517/" }, "description": { "fi": "Hinta", "sv": "Priset", "en": "Price" }, "price": { "fi": "8.00 - 49.50 €", "sv": "8.00 - 49.50 €", "en": "8.00 - 49.50 €" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-25T07:03:59.323710Z", "last_modified_time": "2025-11-25T07:09:55.743384Z", "date_published": null, "start_time": "2025-12-08T17:00:00Z", "end_time": "2025-12-08T19: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": "Sibeliuksen 160-vuotissyntymäpäivän juhlakonsertissa soi HKO:n emeritusylikapellimestari Jorma Panulan valitsema musiikki.", "sv": "På festkonserten på Sibelius 160-årsdag framför HSO musik vald av emeritus chefdirigent Jorma Panula.", "en": "In a special concert celebrating the 160th anniversary of Jean Sibelius, we feature music selected by Jorma Panula, the HPO's chief conductor emeritus." }, "info_url": { "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/3792", "sv": "https://helsinginkaupunginorkesteri.fi/sv/node/3792", "en": "https://helsinginkaupunginorkesteri.fi/en/node/3792" }, "description": { "fi": "<p>Sibeliuksen 160-vuotissyntymäpäivän juhlakonsertissa soi HKO:n emeritusylikapellimestari Jorma Panulan valitsema musiikki.</p>", "sv": "<p>På festkonserten på Sibelius 160-årsdag framför HSO musik vald av emeritus chefdirigent Jorma Panula.</p>", "en": "<p>In a special concert celebrating the 160th anniversary of Jean Sibelius, we feature music selected by Jorma Panula, the HPO's chief conductor emeritus.</p>" }, "name": { "fi": "HKO - Suomalaisen musiikin päivä ", "sv": "HSO - Den finländska musikens dag ", "en": "HPO - Finnish Music Day" }, "provider_contact_info": null, "location_extra_info": { "fi": "Musiikkitalo Konserttisali", "en": "Musiikkitalo Concert Hall" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-3792/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnlljp7ui", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493884, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-24T13:44:18.590773Z", "last_modified_time": "2025-11-24T13:44:18.590788Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/92d56960-7cd5-4b36-a63d-004e0e623d60.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Esa Esander ja Momentum kirjat", "alt_text": "Kirjailija Esa Esander ja hänen kirjansa Repaleisia suhteita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493884/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T10:45:15.245832Z", "last_modified_time": "2025-11-24T14:25:20.899124Z", "date_published": "2025-11-24T10:37:00Z", "start_time": "2025-12-16T15:30:00Z", "end_time": "2025-12-16T17: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": "Esikoiskirjailija Esa Esander kertoo kirjastaan Repaleisia suhteita (Momentum Kirjat 2025)." }, "info_url": null, "description": { "fi": "<p><strong>Tervetuloa Repaleisia suhteita -kirjan julkaisutilaisuuteen. Kirjan kirjoittaja, esikoiskirjailija Esa Esander kertoo kirjastaan.</strong></p><p>Kirja kertoo fiktiivisen tarinan nykyelämästä, kun halutaan poistaa yksinäisyys ja etsitään rakkautta ja kumppania. Mutta ei kuitenkaan tiedetä minkälaista? Erotiikka on vahvasti läsnä tarinassa. </p><p>Kirjassa teemana on myös veljesten viha-ystävyys ja oman itsensä hyväksyminen. Ja ikuinen kasvaminen ja kehittyminen. Kirja kuvaa kuinka ihmiset voivat kehittyä koko ajan. Hyväksymällä itsensä ja elämällä täysillä.</p><p>Kirja on tragikoomisen hauska ja teksti ilkikurisen mukaansatempaavaa ja koukuttavaa lukijoiden mielestä. </p><p>Kirjan tarina on tarkoitettu kaikille aikuisille. Heidän on takuulla helppo samaistua kirjan tapahtumiin.</p>" }, "name": { "fi": "Repaleisia Suhteita -kirjan julkaisutilaisuus" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kaija" }, "provider": { "fi": "Esa Esander" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlljp7ui/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67077", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493874, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-24T12:12:37.412134Z", "last_modified_time": "2025-11-24T12:12:37.412151Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777785.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493874/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T12:12:37.351962Z", "last_modified_time": "2025-11-24T13:12:34.262609Z", "date_published": null, "start_time": "2026-01-08", "end_time": "2026-01-30", "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": "Olga Niekrasova on palkittu ukrainalainen ohjaaja, käsikirjoittaja ja kuvataiteilija.", "sv": "Olga Niekrasova är en prisbelönt ukrainsk regissör, manusförfattare och bildkonstnär vars arbete sträcker sig över film, fotografi, poesi och blandformer.", "en": "Olga Niekrasova is an award-winning Ukrainian director, screenwriter, and visual artist whose work unfolds across film, photography, poetry, and mixed media." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F5D3255AFF8ED6F90774B424BEFB9A62/Olga_Niekrasova_Valon_ja_varjon_sirpaleet", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F5D3255AFF8ED6F90774B424BEFB9A62/Olga_Niekrasova_Fragment_av_ljus_och_skugga", "en": "http://www.malmitalo.fi/en/events/event/F5D3255AFF8ED6F90774B424BEFB9A62/Olga_Niekrasova_Fragments_of_Light_and_Shadow" }, "description": { "fi": "<p>Olga Niekrasova on palkittu ukrainalainen ohjaaja, käsikirjoittaja ja kuvataiteilija.</p><p>Hänen työnsä ulottuvat elokuvasta valokuvaukseen, runouteen ja sekoitettuihin medioihin. Hänen toimintansa perustuu kokeiluun, ja se poistaa rajat eri taiteenalojen välillä luoden hybridejä muotoja, jotka sijoittuvat elokuvan, installaation ja performanssin välimaastoon. Yhdistämällä visuaalisen ja auditiivisen, lyyrisen ja sosiaalisen hän avaa uusia tiloja pohdinnalle trauman, selviytymisen ja inhimillisen yhteyden leikkauspisteistä.</p><p>Olga Niekrasovan elokuvat ja projektit on esitetty kansainvälisesti Euroopassa, Yhdysvalloissa ja Isossa-Britanniassa, ei vain elokuvateattereissa, vaan myös taidegallerioissa, kulttuurifoorumeilla ja poliittisissa instituutioissa. Hänen toimintansa osoittaa poikkeuksellista monipuolisuutta, sillä se yhdistää taiteelliset, siviilit ja julkiset tilat, säilyttäen sekä esteettisen terävyyden että sosiaalisen vaikuttavuuden.</p><p>Kokeellinen mutta syvästi inhimillinen, lyyrinen mutta horjumaton tyyli muuttaa henkilökohtaiset ja kollektiiviset muistot immersiivisiksi kokemuksiksi, jotka hämärtävät näkyvän ja näkymättömän rajat. Kerroksellisten medioiden ja fragmentoitujen tarinoiden käyttö luo aistillisen kielen, joka haastaa perinteisen tarinankerronnan ja vie yleisön elokuvalliseen ja emotionaaliseen matkaan, joka jää mieleen pitkäksi aikaa.</p><p>Helsingin Taiteilijaseura, Helsingin kulttuurikeskus Malmitalo ja Malmitalon galleria esittelevät “Valon ja varjon sirpaleet”, monialaisen näyttelyn, jonka on toteuttanut palkittu ukrainalainen ohjaaja, käsikirjoittaja ja kuvataiteilija Olga Niekrasova. Kokeellisten lyhytelokuvien, mustavalkoisen digitaalisen valokuvauksen ja nauhoitetun runouden yhdistelmä johdattaa yleisön syvälliseen tutkimusmatkaan muistin, siirtymisen, selviytymisen ja inhimillisen yhteyden teemoihin.</p><p>Vapaa pääsy</p>", "sv": "<p>Olga Niekrasova är en prisbelönt ukrainsk regissör, manusförfattare och bildkonstnär vars arbete sträcker sig över film, fotografi, poesi och blandformer.</p><p>Hennes praktik är rotad i experiment, och upplöser gränserna mellan discipliner för att skapa hybrida former som befinner sig någonstans mellan film, installation och performance. Genom att förena det visuella och auditiva, det lyriska och det sociala, öppnar hon nya rum för reflektion över trauma, motståndskraft och mänsklig kontakt.</p><p>Olga Niekrasovas filmer och projekt har visats internationellt i Europa, USA och Storbritannien, inte bara på biografer utan också i konstgallerier, kulturforum och politiska institutioner. Hennes praktik visar på anmärkningsvärd mångsidighet, där hon engagerar konstnärliga, civila och offentliga rum samtidigt som hon upprätthåller både estetisk skärpa och social påverkan.</p><p>Med en stil som är experimentell men djupt mänsklig, lyrisk men orädd, omvandlar Olga Niekrasova personliga och kollektiva minnen till uppslukande upplevelser som suddar ut gränsen mellan synligt och osynligt. Hennes användning av lager av medier och fragmenterade berättelser skapar ett sensoriskt språk som utmanar konventioner för berättande och leder publiken på en filmisk och emotionell resa som dröjer sig kvar långt efter mötet.</p><p>Helsingfors Konstnärsgille, Helsingfors kulturcentrum Malmitalo och Malmitalo Galleri presenterar “Fragment av ljus och skugga”, en tvärdisciplinär utställning av den prisbelönade ukrainska regissören, manusförfattaren och bildkonstnären Olga Niekrasova. Genom en suggestiv kombination av experimentella kortfilmer, monokrom digital fotografi och inspelad poesi bjuder Niekrasova in publiken till en uppslukande utforskning av minne, förflyttning, motståndskraft och mänskliga band.</p>", "en": "<p>Olga Niekrasova is an award-winning Ukrainian director, screenwriter, and visual artist whose work unfolds across film, photography, poetry, and mixed media.</p><p>Her practice is rooted in experimentation, dissolving the boundaries between disciplines to create hybrid forms that exist somewhere between cinema, installation, and performance. By merging the visual and the auditory, the lyrical and the social, she opens new spaces for reflection on the intersections of trauma, resilience, and human connection.</p><p>Olga Niekrasova’s films and projects have been showcased internationally across Europe, the United States, and the United Kingdom, appearing not only in cinemas but also in art galleries, cultural forums, and political institutions. Her practice demonstrates remarkable versatility, engaging with artistic, civic, and public spaces while maintaining both aesthetic urgency and social impact.</p><p>With a style that is experimental yet deeply human, lyrical yet unflinching, Olga Niekrasova transforms personal and collective memory into immersive experiences that blur the lines between the visible and the unseen. Her use of layered media and fragmented narratives creates a sensorial language that unsettles conventions of storytelling, leading audiences into a cinematic and emotional journey that lingers long after the encounter.</p><p>The Helsinki Artists’ Association, Helsinki Cultural Centre Malmitalo, Malmitalo Gallery present “Fragments of Light and Shadow”, a multidisciplinary exhibition by award-winning Ukrainian director, screenwriter, and visual artist Olga Niekrasova. Through an evocative fusion of experimental short films, monochrome digital photography, and recorded poetry, Olga Niekrasova invites audiences into an immersive exploration of memory, displacement, resilience, and human connection.</p>" }, "name": { "fi": "Olga Niekrasova: Valon ja varjon sirpaleet", "sv": "Olga Niekrasova: Fragment av ljus och skugga", "en": "Olga Niekrasova: Fragments of Light and Shadow" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67077/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67223", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/out-ofsynckingzcafe-puheitajatekoja-4016787/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/out-ofsynckingzcafe-puheitajatekoja-4016787/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/out-ofsynckingzcafe-puheitajatekoja-4016787/" }, "description": null, "price": { "fi": "7 € / 20 / 0 €", "sv": "7 € / 20 / 0 €", "en": "7 € / 20 / 0 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491267, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-03T11:12:26.018084Z", "last_modified_time": "2025-11-03T11:12:26.018096Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778358.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491267/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-30T13:13:22.240432Z", "last_modified_time": "2025-11-24T13:12:30.689725Z", "date_published": null, "start_time": "2025-11-29T17: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": "Drag king poikabändi Out of Sync on syksyn ajan jakanut drag king-kokemustaan työpajasarjan merkeissä, joka huipentuu ★Kingz Café - words & action★ -tapahtumaan!", "en": "Your favourite drag king boyband Out of Sync has been sharing their tips’n’tricks for new drag kings in workshop series that finalises in ★Kingz Café - words & action★ at Kulttuurikeskus Caisa!" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/CCB141C6A60723A20A19CCF4FF7A62A0/Out_of_Sync_Kingz_Caf_puheita_ja_tekoja_", "sv": "http://www.caisa.fi/sv/evenemang/event/CCB141C6A60723A20A19CCF4FF7A62A0/Out_of_Sync_Kingz_Caf_puheita_ja_tekoja_", "en": "http://www.caisa.fi/en/events/event/CCB141C6A60723A20A19CCF4FF7A62A0/_Kingz_Caf_-_words_action_" }, "description": { "fi": "<p>Drag king poikabändi Out of Sync on syksyn ajan jakanut drag king-kokemustaan työpajasarjan merkeissä, joka huipentuu ★Kingz Café - words & action★ -tapahtumaan!</p><p>Current political vibes on ajanut lempipoikabändimme toimistoon miettimään miksi on niin vaikeaa ryhtyä sanoista tekoihin. Faksit on lähetetty, on toiminnan aika.</p><p>Words & action -esitysilta on drag kingeyden ympärillä hyörivä, tapahtuma, jossa kingeyden ilmentymiä etsitään paneelikeskusteluissa ja esityksissä. Illan aikana lavalla hurmaavat sekä kokeneemmat drag kingit, että Kingz cafe -työpajasarjassa syksyllä taitojaan hioneet uudet tulokkaat.</p><p>Tervetuloa Caisaan nauttimaan, yllättymään ja reflektoimaan kanssamme!</p><p>Esiintyjät: Kiukkupussy, Vamp Master Brown, Slaya Bit, Out of Sync + tuoreet drag kingit Kingz Café- työpajasarjasta (TBA)</p><p>Panel talk by JÄBÄT&TUNTEET: “Playtime: Performing masculinities”<br>Kiukkupussy<br>Vamp Master Brown<br>Out of Sync<br>Moderator: Jäbät&Tunteet</p><p><b>Valtuusto 150 v-etu</b> <br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille! <br> <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20890351/?affiliate=FSF=\">TÄSTÄ</a></u></p><p>Kesto: 1,5 h<br>Esityksen kielet: suomi, englanti<br>Ikäsuositus: +16</p>", "en": "<p>Your favourite drag king boyband Out of Sync has been sharing their tips’n’tricks for new drag kings in workshop series that finalises in ★Kingz Café - words & action★ at Kulttuurikeskus Caisa!</p><p>Current political vibes have driven your favourite boy band back to office to reflect on why it is so hard to move from words to actions. The faxes have been sent, it's time for action.</p><p>Words & action is a performance evening twirling around the theme: drag kings?! Together we are looking for the answers to this in panel discussions and performances. On the stage you will be charmed by both seasoned drag kings as well as fresh newcomers from the Kingz Café workshop series. <br>Come to enjoy, get surprised and reflective with us at Caisa!<br>Performers: Kiukkupussy, Vamp Master Brown, Slaya Bit, Out of Sync + fresh drag kings from workshop series Kingz Café (TBA)</p><p>Panel talk by JÄBÄT&TUNTEET: “Playtime: Performing masculinities”<br>Kiukkupussy<br>Vamp Master Brown<br>Out of Sync<br>Moderator: Jäbät&Tunteet</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20890351/?affiliate=FSF\">HERE</a></u></p>" }, "name": { "fi": "Out of Sync: ★ Kingz Café – puheita ja tekoja ★", "sv": "Out of Sync: ★ Kingz Café – puheita ja tekoja ★", "en": "★Kingz Café - words & action★" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67223/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnlmc2uxe", "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": 1493880, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-24T12:15:38.689945Z", "last_modified_time": "2025-11-24T12:15:38.689962Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c26885c9-7a42-41ca-b62e-055d0fa0226d.jpg", "name": "Maalaus: Diana Khazieva", "cropping": "0,194,889,1084", "photographer_name": "", "alt_text": "Kuvassa on on maalattu henkilö", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493880/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T12:17:09.689382Z", "last_modified_time": "2025-11-24T12:17:25.224311Z", "date_published": null, "start_time": "2025-11-25T06:00:00Z", "end_time": "2025-12-07T16: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 ihastelemaan Japanin myytit-näyttelyä Salonkiin. Näyttely on esillä 7.12. asti. näyttelyseinällä." }, "info_url": null, "description": { "fi": "<p>Japanin myytit -taidenäyttely, jossa japanilaiset myytit saavat kuvallisen muodon.</p><p><br></p><p>Näyttelyssä tuodaan esiin japanilaishenkisiä teoksia, joissa yhdistyvät myytit ja luonnon kauneus.</p><p><br></p><p>Näyttelyssä kurki, onnen, rauhan ja pitkän iän symboli, liitää teosten läpi. Mukana on myös ihmishahmoja ja luontokuvia, joissa yhdistyvät tarkka havainnointi ja sisäinen rauha.</p><p><br></p><p>Teokset ammentavat herkkyydestä, rauhasta ja luonnon tarkasta havainnoinnista — kuin siivenisku veden pinnalla.</p><p><br></p><p>Tervetuloa!</p>" }, "name": { "fi": "Japanin myytit -Diana Khazievan taidenäyttely" }, "provider_contact_info": null, "location_extra_info": { "fi": "Näyttelyseinä" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlmc2uxe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnllu7qli", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "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": 1493774, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-11T11:59:15.199974Z", "last_modified_time": "2025-11-11T11:59:15.199990Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8b1a8f38-4425-4598-9f0c-acec5cb367a5.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "Crip cine", "alt_text": "Crip cine kylässä 2025 logokuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493774/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agnhfys7v4/?format=api" } ], "created_time": "2025-11-24T11:53:34.502344Z", "last_modified_time": "2025-11-24T12:00:38.895266Z", "date_published": null, "start_time": "2025-12-17T13:00:00Z", "end_time": "2025-12-17T15: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 Crip Ciné kylässä -lyhytelokuvanäytökseen ja elokuvakokemusta syventävään työpajaan " }, "info_url": { "fi": "https://espoocine.fi/ohjelmisto/crip-cine-kylassa/" }, "description": { "fi": "Crip Ciné kylässä: lyhytelokuvanäytös ja työpaja<p><br></p><p>Tervetuloa Crip Ciné kylässä -lyhytelokuvanäytökseen ja elokuvakokemusta syventävään työpajaan .</p><p><strong>Lippulaivan kirjasto / Monitoimitila Salonki 3.12.2025 klo 11–13</strong></p><p><strong>Sellon kirjasto / Akseli-sali 4.12.2025 klo 10.30–12.30</strong></p><p><strong>Entressen kirjasto / Sininen huone 10.12.2025 klo 14–16</strong></p><p><strong>Sellon kirjasto / Akseli-sali 17.12.2025 klo 15–17</strong></p><p>Tapahtuman järjestävät Espoo Ciné ja Mediametka ry. yhteistyössä Espoon kaupungin kulttuuripalveluiden kanssa. Näytökseen ja työpajaan on vapaa pääsy. </p><p>Elokuvanäytöksessä nähdään kolme lyhytelokuvaa, jotka käsittelevät osallisuutta ja oman elämän mielekkyyttä kekseliäällä tavalla, eikä huumoriakaan ole unohdettu. <strong>Ranskalaisen Audrey Sanglan The Blooming</strong> kuvaa vankilasta vapautuvan kuuron naisen yrityksiä löytää yhteisö, johon kuulua. Argentiinalaislähtöisen <strong>Julieta Tetelbaumin Joy </strong>on kuvaus autismin kirjolla olevasta naisesta, joka on koukussa sokeriin eikä lakkaa ajattelemasta entistä nuoruuden tyttöystäväänsä. Sahalahtelaisen monitaiteilija <strong>Anssi Kasitonnin Penan erikoiskuljetus</strong> on yllättäväkin elokuva Penasta, joka on ollut 50 vuotta tien päällä ja on edelleen. Vieraskielisissä elokuvissa on suomenkielinen tekstitys. </p><p><br></p><p>Työpajassa keskustellaan elokuvista sekä niiden teemoista ja herättämistä ajatuksista Erätauko-menetelmää ja keskustelevaa elokuvantarkastelua hyödyntäen. Mediametkan asiantuntija fasilitoi keskustelua ja huolehtii siitä, että jokainen osallistuja saa tilaa omalle äänelleen sekä mahdollisuuden kuulla muiden näkökulmia. Työpajan lopuksi kootaan yhteen keskustelussa esiin nousseita havaintoja ja pohditaan, mitä elokuvien katselu herätti. Osallistujat saavat mukaansa uusia ajatuksia, ideoita ja näkökulmia, joita voi soveltaa omassa arjessa. </p><p><br></p><p>Crip Ciné on osana Espoo Ciné -festivaalin ympärivuotista ohjelmistoa koottava kokonaisuus, joka keskittyy vammaisten elämän olosuhteita esiintuoviin dokumentti- ja fiktioelokuviin sekä vammaisten elokuvantekijöiden teoksiin.</p><p>Crip Cine kylässä -kiertueella on kaksi tavoitetta: tehdä elokuvakulttuuria saavutettavammaksi sekä levittää vammaispoliittisia ja vammaisten tekijöiden elokuvia uusille yleisöille, sekä vammaisille että vammattomille katsojille.</p><p>Mediametka ry on Suomen johtava käytännön mediakasvatuksen asiantuntijajärjestö. Mediametkan toiminta kehittää kaikenikäisten mediataitoja ja luovuutta sekä toteuttaa laadukasta elokuvakulttuuritoimintaa.</p><p><strong>Syksyn Crip Ciné kylässä -kiertuetta tukee Espoon kaupunki. Vuoden 2025 Crip Ciné -hankkeen päärahoittajat ovat opetus- ja kulttuuriministeriö ja Suomen kulttuurirahasto.</strong></p>" }, "name": { "fi": "Crip Ciné kylässä: lyhytelokuvanäytös ja työpaja" }, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli" }, "provider": { "fi": "Tapahtuman järjestävät Espoo Ciné ja Mediametka ry. yhteistyössä Espoon kaupungin kulttuuripalveluiden kanssa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnllu7qli/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnhfytxse", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493774, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-11T11:59:15.199974Z", "last_modified_time": "2025-11-11T11:59:15.199990Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8b1a8f38-4425-4598-9f0c-acec5cb367a5.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "Crip cine", "alt_text": "Crip cine kylässä 2025 logokuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493774/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agnhfys7v4/?format=api" } ], "created_time": "2025-11-11T12:03:15.525119Z", "last_modified_time": "2025-11-24T12:00:22.292989Z", "date_published": null, "start_time": "2025-12-03T09:00:00Z", "end_time": "2025-12-03T11: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 Crip Ciné kylässä -lyhytelokuvanäytökseen ja elokuvakokemusta syventävään työpajaan " }, "info_url": { "fi": "https://espoocine.fi/ohjelmisto/crip-cine-kylassa/" }, "description": { "fi": "Crip Ciné kylässä: lyhytelokuvanäytös ja työpaja<p><br></p><p>Tervetuloa Crip Ciné kylässä -lyhytelokuvanäytökseen ja elokuvakokemusta syventävään työpajaan .</p><p><strong>Lippulaivan kirjasto / Monitoimitila Salonki 3.12.2025 klo 11–13</strong></p><p><strong>Sellon kirjasto / Akseli-sali 4.12.2025 klo 10.30–12.30</strong></p><p><strong>Entressen kirjasto / Sininen huone 10.12.2025 klo 14–16</strong></p><p><strong>Sellon kirjasto / Akseli-sali 17.12.2025 klo 15–17</strong></p><p>Tapahtuman järjestävät Espoo Ciné ja Mediametka ry. yhteistyössä Espoon kaupungin kulttuuripalveluiden kanssa. Näytökseen ja työpajaan on vapaa pääsy. </p><p>Elokuvanäytöksessä nähdään kolme lyhytelokuvaa, jotka käsittelevät osallisuutta ja oman elämän mielekkyyttä kekseliäällä tavalla, eikä huumoriakaan ole unohdettu. <strong>Ranskalaisen Audrey Sanglan The Blooming</strong> kuvaa vankilasta vapautuvan kuuron naisen yrityksiä löytää yhteisö, johon kuulua. Argentiinalaislähtöisen <strong>Julieta Tetelbaumin Joy </strong>on kuvaus autismin kirjolla olevasta naisesta, joka on koukussa sokeriin eikä lakkaa ajattelemasta entistä nuoruuden tyttöystäväänsä. Sahalahtelaisen monitaiteilija <strong>Anssi Kasitonnin Penan erikoiskuljetus</strong> on yllättäväkin elokuva Penasta, joka on ollut 50 vuotta tien päällä ja on edelleen. Vieraskielisissä elokuvissa on suomenkielinen tekstitys. </p><p><br></p><p>Työpajassa keskustellaan elokuvista sekä niiden teemoista ja herättämistä ajatuksista Erätauko-menetelmää ja keskustelevaa elokuvantarkastelua hyödyntäen. Mediametkan asiantuntija fasilitoi keskustelua ja huolehtii siitä, että jokainen osallistuja saa tilaa omalle äänelleen sekä mahdollisuuden kuulla muiden näkökulmia. Työpajan lopuksi kootaan yhteen keskustelussa esiin nousseita havaintoja ja pohditaan, mitä elokuvien katselu herätti. Osallistujat saavat mukaansa uusia ajatuksia, ideoita ja näkökulmia, joita voi soveltaa omassa arjessa. </p><p><br></p><p>Crip Ciné on osana Espoo Ciné -festivaalin ympärivuotista ohjelmistoa koottava kokonaisuus, joka keskittyy vammaisten elämän olosuhteita esiintuoviin dokumentti- ja fiktioelokuviin sekä vammaisten elokuvantekijöiden teoksiin.</p><p>Crip Cine kylässä -kiertueella on kaksi tavoitetta: tehdä elokuvakulttuuria saavutettavammaksi sekä levittää vammaispoliittisia ja vammaisten tekijöiden elokuvia uusille yleisöille, sekä vammaisille että vammattomille katsojille.</p><p>Mediametka ry on Suomen johtava käytännön mediakasvatuksen asiantuntijajärjestö. Mediametkan toiminta kehittää kaikenikäisten mediataitoja ja luovuutta sekä toteuttaa laadukasta elokuvakulttuuritoimintaa.</p><p><strong>Syksyn Crip Ciné kylässä -kiertuetta tukee Espoon kaupunki. Vuoden 2025 Crip Ciné -hankkeen päärahoittajat ovat opetus- ja kulttuuriministeriö ja Suomen kulttuurirahasto.</strong></p>" }, "name": { "fi": "Crip Ciné kylässä: lyhytelokuvanäytös ja työpaja" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki" }, "provider": { "fi": "Tapahtuman järjestävät Espoo Ciné ja Mediametka ry. yhteistyössä Espoon kaupungin kulttuuripalveluiden kanssa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhfytxse/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnllu7rha", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "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": 1493774, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-11T11:59:15.199974Z", "last_modified_time": "2025-11-11T11:59:15.199990Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8b1a8f38-4425-4598-9f0c-acec5cb367a5.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "Crip cine", "alt_text": "Crip cine kylässä 2025 logokuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493774/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agnhfys7v4/?format=api" } ], "created_time": "2025-11-24T11:53:00.986897Z", "last_modified_time": "2025-11-24T11:59:19.692153Z", "date_published": null, "start_time": "2025-12-04T08:30:00Z", "end_time": "2025-12-04T10: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": "Tervetuloa Crip Ciné kylässä -lyhytelokuvanäytökseen ja elokuvakokemusta syventävään työpajaan " }, "info_url": { "fi": "https://espoocine.fi/ohjelmisto/crip-cine-kylassa/" }, "description": { "fi": "Crip Ciné kylässä: lyhytelokuvanäytös ja työpaja<p><br></p><p>Tervetuloa Crip Ciné kylässä -lyhytelokuvanäytökseen ja elokuvakokemusta syventävään työpajaan .</p><p><strong>Lippulaivan kirjasto / Monitoimitila Salonki 3.12.2025 klo 11–13</strong></p><p><strong>Sellon kirjasto / Akseli-sali 4.12.2025 klo 10.30–12.30</strong></p><p><strong>Entressen kirjasto / Sininen huone 10.12.2025 klo 14–16</strong></p><p><strong>Sellon kirjasto / Akseli-sali 17.12.2025 klo 15–17</strong></p><p>Tapahtuman järjestävät Espoo Ciné ja Mediametka ry. yhteistyössä Espoon kaupungin kulttuuripalveluiden kanssa. Näytökseen ja työpajaan on vapaa pääsy. </p><p>Elokuvanäytöksessä nähdään kolme lyhytelokuvaa, jotka käsittelevät osallisuutta ja oman elämän mielekkyyttä kekseliäällä tavalla, eikä huumoriakaan ole unohdettu. <strong>Ranskalaisen Audrey Sanglan The Blooming</strong> kuvaa vankilasta vapautuvan kuuron naisen yrityksiä löytää yhteisö, johon kuulua. Argentiinalaislähtöisen <strong>Julieta Tetelbaumin Joy </strong>on kuvaus autismin kirjolla olevasta naisesta, joka on koukussa sokeriin eikä lakkaa ajattelemasta entistä nuoruuden tyttöystäväänsä. Sahalahtelaisen monitaiteilija <strong>Anssi Kasitonnin Penan erikoiskuljetus</strong> on yllättäväkin elokuva Penasta, joka on ollut 50 vuotta tien päällä ja on edelleen. Vieraskielisissä elokuvissa on suomenkielinen tekstitys. </p><p><br></p><p>Työpajassa keskustellaan elokuvista sekä niiden teemoista ja herättämistä ajatuksista Erätauko-menetelmää ja keskustelevaa elokuvantarkastelua hyödyntäen. Mediametkan asiantuntija fasilitoi keskustelua ja huolehtii siitä, että jokainen osallistuja saa tilaa omalle äänelleen sekä mahdollisuuden kuulla muiden näkökulmia. Työpajan lopuksi kootaan yhteen keskustelussa esiin nousseita havaintoja ja pohditaan, mitä elokuvien katselu herätti. Osallistujat saavat mukaansa uusia ajatuksia, ideoita ja näkökulmia, joita voi soveltaa omassa arjessa. </p><p><br></p><p>Crip Ciné on osana Espoo Ciné -festivaalin ympärivuotista ohjelmistoa koottava kokonaisuus, joka keskittyy vammaisten elämän olosuhteita esiintuoviin dokumentti- ja fiktioelokuviin sekä vammaisten elokuvantekijöiden teoksiin.</p><p>Crip Cine kylässä -kiertueella on kaksi tavoitetta: tehdä elokuvakulttuuria saavutettavammaksi sekä levittää vammaispoliittisia ja vammaisten tekijöiden elokuvia uusille yleisöille, sekä vammaisille että vammattomille katsojille.</p><p>Mediametka ry on Suomen johtava käytännön mediakasvatuksen asiantuntijajärjestö. Mediametkan toiminta kehittää kaikenikäisten mediataitoja ja luovuutta sekä toteuttaa laadukasta elokuvakulttuuritoimintaa.</p><p><strong>Syksyn Crip Ciné kylässä -kiertuetta tukee Espoon kaupunki. Vuoden 2025 Crip Ciné -hankkeen päärahoittajat ovat opetus- ja kulttuuriministeriö ja Suomen kulttuurirahasto.</strong></p>" }, "name": { "fi": "Crip Ciné kylässä: lyhytelokuvanäytös ja työpaja" }, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli" }, "provider": { "fi": "Tapahtuman järjestävät Espoo Ciné ja Mediametka ry. yhteistyössä Espoon kaupungin kulttuuripalveluiden kanssa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnllu7rha/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnhfytz4q", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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": [], "images": [ { "id": 1493774, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-11T11:59:15.199974Z", "last_modified_time": "2025-11-11T11:59:15.199990Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8b1a8f38-4425-4598-9f0c-acec5cb367a5.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "Crip cine", "alt_text": "Crip cine kylässä 2025 logokuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493774/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agnhfys7v4/?format=api" } ], "created_time": "2025-11-11T11:59:22.811626Z", "last_modified_time": "2025-11-24T11:58:44.172558Z", "date_published": null, "start_time": "2025-12-10T12:00:00Z", "end_time": "2025-12-10T14: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 Crip Ciné kylässä -lyhytelokuvanäytökseen ja elokuvakokemusta syventävään työpajaan " }, "info_url": { "fi": "https://espoocine.fi/ohjelmisto/crip-cine-kylassa/" }, "description": { "fi": "Crip Ciné kylässä: lyhytelokuvanäytös ja työpaja<p><br></p><p>Tervetuloa Crip Ciné kylässä -lyhytelokuvanäytökseen ja elokuvakokemusta syventävään työpajaan .</p><p><strong>Lippulaivan kirjasto / Monitoimitila Salonki 3.12.2025 klo 11–13</strong></p><p><strong>Sellon kirjasto / Akseli-sali 4.12.2025 klo 10.30–12.30</strong></p><p><strong>Entressen kirjasto / Sininen huone 10.12.2025 klo 14–16</strong></p><p><strong>Sellon kirjasto / Akseli-sali 17.12.2025 klo 15–17</strong></p><p>Tapahtuman järjestävät Espoo Ciné ja Mediametka ry. yhteistyössä Espoon kaupungin kulttuuripalveluiden kanssa. Näytökseen ja työpajaan on vapaa pääsy. </p><p>Elokuvanäytöksessä nähdään kolme lyhytelokuvaa, jotka käsittelevät osallisuutta ja oman elämän mielekkyyttä kekseliäällä tavalla, eikä huumoriakaan ole unohdettu. <strong>Ranskalaisen Audrey Sanglan The Blooming</strong> kuvaa vankilasta vapautuvan kuuron naisen yrityksiä löytää yhteisö, johon kuulua. Argentiinalaislähtöisen <strong>Julieta Tetelbaumin Joy </strong>on kuvaus autismin kirjolla olevasta naisesta, joka on koukussa sokeriin eikä lakkaa ajattelemasta entistä nuoruuden tyttöystäväänsä. Sahalahtelaisen monitaiteilija <strong>Anssi Kasitonnin Penan erikoiskuljetus</strong> on yllättäväkin elokuva Penasta, joka on ollut 50 vuotta tien päällä ja on edelleen. Vieraskielisissä elokuvissa on suomenkielinen tekstitys. </p><p><br></p><p>Työpajassa keskustellaan elokuvista sekä niiden teemoista ja herättämistä ajatuksista Erätauko-menetelmää ja keskustelevaa elokuvantarkastelua hyödyntäen. Mediametkan asiantuntija fasilitoi keskustelua ja huolehtii siitä, että jokainen osallistuja saa tilaa omalle äänelleen sekä mahdollisuuden kuulla muiden näkökulmia. Työpajan lopuksi kootaan yhteen keskustelussa esiin nousseita havaintoja ja pohditaan, mitä elokuvien katselu herätti. Osallistujat saavat mukaansa uusia ajatuksia, ideoita ja näkökulmia, joita voi soveltaa omassa arjessa. </p><p><br></p><p>Crip Ciné on osana Espoo Ciné -festivaalin ympärivuotista ohjelmistoa koottava kokonaisuus, joka keskittyy vammaisten elämän olosuhteita esiintuoviin dokumentti- ja fiktioelokuviin sekä vammaisten elokuvantekijöiden teoksiin.</p><p>Crip Cine kylässä -kiertueella on kaksi tavoitetta: tehdä elokuvakulttuuria saavutettavammaksi sekä levittää vammaispoliittisia ja vammaisten tekijöiden elokuvia uusille yleisöille, sekä vammaisille että vammattomille katsojille.</p><p>Mediametka ry on Suomen johtava käytännön mediakasvatuksen asiantuntijajärjestö. Mediametkan toiminta kehittää kaikenikäisten mediataitoja ja luovuutta sekä toteuttaa laadukasta elokuvakulttuuritoimintaa.</p><p><strong>Syksyn Crip Ciné kylässä -kiertuetta tukee Espoon kaupunki. Vuoden 2025 Crip Ciné -hankkeen päärahoittajat ovat opetus- ja kulttuuriministeriö ja Suomen kulttuurirahasto.</strong></p>" }, "name": { "fi": "Crip Ciné kylässä: lyhytelokuvanäytös ja työpaja" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone" }, "provider": { "fi": "Tapahtuman järjestävät Espoo Ciné ja Mediametka ry. yhteistyössä Espoon kaupungin kulttuuripalveluiden kanssa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhfytz4q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnlk2ckr4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493860, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-24T10:09:58.409012Z", "last_modified_time": "2025-11-24T10:09:58.409027Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f2b5f25f-6193-4f9c-94c3-e2b73b085f5c.jpg", "name": "Metsäntaiattaret innostavat Metsävaarin kanssa lapsia musiikillisella matkallaan metsäretkiin sekä lukemisen sekä kirjojen pariin.", "cropping": "106,0,534,427", "photographer_name": "Kuva Jukka Kosonen, Koivu Visuals", "alt_text": "......", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493860/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T10:16:09.848509Z", "last_modified_time": "2025-11-24T10:16:09.848527Z", "date_published": null, "start_time": "2026-04-15T14:30:00Z", "end_time": "2026-04-15T15:15: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": "Metsätontun musiikillinen matka on sadunomainen ja elämyksellinen retki metsään, jossa lapset etsivät Metsätontun ystäviä peikkoja. Tervetuloa!" }, "info_url": null, "description": { "fi": "<p>Metsätontun musiikillinen matka on sadunomainen ja elämyksellinen retki metsään, jossa lapset etsivät Metsätontun ystäviä peikkoja. Peikot kun katosivat samalla kun katosivat lähimetsän puut.</p><p><br></p><p>Lelukavereiden laulukerho, Veera Railio ja Johanna Viksten sekä muusikko Ossi Oikari luovat lasten kanssa metsän maailmaa improvisoiden, leikkien ja laulaen. Jokainen esitys on erilainen. Osa lauluista on valmiina, osa sanoitetaan lasten ehdotuksin.</p><p><br></p><p>Matkalla soivat laulustemmojen lisäksi viulu, ukulelet, perkussiot, kitara ja nokkahuilu.</p><p><br></p><p>Musiikillinen matkaa innostaa lapsia lukemisen ja kirjojen pariin sekä retkiin puistossa ja metsässä.</p><p><br></p><p>Esitys perustuu Aija Käkelä-Laineen ja Päivi Pöyhölän Metsätontun matka -kuvakirjaan. Esityksen on ohjannut lastenkirjailijanakin tunnettu näyttelijä-ohjaaja Minna Kivelä.</p><p><br></p><p>Metsätontun musiikillinen matka toteutuu Koneen Säätiön Metsän puolella -apurahan turvin. Esitys kiertää päiväkoteja, kouluja ja kirjastoja syksyisin ja keväisin 2024 – 2026.</p><p><br></p><p>Esitys kestää 45 minuuttia. Koska esitys on akustinen, ryhmäkoko on enintään 40 – 50 katsojaa.</p>" }, "name": { "fi": "Metsätontun musiikillinen matka" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2ckr4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-2722222222222", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "http://www.lippupalvelu.fi/artist/helsingin-kaupunginorkesteri-tickets/942997?brand=fi_hko" }, "description": { "fi": "Normaalihinta", "sv": "Normala priset", "en": "Normal price" }, "price": { "fi": "9.00 - 17.50 €", "sv": "9.00 - 17.50 €", "en": "9.00 - 17.50 €" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [ { "id": 1491323, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-07T09:12:16.221071Z", "last_modified_time": "2025-11-07T09:12:16.221086Z", "url": "https://helsinginkaupunginorkesteri.fi/sites/default/files/2025-10/tuomas_ylinen_c_marko_rantanen_1920x1080.jpg", "name": "tuomas_ylinen_c_marko_rantanen_1920x1080.jpg", "cropping": "", "photographer_name": "Helsingin kaupunginorkesteri", "alt_text": null, "data_source": "hko", "publisher": "ahjo:u4804001030", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491323/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T10:06:38.983007Z", "last_modified_time": "2025-11-24T10:06:38.983024Z", "date_published": null, "start_time": "2026-01-01T10:25:58Z", "end_time": "2026-01-01T17: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": "Lyhyt.", "sv": "Kort.", "en": "Short." }, "info_url": { "fi": "notarealurlduh.com" }, "description": { "fi": "Tämä on testitapahtuma.", "sv": "Den här är en test.", "en": "This is a test." }, "name": { "fi": "Testinimi", "sv": "Test namn", "en": "Test name" }, "provider_contact_info": null, "location_extra_info": { "fi": "Konserttisali", "sv": "Konsertsalen", "en": "Concert Hall" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-2722222222222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnlk2ctli", "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/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": "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:agnlk2clhi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cltu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cmbe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cmpm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cm4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cnh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cnvq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cobi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cosi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cpaa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cply/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cpye/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cqee/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cqti/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cq74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2crla/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2crzq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2csey/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cs5a/?format=api" } ], "images": [ { "id": 1493861, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-24T09:55:03.793980Z", "last_modified_time": "2025-11-24T09:55:03.793997Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/648cc056-d3e2-48c2-99bb-c95bc9d95037.jpg", "name": "", "cropping": "874,0,3126,2252", "photographer_name": "", "alt_text": "..........", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493861/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T09:52:22.196264Z", "last_modified_time": "2025-11-24T09:55:18.235761Z", "date_published": null, "start_time": "2026-01-08T16:30:00Z", "end_time": "2026-05-21T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule keskustelemaan englantia rennossa porukassa. Kielikahvila on maksuton ja suunnattu kaikille, jotka haluavat keskustella englanniksi.", "sv": "Kom och prata engelska i en avslappnad grupp. Språkcaféet är kostnadsfritt och vänder sig till alla som vill diskutera engelska.", "en": "English discussion cafe every Thursday at 6.30 pm in Lippulaiva Library's communal kitchen Kapyysi. Join us to enhance your English skills. Welcome!" }, "info_url": null, "description": { "fi": "<p>Tule keskustelemaan englantia rennossa porukassa. Kielikahvila on maksuton ja suunnattu kaikille, jotka haluavat keskustella englanniksi tai vahvistaa englannin kielen taitoaan. Kielikahvila järjestetään joka torstai klo 18:30 - 19:45 yhteisökeittiö Kapyysissa. Tervetuloa! Kielikahvilaa vetävät kirjaston asiakkaat.</p>", "sv": "<p>Kom och prata engelska i en avslappnad grupp. Språkcaféet är kostnadsfritt och vänder sig till alla som vill diskutera engelska eller förbättra sina kunskaper i engelska. Språkcaféet äger rum varje torsdag från 18:30 till 19:45 i det gemensamma köket i Kapyys. Varmt välkomna! Språkcaféet arrangeras av bibliotekets låntagare.</p>", "en": "<p>English cafe every Thursday at 6.30 pm in Lippulaiva Library's communal kitchen Kapyysi. Join us to enhance your English skills. No cost, no registration. Just drop by! Everyone is Welcome! The group is organized by the library's customers.</p>" }, "name": { "fi": "Englannin kielen keskusteluryhmä", "sv": "Diskussionsgrupp för engelska", "en": " English discussion group" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kapyysi", "sv": "Kapyysi", "en": "Kapyysi" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2ctli/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnlk2c2we", "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: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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2ctwi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cubm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cumi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cuw4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cvem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cvoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cvzm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cwe4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cwpe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cw3a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cxh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cxse/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cx6e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cyi4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cytq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cy6e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2cziq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2czui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2c2le/?format=api" } ], "images": [ { "id": 1493862, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-24T09:42:22.453387Z", "last_modified_time": "2025-11-24T09:42:22.453402Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5d6b62e2-f022-4d2a-8ce0-da240aaf3955.jpg", "name": "", "cropping": "874,0,3126,2252", "photographer_name": "", "alt_text": "Kuvassa on viisiä henkilöä tekemässä käsitöitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493862/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T09:41:04.113107Z", "last_modified_time": "2025-11-24T09:42:33.598029Z", "date_published": null, "start_time": "2026-01-08T15:30:00Z", "end_time": "2026-05-21T16: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": "Käsityöryhmä toimii omatoimisesti ja jokainen osallistuja tuo omat tarvikkeensa. Tule mukaan neulomaan ja tutustumaan muihin ryhmäläisiin.", "sv": "Hantverksgruppen är självstyrande och varje deltagare tar med sig sina egna tillbehör. Kom och sticka och träffa andra gruppmedlemmar.", "en": "The craft group is self-directed and each participant brings their own supplies. Come along to knit and meet other group members." }, "info_url": null, "description": { "fi": "<p>Käsityöryhmä toimii omatoimisesti ja jokainen osallistuja tuo omat tarvikkeensa.</p><p>Käsityökerho kokoontuu torstaisin klo 17:30 - 19:00 pienessä kokoustila Hytissä.</p><p>Tule mukaan neulomaan ja tutustumaan muihin ryhmäläisiin.</p>", "sv": "<p>Hantverksgruppen är självstyrande och varje deltagare tar med sig sina egna tillbehör.</p><p>Hantverksklubben träffas på torsdagar kl. 17.30-19.00 i det lilla mötesrummet Hytti.</p><p>Kom och sticka och träffa andra gruppmedlemmar.</p>", "en": "<p>The craft group is self-directed and each participant brings their own supplies.</p><p>The craft club meets on Thursdays from 17:30 to 19:00 in the small meeting room Hytti.</p><p>Come along to knit and meet other group members.</p>" }, "name": { "fi": "Käsityökerho", "sv": "Hantverksklubb", "en": "Handicraft club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Hytti", "sv": "Hytti", "en": "Hytti" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2c2we/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnlk2dcay", "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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493864, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-24T09:14:12.270751Z", "last_modified_time": "2025-11-24T09:14:12.270765Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0b610275-77e6-423c-894f-b7b57b5c08b6.png", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kaksi henkilöä tanssii valssiotteella", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493864/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-11-24T09:19:23.346173Z", "last_modified_time": "2025-11-24T09:19:23.346192Z", "date_published": null, "start_time": "2025-12-18T14:30:00Z", "end_time": "2025-12-18T16: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": "Viihdeorkesteri JarmosBand tempaa mukaansa tanssin pyörteisiin.", "sv": "Underhållningsorkestern JarmosBand sveper med dig in i dansens virvlar.", "en": "The entertainment orchestra JarmosBand sweeps you into the whirlwind of dance." }, "info_url": null, "description": { "fi": "<p>Pikkujoulutanssit kirjaston Estradilla torstaina 18.12. klo 16.30-18.00</p><p>Jarmo´s band tanssittaa kirjastolla.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>.Julfestdans på bibliotekets Estrada torsdagen den 18 december, kl. 16.30–18.00.</p><p>Jarmos band spelar dansmusik på biblioteket.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Come dance at our Christmas party on Thursday, December 18, 4:30–6:00 p.m.</p><p>Jarmo's band will be playing dance music at the library.</p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Pikkujoulutanssit ", "sv": "Julfestdans ", "en": "Christmas party dance " }, "provider_contact_info": null, "location_extra_info": { "fi": "Estradi", "sv": "Estradi", "en": "Estradi" }, "provider": { "fi": "Jarmo's Band", "sv": "Jarmo's Band", "en": "Jarmo's Band" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlk2dcay/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnlj6e5ha", "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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T08:15:54.305868Z", "last_modified_time": "2025-11-24T08:17:17.716994Z", "date_published": null, "start_time": "2025-11-30T13:00:00Z", "end_time": "2025-11-30T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Espoonlahden Demareiden 50-vuotisjuhla Salongissa su 30.11. klo 15 alkaen. Tervetuloa!" }, "info_url": null, "description": { "fi": "<p>Espoonlahden Demareiden 50-vuotisjuhla Salongissa su 30.11. klo 15 alkaen. </p><p>Puhujana puolueen puheenjohtaja Antti Lindtman.</p><p>Tilaisuus on kaikille avoin. Tervetuloa!</p>" }, "name": { "fi": "Espoonlahden Demareiden 50-vuotisjuhla" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnlj6e5ha/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:serie-3771653", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?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/iikka-kivi-erityinen-luontosuhde-helsingin-kaupunginteatteri-20001910/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/iikka-kivi-erityinen-luontosuhde-helsingin-kaupunginteatteri-20001910/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/iikka-kivi-erityinen-luontosuhde-helsingin-kaupunginteatteri-20001910/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20001909/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20001910/?format=api" } ], "images": [ { "id": 235436, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.668169Z", "last_modified_time": "2025-02-17T11:16:42.668189Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/iikkakivi_lippupiste_222.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/235436/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T20:16:29.059943Z", "last_modified_time": "2025-11-21T21:15:53.777184Z", "date_published": null, "start_time": "2025-11-20T17:00:00Z", "end_time": "2025-11-21", "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": "Iikka Kivi - Erityinen luontosuhde Ilmapiirin kiristyessä ja jakolinjojen syventyessä on tärkeää muistaa, että yksi asia on meille kaikille yhteinen: Suomen luo" }, "info_url": { "fi": "https://www.lippu.fi/artist/iikka-kivi/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/iikka-kivi/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/iikka-kivi/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Iikka Kivi - Erityinen luontosuhde</p><p>Ilmapiirin kiristyessä ja jakolinjojen syventyessä on tärkeää muistaa, että yksi asia on meille kaikille yhteinen: Suomen luonto.</p><p>Koomikko Iikka Kiven stand up -soolonäytös Erityinen luontosuhde herättelee suomalaisia kokemaan, vaalimaan ja suojelemaan omaa suhdettaan luontoon sekä kysyy, miten karhunkaatajien kansan jälkeläisistä tuli valkoposkihanhista stressaantuvia sähköskuuttaajia.</p><p>Hyväntuulisen piikikkäässä esityksessä esiintyy laaja joukko suomalaisia otuksia hupenevista hömötiaisista roimasti runsastuvaan kesämökkeilijäkantaan. Vaikka aihe on vakava ja luonnon tila huono, esitys ei keskity saarnaamiseen tai syyllistämissormen heilutteluun, vaan pyrkii ennen kaikkea innostamaan, löytämään ratkaisuja ja kannustamaan ihmisiä löytämään oman suhteensa luontoon.</p><p>Iikka Kiven loppuunmyydyille katsomoille esitetty soolo \"Spede on kuollut\" nähtiin vuonna 2019. Uutta sooloa onkin odotettu kuin kevätmuuttajia takatalven keskellä!</p>" }, "name": { "fi": "Iikka Kivi - Erityinen Luontosuhde" }, "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:serie-3771653/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67071", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490873, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-23T13:13:41.017466Z", "last_modified_time": "2025-09-23T13:13:41.017486Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771137.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490873/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2025-09-23T13:13:40.911328Z", "last_modified_time": "2025-11-21T13:12:33.598769Z", "date_published": null, "start_time": "2025-12-11T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule katsomaan elokuvaa Vuotalon Pikkusaliin yksin tai kavereiden kanssa!", "sv": "Kom och titta på film i Nordhusets Lilla sal ensam eller med vänner!", "en": "Come and see a film in Vuotalo’s Small Hall alone or with friends!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/21FF199D005D2DB3416FD1BBD67B5B92/Nuorten_oma_leffailta_Villi_robotti", "sv": "http://www.vuotalo.fi/sv/evenemang/event/21FF199D005D2DB3416FD1BBD67B5B92/Ungdomarnas_egen_filmkvall_Den_vilda_roboten", "en": "http://www.vuotalo.fi/en/events/event/21FF199D005D2DB3416FD1BBD67B5B92/Young_people_s_own_movie_night_The_Wild_Robot_" }, "description": { "fi": "<p>Tule katsomaan elokuvaa Vuotalon Pikkusaliin yksin tai kavereiden kanssa!</p><p>Nuoret ovat itse valinneet näytettävän elokuvan.</p><p>Marraskuussa kerromme nuorisopalveluiden ja Vuotalon mediakanavissa (Instagram), mikä elokuva näytetään. Vuotalo tarjoaa elokuvaillassa popparit.</p><p>Osallistujien lukumäärä: max 50<br>Elokuvailtaan ei tarvitse ilmoittautua ennakkoon. <br>Kohderyhmä 12–18-v<br>Paikka: Vuotalo, Pikkusali (K-kerroksessa), Mosaiikkitori 2</p>", "sv": "<p>Kom och titta på film i Nordhusets Lilla sal ensam eller med vänner!</p><p>Ungdomarna har själva valt vilken film som ska visas.</p><p>I november meddelar vi vilken film som kommer att visas på ungdomstjänsternas och Vuotalos mediekanaler (Instagram). Nordhuset bjuder på popcorn under biokvällen.</p><p>Antal deltagare: max 50<br>Det är inte nödvändigt att registrera sig i förväg. <br>Målgrupp 12–18 år<br>Plats: Nordhuset, Lilla salen (K-våningen), Mosaiktorget 2</p>", "en": "<p>Come and see a film in Vuotalo’s Small Hall alone or with friends!</p><p>The film being screened has been selected by young people themselves.</p><p>In November, we will announce which film will be screened on the media channels of Youth Services and Vuotalo (Instagram). Vuotalo will provide popcorn at the movie night.</p><p>Number of participants: max 50<br>There is no need to register in advance for the movie night. <br>Target group: ages 12–18<br>Location: Vuotalo, Small Hall (K floor), Mosaiikkitori 2</p>" }, "name": { "fi": "Nuorten oma leffailta: Villi robotti – Operaatio Pulssi", "sv": "Ungdomarnas egen filmkväll: Den vilda roboten – Operaatio Pulssi", "en": "Young people’s own movie night: The Wild Robot – Operation Pulse" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67071/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67550", "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/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/eventseries/name-4022067", "sv": "https://www.lippu.fi/eventseries/name-4022067" }, "description": null, "price": { "fi": "17,80-33,90 €", "sv": "17,80-33,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493853, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-21T12:13:04.714746Z", "last_modified_time": "2025-11-21T12:13:04.714766Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780519.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493853/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-21T12:13:04.562536Z", "last_modified_time": "2025-11-21T12:13:04.911231Z", "date_published": null, "start_time": "2026-01-10T17: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": "Miltä kuulostaa, kun poikabändin klassikot kohtaavat mieskuorolaulun?", "sv": "Hur låter det när boybandsklassiker möter manskörssång ?" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C319CBEF287E7C165C70233149D4FC0A/Young_Men_At_Savoy", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C319CBEF287E7C165C70233149D4FC0A/Young_Men_At_Savoy" }, "description": { "fi": "<p>Miltä kuulostaa, kun poikabändin klassikot kohtaavat mieskuorolaulun?</p><p>Uudenlainen show-tuotanto <b>Young Men at Savoy</b> tarjoaa poikabändimusiikin suurimmat klassikot. 50 hengen mieskuoro nousee lavalle laulamaan kaikkea Jackson 5:stä One Directioniin ja korealaiseen BTS:ään.</p><p><b>Wasa Sångargilletin</b> show koostuu 15 täysin uudesta mieskuorolle kirjoitetusta sovituksesta. Kuoroa säestävät eräät Pohjanmaan eturivin orkesterimuusikot kapellimestari <b>Mikael Svarvarin</b> johdolla. Solistina näet musikaaliartistin <b>Filip Vikströmin</b> ja kuoron omia jäseniä.</p><p>Kuorolla oli kolme konserttia Vaasassa keväällä. 1000 lippua myytiin loppuun hetkessä. Nyt sinulla on mahdollisuus kokea mieskuoromusiikkia, Savoyssa Helsingissä, muodossa jota et ole koskaan ennen nähnyt.</p><p>Arvostelu Vasabladet 9.5.2025 (käännös)</p><p><i>\"Kun yleisön suosionosoitukset eivät näytä loppuvan 'We want more! We want more!' huutojen keskellä, ja laulajat antavat yleisölle yläfemmat poistuessaan salista, tietää: heillä oli hetkensä poikabändintähtinä ja me saimme olla mukana siinä.\"</i> - Isabella Lindell</p><p>Kapellimestari Stefan Wikman<br>Orkesteri: Mikael Svarvar, Janne Hyöty, Marcus Söderström, Patrick Lax ja Johnny Nordström<br>Tanssijat: Kalle ja Silas Lorenz<br>Ohjaaja ja koreografi: Isa Lindgren-Backman</p><p>Kesto n. 1 h 10 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>Hur låter det när boybandsklassiker möter manskörssång ?</p><p>Den nyskapande showproduktionen <b>Young Men at Savoy</b> bjuder på boybandsmusikens största klassiker. En manskör på 50 personer ställer sig på scen för att sjunga allt från Jackson 5 till One Direction och koreanska BTS.</p><p><b>Wasa Sångargilles</b> show består av 15 helt nyskrivna arrangemang för manskör. Kören ackompanjeras av några av Österbotten främsta orkestermusiker ledda av kapellmästaren <b>Mikael Svarvar</b>. Som solist ser du musikalsångaren <b>Filip Vikström</b> och körens egna medlemmar.</p><p>Kören hade tre konserter i Vasa på våren. 1000 biljetter sålde slut på nolltid. Nu har du chansen att uppleva manskörsmusik, på Savoy i Helsingfors, i en tappning du aldrig sett förr.</p><p>Recension Vasabladet 9.5.2025</p><p><i>-När publikens applåder inte tycks sina under ropen \"We want more! We want more!\" och sångarna ger high-fives till publiken på väg ut från salen vet man: de har haft sin stund som pojkbandsstjärnor och vi fick vara med om det.”</i> -Isabella Lindell</p><p>Dirigent Stefan Wikman<br>Orkester: Mikael Svarvar, Janne Hyöty, Marcus Söderström, Patrick Lax och Johnny Nordström<br>Dansare: Kalle och Silas Lorenz<br>Regissör och koreograf: Isa Lindgren-Backman</p><p>Längd: ca 70, minuter utan paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>" }, "name": { "fi": "Young Men At Savoy", "sv": "Young Men At Savoy" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Wasa Sångargille r.f.", "sv": "Wasa Sångargille r.f." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67550/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67249", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491307, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-05T13:12:05.056578Z", "last_modified_time": "2025-11-05T13:12:05.056589Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780517.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491307/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-11-05T13:12:04.982074Z", "last_modified_time": "2025-11-21T12:12:58.113346Z", "date_published": null, "start_time": "2025-11-21T08:00:00Z", "end_time": "2025-11-21T17: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": "Luvassa on taaperodiskoa, Ursan planetario -näytökset, lauantaihin valmistautumista, talon koristelua ja tanssimista somalinaisten voimauttavissa tansseissa.", "sv": "Det kommer att ordnas Småbarnsdisco (Taaperodisko), Ursas planetarievisningar, vi gör oss i ordning inför lördagen, dekorerar huset och dansar med i somaliska kvinnors kraftgivande danser.", "en": "The week promises activities such as a toddler disco, Ursa Planetarium shows, preparations for Saturday, decorating the house and dancing the empowering dances of Somali women." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F3A58427D809A012B0E2B87448D2B0D5/Valon_juhla_Kohti_valoa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F3A58427D809A012B0E2B87448D2B0D5/Ljusets_fest_Mot_ljuset", "en": "http://www.malmitalo.fi/en/events/event/F3A58427D809A012B0E2B87448D2B0D5/Celebration_of_light_Towards_the_light" }, "description": { "fi": "<p>Luvassa on taaperodiskoa, Ursan planetario -näytökset, lauantaihin valmistautumista, talon koristelua ja tanssimista somalinaisten voimauttavissa tansseissa.</p><p>Kerätään huolet ja murheet poltettavaksi Maria Baric Companyn tuliteatterinäytökseen. Mukana mahdollisesti myös muita työpajoja!</p><p><b>Aikataulu</b> <br>klo 10–11 Taaperodisko, kirjasto <br>klo 14–14.30, 14.45–15.15 ja 15.30–16 Ursan Planetaario-näytökset (25 ihmistä per näytös)<br>klo 14–18 Lauantain yhteisruokailun valmistelu Varustamolla (kulttuurikokki Jyrki Tsutsunen, Kohtaus Ry, Varustamo/Waste&Feast) <br>klo 15–18 Parven koristelua yhdessä asukkaiden kanssa (yhteistyössä Malmitalo ja Kaupunkiolohuone Kohtaus Malmi) <br>klo 17–17.45 Tulilinnun kyynel – murheidenkeruutyöpaja (Maria Baric Company), Malmitalon edustalla <br>klo 17.15–17.45 Buraanbur - somalinaisten voimauttavat tanssit, aulassa <br>klo 18–18.30 Pegasos-tuliteatteriesitys, (Maria Baric Company)</p><p><b>Taaperodisko</b> <br>Musiikkia ja diskopallon loistetta taaperoille ja aikuisille! Hauskoja tanssileikkejä ja pillimehut halukkaille janojuomaksi. Tilaan mahtuu rajallinen määrä bilettäjiä kerrallaan.</p><p><b>Ursan Planetaario -näytökset</b> <br>Valojen sammuessa planetaarion sisällä paljastuu kosmos pienoiskoossa: silmien tottuessa pimeään taivaalta erottuu tuhansittain tähtiä ja avaruuden olioita. Lumoavia planetaarionäytöksiä nähdään kolme kappaletta, sisään mahtuu 20 ihmistä kerrallaan.</p><p><b>Tulilinnun kyynel – murheidenkeruutyöpaja </b> <br>Ennen illan tuliteatteriesitystä yleisöllä on mahdollisuus vierailla työpajapisteellä kirjailemassa tulilinnun kyyneliin omavalintainen viesti. Kävijöiden viestit kirjoitetaan tai piirretään feeniksin kyyneleen muotoisille paperilappusille, joiden sisään voi kätkeä mitä vain pieniä tai suuria suruja, murheita, harmeja tai huolia, joista haluaisi päästää irti. Tulilinnun kannettavaksi jätettyjä viestejä ei lueta, vaan Feeniks vie ne mukanaan liekkimereen polttaen ne esityksen aikana tuhkaksi ja symbolisoiden mahdollisuuksia löytää uutta voimaa mennä elämässä eteenpäin.</p><p><b>Maria Baric Company – Pegasos</b> <br>Maria Baric Company on kansainvälisesti palkittu itähelsinkiläinen teatteri, joka toimii monipuolisesti esittävän taiteen kentällä. Valon juhlassa nähdään juhlaa varten valmisteltu valonukketeatteria ja tulinukketeatteria yhdistelevä Pegasos, joka on osallistavan ulkoilmakonsertin muotoon puettu valoseikkailu, joka kutsuu kaikenikäiset yhteisölliseen juhlaan liekeiksi leimahtavien toiveiden, elävien tulien ja musiikillisten tarinoiden äärelle.</p><p>Pegasos on vuodesta 2006 toimineen ryhmän 35. kantaesitys, jossa Maria Baric Companyn taiteilijoiden rinnalla esiintyvät myös vapaaehtoiset itähelsinkiläiset seniorit – valon kantajat, jotka tuovat näyttämölle elämänkokemuksensa, läsnäolonsa ja yhteisönsä voiman. Teos on syntynyt itähelsinkiläisiin päiväkoteihin, kouluihin ja aluetapahtumiin jalkautuneista kohtaamisista – ammattitaiteilijoiden ja eri sukupolvien yhteisestä valomatkasta.</p><p><b>Parven koristelua yhdessä asukkaiden kanssa</b> <br>Malmitalon ja Kaupunkiolohuone Kohtaus Malmin talkooväen yhdessä järjestämä parven koristelutuokio, jossa parvi saa juhlavan asun lauantain yhteisruokailua varten.</p><p><b>Buraanbur - somalinaisten voimauttavat tanssit </b> <br>Voimaannuttava tanssiesitys, johon sinut on kutsuttu osallistumaan matalalla kynnyksellä.</p><p><b>Yhtä valon juhlaa koko viikko!</b><br><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/32FACFF71092F07E8EFC76783F3D9684/Valon_viikko_ja_Valon_juhla\">Tutustu koko Valon viikon ohjelmaan</a></u>.</p>", "sv": "<p>Det kommer att ordnas Småbarnsdisco (Taaperodisko), Ursas planetarievisningar, vi gör oss i ordning inför lördagen, dekorerar huset och dansar med i somaliska kvinnors kraftgivande danser.</p><p>Låt oss samla ihop vår oro och våra bekymmer för att bränna dem i Maria Baric Companys eldteaterföreställning. Andra verkstäder kan eventuellt också ingå!</p><p><b>Tidtabell</b><br>10.00–11.00 Småbarnsdiscot (Taaperodisko), biblioteket<br>14.00–14.30, 14.45–15.15 och 15.30–16.00 Ursas Planetarievisningar (25 personer per visning)<br>15.00–18.00 Dekorering av balkongen tillsammans med invånarna (i samarbete med Malms kulturhus och Kaupunkiolohuone Kohtaus Malmi)<br>17-17.45 Eldfågelns tårar – en verkstad för insamling av bekymmer (Maria Baric Company), framför Malms kulturhus<br>17.15–17.45 Buraanbur – somaliska kvinnors stärkande danser, i vestibulen<br>18.00–18.30 Pegasos-eldteaterföreställning, (Maria Baric Company)</p><p><b>Småbarnsdisco (Taaperodisko)</b><br>Musik och discobollens glamour för småbarn och vuxna! Roliga danslekar och sugrörssaft som törstsläckare för dem som vill ha. I lokalen ryms ett begränsat antal firare i taget.</p><p><b>Ursas Planetarievisningar</b><br>När ljuset släcks avslöjas kosmos i miniatyr i planetariet: när ögonen vänjer sig vid mörkret urskiljs tusentals stjärnor och rymdvarelser på himlen. Det ordnas tre förtrollande planetarievisningar: in ryms 30 personer i taget.</p><p><b>Eldfågelns tårar – en verkstad för insamling av bekymmer</b><br>Före kvällens eldteaterföreställning får publiken möjlighet att besöka verkstadspunkten för att skriva ett valfritt meddelande i eldfågelns tårar. Besökarnas meddelanden skrivs eller ritas på tårformade papperslappar, likt fenixens tårar, i vilka man kan gömma små eller stora sorger, bekymmer eller oro som man skulle vilja släppa taget om. De meddelanden som lämnas till eldfågeln som den sedan bär med sig läses inte, utan förs av Fenix till eldhavet, där de bränns till aska under föreställningen och symboliserar möjligheterna att hitta ny styrka för att gå vidare i livet.</p><p><b>Maria Baric Company – Pegasos</b><br>Maria Baric Company är en internationellt prisbelönt teater i Östra Helsingfors, som verkar mångsidigt på scenkonstfältet. Under Ljusets fest ses Pegasos som beretts för festen och som förenar ljus- och elddockteater. Pegasos är ett ljusäventyr i form av en inkluderande utomhuskonsert som bjuder in alla ålderskategorier på en gemensam fest med önskningar som flammar upp, levande eld och musikaliska berättelser.</p><p>Pegasos är den 35:e premiären för gruppen, som har varit verksam sedan 2006, och förutom artisterna i Maria Baric Company medverkar även frivilliga seniorer från östra Helsingfors – ljusbärare som tar med sig sin livserfarenhet, sin närvaro och kraften i sin gemenskap på scenen. Verket har skapats av möten som skett på daghem, i skolor och under regionala evenemang i östra Helsingfors – en gemensam ljusresa för professionella konstnärer och olika generationer.</p><p><b>Dekorera balkongen tillsammans med invånarna</b><br>I dekorationsstunden av balkongen som gemensamt ordnas av talkogänget vid Malms kulturhus och Kaupunkiolohuone Kohtaus Malmi kläs balkongen festligt inför lördagens gemensamma måltid.</p><p><b>Buraanbur – somaliska kvinnors stärkande danser</b><br>En stärkande dansföreställning där du bjuds in att delta med låg tröskel.</p><p><b>En hyllning av ljuset hela veckan!</b><br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/32FACFF71092F07E8EFC76783F3D9684/Ljusets_vecka_\">Se hela programmet under Ljusets vecka.</a></u>.</p>", "en": "<p>The week promises activities such as a toddler disco, Ursa Planetarium shows, preparations for Saturday, decorating the house and dancing the empowering dances of Somali women.</p><p>We will collect our grief and sorrows and set them aflame at Maria Baric Company’s fire theatre performance. Other workshops may also be included!</p><p><b>Schedule</b><br>10.00–11.00 Toddler disco, library<br>14.00–14.30, 14.45–15.15 and 15.30–16.00 Planetarium shows by Ursa (25 people per show)<br>15.00–18.00 Decorating the balcony together with residents (in cooperation with Malmitalo and the urban living room Kohtaus Malmi)<br>17.00–17.45 Tulilinnun kyynel (Tear of a Firebird) – a workshop on collecting sorrows (Maria Baric Company)<br>17.15–17.45 Buraanbur – empowering dances by Somali women<br>18.00–18.30 Pegasos fire theatre performance (Maria Baric Company)</p><p><b>Toddler disco</b><br>Music and sparkling disco balls for toddlers and adults alike! Fun dance games – and juice cartons for the thirsty ones. The space can accommodate a limited number of partygoers at a time.</p><p><b>Ursa Planetarium shows</b><br>When the lights go out, the inside of the planetarium shows the whole cosmos in miniature: as your eyes adjust to the dark, you can start to see thousands of stars and space creatures in the sky. The day will offer three of these enchanting planetarium shows, seating 30 people at a time.</p><p><b>Tear of a Firebird – workshop for collecting sorrows</b><br>Before the evening's fire theatre performance, the audience members will have the chance to visit a workshop and write down a message of their choice to the tears of a firebird. The visitors' messages will be written or drawn on pieces of paper in the shape of a phoenix’s tears, inside which they can hide any small or big sorrows, grievances, worries or concerns they would like to let go of. These messages left for the firebird to carry away will not be read, instead the phoenix will carry them to a sea of flames and burn them to ashes during the performance, symbolising the possibility of finding new strength to move forward in life.</p><p><b>Maria Baric Company – Pegasos</b><br>Maria Baric Company is an internationally acknowledged theatre company based in East Helsinki, working across the field of performing arts. For the Festival of Light, the company has put together the show Pegasos, a combination of light puppet theatre and fire puppetry. It is an adventure of light in the form of an inclusive outdoor concert that invites people of all ages to a communal celebration of wishes flaming to life, living fires and stories accompanied by music.</p><p>Pegasos is the 35th premiere of the group founded in 2006. Alongside the artists of the Maria Baric Company, the show will feature volunteer seniors from East Helsinki – light bearers who bring their life experience, their presence and the power of their community to the stage. The work is based on encounters that have taken place in daycare centres, schools and regional events in East Helsinki – a shared journey of light by professional artists and different generations.</p><p><b>Decorating the gallery together with residents</b><br>A decorating session organised by Cultural Centre Malmitalo and the volunteers of the urban living room Kohtaus Malmi, where the gallery will be given a festive look for Saturday's communal meal.</p><p><b>Buraanbur – empowering dances of Somali women</b><br>An empowering dance performance that also invites the audience to dance.</p><p><b>Celebration of light, all week long!</b><br><u><a href=\"https://malmitalo.fi/en/events/event/32FACFF71092F07E8EFC76783F3D9684/Ljusets_vecka_\">See the full Week of Light programme.</a></u>.</p>" }, "name": { "fi": "Valon juhla: Kohti valoa – Valon viikko", "sv": "Ljusets fest: Mot ljuset – Ljusets vecka", "en": "Celebration of light: Towards the light – Week of Light" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67249/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }