Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=89&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 12731, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=90&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=88&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kulke:67743", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4048010/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4048010/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4048010/" }, "description": null, "price": { "fi": "8€", "sv": "8€", "en": "8€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494120, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T09:13:45.519673Z", "last_modified_time": "2025-12-08T09:13:45.519688Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777314.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494120/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T09:13:45.394229Z", "last_modified_time": "2025-12-08T09:13:45.687282Z", "date_published": null, "start_time": "2025-12-19T13: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, "name": { "fi": "Springsteen: Deliver Me from Nowhere (12) – Kino Helios", "sv": "Springsteen: Deliver Me from Nowhere (12) – Kino Helios", "en": "Springsteen: Deliver Me from Nowhere (12) – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/77F5B9DD976F17DA07A74374FBB1F896/Springsteen_Deliver_Me_from_Nowhere_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/77F5B9DD976F17DA07A74374FBB1F896/Springsteen_Deliver_Me_from_Nowhere_12_", "en": "http://www.malmitalo.fi/en/events/event/77F5B9DD976F17DA07A74374FBB1F896/Springsteen_Deliver_Me_from_Nowhere_12_" }, "description": { "fi": "<p>Elokuva kertoo Bruce Springsteenin vuoden 1982 Nebraska-albumin tekemisestä aikana, jolloin Springsteen oli vielä menestyspaineiden ja menneisyyden haamujen kanssa painiskeleva nuori muusikko, joka sinnitteli maailmanlaajuisen supertähteyden kynnyksellä.</p><p>Springsteenin asunnon makuuhuoneessa New Jerseyssä neliraitanauhurilla äänitetty albumi merkitsi käännekohtaa hänen elämässään, ja sitä pidetään edelleen yhtenä Springsteenin ajattomimmista teoksista — se on karu ja tunnelmaltaan aavemainen akustinen levy, jolla kadonneet sielut etsivät syytä uskoa tulevaan.</p><p>Ikäraja: 12<br>Kesto: 120 min<br>Ensi-ilta: 31.10.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67743/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67744", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494119, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T09:13:44.497961Z", "last_modified_time": "2025-12-08T09:13:44.497979Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777350.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494119/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T09:13:44.351520Z", "last_modified_time": "2025-12-08T09:13:44.670396Z", "date_published": null, "start_time": "2025-12-17T13: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, "name": { "fi": "Sydäntalvi (16) – Kino Helios", "sv": "Sydäntalvi (16) – Kino Helios", "en": "Sydäntalvi (16) – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/800F9018D6E5348D2A2C37FB2573AAE9/Sydantalvi_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/800F9018D6E5348D2A2C37FB2573AAE9/Sydantalvi_16_", "en": "http://www.malmitalo.fi/en/events/event/800F9018D6E5348D2A2C37FB2573AAE9/Sydantalvi_16_" }, "description": { "fi": "<p>Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson.</p><p>Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut Brian Kirk, joka tunnetaan muun muassa Game of Thrones -sarjan jaksoista sekä elokuvasta 21 Bridges. Muissa rooleissa Marc Menchaca, Judy Greer ja Gaia Wise, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Ikäraja: 16<br>Kesto: 98 min<br>Ensi-ilta: 12.12.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67744/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67695", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-21042837/", "sv": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-21042837/", "en": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-21042837/" }, "description": null, "price": { "fi": "6€", "sv": "6€", "en": "6€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494116, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T08:13:00.663134Z", "last_modified_time": "2025-12-08T08:13:00.663164Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777386.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494116/?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-12-08T08:13:00.564607Z", "last_modified_time": "2025-12-08T08:13:00.821056Z", "date_published": null, "start_time": "2025-12-27T13: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, "name": { "fi": "Kino Helios: Tonttu (7)", "sv": "Kino Helios: Tonttu (7)", "en": "Kino Helios: Tonttu (7)" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B71B1431628262F1A63D0C486965139F/Kino_Helios_Tonttu_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B71B1431628262F1A63D0C486965139F/Kino_Helios_Tonttu_7_", "en": "http://www.malmitalo.fi/en/events/event/B71B1431628262F1A63D0C486965139F/Kino_Helios_Tonttu_7_" }, "description": { "fi": "<p>Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta.</p><p>Lumi ja Talvi ovat olleet erottamattomat koko elämänsä ajan, kunnes kohtalo yllättäen ajaa heidät erilleen. Lumi päätyy taianomaiseen tonttumaahan, jossa tontut valmistavat joululahjat kaikille maailman lapsille. Alkaa seikkailu, joka vaatii rohkeutta, luottamusta ja kekseliäisyyttä. Tontut ovat aluksi epäluuloisia tyhjästä tupsahtavaa ihmislasta kohtaan, mutta tonttulapsi Pyry ottaa Lumin mielenkiinnolla vastaan. Pyry on kiinnostunut uusista seikkailuista ja ystävyys Lumin kanssa näyttää mahdollisuudelta jännittävään matkaan. Talvinen retki tonttujen taianomaisessa maailmassa on täynnä yllätyksiä ja joulun ihmeitä.</p><p>Joonas Berghäll ja Hannes Vartiainen ovat ohjanneet Tonttu-elokuvan, jota on kuvattu Kemin Lumilinnassa, Levillä, Rovaniemellä ja Helsingissä. Elokuvan lapsirooleissa nähdään Soma Zimmatore, Thea Achillea ja Marco Stylianou. Muissa rooleissa nähdään huippuammattilaisia kuten Sara Melleri, Jarkko Niemi, Alma Pöysti, Eero Milonoff, Kati Outinen ja Vesa Vierikko. Mukana myös Tonttu-maailman vartijoina tubettaja, artisti Seksikäs-Suklaa ja artisti Musta Barbaari. Sivurooleissa nähdään myös vaikuttajat Viivi ja Venla.</p><p>Robin Packalen julkaisee suomalaisen Tonttu-elokuvan tunnuskappaleen Piece by Piece keskiviikkona 12.11. Se on yhteisjulkaisu ruotsalaisartisti Clara Maen kanssa. Kappale on tehty suomalaisvoimin – Packalenin mukana kappaletta ovat olleet tekemässä ILON, Camu Creutz sekä Elias Hjelm.</p><p>Ikäraja: 7<br>Kesto: 81 min<br>Ensi-ilta: 14.11.2025<br>Kieli: puhuttu suomeksi<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67695/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67152", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:p2625/?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/eventseries/name-4002880", "sv": "https://www.lippu.fi/eventseries/name-4002880" }, "description": null, "price": { "fi": "42,50-48,50 €", "sv": "42,50-48,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491096, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-14T13:14:09.264934Z", "last_modified_time": "2025-10-14T13:14:09.264949Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764215.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-14T13:14:09.079961Z", "last_modified_time": "2025-12-07T15:12:47.756112Z", "date_published": null, "start_time": "2025-12-17T17: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, "name": { "fi": "Christmas Comedy - Den Stora Humorkvällen – Loppuunmyyty! / Slutsåld!", "sv": "Christmas Comedy - Den Stora Humorkvällen – Slutsåld!" }, "location_extra_info": null, "provider": { "fi": "Eventland Oy", "sv": "Eventland Oy" }, "short_description": { "fi": "Christoffer Strandberg, Magnus Betnér (swe), André Wickström, Janne Grönroos & Alfred Backa", "sv": "Christoffer Strandberg, Magnus Betnér (swe), André Wickström, Janne Grönroos & Alfred Backa" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B35DD67939FB3743F686DC3E3BE48B89/Christmas_Comedy_-_Den_Stora_Humorkvallen", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/B35DD67939FB3743F686DC3E3BE48B89/Christmas_Comedy_-_Den_Stora_Humorkvallen" }, "description": { "fi": "<p>Christoffer Strandberg, Magnus Betnér (swe), André Wickström, Janne Grönroos & Alfred Backa</p><p><b>Svenskfinlands största humorklubb återvänder till Helsingfors med stjärnkomiker både från Sverige och Finland! <br>I höst har det gått 10 år sedan den ambulerande humor & stand up-klubben <i>HumorHuset</i> drog i väg på sin allra första turné, då med både Magnus Betnér och Janne Grönroos i spetsen, och har under åren besökt Helsingfors många gånger. 10 år firas med en kanonkväll på Savoy teatern. Kvällen går under namnet Christmas Comedy - Den Stora Humorkvällen. Det blir stand up, imitationer och trams av en icke tidigare skådad kavalkad komiker på samma scen! Varmt välkomna att skratta loss tillsammans inför jul!</p><p>Magnus Betnér (SWE)</b></p><p>Magnus Betnér är svensk standup. Ingen svensk komiker har varit piggare på att testa nya grepp och ligga i framkant för stand upens utveckling än Magnus Betnér. Inför varje föreställning skriver han nytt material, och inte sällan med någon lokal förankring.</p><p>Magnus Betnér är en av Sveriges mest framgångsrika stand up komiker genom tiderna. Med råge är han även den komiker i Sverige som gjort flest soloföreställningar och även den av svenska komiker som besökt Finland flest gånger. <br>Känd från bland annat det svenska humorprogrammet <i>Parlamentet</i> och för sin ofta politiska, liberala och provokativa humorstil, skämtar han ofta om aktuella ämnen.</p><p><b>Christoffer Strandberg</b></p><p>Christoffer är den prisbelönta komikern och underhållaren som är känd från bland annat <i>Putous, Tanssii Tähtien Kaa, Top Gear Finland, Petolliset</i> och <i>Christoffer Strandberg Show</i>.<br>Han är även känd för sina roliga imitationer av kända personer och presidenter. Kanske någon karaktär dyker upp under kvällen?</p><p><b>André Wickström</b></p><p>Stand up nestorn André Wickström är en av landets absolut mest kända och omtyckta komiker. På hemmaplan har han sedan starten år 1995 turnerat runt på stand up klubbar, gjort flera soloshower och medverkat i såväl prisbelönta TV program som i filmer och sketchprogram, både i Finland och utomlands. <br>Hösten 2005 firade André Wickström 10 år som komiker med soloshowen <i>”En kvälls grej”</i> på Svenska Teatern i Helsingfors. Showen sågs av över 15.000 personer. År 2015 firade han sin 20-åriga karriär med soloshowen <i>”20 år stand up”</i> på Esbo Stadsteater och i år firar André 30 år på scenen. <br>I Sverige ses André ofta på Sveriges mest anrika stand up klubb Norra Brunn, och har även medverkat i otaliga TV program som till exempel <i>Parlamentet</i> och <i>Roast på Berns</i>, samt i den populära svenska TV serien Solsidan. <br>André är också känd för det inhemska humorprogrammet Detta om detta som han gjorde ihop med Stan Saanila.</p><p><b>Janne Grönroos</b></p><p>Janne Grönroos ses ofta på stand up scener runtom i Svenskfinland och uppträder även på de<br>svenska humorklubbarna såsom <i>Norra Brunn</i> i Stockholm. Janne Grönroos är Radio X3M<br>veteranen som efter TV-jobb i Sverige nu är programledare för YLE:s populära TV-program Efter Nio. Janne driver även den svenskspråkiga övningsklubben <i>Top Floor Comedy</i>, där både nya och mer garvade stand up-komiker kan öva och testa nytt.</p><p><b>Alfred Backa</b></p><p>Alfred Backa är en prisbelönt österbottnisk komiker med mångårig bakgrund inom humor i varierande tappning och den som hittar det roliga i det mesta. Han har även gett ut flera böcker, medverkat i både poddar och radioprogram. 2019 turnerade Alfred med sin humorföreställning <i>Alfred Backa framför Alfred Backa</i>. 2024 turnerade han i Österbotten med succéföreställningen <i>Alfred Backa for President</i> för fulla salonger och just nu är han aktuell med soloshowen <i>Alfred Backa Gör Upp med Svensk(Finland)</i>, som turnerar runtom i Svenskfinland. Alfred producerar även flitigt politisk satir i sina digitala kanaler, vilket fått stor uppmärksamhet den senaste tiden och populariteten ökar.</p><p>Längd: Ca. 2,5 h (inklusive paus)</p><p>Åldersgräns: K-15</p><p>Föreställningen är på svenska.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersg</p>", "sv": "<p>Christoffer Strandberg, Magnus Betnér (swe), André Wickström, Janne Grönroos & Alfred Backa</p><p><b>Svenskfinlands största humorklubb återvänder till Helsingfors med stjärnkomiker både från Sverige och Finland! <br>I höst har det gått 10 år sedan den ambulerande humor & stand up-klubben <i>HumorHuset</i> drog i väg på sin allra första turné, då med både Magnus Betnér och Janne Grönroos i spetsen, och har under åren besökt Helsingfors många gånger. 10 år firas med en kanonkväll på Savoy teatern. Kvällen går under namnet Christmas Comedy - Den Stora Humorkvällen. Det blir stand up, imitationer och trams av en icke tidigare skådad kavalkad komiker på samma scen! Varmt välkomna att skratta loss tillsammans inför jul!</p><p>Magnus Betnér (SWE)</b></p><p>Magnus Betnér är svensk standup. Ingen svensk komiker har varit piggare på att testa nya grepp och ligga i framkant för stand upens utveckling än Magnus Betnér. Inför varje föreställning skriver han nytt material, och inte sällan med någon lokal förankring.</p><p>Magnus Betnér är en av Sveriges mest framgångsrika stand up komiker genom tiderna. Med råge är han även den komiker i Sverige som gjort flest soloföreställningar och även den av svenska komiker som besökt Finland flest gånger. <br>Känd från bland annat det svenska humorprogrammet <i>Parlamentet</i> och för sin ofta politiska, liberala och provokativa humorstil, skämtar han ofta om aktuella ämnen.</p><p><b>Christoffer Strandberg</b></p><p>Christoffer är den prisbelönta komikern och underhållaren som är känd från bland annat <i>Putous, Tanssii Tähtien Kaa, Top Gear Finland, Petolliset</i> och <i>Christoffer Strandberg Show</i>.<br>Han är även känd för sina roliga imitationer av kända personer och presidenter. Kanske någon karaktär dyker upp under kvällen?</p><p><b>André Wickström</b></p><p>Stand up nestorn André Wickström är en av landets absolut mest kända och omtyckta komiker. På hemmaplan har han sedan starten år 1995 turnerat runt på stand up klubbar, gjort flera soloshower och medverkat i såväl prisbelönta TV program som i filmer och sketchprogram, både i Finland och utomlands. <br>Hösten 2005 firade André Wickström 10 år som komiker med soloshowen <i>”En kvälls grej”</i> på Svenska Teatern i Helsingfors. Showen sågs av över 15.000 personer. År 2015 firade han sin 20-åriga karriär med soloshowen <i>”20 år stand up”</i> på Esbo Stadsteater och i år firar André 30 år på scenen. <br>I Sverige ses André ofta på Sveriges mest anrika stand up klubb Norra Brunn, och har även medverkat i otaliga TV program som till exempel <i>Parlamentet</i> och <i>Roast på Berns</i>, samt i den populära svenska TV serien Solsidan. <br>André är också känd för det inhemska humorprogrammet Detta om detta som han gjorde ihop med Stan Saanila.</p><p><b>Janne Grönroos</b></p><p>Janne Grönroos ses ofta på stand up scener runtom i Svenskfinland och uppträder även på de<br>svenska humorklubbarna såsom <i>Norra Brunn</i> i Stockholm. Janne Grönroos är Radio X3M<br>veteranen som efter TV-jobb i Sverige nu är programledare för YLE:s populära TV-program Efter Nio. Janne driver även den svenskspråkiga övningsklubben <i>Top Floor Comedy</i>, där både nya och mer garvade stand up-komiker kan öva och testa nytt.</p><p><b>Alfred Backa</b></p><p>Alfred Backa är en prisbelönt österbottnisk komiker med mångårig bakgrund inom humor i varierande tappning och den som hittar det roliga i det mesta. Han har även gett ut flera böcker, medverkat i både poddar och radioprogram. 2019 turnerade Alfred med sin humorföreställning <i>Alfred Backa framför Alfred Backa</i>. 2024 turnerade han i Österbotten med succéföreställningen <i>Alfred Backa for President</i> för fulla salonger och just nu är han aktuell med soloshowen <i>Alfred Backa Gör Upp med Svensk(Finland)</i>, som turnerar runtom i Svenskfinland. Alfred producerar även flitigt politisk satir i sina digitala kanaler, vilket fått stor uppmärksamhet den senaste tiden och populariteten ökar.</p><p>Längd: Ca. 2,5 h (inklusive paus)</p><p>Åldersgräns: K-15</p><p>Föreställningen är på svenska.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersg</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67152/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66888", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/", "sv": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/", "en": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/" }, "description": null, "price": { "fi": "38,90 € / S&D 100,60 €", "sv": "38,90 € / S&D 100,60 €", "en": "38,90 € / S&D 100,60 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490497, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-21T15:14:23.262790Z", "last_modified_time": "2025-08-21T15:14:23.262806Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776509.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490497/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-21T15:14:23.139549Z", "last_modified_time": "2025-12-07T15:12:46.881825Z", "date_published": null, "start_time": "2025-12-13T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Suurlähettiläät – Loppuunmyyty! / Sold out!", "sv": "Suurlähettiläät – Slutsåld!", "en": "Suurlähettiläät – Sold out!" }, "location_extra_info": null, "provider": { "fi": "Sunborn Events Oy", "sv": "Sunborn Events Oy", "en": "Sunborn Events Oy" }, "short_description": { "fi": "Suurlähettiläät juhlii tänä vuonna 35-‑vuotista taivaltaan. Sen verran on kulunut ensimmäisestä singlestä – ja kun osa bändin jäsenistäkin viettää tänä vuonna tasavuosijuhliaan – on syytä juhlaan ja kunnioittaa menneitä vuosikymmeniä.", "sv": "I år firar Suurlähettiläät 35-årsjubileum. Så lång tid har gått sedan den första singeln – och med tanke på att vissa medlemmar i bandet firar jämna år i år finns det anledning att fira och hedra de årtionden som gått.", "en": "Suurlähettiläät are celebrating their 35-year history this year. That's how long it has beensince the band'sfirstsingle – and with somemembersof thebandcelebrating their milestone birthdays thisyear – there's plenty of reason to celebrate and honour the past decades." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A97408785726628A844435B194961916/Suurlahettilaat", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/A97408785726628A844435B194961916/Suurlahettilaat", "en": "http://www.savoyteatteri.fi/en/events/event/A97408785726628A844435B194961916/Suurlahettilaat" }, "description": { "fi": "<p>Suurlähettiläät juhlii tänä vuonna 35-‑vuotista taivaltaan. Sen verran on kulunut ensimmäisestä singlestä – ja kun osa bändin jäsenistäkin viettää tänä vuonna tasavuosijuhliaan – on syytä juhlaan ja kunnioittaa menneitä vuosikymmeniä.</p><p>Yhtye nousi suomalaisen bändipopin kaanoniin heti vuonna 1991 debyyttialbumillaan Omituisten otusten kerho, josta ikivihreiksi nousi kappaleet Elokuun 11. ja Pitääxunaina?. Nopeassa tahdissa klassikkokimara jatkui mm. biiseillä Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot ja Mitä miehen tulee olla?<br> <br>Savoy Teatterissa 13.12. on luvassa yhtyeen juhlakiertueen 2025 viimeinen keikka ja runsas kattaus biisejä bändin uran varrelta. Suomisoulia, joka on tehnyt Suurlähettiläistä sukupolvien ajan rakastetun.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Konserttiin on myynnissä Savoy-teatterin yhteydessä toimivan Minne Garden-ravintolan herkullinen kolmen ruokalajin illallinen, joka tarjoillaan kaksi tuntia ennen esitystä. Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.</p><p><b>Konsertin Show&Dinner-lippupaketit ovat loppuunmyyty, mutta illallinen on mahdollista tilata suoraan Savoy-teatterin ravintola Minnen verkkokaupasta: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat<br> <br>Huomioithan, että Minnen illalliskattauksessa on rajallinen määrä paikkoja jäljellä.</b></p><p>Show & Dinner -lippu sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun.</p><p><b>Menu Classic</b><br>Rapuskagen, paahdettua mallasleipää, etikkakurkkua ja siianmätiä L<br>Matalassa lämmössä kypsytettyä häränfileetä, paahdettua palsternakkaa ja aligot-perunaa L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G</p><p>TAI</p><p><b>Menu Green</b><br>Punajuuricarpaccio, kuusenkerkkächeddaria ja pikkelöityjä sieniä L,G<br>Grillattua savojinkaalta, kikhernepyrettä ja haudutettua pinaattia L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G</p><p>Menun hinta ei sisällä juomia.<br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua.<br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</p>", "sv": "<p>I år firar Suurlähettiläät 35-årsjubileum. Så lång tid har gått sedan den första singeln – och med tanke på att vissa medlemmar i bandet firar jämna år i år finns det anledning att fira och hedra de årtionden som gått.</p><p>Bandet skrev in sig i den finska bandpopens historia genast 1991 med sitt debutalbum Omituisten otusten kerho, från vilket låtarna Elokuun 11. och Pitääxunaina? blev evergreens. Den tempofyllda klassiska cocktailen fortsatte med låtar som Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot och Mitä miehen tulee olla?.</p><p>Den 13 december är Savoy-teatern värd för den sista konserten på bandets jubileumsturné 2025, och en hel uppsättning låtar från bandets karriär utlovas. Den finska soulen som gjort Suurlähettiläät älskat i generationer.</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Till konserten säljs en utsökt trerätters middag på restaurang Minne Garden intill Savoy-teatern som serveras två timmar före föreställningen. Grupper med fler än tolv personer är välkomna att skicka e-post till myynti@minnehelsinki.fi för bokning.</p><p>Biljettpaketen Show & Dinner till konserten är slutsålda, men det går bra att beställa middag direkt i Savoy-teaterns restaurang Minnes webbutik: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat</p><p>Observera att det finns ett begränsat antal platser kvar till Minnes middagsdukning.</p><p>Biljetten Show & Dinner inkluderar en entrébiljett och en meny med kött eller vegetarisk mat som serveras till borden.</p><p>Menu Classic<br>Kräftskagen, rostat maltbröd, ättiksgurka och sikrom L<br>Oxfilé tillagad på låg värme, rostad palsternacka och pommes aligot L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>ELLER</p><p>Menu Green<br>Rödbetscarpaccio, granskottscheddar och picklad svamp L, G<br>Grillad savoykål, kikärtspuré och stuvad spenat L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>Menypriset inkluderar inte drycker.<br>Middagen serveras i Savoy-teaterns restaurang Minne Garden två timmar före kvällens föreställning.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p>", "en": "<p>Suurlähettiläät are celebrating their 35-year history this year. That's how long it has beensince the band'sfirstsingle – and with somemembersof thebandcelebrating their milestone birthdays thisyear – there's plenty of reason to celebrate and honour the past decades.</p><p>The band shot to fame in the Finnish band pop scene right at the start, in 1991, with their debut album Omituisten otusten kerho. The album’s songs Elokuun 11. and Pitääxunaina? became evergreen hits. The band continued to churn out classics at a fast pace, with songs such as Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot and Mitä miehen tulee olla?</p><p>On 13 December, the Savoy Theatre will host the last show of the band's 2025 anniversary tour, offering a wide range of songs from the band's career: The Finnish soul that has made Suurlähettiläät a beloved band across generations.</p><p>Duration approx. 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>A delicious three-course dinner at the Savoy Theatre's Minne Garden restaurant is available for purchase for the concert evening, served two hours before the performance. Groups of more than 12 people should kindly contact the restaurant at: myynti@minnehelsinki.fi.</p><p>The concert’s Show & Dinner ticket packages are sold out, but it is possible to order dinner directly from the Savoy Theatre's Restaurant Minne's online shop (website in Finnish): https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat</p><p>Please note that there are a limited number of seats left for the dinner service at Restaurant Minne.</p><p>The Show & Dinner ticket includes an entrance ticket and a meat or vegetarian menu served to tables.</p><p>Menu Classic<br>Toast skagen, toasted malt bread, pickled cucumber and whitefish roe L<br>Beef fillet cooked at low heat, roasted parsnips and pommes aligot, L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>OR</p><p>Menu Green<br>Beetroot carpaccio, spruce sprout cheddar and pickled mushrooms L,G<br>Grilled savoy cabbage, chickpea puree and braised spinach L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>The price of the menu does not include drinks.<br>The dinner will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the evening's performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66888/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67257", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491324, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-07T09:13:45.145784Z", "last_modified_time": "2025-11-07T09:13:45.145799Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772167.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491324/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T09:13:44.946637Z", "last_modified_time": "2025-12-04T16:12:51.601710Z", "date_published": null, "start_time": "2025-12-04", "end_time": "2026-01-10", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "REFRACTION – Kuratoinut Yasmin Ibrahim", "sv": "REFRACTION – Kurerad av Yasmin Ibrahim", "en": "REFRACTION – Curated by Yasmin Ibrahim" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Valitut taideteokset ovat taiteilijoilta Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero ja Ozeya Vineyard, sekä Greta Granö ja gallery of light and shadow.", "sv": "Konstnärer: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya och Aero Vineyard, och Greta Granö och gallery of light and shadow.", "en": "The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and Greta Granö and a gallery of light and shadow." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION", "sv": "http://www.vuotalo.fi/sv/evenemang/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION", "en": "http://www.vuotalo.fi/en/events/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION" }, "description": { "fi": "<p>Valitut taideteokset ovat taiteilijoilta Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero ja Ozeya Vineyard, sekä Greta Granö ja gallery of light and shadow.</p><p>REFRACTION (Refraktio) on valoa ja muistia käsittelevä ryhmänäyttely, jonka on kuratoinut Yasmin Ibrahim. Vuoden pimeimpänä kuukautena palaamme valossa kylpeviin muistoihin ja niiden vaihtumiseen, muuttumiseen ja pysähtymiseen. Teokset liikkuvat henkilökohtaisen ja julkisen välillä ja käyttävät valoa metaforisesti ja kirjaimellisesti heijastamaan omia kokemuksiamme ja sitä, miten ne näyttäytyvät ulkomaailmalle.</p><p>Näyttely on ammentanut inspiraatiota Yasmin Ibrahimin omasta suhteesta valoon pohjoiselle pallonpuoliskolle globaalista etelästä saapuneena maahanmuuttajana. Kukin työ esittelee valon haurautta, sitä kuinka valo muuttaa muistia ja rikkoo ja vakiinnuttaa sen.</p><p>Valittujen teosten tekijät ovat Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero ja Ozeya Vineyard ja gallery of light and shadow. Jokainen työ tarkastelee valon käyttöä ja suhdettamme siihen, sekä sitä mitä meidän pitäisi valaista. Kuraattorina Ibrahim on kiinnostunut Suomessa varjoon jääneiden taiteilijoiden valon kuvauksista ja käytöstä sekä muistin kyvystä liikuttaa tai jähmettää meidät ja ottaa meidät mukaan tai sulkea meidät ulkopuolelle.</p><p>Tervetuloa avajaisiin Vuotaloon 4.12. klo 18.30–20.00!</p><p>Kuva credit: Still from “Stepping into the Light\"<br>Legendary Overall Mother Lola Gorgeous Gucci <br>Xclusive Lanvin House Ball 2023.</p>", "sv": "<p>Konstnärer: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya och Aero Vineyard, och Greta Granö och gallery of light and shadow.</p><p>REFRACTION är en grupputställning om ljus och minnen, kuraterad av Yasmin Ibrahim. Under årets mörkaste månad minns vi minnen fyllda av ljus, och hur de skiftar, förändras och stagnerar. I rörelsen mellan det personliga och det offentliga används ljuset på ett metaforiskt och bokstavligt sätt för att reflektera över vad vi upplever och hur det porträtteras för omvärlden.</p><p>Med inspiration från Yasmin Ibrahims egen relation till ljuset som en invandrare från den globala södern som nu bor på norra halvklotet visar alla de utvalda konstverken hur skört ljuset är, hur det förändrar minnet och vad som stör och stabiliserar det.</p><p>De utvalda konstverken är skapade av Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero och Ozeya Vineyard samt gallery of light and shadow. Varje verk utforskar hur vi använder ljus, vår relation till ljuset och vad vi borde belysa. Som kurator är Ibrahim intresserad av hur underrepresenterade konstnärer i Finland skildrar och använder ljus, och hur minnen kan förflytta sig, frysa, stänga ut eller inkludera oss.</p><p>Välkommen till invigningen på Nordhuset den 4 december kl. 18.30–20.00!</p><p>Med stöd av Catalysti ry och TAIKE.</p>", "en": "<p>The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and Greta Granö and a gallery of light and shadow.</p><p>REFRACTION is a group exhibition curated by Yasmin Ibrahim on light and memory. During the darkest month of the year, we remember memories engulfed in light, how they shift, change and become stagnant. Moving between the personal and the public, light is used in a metaphoric and literal sense to reflect what we experience and how it is portrayed to the outside world.</p><p>Inspired by Yasmin Ibrahim’s own relationship to light as an immigrant from the Global South living in the Northern Hemisphere, each selected artwork shows the fragility of light, how it changes memory, what disrupts and settles it.</p><p>The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and a gallery of light and shadow. Each piece looks at the use of light, our relationship to it, and what should be shed light on. As a curator, Ibrahim is interested in the depictions and usage of light by underrepresented artists in Finland, and how memory can move, freeze, exclude or include us.</p><p>Welcome to the opening at Vuotalo on 4.12 between 18:30-20:00!<br>Supported by Catalysti ry and TAIKE.</p><p>Photo credit: Still from “Stepping into the Light\"</p><p>Legendary Overall Mother Lola Gorgeous Gucci<br> <br>Xclusive Lanvin House Ball 2023.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67257/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:d5f44420-5f04-4570-ae8a-7e73eda65f12", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45307/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p6165/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:de728393-b30b-48c4-aa49-e3814ac980d1/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_youtube", "link": "https://Youtube.com", "language": "fi" }, { "name": "extlink_instagram", "link": "https://Instagram.com", "language": "fi" }, { "name": "extlink_tumblr", "link": "https://Tumblr.com", "language": "fi" } ], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=4122025_JIIRI_Sprint_retro_ja_review_-_Alitapahtuma2128169567" }, "description": { "fi": "Hintatietojen kuvaus suomeksi" }, "price": { "fi": "15" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1494096, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-04T15:49:34.041592Z", "last_modified_time": "2025-12-04T15:49:34.041611Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/b64288a3-3a8e-f011-b4cc-000d3ab33a80", "name": "Kuvateksti", "cropping": "", "photographer_name": "Kuvaajan nimi", "alt_text": "Kuvan Alt-teksti", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p6165/?format=api" } ], "created_time": "2025-12-04T07:13:36.453930Z", "last_modified_time": "2025-12-04T15:49:34.627964Z", "date_published": "2025-12-04T07:07:38Z", "start_time": "2025-12-31T06:00:00Z", "end_time": "2025-12-31T21:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 15, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 500, "minimum_attendee_capacity": 15, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "4.12.2025 JIIRI Sprint retro ja review - Alitapahtuma" }, "location_extra_info": { "fi": "Tapahtumapaikan lisätiedot - Suomi" }, "provider": { "fi": "Annantalo (KYMP)" }, "short_description": { "fi": "JIIRI Sprint retro ja review - Alitapahtuma" }, "info_url": null, "description": { "fi": "<div><div>JIIRI Sprint retro ja review -Alitapahtuma</div><div><div><div><div><div><div><div><div><div><br> </div></div></div></div></div></div></div></div></div></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:d5f44420-5f04-4570-ae8a-7e73eda65f12/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67237", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": 1493948, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-28T13:12:36.478654Z", "last_modified_time": "2025-11-28T13:12:36.478671Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780055.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493948/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-28T13:12:36.373200Z", "last_modified_time": "2025-12-04T12:12:44.884230Z", "date_published": null, "start_time": "2025-12-16T15: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, "name": { "fi": "Kauneimmat joululaulut", "sv": "Kauneimmat joululaulut", "en": "Kauneimmat joululaulut" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kauneimmat joululaulut siivittävät kuulijansa pehmeästi kohti joulun riemastuttavaa aikaa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3E5D5DE708F3DA64361750A95E7E5AA9/Kauneimmat_joululaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3E5D5DE708F3DA64361750A95E7E5AA9/Kauneimmat_joululaulut", "en": "http://www.malmitalo.fi/en/events/event/3E5D5DE708F3DA64361750A95E7E5AA9/Kauneimmat_joululaulut" }, "description": { "fi": "<p>Kauneimmat joululaulut siivittävät kuulijansa pehmeästi kohti joulun riemastuttavaa aikaa.</p><p>Yhteiseen jouluperinteeseen ja kauneimpiin joululauluihin johdattamassa Heidi Visa, laulu, Sirja Puurtinen, viulu, sekä kanttori Mari Torri-Tuominen, muusikot Antti Vuori ja pastori Markku Arola Malmin seurakunnasta.</p><p>Vapaa pääsy!</p><p>Kesto 1 t</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67237/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67705", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@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": 1494035, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T07:12:46.137272Z", "last_modified_time": "2025-12-04T07:12:46.137287Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782453.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494035/?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-12-04T07:12:46.026329Z", "last_modified_time": "2025-12-04T07:12:46.349597Z", "date_published": null, "start_time": "2025-12-09T16: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, "name": { "fi": "Rytmimajakan oppilaskonsertti Kanneltalossa torstaina", "sv": "Rytmimajakan oppilaskonsertti Kanneltalossa torstaina", "en": "Rytmimajakan oppilaskonsertti Kanneltalossa torstaina" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule nauttimaan nuorten musiikinharrastajien ilosta ja osaamisesta!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A4574F8F7AB8B6362473D1ABACFEBEC2/Rytmimajakan_oppilaskonsertti_Kanneltalossa_torstaina", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A4574F8F7AB8B6362473D1ABACFEBEC2/Rytmimajakan_oppilaskonsertti_Kanneltalossa_torstaina", "en": "http://www.kanneltalo.fi/en/events/event/A4574F8F7AB8B6362473D1ABACFEBEC2/Rytmimajakan_oppilaskonsertti_Kanneltalossa_torstaina" }, "description": { "fi": "<p>Tule nauttimaan nuorten musiikinharrastajien ilosta ja osaamisesta!</p><p>Lavalle nousevat Rytmimajakan bändit ja yksilöoppilaat — esiintyjinä ala- ja yläkouluikäisiä nuoria.<br>Rytmimajakka on osa Meri-Helsingin Musiikkiopistoa.</p><p>Luvassa lämmin ja rytmikäs konserttihetki — tervetuloa mukaan!</p><p>Paikka: Kahvilan stage<br>Vapaa pääsy</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67705/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66098", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1255101, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-14T07:14:26.183131Z", "last_modified_time": "2025-07-14T07:14:26.183147Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771486.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1255101/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-14T07:14:26.071859Z", "last_modified_time": "2025-12-04T07:12:45.435180Z", "date_published": null, "start_time": "2025-12-06T13:00:00Z", "end_time": "2025-12-06T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Itsenäisyyspäivän juhla", "sv": "Firande av självständighetsdagen", "en": "Independence Day Celebration" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D47937E17671141BE0754F25B0DB9136/Itsenaisyyspaivan_juhla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D47937E17671141BE0754F25B0DB9136/Firande_av_sjalvstandighetsdagen", "en": "http://www.malmitalo.fi/en/events/event/D47937E17671141BE0754F25B0DB9136/Independence_Day_Celebration" }, "description": { "fi": "<p>Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!</p><p>Ennen Malmisalin juhlaohjelmaa Pienessä salissa näytetään klo 13 Muistoja Sortavalasta -dokumentti, johon on myös vapaa pääsy. Myös Sortavalan laulujuhlat 1935 -valokuvanäyttely on nähtävillä Malmitalon aulatilassa!</p><p>Malmisalin juhlaohjelmassa on luvassa Finlandia-palkinnon juuri saaneen Tomi Kontion juhlapuhe ja lausuntaa. Musiikillisesta annista vastaa pianisti Janne Oksanen ja duo Aili Järvelä. Oksanen soittaa konsertissaan Toivo Kuulan ja Armas Järnefeltin tuotantoa, kun taas paikallinen Järvelä duo soittaa omaa tuotantoaan.</p><p>Aikataulu klo 15–16</p><p>Tervetulosanat: Tiina Laukkanen, Malmitalon johtaja<br>Juhlapuhe: Tomi Kontio, kirjailija ja runoilija<br>Juhlakonsertti: Janne Oksanen, pianisti<br>Lausunta: Tomi Kontio<br>Konsertti: Aili Järvelä ja Sigurdur Rögnvaldsson<br>Loppusanat: Mirka Vainikka, Malmi-Seuran puheenjohtaja<br>Maamme-laulu</p><p>Ohjelman jälkeen kahvitarjoilu klo 16 alkaen Malmitalon aulassa.</p><p>Vapaa pääsy. Huomioithan, että paikkoja salissa on rajoitetusti.</p><p>Yhteistyössä Malmi-Seura ja Malmitalo</p><p>Kesto: 1 tunti</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66098/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67438", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493798, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-14T09:12:56.454666Z", "last_modified_time": "2025-11-14T09:12:56.454683Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780907.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493798/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-14T09:12:56.364029Z", "last_modified_time": "2025-12-03T09:12:45.174872Z", "date_published": null, "start_time": "2025-12-06T13:00:00Z", "end_time": "2025-12-06T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Itsenäisyyspäivän juhla Sitratorilla", "sv": "Firande av självständighetsdagen på Cittertorget", "en": "Independence Day celebration at Sitratori square" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule juhlistamaan Suomen itsenäisyyttä Sitratorille, tarjolla lohi- ja kasviskeittoa, glögiä, pipareita sekä mukavaa ohjelmaa!", "sv": "Kom och fira Finlands självständighet på Cittertorget! Lax- och grönsakssoppa, glögg samt pepparkakor serveras och trevligt program utlovas.", "en": "Come and celebrate Finland's independence at Sitratori square and enjoy salmon and vegetable soup, glogg, gingerbread biscuits and a fun programme!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D651833586DE2449C7E10414F4F23075/Itsenaisyyspaivan_juhla_Sitratorilla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D651833586DE2449C7E10414F4F23075/Firande_av_sjalvstandighetsdagen_pa_Cittertorget", "en": "http://www.kanneltalo.fi/en/events/event/D651833586DE2449C7E10414F4F23075/Independence_Day_celebration_at_Sitratori_square" }, "description": { "fi": "<p>Tule juhlistamaan Suomen itsenäisyyttä Sitratorille, tarjolla lohi- ja kasviskeittoa, glögiä, pipareita sekä mukavaa ohjelmaa!</p><p>Tunnelmallisessa tapahtumassa nautitaan yhdessä kuorolaulusta, sirkuksesta ja valotaiteesta – tilaisuus on maksuton ja kaikille avoin.</p><p>Lämminhenkinen tapahtuma järjestetään edellisvuosista poiketen Sitratorilla. Näin varmistamme, että kaikki halukkaat mahtuvat mukaan! Mukana tapahtumassa ovat myös D-asema Kannelmäki ja Lännen aikuissosiaalityö.</p><p><b>Juhlan aikataulu:</b><br>klo 15-17 Lohi- ja kasviskeittotarjoilu. Tarjolla myös glögiä ja pipareita! Huomioithan, että ruokaa on tarjolla rajattu määrä.</p><p>klo 15–15.30 ja klo 16.20–16.45 Posetiivari esiintyy!</p><p>klo 15.30 ja klo 16.45 Kassandra-kuoron esitykset</p><p>klo 16 Valosirkus Spektrin esitys</p><p>Vapaa pääsy!</p>", "sv": "<p>Kom och fira Finlands självständighet på Cittertorget! Lax- och grönsakssoppa, glögg samt pepparkakor serveras och trevligt program utlovas.</p><p>Under det stämningsfulla evenemanget njuter man tillsammans av körsång, cirkus och ljuskonst – tillställningen är avgiftsfri och öppen för alla.</p><p>Till skillnad från tidigare år ordnar man det varma och hjärtliga evenemanget på Cittertorget. Så här säkerställer man att alla intresserade får plats! Även D-osasto Kannelmäki och Vuxensocialarbete, västra deltar i evenemanget.</p><p><b>Festens tidtabell:</b><br>kl. 15.00–17.00 Servering av lax- och grönsakssoppa samt glögg och pepparkakor (vänligen observera att det finns en begränsad mängd mat att tillgå)<br>kl. 15.00–15.30 och 16.20-16.45 Posetiivari uppträder<br>kl. 15.30 och 16.45 Uppträdanden av Kassandrakören<br>kl 16.00 Valosirkus Spektris programnummer</p><p>Fritt inträde!</p>", "en": "<p>Come and celebrate Finland's independence at Sitratori square and enjoy salmon and vegetable soup, glogg, gingerbread biscuits and a fun programme!</p><p>The programme for the atmospheric evening also includes choral singing, circus entertainment and light art – free and open to all.</p><p>Unlike in previous years, the warm-hearted event will be held at Sitratori square. This way we can make sure that everyone who wants to join us will be able to! D-asema Kannelmäki and western adult social work will also be present at the event.</p><p>Celebration programme:<br>15.00–17.00 Salmon and vegetable soup served. There will also be glogg and gingerbread biscuits! Please note that there is a limited amount of food available.<br>15.00–15.30 and 16.20–16.45 Barrel organ player performance!<br>15.30 and 16.45 Performances by the Kassandra choir<br>16.00 Light Circus Spektri</p><p>Free entry!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67438/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:4ae74674-7be3-43ef-8d0b-15f6f91f988d", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=hinnat_testiin67657212" }, "description": { "fi": "Kympillä norm. ja ale lippu 6€" }, "price": { "fi": "-10 onpa halpa lippu / opiskelijat 6 €" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" } ], "created_time": "2025-12-02T13:04:12.913672Z", "last_modified_time": "2025-12-02T13:04:12.913702Z", "date_published": "2025-12-02T12:58:48Z", "start_time": "2025-12-03T13:08:00Z", "end_time": "2025-12-05T15:08: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": 200, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "hinnat testiin!" }, "location_extra_info": null, "provider": { "fi": "Annantalo (KYMP)" }, "short_description": { "fi": "kuvaus" }, "info_url": null, "description": { "fi": "<div><p>Tarkka kuvaus</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:4ae74674-7be3-43ef-8d0b-15f6f91f988d/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67142", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/en/artist/kinetic-orchestra/", "sv": "https://www.lippu.fi/en/artist/kinetic-orchestra/", "en": "https://www.lippu.fi/en/artist/kinetic-orchestra/" }, "description": null, "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491042, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-08T13:13:31.650984Z", "last_modified_time": "2025-10-08T13:13:31.650995Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773715.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491042/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-08T13:13:31.566242Z", "last_modified_time": "2025-12-02T08:13:18.220812Z", "date_published": null, "start_time": "2025-12-03T16: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, "name": { "fi": "Kinetic Orchestra: Working Class Heroes", "sv": "Kinetic Orchestra: Working Class Heroes", "en": "Kinetic Orchestra: Working Class Heroes" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.", "sv": "Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.", "en": "Working Class Heroes is a story of funny guys who both work and create art with their bodies." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/39B2EF06F1A927B4837D5AEBA7B6C826/Kinetic_Orchestra_Working_Class_Heroes_", "sv": "http://www.stoa.fi/sv/evenemang/event/39B2EF06F1A927B4837D5AEBA7B6C826/Kinetic_Orchestra_Working_Class_Heroes_", "en": "http://www.stoa.fi/en/events/event/39B2EF06F1A927B4837D5AEBA7B6C826/Kinetic_Orchestra_Working_Class_Heroes_" }, "description": { "fi": "<p>Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.</p><p>Teoksen hahmot ovat fiktiivisiä, mutta heidän kokemuksensa ulkopuolisuudesta ja intohimonsa kyseenalaistamisesta voivat tuntua tutuilta monelle, joka on omistautunut jollekin fyysiselle tekemiselle. <br> <br>Tanssijat: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin sekä vaihtuvassa roolissa Anni Koivusalo, Malla Aaltonen ja Riikka Lyra<br>Konsepti: Jarkko Mandelin<br>Koreografia: Tanssijat ja Jarkko Mandelin<br>Äänisuunnittelu ja sävellys: Janne Hast<br>Pukusuunnittelu: Maria Siren<br>Valosuunnittelu: Niila Rantala<br>Tuotanto: Kinetic Orchestra</p><p>Genre: tanssi<br>Kesto: n. 45 min.<br>Kieli: sanaton</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/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811524/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.</p><p>Figurerna i verket är fiktiva men deras erfarenheter om utanförskap och sin passion för ifrågasättande kan kännas bekanta för många som engagerat sig åt någon fysisk syssla. <br> <br>Dansare: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin samt i växlande roll Anni Koivusalo, Malla Aaltonen och Riikka Lyra<br>Koncept: Jarkko Mandelin<br>Koreografi: dansare och Jarkko Mandelin<br>Ljudplanering och tonsättning: Janne Hast<br>Kostymdesign: Maria Siren<br>Ljusplanering: Niila Rantala<br>Produktion: Kinetic Orchestra</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811524/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Working Class Heroes is a story of funny guys who both work and create art with their bodies.</p><p>The characters in the work are fictional, but their experiences of being outsiders and questioning their passions may seem familiar to many who are dedicated to doing something physical. <br> <br>Dancers: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin. In alternating roles: Anni Koivusalo, Malla Aaltonen and Riikka Lyra<br>Concept: Jarkko Mandelin<br>Choreography: Dancers and Jarkko Mandelin<br>Sound design and composition: Janne Hast<br>Costume design: Maria Siren<br>Lighting design: Niila Rantala<br>Production: Kinetic Orchestra</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/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811524/?affiliate=FSF\">HERE</a></u></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67142/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67141", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/en/artist/kinetic-orchestra/", "sv": "https://www.lippu.fi/en/artist/kinetic-orchestra/", "en": "https://www.lippu.fi/en/artist/kinetic-orchestra/" }, "description": null, "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491041, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-08T13:13:31.097666Z", "last_modified_time": "2025-10-08T13:13:31.097678Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773714.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491041/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-08T13:13:31.006521Z", "last_modified_time": "2025-12-02T08:13:17.739961Z", "date_published": null, "start_time": "2025-12-02T16: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, "name": { "fi": "Kinetic Orchestra: Working Class Heroes", "sv": "Kinetic Orchestra: Working Class Heroes", "en": "Kinetic Orchestra: Working Class Heroes" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.", "sv": "Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.", "en": "Working Class Heroes is a story of funny guys who both work and create art with their bodies." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/228E90F09714D6E7DDE09C8C239FD45B/Kinetic_Orchestra_Working_Class_Heroes_", "sv": "http://www.stoa.fi/sv/evenemang/event/228E90F09714D6E7DDE09C8C239FD45B/Kinetic_Orchestra_Working_Class_Heroes_", "en": "http://www.stoa.fi/en/events/event/228E90F09714D6E7DDE09C8C239FD45B/Kinetic_Orchestra_Working_Class_Heroes_" }, "description": { "fi": "<p>Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.</p><p>Teoksen hahmot ovat fiktiivisiä, mutta heidän kokemuksensa ulkopuolisuudesta ja intohimonsa kyseenalaistamisesta voivat tuntua tutuilta monelle, joka on omistautunut jollekin fyysiselle tekemiselle. <br> <br>Tanssijat: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin sekä vaihtuvassa roolissa Anni Koivusalo, Malla Aaltonen ja Riikka Lyra<br>Konsepti: Jarkko Mandelin<br>Koreografia: Tanssijat ja Jarkko Mandelin<br>Äänisuunnittelu ja sävellys: Janne Hast<br>Pukusuunnittelu: Maria Siren<br>Valosuunnittelu: Niila Rantala<br>Tuotanto: Kinetic Orchestra</p><p>Genre: tanssi<br>Kesto: n. 45 min.<br>Kieli: sanaton</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/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811523/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.</p><p>Figurerna i verket är fiktiva men deras erfarenheter om utanförskap och sin passion för ifrågasättande kan kännas bekanta för många som engagerat sig åt någon fysisk syssla. <br> <br>Dansare: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin samt i växlande roll Anni Koivusalo, Malla Aaltonen och Riikka Lyra<br>Koncept: Jarkko Mandelin<br>Koreografi: dansare och Jarkko Mandelin<br>Ljudplanering och tonsättning: Janne Hast<br>Kostymdesign: Maria Siren<br>Ljusplanering: Niila Rantala<br>Produktion: Kinetic Orchestra</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811523/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Working Class Heroes is a story of funny guys who both work and create art with their bodies.</p><p>The characters in the work are fictional, but their experiences of being outsiders and questioning their passions may seem familiar to many who are dedicated to doing something physical. <br> <br>Dancers: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin. In alternating roles: Anni Koivusalo, Malla Aaltonen and Riikka Lyra<br>Concept: Jarkko Mandelin<br>Choreography: Dancers and Jarkko Mandelin<br>Sound design and composition: Janne Hast<br>Costume design: Maria Siren<br>Lighting design: Niila Rantala<br>Production: Kinetic Orchestra</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/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811523/?affiliate=FSF\">HERE</a></u></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67141/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:111a5ee5-dc0c-4bd1-ac0d-3241f2f2c418", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Linked_Events_-projekti_-_Kattotapahtuma_20232356693551" }, "description": null, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-01T08:03:30.386211Z", "last_modified_time": "2025-12-02T07:18:55.923950Z", "date_published": "2025-12-01T08:01:06Z", "start_time": "2026-01-01T06:00:00Z", "end_time": "2026-01-31T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 100, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 50, "minimum_attendee_capacity": 5, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Linked Events -projekti - Kattotapahtuma #2023" }, "location_extra_info": { "fi": "Alagalleria" }, "provider": { "fi": "Annantalo (KYMP)" }, "short_description": { "fi": "Kattotapahtuman ja alitapahtumien julkaisu" }, "info_url": null, "description": { "fi": "<div><p>Pitäisi näkyä LE:ssä järkevästi kattotapahtuma ja alitapahtuma</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:111a5ee5-dc0c-4bd1-ac0d-3241f2f2c418/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67665", "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/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493983, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-01T14:12:32.686609Z", "last_modified_time": "2025-12-01T14:12:32.686625Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782316.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493983/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T14:12:32.514329Z", "last_modified_time": "2025-12-01T14:12:32.838139Z", "date_published": null, "start_time": "2025-12-04", "end_time": "2025-12-27", "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, "name": { "fi": "Asetelmia, Stilleben, Still life – Raimo Tuomivaaran maalauksia", "sv": "Asetelmia, Stilleben, Still life – Raimo Tuomivaaran maalauksia", "en": "Asetelmia, Stilleben, Still life – Raimo Tuomivaaran maalauksia" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Asetelma, stilleben, still life tarkoittaa hiljaisia maalauksia.", "sv": "Stilleben avser stillsamma målningar.", "en": "Still life, stilleben, means “silent paintings.”" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B7F0E4D90CCEB319E341E433A2F221C9/Asetelmia_Stilleben_Still_life", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B7F0E4D90CCEB319E341E433A2F221C9/Asetelmia_Stilleben_Still_life", "en": "http://www.malmitalo.fi/en/events/event/B7F0E4D90CCEB319E341E433A2F221C9/Asetelmia_Stilleben_Still_life" }, "description": { "fi": "<p>Asetelma, stilleben, still life tarkoittaa hiljaisia maalauksia.</p><p>Perinteisessä asetelmassa on erilaisia esineitä aseteltu malliksi pöydälle tai johonkin muuhun tasoon. Esineet voivat olla astioita, hedelmiä, vihanneksia, riistalintuja roikkumassa tai melkein mitä tahansa. Ne ovat pysähtyneessä tilassa liikkumattomina, kuolleina. Nimensä mukaisesti maalauksen aihe on hiljaisuus ja esineet ovat vain objekteja idean toteuttamiseksi. <br> <br>Olen lisännyt muutamiin töihin myös eläviä olentoja. Kissa vahtaa lintua ikkunan takana, varis hämmästelee keltaista muoviankkaa. Mikään ei liiku. Aika on pysähtynyt. Maalaukset ovat realistisia. Olen yrittänyt tallentaa hetken maalauksen keinoin. Kamera olisi tietysti kätevämpi mutta kamera ei osaa maalata. Digikuva on vain sähköinen illuusio todellisuudesta. Maalarin paletti mahdollistaa leikkimisen väreillä, valolla ja tunnelmilla. Maalipinnat luovat elävän struktuurin.<br> <br>Stilleben on kannanotto kiireiselle, hektiselle elämällemme. Kannattaisi pysähtyä ja jäädä katsomaan onko jotain mennyt pieleen, kun elämä muuttuu koko ajan stressaavammaksi. Kuka meitä ohjaa, kuka käyttää hyväksi. Mihin tarvitsemme jatkuvaa kasvua, jos se tekee meistä onnettomia? Jos se johtaa luontokatoon ja ilmastokatastrofiin? Stilleben on passiivinen vastarinta.</p><p>Se on pysähtynyt aika.</p><p>Näyttelyn avajaiset järjestetään ke 3.12. klo 17 alkaen. Tervetuloa!</p><p><b>Taiteilijasta</b><br>Olen pohjoisessa, Posiolla v.1951 syntynyt kuvataiteilija. Lapsuuttani ympäröi metsät ja vaaramaisemat. Kotini oli köyhä pienviljelystila korven keskellä. Meillä ei ollut televisiota eikä viihde-elektroniikkaa, joten leikit ja harrastukset oli keksittävä itse. Luovuus kasvoi olosuhteiden pakosta.<br> <br>Pienestä asti olin innokas piirtämään. Koulukirjojen marginaalit ja kouluvihkojen tyhjät sivut täyttyivät piirroksistani. Myös kaupan valkoiset käärepaperit, tyhjät kenkälaatikot olivat hyvää materiaalia harrastukselleni. Piirustuslehtiöitä ei ollut. <br> <br>Nuorena karkasin maailmalle Helsinkiin. Kävin työväenopistolla piirtämässä elävää mallia mutta politikointi ja hippiaate veivät mukanaan, taiteilijuus jäi taka-alalle kunnes jo varttuneempana palasin takaisin pohjoiseen ja aloin maalaamaan. Osallistuin jo muutamiin näyttelyihinkin.</p><p>Opiskelin Oriveden Opiston kuvataidelinjalla puoli vuotta ja pyrin taideakatemiaankin mutta huonolla menestyksellä. Samaan aikaan sain töitä kaksi kertaa Nuorten näyttelyyn Helsingin Taidehalliin. Ajattelin että minähän olen jo valmis, mitä sitä turhaa opiskelemaan. Kävin kuitenkin piirtelemässä ja maalaamassa yliopiston piirustuslaitoksella ja työväenopistolla. Osallistuin taideleirille Kuusamossa ja Hailuodossa. Siellä oli hyvät opettajat.</p><p>Minusta ei tullut apurahataiteilijaa, joten oli keksittävä toimeentulo. Aloin tehdä koristemaalauksia ja kipsientisöintejä. Samaan aikaan osallistuin näyttelyihin ja veistoskilpailuihin.</p><p>Nuorena maalaukseni olivat poliittisia kannanottoja. Niissä oli pasifistinen ja yhteiskunnallinen sanoma. Myöhemmin työt muuttuivat abstrakteiksi, jopa minimalistisiksi. Nuoruuden turhautumat ajoivat kyynisyyteen kunnes iän kypsyttämänä palasin realismiin. Olin ymmärtänyt että taiteeni ei muuta maailmaa mutta voin vaikuttaa muutamiin ihmisiin yksi kerrallaan. Olin ymmärtänyt että jos en pysty pelastamaan ihmiskuntaa luontokatastrofilta niin yritän ainakin pelastaa taiteen maalaus kerrallaan. Ilman taidetta ihminen surkastuu robotiksi. Globaali markkinatalous haluaa riistää meiltä omaehtoisen ajattelun, luku-ja kirjoitustaidon. Meistä halutaan viihteen suurkuluttajia.</p><p>Maalaukseni ovat perinteisin menetelmin maalattuja asetelmia. Niiden sanoma on pysähtyminen.</p>", "sv": "<p>Stilleben avser stillsamma målningar.</p><p>I ett traditionellt stilleben är olika föremål arrangerade på ett bord eller någon annan yta. Föremålen kan vara tallrikar, frukt, grönsaker, fågel som hänger på en krok eller nästan vad som helst. De är orörliga, döda, i ett tillstånd av stillhet. Som namnet antyder är motivet i målningen tystnad, och föremålen är bara rekvisita för att förverkliga idén.</p><p>Jag har också lagt levande varelser till några av mina verk. En katt tittar på en fågel bakom ett fönster, en kråka förundras över en gul plastanka. Ingenting rör sig. Tiden har stannat. Målningarna är realistiska. Jag har försökt fånga ögonblicket genom måleriet. En kamera skulle förstås vara mer praktisk, men en kamera kan inte måla. En digital bild är bara en elektronisk illusion av verkligheten. En målares palett gör det möjligt att leka med färger, ljus och stämningar. De målade ytorna skapar en levande struktur.</p><p>Stilleben är ett uttalande om våra hektiska, stressiga liv. Det är värt att stanna upp och se om något har gått fel när livet blir alltmer stressigt. Vem styr oss, vem utnyttjar oss? Varför behöver vi ständig tillväxt om det gör oss olyckliga, om det leder till förstörelse av naturen och klimatkatastrof? Stilleben är passivt motstånd.</p><p>Det är tiden som står stilla.</p><p><b>Jag</b><br>Jag är en bildkonstnär född i Posio år 1951. Min barndom har jag varit omgiven av skogar och långsträktlanskapar. Mitt hem var en fattig småbrukare mitt i korgen. Vi hade ingen TV eller underhållningselektronik, så vi var tvungna att hitta på våra egna lekar och hobbyer. Detta inkluderade backhoppning och skidåkning på vintern, Indianlekar på sommaren och att bygga stugor. Kreativiteten växte fram ur nödvändighet.</p><p>Från barndomen var jag ivrig att rita. Skolböckernas marginaler och skolhäfternas tomma sidor fylldes av mina teckningar. Vita omslagspapper, en tom skokartong var bra material för en hobby. Det fanns inga ritblad. Jag vann några ritningstävlingar i skolan och det var då jag började vilja bli konstnär, men jag hade ingen aning om vad det innebar.</p><p>När jag var ung, flydde jag ut i världen till Helsingfors. Jag gick till Arbetarhögskolan för att rita efter en levande modell, men politiken och hippierörelsen tog mig bort. Min konstnärliga passion hamnade bakre tills jag blev äldre och jag återvände norrut och började måla. Jag deltog till och med i några utställningar. Jag studerade konst vid Orivesi institut halvår och jag strävade också efter konstakademin.</p><p>Men med dålig framgång. Samtidigt jag fick mitt konsverk för ungdomsutställningar på Helsingfors konsthall. Jag trodde att jag redan var redo, vad var det för meningslösa studier? Jag började dock rita och måla på Helsingfors universitetets ritavdelning och på arbetarinstitutet. Jag deltog i konstläger i Kuusamo och Hailuoto. Det fanns bra lärare där.<br> <br>Jag blev inte konstnärsstipendiat, så det var nödvändigt att hitta en försörjning. Jag började göra dekorationsmålningar och gipsrestaureringar. Samtidigt deltog jag i skulpturtävlingar och utstälningar.<br> <br>När jag var ung var mina målningar politiska uttalanden. De hade ett pasifistisk och samhälleligt budskap. Senare blev konsverk abstrakta, till och med minimalistiska. Ungdomens frustration drev mig till cynism tills mogen av older återvände jag till realism. Jag har förstått att min konst inte förändrar världen men jag kan påverka några människor en i taget. Jag hade förstått att om jag inte kan rädda mänskligheten från naturkatastrofen så försöker jag åtminstone rädda min konst en målning i taget. Utan konst förtvinar människan till en robot. Den globala marknadsekonomin vill beröva oss vår självständika tanke och läs-och skrivförmåga. Vi ska vara storkonsumenter under nöjesfesten.</p><p>Mina målningar är stilleben med traditionella metoder. Deras budskap är att stanna upp.</p>", "en": "<p>Still life, stilleben, means “silent paintings.”</p><p>In a traditional still life, various objects are arranged as a model on a table or some other surface. The objects might be dishes, fruits, vegetables, game birds hanging, or almost anything. They are in a motionless state, still, dead. As the name suggests, the subject of the painting is silence, and the objects are merely tools for realizing an idea.</p><p>I have added living creatures to some of my works as well. A cat watches a bird through the window; a crow marvels at a yellow rubber duck. Nothing moves. Time has stopped. The paintings are realistic. I have tried to capture a moment through the means of painting. Of course, a camera would be more convenient, but a camera cannot paint. A digital photo is only an electronic illusion of reality. The painter’s palette allows for play with colors, light, and moods. Layers of paint create a living texture.</p><p>Stilleben is a statement about our busy, hectic lives. It is worth stopping and looking — has something gone wrong as life becomes increasingly stressful? Who guides us, who takes advantage of us? Why do we need constant growth if it only makes us unhappy — if it leads to the loss of nature and a climate catastrophe? Stilleben is passive resistance.</p><p>It is time that has stopped.</p><p><b>About the artist</b><br>I am a visual artist, born in the Northern Finland in Posio 1951. My childhood was surrounded by forests and nothern hill landscapes. My home was a poor small farm in the middle of the wilderness. We had no television or consumer electronics, so we had to invent games and hobbies ourselves. Creativity grew out of necessity.<br>Ever since I was little, I have been eager to draw. The margins of school books and the empty pages of school notebooks were filled with my drawings. White wrapping paper from the store and empty shoe boxes were also good material for my hobby. There were no drawing pads. <br>When I as young, I ventured out into the world in Helsinki. I went to the workers institute to draw a living model, but the political activites and the pricipiles of hippies swept me away. The artistry remained on to the background until I returned to the north when I was older and started to paint. I already participated in a few exhibitions. <br>I studied at Orivesi institute in visual arts for half a year and I was still trying to get to the art academy, but with bad luck. At the same time two of my sculptures were accepted to the Youngs exhibition in Art Gallery of Helsinki, I thought I was ready as an artist. What's the point of studying? However, I went to study at the universitys drawing departmentland and to the workers institute. I participated in art camps in Kuusamo and Hailuoto. There were good teachers.</p><p>I didn't become a grant artist, so I had to come up with a living income. I started painting decorative paintings and plastering. On the side, I took part in a sculpture competition and to a few art exhibitions.<br>When I was young, my paintings were political statements. They had a pacifist and social message. My later works became abstract, even minimalistic. The frustration of youth led to cynicism until I matured and I returned to romance. I had realized that art doesn't change the world, but I could change people one at a time. I had realized that if I couldn't save the people from a natural disaster, I would at least try to save art one painting at a time. Without art, a human becomes a robot. Global market economy wants to deprive us of original thinking and literacy. They want us to become heavy consumers of entertainment, brainless consumers.</p><p>My paintings are still lifes painted using traditional methods. Their message is stopping.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67665/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67670", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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": 1493970, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-01T13:14:12.016118Z", "last_modified_time": "2025-12-01T13:14:12.016135Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782322.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493970/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T13:14:11.879162Z", "last_modified_time": "2025-12-01T13:14:12.166103Z", "date_published": null, "start_time": "2026-01-17T12: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, "name": { "fi": "Kaikkien lasten tanssitunti – kaikenikäisille", "sv": "Danslektion för alla barn – för alla åldrar", "en": "All children's dance class – for all ages" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!", "sv": "Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!", "en": "How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1FCA07F4FE7D9FA703A268C7F86C2788/Kaikkien_lasten_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/1FCA07F4FE7D9FA703A268C7F86C2788/Danslektion_for_alla_barn", "en": "http://www.annantalo.fi/en/events/event/1FCA07F4FE7D9FA703A268C7F86C2788/All_children_s_dance_class" }, "description": { "fi": "<p>Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!</p><p>Inklusiiviset kaikkien lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Tunteja ohjaavat tanssiin, vammaisuuteen, pedagogiikkaan ja esteettömyyteen perehtyneet ammattilaiset, joilla kaikilla on erilainen taiteellis-pedagoginen tausta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen: opetus@kaaoscompany.fi</p><p>Osallistujamäärä: max. 18 (lasta ja aikuista yhdessä)</p>", "sv": "<p>Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!</p><p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar.</p><p>Lektionerna leds av yrkesverksamma som är insatta i dans, funktionsnedsättning, pedagogik och tillgänglighet, som alla har olika konstnärlig-pedagogisk bakgrund.</p><p>Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning via e-post: opetus@kaaoscompany.fi</p><p>Antal deltagare: max. 18 (barn och vuxna tillsammans)</p>", "en": "<p>How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!</p><p>Children’s Inclusive Dance Classes offer children and their adults the joy of togetherness, movement and an opportunity to meet new people of similar and different backgrounds.</p><p>During the classes we play with movement together and each in our own way.<br>The classes are free and open to children of all ages, their siblings and adults, regardless of disability or non-disability.</p><p>The classes are taught by professionals with expertise in dance, theatre, disability, pedagogy and accessibility, all with different artistic-pedagogical backgrounds.</p><p>The lesson lasts one hour. The space is accessible.</p><p>Free admission, pre-registration required by email: opetus@kaaoscompany.fi</p><p>Number of participants: max. 18 (children and adults together)<br>Sat 18.10.2025 at 14.00<br>Tanssiluokka<br>Annankatu 30, Helsinki<br>Free entry</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67670/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agnnt4jaty", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8663/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/171/?format=api" }, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [ { "id": 812, "price_group": { "id": 1, "description": { "fi": "Aikuinen", "sv": "Vuxen", "en": "Adult" } }, "price": "12.00", "vat_percentage": "14.00", "price_without_vat": "10.53", "vat": "1.47" } ], "info_url": { "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/171/signup-group/create", "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/171/signup-group/create", "en": "https://linkedregistrations.test.hel.ninja/en/registration/171/signup-group/create" }, "description": { "fi": "" }, "price": { "fi": "12€" } } ], "data_source": "helsinki", "publisher": "ahjo:u4804001020", "sub_events": [], "images": [ { "id": 1493969, "has_user_editable_resources": true, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-01T12:42:24.009255Z", "last_modified_time": "2025-12-01T12:44:09.330198Z", "url": "https://linkedevents.api.test.hel.ninja/media/images/kummitus-nettiin-1024x576-1.png", "name": "kummitus-nettiin-1024x576-1.png", "cropping": "144,0,719,576", "photographer_name": "kuvaaja", "alt_text": "kummituskuva", "data_source": "helsinki", "publisher": "ahjo:u4804001020", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493969/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2025-12-01T12:44:09.821288Z", "last_modified_time": "2025-12-01T12:44:09.821309Z", "date_published": null, "start_time": "2026-01-01T15:00:00Z", "end_time": "2026-01-01T16: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": 25, "minimum_attendee_capacity": 10, "enrolment_start_time": "2025-12-01T10:30:00+02:00", "enrolment_end_time": "2025-12-25T17:00:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "Puistokatujen kummitukset -kummituskävely" }, "location_extra_info": { "fi": "" }, "provider": { "fi": "" }, "short_description": { "fi": "Kaupunginmuseon kummituskävelyt luovat aavemaisen näkökulman Helsingin kulttuurihistoriaan." }, "info_url": { "fi": "https://www.helsinginkaupunginmuseo.fi" }, "description": { "fi": "<p>Kaupunginmuseon kummituskävelyt luovat aavemaisen näkökulman Helsingin kulttuurihistoriaan. Museon kummitusvastaavat kertovat kävelyn aikana kaupungin tunnetuimmista kummituksista ja mysteereistä. Mistä syntyvät urbaanilegendat ja miksi ihmiset kertovat kummitustarinoita? Kävelyillä ei ole varsinaista ikärajaa, mutta toivomme pienimpienkin osallistujien olevan yli kymmenvuotiaita.</p><p><strong>Puistokatujen kummitukset ‑kävely</strong> alkaa kaupunginmuseolta (Aleksanterinkatu 16), jatkuu pitkin Esplanadia ja Bulevardia ja päättyy Glo Hotel Artiin (Lönnrotinkatu 29). Opastuksella tutustutaan muun muassa kaupungin vanhimman kivitalon karmivaan ullakkoon, Ruttopuiston kummittelijoihin, ravintola Kappelin aaveeseen ja Aleksanterin teatterin levottomaan sieluun.</p><p>Huom. Kävely alkaa Sederholmin talon ullakolta, jonne kiivetään jyrkkiä portaita. Ei esteetöntä kulkua.</p><p>Osta liput ennakkoon</p><p>Kävelymme ovat suosittuja, ja monet niistä täyttyvät nopeasti. Suosittelemme lipun ostamista ennakkoon. </p><p><strong>lähtöpaikka: </strong>Kaupunginmuseon sisäänkäynti (Aleksanterinkatu 16). Huom. Ilmoittautuminen museon infoon ennen kävelyn alkua.<br><strong>kesto: </strong>1,5 h<br><strong>maksullinen: </strong>lippu 12 €</p><p> </p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agnnt4jaty/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:65036315-7e64-4b4d-a326-172915d258ae", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Ikkuna_tulevaisuuteen_-taidetempaus3884984925" }, "description": null, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p4354/?format=api" } ], "created_time": "2025-12-01T12:12:14.123142Z", "last_modified_time": "2025-12-01T12:12:14.123157Z", "date_published": "2025-12-01T12:11:36Z", "start_time": "2025-12-07T06:00:00Z", "end_time": "2025-12-07T16: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, "name": { "fi": "Ikkuna tulevaisuuteen -taidetempaus!" }, "location_extra_info": null, "provider": { "fi": "Annantalo (KYMP)" }, "short_description": { "fi": "lyhyt kuvaus" }, "info_url": null, "description": { "fi": "<div><p>Tarkka kuvaus</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:65036315-7e64-4b4d-a326-172915d258ae/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66509", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/3912720", "sv": "https://www.lippu.fi/eventseries/3912720", "en": "https://www.lippu.fi/eventseries/3912720" }, "description": null, "price": { "fi": "17 € / Perhelippu 60 €", "sv": "17 € / Perhelippu 60 €", "en": "17 € / Perhelippu 60 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 951667, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-06T09:13:59.265519Z", "last_modified_time": "2025-06-06T09:13:59.265535Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774755.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/951667/?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-06-06T09:13:59.109276Z", "last_modified_time": "2025-11-30T10:12:58.214421Z", "date_published": null, "start_time": "2025-11-30T13: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, "name": { "fi": "LOPPUUNMYYTY: Mutaveijarit: Joulutouhotus", "sv": "Mutaveijarit: Joulutouhotus", "en": "Mutaveijarit: Joulutouhotus" }, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "short_description": { "fi": "Mutaveijareiden uunituoreen joululevyn julkistamiskonsertti!", "sv": "Skivsläppskonsert för Mutaveijarits helt nya julskiva!", "en": "The Mutaveijarit band’s brand-new Christmas album release concert!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/810BBB1D3E2B31566D5DCAABCCB70F95/LOPPUUNMYYTY_Mutaveijarit_Joulutouhotus", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/810BBB1D3E2B31566D5DCAABCCB70F95/Mutaveijarit_Joulutouhotus", "en": "http://www.savoyteatteri.fi/en/events/event/810BBB1D3E2B31566D5DCAABCCB70F95/Mutaveijarit_Joulutouhotus" }, "description": { "fi": "<p>Mutaveijareiden uunituoreen joululevyn julkistamiskonsertti!</p><p>Mutaveijarilassa on koittanut talvi ja joulukin jo lähestyy. Hulvattomien talvitouhujen lomassa Mutaveijareilla on vielä kuitenkin kaikki jouluvalmistelut aivan kesken! Riisipuuroresepti on hukassa, joululahjat tekemättä ja joulusiivous aivan puolitiessään. Jouluhässäkkä on valmis! Onneksi joulupuuhat sujuvat yhdessä leikiten. Tule talviseen konserttiin valmistautumaan jouluun laulaen ja leikkien Mutaveijareiden kanssa. Konsertissa kuulet aivan uusia joulu- ja talvilauluja mutameininkiä unohtamatta.</p><p>Valloittavista esiintymisistä ja mukaansatempaavista, monisävyisistä lauluista tunnettu Mutaveijarit on viimeisen kymmenen vuoden aikana vakiinnuttanut asemansa yhtenä Suomen suosituimmista lastenmusiikkiyhtyeistä. Mielikuvitukselliset ja oivaltavat laulut sekä innostavat ja pedagogisesti monipuoliset laululeikit vievät kuulijansa uudenlaiselle musiikkiretkelle, jonka hauskat ja jännittävät käänteet takaavat viihdyttävän konserttielämyksen koko perheelle.</p><p>Mutaveijareiden kaksi levyä Ympäri ämpäri! (2016) ja Nyt mennään! (2019) ovat saaneet lukuisia tunnustuksia mm. Vamo ry:ltä ja molemmat levyt ovat olleet lastenmusiikin Emma-ehdokkaina. Vuonna 2023 julkaistiin Mutaveijareiden lauluista Ämpärillinen nuotteja -nuottikirja, josta on otettu jo uusintapainos.</p><p>Kesto n. 50 min, ei väliaikaa</p><p>Konsertti on ikärajaton</p><p>Liput 17 €, perhelippu (4 hlöä) 60 €</p><p>Alle 3-vuotias lapsi sylissä ilmaiseksi, jokainen omalla paikallaan istuva tarvitsee oman lipun.</p><p>Savoyssa on tarjolla rajoitettu määrä istuintyynyjä ja -korokkeita perheen pienimmille. Pyydämme käyttämään korokkeita vain todelliseen tarpeeseen, jotta niitä riittää mahdollisimman monelle.</p><p>Huomioithan myös. että Savoy-teatterin aulatilat ovat valitettavan rajalliset, ja lastenvaunuille ja -rattaille on niukasti tilaa. Pyydämme siis jättämään vaunut ja rattaat mahdollisuuksien mukaan kotiin tai esim. autoon konsertin ajaksi.</p><p>Lämmin kiitos yhteistyöstänne; näin takaamme onnistuneen ja iloisen konserttikokemuksen kaikille paikalle tulijoille!</p>", "sv": "<p>Skivsläppskonsert för Mutaveijarits helt nya julskiva!</p><p>Det är vinter hos Mutaveijarit och julen närmar sig redan. Men mitt i allt vinterskoj är Mutaveijarit fortfarande mitt uppe i alla julförberedelser! Receptet på risgrynsgröt är försvunnet, julklapparna ogjorda och de är inte alls klara med julstädningen. Julstöket är igång! Lyckligtvis går julförberedelserna som en dans när man leker tillsammans. Kom till en vintrig konsert för att förbereda dig inför julen genom att sjunga och leka tillsammans med Mutaveijarit. På konserten får du höra helt nya jul- och vintersånger i vanlig Mutaveijarit-stil.</p><p>Mutaveijarit, som är kända för sina charmerande och medryckande framträdanden samt mångtoniga sånger, har under de senaste tio åren etablerat sig som en av Finlands populäraste barnmusikgrupper. De fantasifulla och insiktsfulla sångerna samt inspirerande och pedagogiskt mångsidiga sånglekarna tar lyssnarna med på en ny musikalisk resa, med roliga och spännande vändningar som garanterar en underhållande konsertupplevelse för hela familjen.</p><p>Mutaveijarits två skivor Ympäri ämpäri! (2016) och Nyt mennään! (2019) har fått många utmärkelser av bland annat Småbarns musiklärare rf, och båda skivorna har nominerats till en Emma i kategorin barnmusik. År 2023 publicerades Mutaveijarits sånger i notboken Ämpärillinen nuotteja, som det redan har kommit en ny upplaga av.</p><p>Längd ca 45 min., ingen paus.</p><p>Konserten har ingen åldersgräns.</p><p>Biljetter 17 €, familjebiljett (4 pers.) 60 €</p><p>Barn under 3 år sitter gratis i knät, varje person som sitter på en egen plats behöver en biljett.</p>", "en": "<p>The Mutaveijarit band’s brand-new Christmas album release concert!</p><p>It's winter in Mutaveijarila and Christmas is already approaching. But in the midst of all the winter fun, Mutaveijarit have still not finished any of their Christmas preparations! The rice porridge recipe is missing, the Christmas presents have not been wrapped and the Christmas cleaning is not even halfway done. It’s going to be a real Christmas hassle! Luckily, finishing these Christmas tasks is easy when working together. Come listen to this wintery concert to get ready for Christmas by singing and playing with the Mutaveijarit. In the concert you will hear brand-new Christmas and winter songs, without forgetting the usual muddy fun of Mutaveijarit.</p><p>Over the past ten years, Mutaveijarit, known for their highly entertaining performances and captivating, multi-tonal songs, have established themselves as one of Finland's most popular children's music groups. The imaginative and insightful songs and inspiring and pedagogically diverse singing games take their audience on a new kind of musical journey, with fun and exciting twists and turns that guarantee an entertaining concert experience for the whole family.</p><p>The two albums by Mutaveijarit – Ympäri ämpäri! (2016) and Nyt mennään! (2019) – have received numerous accolades from e.g. the Vamo association of early childhood music teachers, and both albums have been nominated for the Emma award for children's music. In 2023, a selection of Mutaveijarit songs was published in a notebook called Ämpärillinen Nuotteja, and a second edition has already been printed.</p><p>Duration approx. 45 min, no intermission</p><p>The concert is not age-restricted</p><p>Tickets €17, family ticket (4 people) €60</p><p>Children under the age of 3 can share a seat with an adult, each person sitting in their own seat needs their own ticket.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66509/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }