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=86&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 12731, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=87&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=85&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "jiiri:ac6fa589-8bef-f011-8406-7ced8d2e6603", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:79234/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a60cfb64-0747-49c7-9a9b-8b5c4136e91f/?format=api" }, "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/7ebd1065-f24f-f011-877b-000d3ab0762c?readableEventId=TLDG__2023__Linked_Events_kattotapahtuma_vs_tapahtuman_alitapahtumat__1212026_kopioi12354662120" }, "description": { "fi": "Hintatietojen kuvaus suomeksi" }, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1494474, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-14T13:16:12.121976Z", "last_modified_time": "2026-01-14T13:16:12.121992Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9", "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/1494474/?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/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-12T08:07:50.141083Z", "last_modified_time": "2026-01-14T13:16:12.907245Z", "date_published": "2026-01-12T07:51:46Z", "start_time": "2026-01-31T06:30:00Z", "end_time": "2026-01-31T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 10, "audience_max_age": 55, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 500, "minimum_attendee_capacity": 15, "enrolment_start_time": "2026-01-13T08:00:00+02:00", "enrolment_end_time": "2026-01-30T08:00:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "TLDG - 2023 - Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026 kopioi kopioi - Alitapahtuma 1" }, "location_extra_info": null, "provider": { "fi": "Tapahtuman järjestäjä" }, "short_description": { "fi": "Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026" }, "info_url": null, "description": { "fi": "<div><p>Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:ac6fa589-8bef-f011-8406-7ced8d2e6603/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:1b22258a-8bef-f011-8406-7c1e5277afa9", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:79234/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a60cfb64-0747-49c7-9a9b-8b5c4136e91f/?format=api" }, "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/7ebd1065-f24f-f011-877b-000d3ab0762c?readableEventId=TLDG__2023__Linked_Events_kattotapahtuma_vs_tapahtuman_alitapahtumat__1212026_kopioi12354662121" }, "description": { "fi": "Hintatietojen kuvaus suomeksi" }, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1494473, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-14T13:16:00.141959Z", "last_modified_time": "2026-01-14T13:16:00.141977Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9", "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/1494473/?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/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-12T08:07:13.897598Z", "last_modified_time": "2026-01-14T13:16:00.940115Z", "date_published": "2026-01-12T07:51:49Z", "start_time": "2026-01-31T06:30:00Z", "end_time": "2026-01-31T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 10, "audience_max_age": 55, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 500, "minimum_attendee_capacity": 15, "enrolment_start_time": "2026-01-13T08:00:00+02:00", "enrolment_end_time": "2026-01-30T08:00:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "TLDG - 2023 - Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026 kopioi kopioi - Alitapahtuma 2" }, "location_extra_info": null, "provider": { "fi": "Tapahtuman järjestäjä" }, "short_description": { "fi": "Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026" }, "info_url": null, "description": { "fi": "<div><p>Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:1b22258a-8bef-f011-8406-7c1e5277afa9/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:a60cfb64-0747-49c7-9a9b-8b5c4136e91f", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:79234/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/7ebd1065-f24f-f011-877b-000d3ab0762c?readableEventId=TLDG_-_2023_-_Linked_Events_kattotapahtuma_vs_tapahtuman_alitapahtumat_-_1212026_kopioi1235466212" }, "description": { "fi": "Hintatietojen kuvaus suomeksi" }, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:1b22258a-8bef-f011-8406-7c1e5277afa9/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:ac6fa589-8bef-f011-8406-7ced8d2e6603/?format=api" } ], "images": [ { "id": 1494472, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-14T13:15:55.667223Z", "last_modified_time": "2026-01-14T13:15:55.667242Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9", "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/1494472/?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/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-12T07:53:21.997409Z", "last_modified_time": "2026-01-14T13:15:58.003576Z", "date_published": "2026-01-12T07:51:37Z", "start_time": "2026-01-31T06:30:00Z", "end_time": "2026-01-31T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 10, "audience_max_age": 55, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 500, "minimum_attendee_capacity": 15, "enrolment_start_time": "2026-01-13T08:00:00+02:00", "enrolment_end_time": "2026-01-30T08:00:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "TLDG - 2023 - Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026 kopioi kopioi" }, "location_extra_info": null, "provider": { "fi": "Tapahtuman järjestäjä" }, "short_description": { "fi": "Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026" }, "info_url": null, "description": { "fi": "<div><p>Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a60cfb64-0747-49c7-9a9b-8b5c4136e91f/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67580", "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: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:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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/artist/mimoart-company-body-notes/#calendar-start=2026-01", "sv": "https://www.lippu.fi/artist/mimoart-company-body-notes/#calendar-start=2026-01", "en": "https://www.lippu.fi/artist/mimoart-company-body-notes/#calendar-start=2026-01" }, "description": null, "price": { "fi": "32 € / 20 € / 18 €", "sv": "32 € / 20 € / 18 €", "en": "32 € / 20 € / 18 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493877, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-24T13:12:35.143577Z", "last_modified_time": "2025-11-24T13:12:35.143589Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778037.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493877/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T13:12:35.042473Z", "last_modified_time": "2026-01-13T08:13:21.700537Z", "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": "MimoArt Company: BODY NOTES", "sv": "MimoArt Company: BODY NOTES", "en": "MimoArt Company: BODY NOTES" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "MimoArt Companyn kansainvälisesti palkittu ja ylistetty menestysteos Body Notes palaa Stoaan!", "sv": "MimoArt Companys internationellt prisbelönta och hyllade succé Body Notes återvänder till Stoa!", "en": "International award-winning work praised by audiences and art critics - coming back to Stoa!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6FE62E72D0DF4D20857FB826910BCB48/MimoArt_Company_BODY_NOTES", "sv": "http://www.stoa.fi/sv/evenemang/event/6FE62E72D0DF4D20857FB826910BCB48/MimoArt_Company_BODY_NOTES", "en": "http://www.stoa.fi/en/events/event/6FE62E72D0DF4D20857FB826910BCB48/MimoArt_Company_BODY_NOTES" }, "description": { "fi": "<p>MimoArt Companyn kansainvälisesti palkittu ja ylistetty menestysteos Body Notes palaa Stoaan!</p><p>Body Notes on uskomattoman hieno kombinaatio tanssia, fyysistä teatteria, butoa, slapstick -komediaa, uutta klovneriaa, livemusiikkia sekä visuaalista sielunruokaa. Taiteellisesti kunnianhimoisen teoksen omaleimainen liikekieli yhdessä häikäisevän valo-, lavastus- ja äänimaailman kanssa rakentavat katsojille kauniin, oivaltavan ja monitasoisen elämyksen, joka haastaa tuoreella tavalla taidetanssin perinteistä vakavuutta.</p><p>\"Body Notes on improvisaatioita hyödyntävä matka kaikkiin mahdollisiin näyttämöilmaisumuotoihin. Se tuntuu syvällä kehossa ja sielussa, ravistelee, venyttelee, huvittaa ja liikuttaa.” Helsingin Sanomat</p><p>“Miten pukea sanoiksi teatterillinen elämys joka ravistelee syvästi sisintäsi? Onko se edes mahdollista? MimoArt Companyn Body Notes on yksi tällaisista kokemuksista.” Nur Magazine</p><p>Katsojakokemuksia:</p><p>“Tämä on järkyttävän hieno teos. Niin monella tasolla. Itkin ja nauroin, jäädyin ja sulin, yllätyin kerta toisensa jälkeen ja haltioiduin itseni pakahduksiin.\"</p><p>“Vaikuttava teos. Visuaalisesti, kuin olisi ollut nykytaidegalleriassa.”</p><p>“Aivan huikea, juuri sitä mitä esittelyssä luvattiin ja enemmän! Tämä tulee hymäjämään sielunmaisemissa tovin. Suosittelen lämpimästi!”</p><p>Vuonna 2019 kansainvälisen fyysisen teatterin festivaalin parhaana teoksena palkittu Body Notes on kiertänyt kotimaisilla ja kansainvälisillä areenoilla mm. edustaen Suomea 2023 Theatre Olympics -festivaalilla. Tammikuussa 2026 teos nähdään myös 11 näytöksen verran osana kansallista 8-luokkalaisille suunnattua Taidetestaajat ohjelmistoa.</p><p>KESTO: 75 min<br>IKÄSUOSITUS: 7+ (Mahdolliset sisältöä koskevat kysymykset: contact@mimoartcompany.com)<br>Esitys on gluteeniton.</p><p>OHJAUS / KONSEPTI: Mimosa Lindahl</p><p>LAVASTUS: Arto-Oskar Reunanen<br>VALOSUUNNITTELU: Ilmari Karhu (Stoassa valojen ajo Karel Šimek)<br>ÄÄNISUUNNITTELU: Jaakko Autio (Stoassa äänen ajo Sebastian Kurtén)<br>ESIINTYJÄT: <br>Mates Petrák (CZ), Oskari Turpeinen, Antti-Pekka Pudas, Mikael Kuosmanen (17.1) / Mika Seppälä (24.1),<br>Juho Kanervo (Sello)</p><p>(Teoksessa 2017-2024 esiintyneet: Saska Pulkkinen, Miro Lopperi, Sergio Castrillón (cello), Mikael Kuosmanen, Marko Pakarinen, Oskari Turpeinen, Mikko Lampinen, Mates Petrák (CZ), Milan Sládek (SK), Milán Maurer (HUN), Eoin Mac Donncha (IRL/HUN), Antti-Pekka Pudas, Lauri Lohi)</p><p>VALOKUVAT: Kai Kuusisto<br>TUOTANTO: MimoArt Company yhteistyössä Stoan kanssa<br>LAITESPONSORI: Hako Ground & Garden</p>", "sv": "<p>MimoArt Companys internationellt prisbelönta och hyllade succé Body Notes återvänder till Stoa!</p><p>Body Notes är en otrolig kombination av dans, fysisk teater, buto, slapstick-komedi, nya clownerier, livemusik och visuell mat för själen. Det konstnärligt ambitiösa verkets särpräglade rörelsespråk, i kombination med den bländande ljussättningen, scenografin och ljudbilden, skapar en vacker, insiktsfull och mångbottnad upplevelse som utmanar den traditionella seriösa konstdansen på ett nytt sätt.</p><p>\"Body Notes är en improvisatorisk resa in i alla möjliga former av scenuttryck. Det känns djupt i kropp och själ, skakar, sträcker, roar och berör.\" Helsingin Sanomat</p><p>\"Hur sätter man ord på en teaterupplevelse som skakar om en i grunden? Är det ens möjligt? MimoArt Companys Body Notes är en sådan upplevelse.\" Nur Magazine</p><p>Publikens omdömen:</p><p>\"Det här är ett chockerande vackert verk. På så många plan. Jag grät och skrattade, frös och smälte, överraskades om och om igen och blev fullständigt hänförd.\"</p><p>\"Ett imponerande verk. Visuellt, som att vara i ett galleri för modern konst.\"</p><p>\"Helt fantastiskt, precis vad som utlovades i presentationen och mer därtill! Det här kommer att få själen att le ett tag framöver. Jag rekommenderar det varmt!\"</p><p>Body Notes, som utsågs till det bästa verket vid den internationella festivalen för fysisk teater 2019, har turnerat på inhemska och internationella arenor och bland annat representerat Finland på Theatre Olympics-festivalen 2023. I januari 2026 kommer verket också att visas 11 gånger som en del av det nationella Konsttestarna-programmet för åttondeklassister.</p><p>LÄNGD: 75 min.<br>ÅLDERSREKOMMENDATION: 7+ (Eventuella frågor om innehållet: contact@mimoartcompany.com)<br>Föreställningen är glutenfri.</p><p>REGI/KONCEPT: Mimosa Lindahl<br>ISCENSÄTTNING: Arto-Oskar Reunanen<br>LJUSDESIGN: Ilmari Karhu (på Stoa Karel Šimek)<br>LJUDDESIGN: Jaakko Autio (på Stoa Sebastian Kurtén)<br>FOTOGRAFIER: Kai Kuusisto<br>PRODUKTION: MimoArt Company i samarbete med Stoa</p><p>PÅ SCENEN:<br>Mates Petrák (CZ), Mikko Lampinen, Oskari Turpeinen, Antti-Pekka Pudas, Mikael Kuosmanen, Juho Kanervo (Cello)</p><p>(Medverkande i verket 2017–2024: Saska Pulkkinen, Miro Lopperi, Sergio Castrillón (cello), Mikael Kuosmanen, Marko Pakarinen, Oskari Turpeinen, Mates Petrák (CZ), Milan Sládek (SK), Milán Maurer (HUN), Eoin Mac Donncha (IRL/HUN), Antti-Pekka Pudas, Lauri Lohi)</p>", "en": "<p>International award-winning work praised by audiences and art critics - coming back to Stoa!</p><p>Body Notes is an incredibly fine combination of dance, physical theatre, butoh, slapstick comedy, new clownery, live music and visual soul food. Together with the magnificent light-, set- and sound design it builds a beautiful and artistically ambitious multi-level experience, which challenges the seriousness of art dance in a fresh, novel way.</p><p>“Body Notes is an extremely visual, improvisational journey to all possible stage expression forms. It feels deep in the body and soul, shakes, stretches, amuses and moves you.” Helsingin Sanomat</p><p>“How to put to words a theatrical experience that shakes you to the core? Is it even possible? MimoArt Company’s Body Notes is one of those experiences.” Nur Magazine</p><p>Viewer experiences:</p><p>“This is a shockingly beautiful piece of work. On so many levels. I cried and laughed, froze and melted, was surprised time and time again and was enchanted to the point of overwhelmed myself.\"</p><p>“Impressive show. Visually it was like being in a contemporary art gallery.”</p><p>“Absolutely amazing, exactly what was promised in the introduction and more! This will be smiling in my soul landscape for a long time. I highly recommend!”</p><p>DURATION: 75 min<br>AGE RECOMMENDATION: 7+ <br>The performance is gluten free.</p><p>DIRECTION / CONCEPT: Mimosa Lindahl</p><p>SET DESIGN: Arto-Oskar Reunanen<br>LIGHTING DESIGN: Ilmari Karhu (in the Stoa Light Op Karel Šimek)<br>SOUND DESIGN: Jaakko Autio (in the Stoa Sound Op Sebastian Kurtén)<br>PERFORMERS: <br>Mates Petrák (CZ), Oskari Turpeinen, Antti-Pekka Pudas, Mikael Kuosmanen (17.1) / Mika Seppälä (24.1),<br>Juho Kanervo (Sello)</p><p>(Previous performers 2017-2024: Saska Pulkkinen, Miro Lopperi, Sergio Castrillón (cello), Mikael Kuosmanen, Marko Pakarinen, Oskari Turpeinen, Mikko Lampinen, Mates Petrák (CZ), Milan Sládek (SK), Milán Maurer (HUN), Eoin Mac Donncha (IRL/HUN), Antti-Pekka Pudas, Lauri Lohi)</p><p>PHOTOS: Kai Kuusisto<br>PRODUCTION: MimoArt Company together with Stoa<br>EQUIPMENT SPONSOR: Hako Ground & Garden</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67580/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67330", "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/event/kino-helios-terapia-malmitalo-21118944/", "sv": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118944/", "en": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118944/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494267, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T10:13:58.549683Z", "last_modified_time": "2025-12-19T10:13:58.549726Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780971.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494267/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T10:13:58.440121Z", "last_modified_time": "2026-01-12T10:12:57.264754Z", "date_published": null, "start_time": "2026-01-17T16: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": "Terapia (12) – Kino Helios", "sv": "Terapia (12) – Kino Helios", "en": "Terapia (12) – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E616CCBCA80920F3568B47126144B37A/Terapia_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E616CCBCA80920F3568B47126144B37A/Terapia_12_", "en": "http://www.malmitalo.fi/en/events/event/E616CCBCA80920F3568B47126144B37A/Terapia_12_" }, "description": { "fi": "<p>Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan.</p><p>Leirillä he päätyvät törmäyskurssille itsensä ja parisuhteidensa kanssa. Samaan aikaan terapeutit kamppailevat oman avioliittonsa ja murenevien unelmiensa keskellä. Draamakomedian on ohjannut ja käsikirjoittanut Paavo Westerberg.</p><p>Elokuvassa näyttelevät maamme kirkkaimpiin tähtiin lukeutuvat Pihla Viitala, Tommi Korpela, Alma Pöysti, Matleena Kuusniemi, Antti Luusuaniemi, Jarkko Niemi, Mikko Kauppila ja Jakob Öhrman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67330/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67329", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494136, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T13:13:56.025285Z", "last_modified_time": "2025-12-08T13:13:56.025298Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780970.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494136/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T13:13:55.919041Z", "last_modified_time": "2026-01-12T10:12:57.118147Z", "date_published": null, "start_time": "2026-01-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": "Supermarsu ja suuri huijaus – Kino Helios", "sv": "Supermarsu ja suuri huijaus – Kino Helios", "en": "Supermarsu ja suuri huijaus – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1B47878C930BAD655CA0577ED7AD4169/Supermarsu_ja_suuri_huijaus", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1B47878C930BAD655CA0577ED7AD4169/Supermarsu_ja_suuri_huijaus", "en": "http://www.malmitalo.fi/en/events/event/1B47878C930BAD655CA0577ED7AD4169/Supermarsu_ja_suuri_huijaus" }, "description": { "fi": "<p>Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä.</p><p>Hänen paras ystävänsä on luokan neropatti Simo ja vastustajansa puolestaan Rasva-Antero, koulun pahin kiusaaja, jonka isä on kaupungin rikkain mies. Mukana menossa on myös Rasva-Anteron paras kaveri Pietari. Elokuvassa ollaan ekologisten kysymysten äärellä, sillä kaikkia huolettaa lähimetsän ja siellä asuvan pörröhännän kohtalo.</p><p>Emiliasta tuli supersankari, kun hän sai lahjaksi taianomaisen lemmikkimarsun, joka puri häntä sormeen. Hänet vietiin Näsinneulan katolle Jättiläismarsun luokse ja hän saikin tietää olevansa Supermarsu. Mutta mitä tapahtuu, kun Emilian supervoimien lähde, juomapullo, päätyy vääriin käsiin? Pystyykö Supermarsu pelastamaan lähimetsän ja pörröhännän?</p><p>Ikäraja: S<br>Kesto: 92 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67329/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67327", "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/event/kino-helios-sydantalvi-malmitalo-21118650/?affiliate=HKK", "sv": "https://www.lippu.fi/event/kino-helios-sydantalvi-malmitalo-21118650/?affiliate=HKK", "en": "https://www.lippu.fi/event/kino-helios-sydantalvi-malmitalo-21118650/?affiliate=HKK" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494263, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T09:13:33.834783Z", "last_modified_time": "2025-12-19T09:13:33.834801Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780967.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494263/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T09:13:33.722670Z", "last_modified_time": "2026-01-12T10:12:56.761312Z", "date_published": null, "start_time": "2026-01-16T13: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/7E5999F0DF08982C4BBF8CCF50457644/Sydantalvi_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7E5999F0DF08982C4BBF8CCF50457644/Sydantalvi_16_", "en": "http://www.malmitalo.fi/en/events/event/7E5999F0DF08982C4BBF8CCF50457644/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:67327/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67326", "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/event/kino-helios-terapia-malmitalo-21118943/", "sv": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118943/", "en": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118943/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494262, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T09:13:33.340656Z", "last_modified_time": "2025-12-19T09:13:33.340670Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780965.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494262/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T09:13:33.222212Z", "last_modified_time": "2026-01-12T10:12:56.514764Z", "date_published": null, "start_time": "2026-01-14T16: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": "Terapia (12) – Kino Helios", "sv": "Terapia (12) – Kino Helios", "en": "Terapia (12) – Kino Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0EA851283F0E4E87F21805A6748AC40/Terapia_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D0EA851283F0E4E87F21805A6748AC40/Terapia_12_", "en": "http://www.malmitalo.fi/en/events/event/D0EA851283F0E4E87F21805A6748AC40/Terapia_12_" }, "description": { "fi": "<p>Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan.</p><p>Leirillä he päätyvät törmäyskurssille itsensä ja parisuhteidensa kanssa. Samaan aikaan terapeutit kamppailevat oman avioliittonsa ja murenevien unelmiensa keskellä. Draamakomedian on ohjannut ja käsikirjoittanut Paavo Westerberg.</p><p>Elokuvassa näyttelevät maamme kirkkaimpiin tähtiin lukeutuvat Pihla Viitala, Tommi Korpela, Alma Pöysti, Matleena Kuusniemi, Antti Luusuaniemi, Jarkko Niemi, Mikko Kauppila ja Jakob Öhrman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67326/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67493", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16197/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494443, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-12T07:12:53.085149Z", "last_modified_time": "2026-01-12T07:12:53.085164Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781600.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494443/?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": "2026-01-12T07:12:52.997426Z", "last_modified_time": "2026-01-12T08:12:48.638977Z", "date_published": null, "start_time": "2026-01-17T09:00:00Z", "end_time": "2026-01-17T12: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": "Annantalon taidelauantai: Meren asukas", "sv": "Annegårdens konstlördag: Havets invånare", "en": "Annantalo Art Saturday: Sea dweller" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1CB2B9E49625DF46CD883F85EB0E3283/Annantalon_taidelauantai_Meren_asukas", "sv": "http://www.annantalo.fi/sv/evenemang/event/1CB2B9E49625DF46CD883F85EB0E3283/Annegardens_konstlordag_Havets_invanare_", "en": "http://www.annantalo.fi/en/events/event/1CB2B9E49625DF46CD883F85EB0E3283/Annantalo_Art_Saturday_Sea_dweller" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Meren asukas</b> <br>Tule tekemään huovasta meren alainen asukas. Lelulla pääset leikkimään merenalaiseen mielikuvitusmaailmaan. <br>Työpajan ohjaa taidekasvattaja Noora Puranen</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Havets invånare</b><br>Kom och skapa en undervattensvarelse av tovad ull. Med leksaken kan du leka i en undervattens fantasivärld. Workshopen leds av konstpedagogen Noora Puranen.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Sea dweller</b><br>Come and make an underwater creature out of felt. With the toy, you can play in an imaginary underwater world. The workshop is led by art educator Noora Puranen.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>A warm welcome to Annantalo on Saturdays!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67493/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agn3b33s7i", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/172/?format=api" }, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/172/signup-group/create", "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/172/signup-group/create", "en": "https://linkedregistrations.test.hel.ninja/en/registration/172/signup-group/create" }, "description": null, "price": null } ], "data_source": "helsinki", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1494334, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-30T12:03:38.293399Z", "last_modified_time": "2025-12-30T12:03:38.293424Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/a99d7115-06d3-ef11-8eea-000d3adf4af4", "name": "Keltainen ruutu", "cropping": "", "photographer_name": "Kari Kuvaaja", "alt_text": "Keltainen ruutu jossa tekstiä", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494334/?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/yso:p1393/?format=api" } ], "created_time": "2026-01-12T06:40:41.255175Z", "last_modified_time": "2026-01-12T06:40:41.255189Z", "date_published": null, "start_time": "2026-01-17T14:00:00Z", "end_time": "2026-01-17T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 10, "minimum_attendee_capacity": null, "enrolment_start_time": "2026-01-12T12:00:00+02:00", "enrolment_end_time": "2026-01-12T16:00:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "Testi- ilmoittautumisten seurantalinkin luominen" }, "location_extra_info": { "fi": "" }, "provider": { "fi": "" }, "short_description": { "fi": "Ilmoittautumista vaativa tapahtuma" }, "info_url": { "fi": "" }, "description": { "fi": "<p>Ilmoittautumista vaativa tapahtuma</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agn3b33s7i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:59f912a8-6354-4ddc-bb7e-f003dd1dafc3", "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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:248bd444-48d1-4bfc-ad0b-5687070648e2/?format=api" }, "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=Vuoden_2026_Linked_Events_-projektin_Alitapahtuma787968975" }, "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:p1235/?format=api" } ], "created_time": "2026-01-09T10:50:19.900889Z", "last_modified_time": "2026-01-09T10:56:12.826757Z", "date_published": "2026-01-09T10:24:54Z", "start_time": "2026-01-19T06:00:00Z", "end_time": "2026-01-31T14: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": "Vuoden 2026 Linked Events -projektin Alitapahtuma" }, "location_extra_info": { "fi": "Alagalleria" }, "provider": { "fi": "Annantalo (KYMP)" }, "short_description": { "fi": "tämän julkaisu tapahtuu saman aikaisesti kuin kattotapahtuman\nAlitapahtuma" }, "info_url": null, "description": { "fi": "<div><p>testataan Le uudelleen Alitapahtuma</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:59f912a8-6354-4ddc-bb7e-f003dd1dafc3/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67755", "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: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/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 1494207, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-15T05:13:40.034247Z", "last_modified_time": "2025-12-15T05:13:40.034263Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782262.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494207/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-15T05:13:39.818236Z", "last_modified_time": "2026-01-08T12:13:21.982258Z", "date_published": null, "start_time": "2026-01-10T12: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": "Tuu leikkiin! [LOPPUUNVARATTU] – Tulevaisuusleikki tulevaisuuden tutkimusmatkailijoille", "sv": "Ska vi leka? [Fullbokad] – Framtidslek för framtidens upptäcktsresande", "en": "Let's play! [Fully booked] – An imaginary expedition into the future for explorers of the future" }, "location_extra_info": null, "provider": { "fi": "Järj. Annantalo", "sv": "Arr. Annegården", "en": "Org. Annantalo" }, "short_description": { "fi": "A-alus kulkee maalla, merellä ja ilmassa, avaruudessa, tulevaisuudessa ja ennen kaikkea mielikuvituksessa. Aluksen tärkein osa olet sinä. Sukelletaan yhdessä leikin siivin tulevaisuuden Annantaloon.", "sv": "A-skeppet färdas på land, till sjöss och i luften, i rymden, i framtiden och framför allt i fantasin.", "en": "The A-ship travels on land, sea and air, in space, in the future and, above all, through your imagination. You are the most important part of this ship." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EEDF2456D343287C50F9285027B99000/Tuu_leikkiin_LOPPUUNVARATTU_", "sv": "http://www.annantalo.fi/sv/evenemang/event/EEDF2456D343287C50F9285027B99000/Ska_vi_leka_Fullbokad_", "en": "http://www.annantalo.fi/en/events/event/EEDF2456D343287C50F9285027B99000/Let_s_play_Fully_booked_" }, "description": { "fi": "<p>A-alus kulkee maalla, merellä ja ilmassa, avaruudessa, tulevaisuudessa ja ennen kaikkea mielikuvituksessa. Aluksen tärkein osa olet sinä. Sukelletaan yhdessä leikin siivin tulevaisuuden Annantaloon.</p><p>Mitä tulevaisuuden Annantalossa tapahtuu, keitä siellä tapaat? Mikä siellä yllättää? Tuu leikkiin!</p><p>Annantalossa järjestetään Tuu leikkiin! -tulevaisuusleikki 7.–31.1.2026. Tapahtumien avulla kerätään lasten, nuorten ja perheiden näkemyksiä siitä, millainen Annantalo voisi olla tulevaisuudessa perusparannuksen jälkeen. Tule mukaan ideoimaan ja unelmoimaan!</p><p>Mukaan leikkiin mahtuu 5 lasta aikuisen kanssa. Työpaja on tarkoitettu 3-6-vuotiaille. Työpajan kesto 90 min.</p><p><b>HUOM! Vain ennakkoon ilmoittautuneille.</b><br><u><a href=\"https://link.webropol.com/ep/tuuleikkiin1\">Ilmoittaudu mukaan työpajaan</a></u></p><p>Tapahtuma on suomenkielinen ja maksuton.</p><p>Annantalo – lasten, nuorten ja perheiden oma monitaiteinen taidekeskus – uudistuu perusparannushankkeen yhteydessä 2030-luvun alkupuolella. Nyt on mahdollisuus vaikuttaa talon tulevaisuuteen! Tavoitteena on tehdä Annantalosta lasten ja pienten kaupungin tekijöiden ylpeyden aihe ja yhä rakastetumpi helmi pääkaupunkiseudun lastenkulttuurikohteiden joukossa – talon kulttuurihistoriaa ja paikan henkeä kunnioittaen.</p>", "sv": "<p>A-skeppet färdas på land, till sjöss och i luften, i rymden, i framtiden och framför allt i fantasin.</p><p>Viktigast på skeppets är du för du kan påverka Annegårdens framtid genom att leka med oss och berätta allt möjligt. Vad händer och sker månne på Annegården i framtiden, enligt dig? Vem kommer du att att möta där? Vad kommer att överraska dig – och vad inte?</p><p>Vi ordnar framtidsleken Ska vi leka? på Annegården 7–31.1.2026. Med hjälp av evenemangen samlar vi in barns, ungas och familjers åsikter om hurdan Annegården kunde vara i framtiden efter renoveringen. Kom med, kläck vilda idéer och dröm om framtiden!</p><p>5 barn (med en vuxen) ryms med i leken. Verkstaden är avsedd för 3–6-åringar. Verkstaden är 90 minuter lång.</p><p><b>OBS! Endast med förhandsanmälan.</b> <br><u><a href=\"https://link.webropol.com/ep/tuuleikkiin1\">Anmäl dig till verkstaden</a></u></p><p>Evenemanget är avgiftsfritt. Evenemanget är på finska.</p><p>Helsingfors konstcentrum för barn och unga, Annegården, renoveras i början av 2030-talet. Nu har stadsborna av alla åldrar möjlighet att påverka gårdens framtid. Också barn och unga är välkomna att planera och säga sin åsikt med början 7.1.2026.</p><p>Annegården är barns, ungas och familjers mångsidiga konstcentrum samt Helsingfors största aktör inom barnkultur. Renoveringsarbetet vid Annegården inleds 2032 enligt en preliminär tidtabell. Det är framför allt orsaker som har att göra med den fysiska byggnadens utrymmen och byggnadens tekniska livslängd som gör att staden nu går in för en renovering. Till exempel måste tillgängligheten bli bättre och utrymmena modernare.</p><p>Samtidigt får staden och stadsborna tillsammans en möjlighet att planera och utveckla själva verksamheten, alltså de tjänster staden erbjuder helsingforsborna i Annegården. Därför är det viktigt att så många som möjlighet av de olika användarna, nuvarande och framtida kunderna och partnerna tar tillfället i akt och berättar för staden om hur de ser de framtida behoven. Blicken riktas mot framtiden genom lek och fantasi från och med 7.1.2026.</p>", "en": "<p>The A-ship travels on land, sea and air, in space, in the future and, above all, through your imagination. You are the most important part of this ship.</p><p>Let's play together and dive into the Annantalo of the future. What is happening in the Annantalo of the future, who are you meeting there? What surprises are in store? Let’s Play!</p><p>‘Let’s Play!’ imaginary expedition into the future will be held at Annantalo from 7 to 31 January 2026. The events will be used to gather the views of children, young people and families on what Annantalo could be like in the future, after the renovation. Come and join us in brainstorming and dreaming!</p><p>The workshop can accommodate up to 5 children (with an adult) at a time, and it is intended for children aged 3–6. Workshop duration 90 min. <br> <br><b>PLEASE NOTE! Only for pre-registered participants.</b> <br><u><a href=\"https://link.webropol.com/ep/tuuleikkiin1\">Register for the workshop</a></u></p><p>The event is in Finnish and free of charge.</p><p>Annantalo Children and Youth Art Centre in Helsinki will be renovated in the early 2030s, and now the city residents – including children – have a chance to influence its future.</p><p>Annantalo is a multidisciplinary arts centre for children, young people and families and it is the largest children's culture operator in Helsinki. The construction works of the Annantalo renovation are scheduled to start in 2032. The renovation needs are essentially related to the physical facilities and the technical lifespan of the building, such as improving its accessibility and modernising the facilities. Major renovation projects also provide an opportunity to plan and develop the services offered. This is why Annantalo wants to engage in a dialogue with its different user groups, current customers and partners, and also potential future customers about their needs in the future. Looking to the future through play and make-believe from 7 January 2026 onwards.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67755/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67749", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494146, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T07:13:38.939704Z", "last_modified_time": "2025-12-09T07:13:38.939719Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780874.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494146/?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-09T07:13:38.827966Z", "last_modified_time": "2026-01-07T12:12:52.732590Z", "date_published": null, "start_time": "2026-01-07T15:00:00Z", "end_time": "2026-01-09T19: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": "Stop Time / LUX-työpajat koko perheelle – LUX Helsinki", "sv": "Stop Time / LUX-verkstäder för hela familjen – LUX Helsinki", "en": "Stop Time / LUX workshops for the whole family – LUX Helsinki" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Annantalo muuttuu LUX Helsingin aikana pysähtymisen ja rauhoittumisen keitaaksi.", "sv": "Under LUX Helsinki kommer Annegården att bli en oas av stillhet och lugn.", "en": "During LUX Helsinki, Annantalo will become an oasis of stillness and calm." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/504CAA4918925400FFAFC24F3B724769/Stop_Time_LUX-tyopajat_koko_perheelle", "sv": "http://www.annantalo.fi/sv/evenemang/event/504CAA4918925400FFAFC24F3B724769/Stop_Time_LUX-verkstader_for_hela_familjen", "en": "http://www.annantalo.fi/en/events/event/504CAA4918925400FFAFC24F3B724769/Stop_Time_LUX_workshops_for_the_whole_family" }, "description": { "fi": "<p>Annantalo muuttuu LUX Helsingin aikana pysähtymisen ja rauhoittumisen keitaaksi.</p><p>Piipahda sisätiloihin nauttimaan lapsille ja lapsiperheille suunnitelluista Lux-teemaisista työpajoista sekä eri aisteja kutkuttavista tiloista.</p><p>Ohjelmallista toimintaa on tarjolla keskiviikosta perjantaihin klo 17–21.<br> <br>Vapaa pääsy!</p><p>Annantalon oma kahvila Napero on myös auki tapahtumien ajan.</p><p>Ohjelmakuvaukset:</p><p><b>Leikin oma tila</b> <br>klo 17 - 21<br>Merellinen mielikuvitusmaailma kutsuu leikkimään ja kuvittelemaan. Tilassa olevat elementit soveltuvat rauhallisiin leikkeihin. Tilassa toteutetaan myös työpaja/esitykset joista leikkijöitä tiedotetaan ajoissa. Niiden aikana vapaa leikki pidetään tauolla. <br>Esitysten aikana kutsumme siirtymään osallistuvaksi yleisöksi!</p><p><b>Maan Kajo ja meren Kimallus</b><br>Osallistava esitys<br>klo 18:00 / 19:00 / 20:00 (kesto n. 20 min) <br>Esitysten aikana kutsumme siirtymään osallistuvaksi yleisöksi! <br>Tilaan mahtuu yhteensä 20 henkeä kerrallaan. Esitysosuuteen voi noutaa lipun ennakkoon infosta.</p><p><b>Birth of a Bird</b><br>VR-teos<br>klo 17:30 – 20:30<br>Mitä jos voisit hypätä kappaleen sisälle? Mitä jos voisit koskettaa ääntä? Entä jos musiikkiteoksen soittimet heräisivät eloon? Birth of a Bird kuljettaa käyttäjän sävellyksen keskelle. Äänet liikkuvat heidän ympärillään. He voivat koskettaa ääniä, pitää niitä kädessään, viedä ne korvalle kuullakseen uusia yksityiskohtia tai tuoda ääniä yhteen luodakseen uusia duoja, jotka muuttavat koko teoksen tunnelman.<br>Teos koetaan yksittäin, omalla 2x2m alueella käyttäen VR-laseja, jotka saa lainaan.<br>Tilaan pääsee viisi henkilöä kerrallaan kokemaan teoksen, jonka kesto on noin 6-7 min.</p><p><b>Valomaalaus</b><br>Työpaja<br>klo 17:15 – 20:55 <br>Tervetuloa valomaalaamaan!<br>Valomaalauksessa pensseleinä toimivat taskulamput ja maalauspohjana pimennetty huone. Tutkimme, millaisia jälkiä ja muotoja saamme piirrettyä ilmaan ja taltioitua valokuviin pitkien valotusaikojen avulla. Valoherkkien on hyvä ottaa huomioon, että pajassa käytetään kirkkaita taskulamppuja, joista osa myös vilkkuu.<br>Pajaan otetaan kerrallaan rajattu määrä henkilöitä, mutta muuten paja toimii nonstoppina.</p><p><b>Tuu leikkiin!</b> <br>7.1. – 31.1.2026 <br>Ideointipiste tulevaisuuden tutkimusmatkailijoille.<br>Sukella kanssamme tulevaisuuden Annantaloon. <br>Piste on interaktiivinen tapahtuman aikana.</p><p><b>Näkymiä kiertoradalta</b><br>Aulan valoteos: Nicolas Salo</p>", "sv": "<p>Under LUX Helsinki kommer Annegården att bli en oas av stillhet och lugn.</p><p>Titta in i gården för att njuta av verkstäder med Lux-tema för barn och barnfamiljer och besök de olika utrymmena som kittlar alla sinnen. <br>Programaktiviteter från onsdag till fredag kl. 17–21.</p><p>Fritt inträde!</p><p>Annegårdens eget café Napero håller öppet under evenemangen.</p><p>Program:</p><p><b>Lekens eget rum</b> <br>kl. 17.00–21.00 <br>En marin fantasivärld bjuder in till lek och föreställande. De element som finns i rummet lämpar sig för lugn lek. I rummet ordnas även workshoppar/föreställningar, om vilka deltagarna informeras i god tid. Under dessa pausar den fria leken.</p><p><b>Jordens Sken och havets Glans</b> <br>Deltagande förestelning<br>kl. 18.00 / 19.00 / 20.00 (längd ca 20 min) <br>Under föreställningarna bjuder vi in publiken att bli deltagande åskådare! Utrymmet rymmer totalt 20 personer åt gången. Biljetter till föreställningsdelen kan hämtas i förväg vid informationen. <br> <br><b>Birth of a Bird</b><br>VR upplevelse <br>kl 17:30 – 20:30 <br>Tänk om du kunde hoppa in i en låt? Tänk om du kunde röra vid ljud? Tänk om instrument i musikaliska kompositioner fick liv? Birth of a Bird förflyttar användaren rakt in i kompositionens centrum. De hör hur ljuden rör sig runt omkring dem. De kan ta på ljuden, hålla dem i handen, föra dem till örat för att upptäcka nya detaljer eller föra dem samman för att skapa nya duetter – och därigenom förändra hela styckets stämning. Verket upplevs individuellt på ett eget område om 2 x 2 meter med hjälp av VR-glasögon som lånas på plats. Fem personer åt gången kan vistas i rummet för att uppleva verket, vars längd är cirka 6–7 minuter.</p><p><b>Ljusmålning</b><br>Verkstad <br>kl 17:15 – 20:55<br>Välkommen att ljusmåla! I ljusmålning fungerar ficklampor som penslar och ett mörklagt rum som målarduk. Vi utforskar vilka spår och former vi kan rita i luften och fånga i fotografier med hjälp av långa exponeringstider. Personer som är ljuskänsliga bör notera att starka ficklampor används i workshopen, varav vissa även blinkar. <br>Ett begränsat antal deltagare tas in åt gången, men i övrigt pågår workshopen som drop-in utan avbrott. <br> <br><b>Ska vi leka?</b><br>7–31.1.2026 <br>Idéhörna för framtidens upptäcktsresande. <br>Hoppa in i Annegårdens framtid tillsammans med oss. Hörnan är interaktiv under evenemanget. <br> <br><b>Vyer från omloppsbana</b> <br>Foajéns ljusinstallation: Nicolas Salo</p>", "en": "<p>During LUX Helsinki, Annantalo will become an oasis of stillness and calm.</p><p>Visit the indoor facilities to enjoy LUX-themed workshops for children and families with children, as well as a variety of spaces to tickle the senses.<br> <br>Programmed activities will be provided from Wednesday to Friday at 17.00–21.00.</p><p>Free entry!</p><p>Annantalo’s own café, Napero, will also be open during the events.</p><p>Program:</p><p><b>Play’s Own Space</b><br>from 5 PM to 9 PM <br>A maritime world of imagination invites you to play and dream. The elements in the space are suited for calm, gentle play. Workshops/performances will also take place in the space, and players will be informed of these in advance. During them, free play will be paused.</p><p><b>Earth’s Glow and the Sea’s Sparkle</b><br>Participatory performance <br>at 6 PM / 7 PM / 8 PM (duration approx. 20 minutes) <br>During the performances, we invite everyone to move into the role of a participatory audience!The space can accommodate a total of 20 people at a time. Tickets for the performance segment can be picked up in advance from the information desk. <br> <br><b>Birth of a Bird</b><br>VR experience <br>from 5.30 PM to 8.30 PM <br>What if you could jump inside of a song? What if you could touch sound? What if instruments in musical compositions came to life? Birth of a Bird transports the user into the middle of the composition. They hear the sounds move around them. They can touch the sounds, hold them in their hand, bring them to their ear to hear new details, or bring them together to create new duets, changing the whole mood of the piece. The work is experienced individually in a personal <br>2 x 2 meter area using VR headsets, which are provided on site. Up to five people can enter the space at a time to experience the work, which lasts approximately 6–7 minutes. <br> <br><b>Light painting</b><br>Workshop<br>from 5:15 PM to 8.55 PM <br>Welcome to light paintig! In light painting, flashlights act as brushes and a darkened room as the canvas. We explore what kinds of traces and shapes we can draw in the air and capture in photographs using long exposure times. Those sensitive to light should note that bright flashlights are used in the workshop, some of which may also flash. <br>A limited number of participants are admitted at a time, but the workshop otherwise runs on a drop-in, continuous basis.</p><p><b>Let’s play</b><br>7.1. – 31.1.2026 <br>Brainstorming Point for the explorers of the future <br>Dive with us into the Annantalo of the future. <br>Interactive during the Annantalo event.</p><p><b>Views from Orbit</b><br>Light installation in the lobby: Nicolas Salo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67749/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67751", "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: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/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:671/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:748/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 1494204, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-14T08:13:25.712835Z", "last_modified_time": "2025-12-14T08:13:25.712851Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782261.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494204/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-14T08:13:25.434655Z", "last_modified_time": "2026-01-06T16:12:50.434560Z", "date_published": null, "start_time": "2026-01-10T09: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": "Tuu leikkiin! [LOPPUUNVARATTU] – Tulevaisuusleikki tulevaisuuden tutkimusmatkailijoille", "sv": "Ska vi leka? [Fullbokad] – Framtidslek för framtidens upptäcktsresande", "en": "Let’s Play! [Fully booked] – An imaginary expedition into the future for explorers of the future" }, "location_extra_info": null, "provider": { "fi": "Annantalo/Helsingin kaupunki", "sv": "Annegården", "en": "Annantalo" }, "short_description": { "fi": "A-alus kulkee maalla, merellä ja ilmassa, avaruudessa, tulevaisuudessa ja ennen kaikkea mielikuvituksessa. Aluksen tärkein osa olet sinä. Sukelletaan yhdessä leikin siivin tulevaisuuden Annantaloon.", "sv": "A-skeppet färdas på land, till sjöss och i luften, i rymden, i framtiden och framför allt i fantasin.", "en": "The A-ship travels on land, sea and air, in space, in the future and, above all, through your imagination. You are the most important part of this ship." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4CC9B6173C3F666A3909EF2F18355560/Tuu_leikkiin_LOPPUUNVARATTU_", "sv": "http://www.annantalo.fi/sv/evenemang/event/4CC9B6173C3F666A3909EF2F18355560/Ska_vi_leka_Fullbokad_", "en": "http://www.annantalo.fi/en/events/event/4CC9B6173C3F666A3909EF2F18355560/Let_s_Play_Fully_booked_" }, "description": { "fi": "<p>A-alus kulkee maalla, merellä ja ilmassa, avaruudessa, tulevaisuudessa ja ennen kaikkea mielikuvituksessa. Aluksen tärkein osa olet sinä. Sukelletaan yhdessä leikin siivin tulevaisuuden Annantaloon.</p><p>Mitä tulevaisuuden Annantalossa tapahtuu, keitä siellä tapaat? Mikä siellä yllättää? Tuu leikkiin!</p><p>Annantalossa järjestetään Tuu leikkiin! -tulevaisuusleikki 7.–31.1.2026. Tapahtumien avulla kerätään lasten, nuorten ja perheiden näkemyksiä siitä, millainen Annantalo voisi olla tulevaisuudessa perusparannuksen jälkeen. Tule mukaan ideoimaan ja unelmoimaan!</p><p>Mukaan leikkiin mahtuu 5 lasta aikuisen kanssa. Työpaja on tarkoitettu 3-6-vuotiaille. Työpajan kesto 90 min.</p><p><b>HUOM! Vain ennakkoon ilmoittautuneille.</b> <br><u><a href=\"https://link.webropol.com/ep/tuuleikkiinaamu\">Ilmoittaudu mukaan työpajaan</a></u></p><p>Tapahtuma on suomenkielinen ja maksuton.</p><p>Annantalo – lasten, nuorten ja perheiden oma monitaiteinen taidekeskus – uudistuu perusparannushankkeen yhteydessä 2030-luvun alkupuolella. Nyt on mahdollisuus vaikuttaa talon tulevaisuuteen! Tavoitteena on tehdä Annantalosta lasten ja pienten kaupungin tekijöiden ylpeyden aihe ja yhä rakastetumpi helmi pääkaupunkiseudun lastenkulttuurikohteiden joukossa – talon kulttuurihistoriaa ja paikan henkeä kunnioittaen.</p>", "sv": "<p>A-skeppet färdas på land, till sjöss och i luften, i rymden, i framtiden och framför allt i fantasin.</p><p>Viktigast på skeppets är du för du kan påverka Annegårdens framtid genom att leka med oss och berätta allt möjligt. Vad händer och sker månne på Annegården i framtiden, enligt dig? Vem kommer du att att möta där? Vad kommer att överraska dig – och vad inte?</p><p>Vi ordnar framtidsleken Ska vi leka? på Annegården 7–31.1.2026. Med hjälp av evenemangen samlar vi in barns, ungas och familjers åsikter om hurdan Annegården kunde vara i framtiden efter renoveringen. Kom med, kläck vilda idéer och dröm om framtiden!</p><p>5 barn (med en vuxen) ryms med i leken. Verkstaden är avsedd för 3–6-åringar. Verkstaden är 90 minuter lång.</p><p><b>OBS! Endast med förhandsanmälan.</b> <br><u><a href=\"https://link.webropol.com/ep/tuuleikkiinaamu\">Anmäl dig till verkstaden</a></u></p><p>Evenemanget är avgiftsfritt. Evenemanget är på finska.</p><p>Helsingfors konstcentrum för barn och unga, Annegården, renoveras i början av 2030-talet. Nu har stadsborna av alla åldrar möjlighet att påverka gårdens framtid. Också barn och unga är välkomna att planera och säga sin åsikt med början 7.1.2026.</p><p>Annegården är barns, ungas och familjers mångsidiga konstcentrum samt Helsingfors största aktör inom barnkultur. Renoveringsarbetet vid Annegården inleds 2032 enligt en preliminär tidtabell. Det är framför allt orsaker som har att göra med den fysiska byggnadens utrymmen och byggnadens tekniska livslängd som gör att staden nu går in för en renovering. Till exempel måste tillgängligheten bli bättre och utrymmena modernare.</p><p>Samtidigt får staden och stadsborna tillsammans en möjlighet att planera och utveckla själva verksamheten, alltså de tjänster staden erbjuder helsingforsborna i Annegården. Därför är det viktigt att så många som möjlighet av de olika användarna, nuvarande och framtida kunderna och partnerna tar tillfället i akt och berättar för staden om hur de ser de framtida behoven. Blicken riktas mot framtiden genom lek och fantasi från och med 7.1.2026.</p>", "en": "<p>The A-ship travels on land, sea and air, in space, in the future and, above all, through your imagination. You are the most important part of this ship.</p><p>Let's play together and dive into the Annantalo of the future. What is happening in the Annantalo of the future, who are you meeting there? What surprises are in store? Let’s Play!</p><p>‘Let’s Play!’ imaginary expedition into the future will be held at Annantalo from 7 to 31 January 2026. The events will be used to gather the views of children, young people and families on what Annantalo could be like in the future, after the renovation. Come and join us in brainstorming and dreaming!</p><p>The workshop can accommodate up to 5 children (with an adult) at a time, and it is intended for children aged 3–6. Workshop duration 90 min.</p><p><b>PLEASE NOTE! Only for pre-registered participants.</b> <br><u><a href=\"https://link.webropol.com/ep/tuuleikkiinaamu\">Register for the workshop</a></u></p><p>The event is in Finnish and free of charge.</p><p>Annantalo Children and Youth Art Centre in Helsinki will be renovated in the early 2030s, and now the city residents – including children – have a chance to influence its future.</p><p>Annantalo is a multidisciplinary arts centre for children, young people and families and it is the largest children's culture operator in Helsinki. The construction works of the Annantalo renovation are scheduled to start in 2032. The renovation needs are essentially related to the physical facilities and the technical lifespan of the building, such as improving its accessibility and modernising the facilities. Major renovation projects also provide an opportunity to plan and develop the services offered. This is why Annantalo wants to engage in a dialogue with its different user groups, current customers and partners, and also potential future customers about their needs in the future. Looking to the future through play and make-believe from 7 January 2026 onwards.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67751/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66957", "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:32/?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/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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/koepikallio/koepi-kallio-huono-suoritus-3757437/", "sv": "https://www.lippu.fi/artist/koepikallio/koepi-kallio-huono-suoritus-3757437/", "en": "https://www.lippu.fi/artist/koepikallio/koepi-kallio-huono-suoritus-3757437/" }, "description": null, "price": { "fi": "34 / 38 €", "sv": "34 / 38 €", "en": "34 / 38 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490660, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-09T06:14:22.910081Z", "last_modified_time": "2025-09-09T06:14:22.910098Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777069.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490660/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-09T06:14:22.757846Z", "last_modified_time": "2026-01-05T11:13:01.308185Z", "date_published": null, "start_time": "2026-01-09T17: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": "Köpi Kallio: Huono suoritus K-18 – Loppuunmyyty! / Sold out!", "sv": "Köpi Kallio: Huono suoritus K-18 – Slutsåld!", "en": "Köpi Kallio: Huono suoritus R-18 – Sold out!" }, "location_extra_info": null, "provider": { "fi": "JL-Komediapaja Oy", "sv": "JL-Komediapaja Oy", "en": "JL-Komediapaja Oy" }, "short_description": { "fi": "Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.", "sv": "Köpi Kallio gör en egen stand-up show, som heter Huono suoritus (Dålig prestation).", "en": "Köpi Kallio is doing his own stand-up show, called Huono suoritus – Poor Performance." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/EBB0C3920DCB8832BACC8DC0A44784F5/Kopi_Kallio_Huono_suoritus_K-18", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/EBB0C3920DCB8832BACC8DC0A44784F5/Kopi_Kallio_Huono_suoritus_K-18", "en": "http://www.savoyteatteri.fi/en/events/event/EBB0C3920DCB8832BACC8DC0A44784F5/Kopi_Kallio_Huono_suoritus_R-18" }, "description": { "fi": "<p>Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.</p><p><i>Huono suoritus</i> on särmikäs summaus kolmekymppisen radio- ja tv-tähden tähänastisesta elämästä ja parhaista stand up -jutuista.</p><p>Tässä esityksessä mustaa huumoria huokuvat ja paikoin kohtuuttomuuksiin yltyvät vitsit saavat lisäpotkua Köpille itselleen tapahtuneesta pysäyttävästä tarinasta.</p><p>Mitä tarvitaan, että ihminen pysähtyy, lopettaa oman elämänsä suorittamisen ja keskittyy nauttimaan hetkestä? Siihen tarvitaan <i>Huono suoritus</i>.</p><p>Jokaisen shown alussa <i>Huonon suorituksen</i> “virallisena valvojana” ja erikoisvieraana esiintyy <b><i>Kovan viikon ilta</b></i> -ohjelmasta tuttu stand up -koomikko <b>Jukka Lindström</b>.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Ikäraja: K-18</p><p>Permanto anniskelualue. Parvella ei anniskelua.</p>", "sv": "<p>Köpi Kallio gör en egen stand-up show, som heter Huono suoritus (Dålig prestation).</p><p>Huono suoritus är en kantig sammanfattning av den trettioåriga radio- och tv-stjärnans liv hittills och hans bästa ståupphistorier.</p><p>I föreställningen får skämten, som är fulla av svart humor och ibland orimligheter, en skjuts av Köpis fängslande berättelse om sig själv.</p><p>Vad krävs för att en person ska stanna upp, sluta se sitt liv som en prestation och börja njuta av ögonblicket? För det behövs showen Huono suoritus.</p><p>Varje show inleds av ståuppkomikern Jukka Lindström, känd från programmet Kovan viikon ilta, som \"officiell övervakare\" för föreställningen och som gästande artist.</p><p>Längd ca 2 h, inklusive paus.</p><p>Åldersgräns: K-18.</p><p>Parkett K-18-område med serveringstillstånd. Ingen servering på balkongen.</p>", "en": "<p>Köpi Kallio is doing his own stand-up show, called Huono suoritus – Poor Performance.</p><p>Huono suoritus is an edgy summation of the thirtysomething radio and TV star's life so far and his best stand-up stories.</p><p>The jokes in the show – full of black humour and sometimes even over the top – become even more poignant after hearing Köpi’s own extraordinary experience.</p><p>What does it take for a person to stop, put a pause on performing their life and focus on enjoying the moment? It takes a poor performance.</p><p>Stand-up comedian Jukka Lindström, a familiar face from the TV show Kovan viikon ilta, will launch each Huono suoritus show with his own performance, filling the shoes of both the show’s ‘official supervisor’ and special guest.</p><p>Duration approx. 2 h, including intermission</p><p>Age rating: 18 and up</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony, no alcohol serving.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66957/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67913", "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: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:596/?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": 1494350, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-02T12:13:25.763310Z", "last_modified_time": "2026-01-02T12:13:25.763333Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783375.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494350/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-02T12:13:25.608337Z", "last_modified_time": "2026-01-02T12:13:25.933400Z", "date_published": null, "start_time": "2026-01-03", "end_time": "2026-01-30", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Haagan Taideseuran 60-vuotisjuhlavuosi: Vuosinäyttelyjulisteita menneiltä ajoilta", "sv": "Haagan Taideseuran 60-vuotisjuhlavuosi: Vuosinäyttelyjulisteita menneiltä ajoilta", "en": "Haagan Taideseuran 60-vuotisjuhlavuosi: Vuosinäyttelyjulisteita menneiltä ajoilta" }, "location_extra_info": null, "provider": null, "short_description": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E3EC5B4796AE2DFC3F86154ACB5FADEC/Haagan_Taideseuran_60-vuotisjuhlavuosi_Vuosinayttelyjulisteita_menneilta_ajoilta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E3EC5B4796AE2DFC3F86154ACB5FADEC/Haagan_Taideseuran_60-vuotisjuhlavuosi_Vuosinayttelyjulisteita_menneilta_ajoilta", "en": "http://www.kanneltalo.fi/en/events/event/E3EC5B4796AE2DFC3F86154ACB5FADEC/Haagan_Taideseuran_60-vuotisjuhlavuosi_Vuosinayttelyjulisteita_menneilta_ajoilta" }, "description": { "fi": "<p>Haagan Taideseuran 60-vuotisjuhlavuosi käynnistyy tammikuussa. Kanneltalon kahvilan vitriineihin on koottu menneiden vuosien vuosinäyttelyjen julisteita.<br> <br>Haagan Taideseura on Helsingissä vuodesta 1966 toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura. Lisätiedot Haagan Taideseura ry</p><p>Kahvilan vitriinit</p><p>Vapaa pääsy</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67913/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:307ae6ab-7a8e-4f86-a6c4-b53c91cfa9db", "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: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=Uusi_vuosi_ja_uudet_kujeet_-_tempaustapahtuma_EK_-31-12-252683582337" }, "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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-31T12:34:34.336282Z", "last_modified_time": "2025-12-31T12:34:34.336304Z", "date_published": "2025-12-31T12:29:51Z", "start_time": "2026-01-02T06:00:00Z", "end_time": "2026-01-02T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "umbrella", "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": "Uusi vuosi ja uudet kujeet - tempaustapahtuma! EK -31-12-25" }, "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:307ae6ab-7a8e-4f86-a6c4-b53c91cfa9db/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:81eed018-4e3e-478e-8df5-b8dc77c9a314", "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:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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=Manuaalinen_regressiotesti_Q4-20251374684994" }, "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:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" } ], "created_time": "2025-12-31T12:25:36.493835Z", "last_modified_time": "2025-12-31T12:26:59.081001Z", "date_published": "2025-12-31T12:24:20Z", "start_time": "2026-01-01T06:00:00Z", "end_time": "2026-01-01T10: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": 100, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Manuaalinen regressiotesti Q4-2025-EK" }, "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:81eed018-4e3e-478e-8df5-b8dc77c9a314/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:a1899b06-a30e-4ca5-8af7-f98875f8981b", "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:p2739/?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=2_Tapahtuma_eri_kellonaika_30122025_-_EK_Testitapahtuma3945713159" }, "description": null, "price": { "fi": "0", "sv": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1494334, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-30T12:03:38.293399Z", "last_modified_time": "2025-12-30T12:03:38.293424Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/a99d7115-06d3-ef11-8eea-000d3adf4af4", "name": "Keltainen ruutu", "cropping": "", "photographer_name": "Kari Kuvaaja", "alt_text": "Keltainen ruutu jossa tekstiä", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494334/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" } ], "created_time": "2025-12-30T12:03:38.806067Z", "last_modified_time": "2025-12-30T12:03:38.806086Z", "date_published": "2025-12-30T12:03:18Z", "start_time": "2026-01-01T18:00:00Z", "end_time": "2026-01-01T19: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": 100, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "sv": "SV tapahtuman otsikko" }, "location_extra_info": null, "provider": { "sv": "Annantalo (KYMP)" }, "short_description": { "sv": "Lyhyt kuvaus." }, "info_url": null, "description": { "fi": "", "sv": "<div><p>Tarkka kuvaus.</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a1899b06-a30e-4ca5-8af7-f98875f8981b/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:b50d4ad4-da4f-44b6-a522-69e56337c321", "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:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?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=1_30122025_-_EK_Testitapahtuma2795422673" }, "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:p1235/?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:p6674/?format=api" } ], "created_time": "2025-12-30T11:55:42.359232Z", "last_modified_time": "2025-12-30T11:58:28.686483Z", "date_published": "2025-12-30T11:54:04Z", "start_time": "2026-01-01T13:15:00Z", "end_time": "2026-01-01T14: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": 100, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "PÄIVITETTY 30.12.2025 - EK Testitapahtuma" }, "location_extra_info": { "fi": "Yläkerran aula" }, "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:b50d4ad4-da4f-44b6-a522-69e56337c321/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }