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
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 ordering is descending order by -last_modified_time
. 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=21&show_all=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=22&show_all=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=20&show_all=true" }, "data": [ { "id": "lippupiste:19999879", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849160/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/sutinaa-ja-saeaetoeae-helsingin-kaupunginteatteri-19999879/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/sutinaa-ja-saeaetoeae-helsingin-kaupunginteatteri-19999879/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/sutinaa-ja-saeaetoeae-helsingin-kaupunginteatteri-19999879/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360032, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.766941Z", "last_modified_time": "2025-03-17T22:17:20.766955Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/a1/8c/sutinaa222-tickets_369148_3117437_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360032/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:22.296295Z", "last_modified_time": "2025-09-10T19:16:52.310659Z", "date_published": null, "start_time": "2025-09-10T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=en" }, "provider_contact_info": null, "short_description": { "fi": "Sandy Rustin SUTINAA JA SÄÄTÖÄ Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni" }, "description": { "fi": "<p>Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni kynnet sinisinä, mutta samalla hypätään päätä pahkaa syvään päätyyn niin riemukkaasti, että katsojan onnellinen osa on nauraa vedet silmissä mukana!</p><p>Sylvia (Pihla Penttinen) ja hänen salarakkaansa Beau (Sauli Suonpää) ovat saapuneet jokavuotiselle syntiselle huvilatapaamiselleen. Tällä kertaa Sylvia pudottaa Beaulle todellisen uutispommin, ja kertoo jättäneensä miehensä. Sähkeellä!</p><p>Tämä on vasta alkua, sillä seuraavaksi kaksikon puolisot (Emilia Sinisalo ja Heikki Ranta) pelmahtavat samalle huvilalle! Todellinen salaisuuksien Pandoran lipas revähtää auki ja niin henkilöiden identiteetit kuin avioliittokäsitykset joutuvat kiivaasti kieppuvaan myllyyn.</p><p>Broadwaylla ensi-iltansa vuonna 2023 saanut Sutinaa ja säätöä sijoittuu herkullisesti 1920-luvun Englantiin, mutta sen käänteet ja käänteissä kärvistelevät ihmiset ovat täyttä tätä päivää, tunnistettavia ja samaistuttavia, kaikessa hullunkurisuudessaan rakastettavia ja pakahduttavan hauskoja.</p><p>Sutinaa ja säätöä on uusi ja raikas farssikomedia parisuhteista. Kuumana kuplivaa sutinaa ja sysipimeitä salaisuuksia pulppuava parituntinen, jonka aikana katsoja tulee yllätetyksi monta kertaa – aivan kuten komedian henkilötkin.</p><p>Rooleissa: Pihla Penttinen, Sauli Suonpää, Emilia Sinisalo, Heikki Ranta, Ella Lymi ja Mikko Virtanen</p><p>Suomentaja: Reita Lounatvuori<br>Ohjaus: Sari Siikander<br>Lavastus: Peter Ahlqvist<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Äänisuunnittelu: Eero Niemi<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Dramaturgi: Ari-Pekka Lahti</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner</p>", "en": "<p>Sandy Rustin<br><strong>SUTINAA JA SÄÄTÖÄ</strong></p>" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "Sutinaa Ja Säätöä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999879/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19714950", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19714950/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19714950/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19714950/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.124713Z", "last_modified_time": "2025-02-17T11:16:42.124728Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:20.855608Z", "last_modified_time": "2025-09-10T19:16:52.163854Z", "date_published": null, "start_time": "2025-09-10T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en" }, "provider_contact_info": null, "short_description": { "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin," }, "description": { "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Wilhelm Blomberg, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>", "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "Moulin Rouge! Musikaali" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19714950/?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/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": [], "price": { "fi": "34 / 38 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/koepikallio/koepi-kallio-huono-suoritus-3757437/" } } ], "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", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777069.jpg", "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": "2025-09-10T14:14:34.285309Z", "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, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/EBB0C3920DCB8832BACC8DC0A44784F5/Kopi_Kallio_Huono_suoritus_K-18" }, "provider_contact_info": null, "short_description": { "fi": "Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus." }, "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 K18 anniskelualue. Parvella ei anniskelua.</p>" }, "provider": { "fi": "JL-Komediapaja Oy" }, "name": { "fi": "Köpi Kallio: Huono suoritus K-18 – Myynti alkaa ma 6.10. klo 9, Lippu.fi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66957/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66799", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1469243, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-12T11:14:05.451784Z", "last_modified_time": "2025-08-12T11:14:05.451800Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775903.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1469243/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-12T11:14:05.323451Z", "last_modified_time": "2025-09-10T14:14:26.189548Z", "date_published": null, "start_time": "2025-10-31T16:00:00Z", "end_time": "2025-10-31T19:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/434F80EBC109DA49CDEC0F0CB1A88096/Olli_Ahvenlahti_New_Quintet_Ida_Alanen_Trio", "sv": "http://www.stoa.fi/sv/evenemang/event/434F80EBC109DA49CDEC0F0CB1A88096/Olli_Ahvenlahti_New_Quintet_Ida_Alanen_Trio", "en": "http://www.stoa.fi/en/events/event/434F80EBC109DA49CDEC0F0CB1A88096/Olli_Ahvenlahti_New_Quintet_Ida_Alanen_Trio" }, "provider_contact_info": null, "short_description": { "fi": "We Jazz saapuu jälleen Stoaan upeine esiintyjineen!", "sv": "We Jazz med dess ståtliga uppträdare anländer igen till Stoa!", "en": "We Jazz and its fantastic performers are back at Stoa! The Olli Ahvenlahti New Quintet, consisting of some of the top names in jazz, will take to the stage." }, "description": { "fi": "<p>We Jazz saapuu jälleen Stoaan upeine esiintyjineen!</p><p>Lavalle nousee mm. jazzin ykkösnimistä koostuva Olli Ahvenlahti New Quintet ja Ida Alanen Trio. Lisäksi luvassa on artistihaastatteluja ja Digelius Music pop up –levykauppa.</p><p>We Jazz Records julkaisi 2024 huhtikuussa Olli Ahvenlahden odotetun uuden albumin Mirror Mirror. Viime vuonna 75 vuotta täyttänyt maestro Ahvenlahti on suomalaisen jazzin elävä legenda, joka jatkaa uudella levyllään 70-luvun klassikkolevyillään The Poet ja Bandstand aloittamaansa tutkimusmatkaa orgaanisesti groovaavan jazzfunkin maailmaan. Onkin helppo ennustaa, että uudet kappaleet albumilta ottavat paikkansa saman jatkumon oivina edustajina Ahvenlahden ja samalla kotimaisen jazzin tarinassa. Ahvenlahden yhtyeessä levyllä ja keikoilla mukana ovat trumpetisti Jukka Eskola, saksofonisti Joonatan Rautio, basisti Ville Herrala ja rumpali Jaska Lukkarinen – kukin maamme ykkösryhmää toteuttamassa säveltäjän visiota.</p><p>We Jazzin vuotuista pääfestivaalia on kuvailtu termeillä ”installaatio” ja ”utopia”. Nämä sanat kiteyttävät We Jazzin hengen ja suuntaavat ajatuksia perinteisen jazzfestivaalikentän ulkopuolelle.</p><p>Jazzin esittämisen tapojen uudistaminen onkin yksi tapahtuman keskeisistä pyrkimyksistä parhaan mahdollisen musiikin tarjoilemisen ohella. We Jazz on osuva läpileikkaus omaäänisestä jazzmusiikista halki genren laajan tyylispektrin.</p><p><b>Ida Alanen Trion</b> musiikki ammentaa inspiraationsa visuaalisista muodoista, orgaanisista tekstuureista sekä unikuvastosta. Trio tulkitsee Alasen sävellyksiä suvereenisti, leikitellen vaivattomasti huolellisesti orkestroitujen sävellysten ja vapaan improvisaation välillä.</p><p>Pianisti-säveltäjä Ida Alanen viimeistelee parhaillaan maisteriopintojaan Amsterdamin Konservatoriolla Harmen Fraanjen johdolla. Kontrabasisti Jonathan Bäckström ja rumpali Benjamin Nylund tunnetaan komppiparina myös muun muassa Jonathan Bäckström Quartetista. Kaikki kolme ovat kovassa nosteessa olevia tekijöitä ja vahvasti omaäänisiä muusikoita.<br> <br>Norjalaisen AMP Music & Recordsin kanssa syksyllä 2023 julkaistu trion esikoisalbumi Awake Asleep tutkii maisemia unen ja valveillaolon rajamailta, tuoden alitajunnan kuvia päivänvaloon. Tämä vahva debyytti nosti yhtyeen valokeilaan niin suomalaisella kuin eurooppalaisellakin jazzkentällä.</p><p>Vapaa pääsy.</p>", "sv": "<p>We Jazz med dess ståtliga uppträdare anländer igen till Stoa!</p><p>Bland annat Olli Ahvenlahti New Quintet som omfattas av spetsnamn stiger på scenen. Ytterligare utlovas artistintervjuer och en popup-skivaffär, Digelius Music.</p><p>I april 2024 utgavs Olli Ahvenlahtis förväntade nya album Mirror Mirror av We Jazz Records. Maestro Ahvenlahti som fyllde 75 år i fjol är en levande legend inom den finska jazzmusiken. På den nya skivan fortsätter han sin expedition till den organiskt groovande jazzfunken. Ahvenlahti påbörjade expeditionen under skivklassikerna The Poet och Bandstand på 1970-talet. Det är lätt att förutspå att de nya låtarna ur albumet hittar sin plats som ypperliga representanter för den samma fortsättningen i Ahvenlahtis och samtidigt den finska jazzens historia. På skivan och på spelningarna omfattas Ahvenlahtis band av trumpetisten Jukka Eskola, saxofonisten Joonatan Rautio, basisten Ville Herrala och trumslagaren Jaska Lukkarinen – var och en förverkligar kompositörens vision i vårt lands band nummer ett.</p><p>We Jazzens årliga huvudfestival har beskrivits med termerna ”installation” och ”utopi”. Dessa ord sammanfattar We Jazz andan och riktar tankarna utanför den traditionella jazzfestivalplanen.</p><p>Vid sidan av erbjudande av bästa möjliga musik är förnyelsen av framförandesätten för jazz en central strävan under evenemanget. We Jazz är ett träffande tvärsnitt från den särpräglade jazzmusiken genom genrens omfattande stilspektrum.</p><p>Fritt inträde.</p>", "en": "<p>We Jazz and its fantastic performers are back at Stoa! The Olli Ahvenlahti New Quintet, consisting of some of the top names in jazz, will take to the stage.</p><p>The evening also offers artist interviews and a Digelius Music pop-up record shop.</p><p>We Jazz Records released Olli Ahvenlahti's highly anticipated new album Mirror Mirror in April 2024. Maestro Ahvenlahti, who turned 75 last year, is a living legend of Finnish jazz. With his new album he continues the exploration into the world of organically groovy jazz-funk that he started with his classic 70s albums The Poet and Bandstand. It is easy to predict that the new songs from the album will take their place as great examples of the same continuum in the story of Ahvenlahti, as well as in the history of Finnish jazz. Ahvenlahti’s band includes trumpeter Jukka Eskola, saxophonist Joonatan Rautio, bassist Ville Herrala and drummer Jaska Lukkarinen both on the album and in the gigs. All of these names are among the frontliners in Finland, now helping to make the composer's vision into reality.</p><p>The annual main festival of We Jazz has been described as an ‘installation’ and a ‘utopia’. These words sum up the spirit of We Jazz, taking us beyond the traditional jazz festival scene.</p><p>Reforming the way jazz is performed is one of the key goals of the event – right alongside providing the best possible music. We Jazz is an apt cross-section of characterful jazz music across the genre's broad spectrum of styles.</p><p>Free entry.</p>" }, "provider": null, "name": { "fi": "Olli Ahvenlahti New Quintet | Ida Alanen Trio – Sounds of Stoa: We Jazz", "sv": "Olli Ahvenlahti New Quintet | Ida Alanen Trio – Sounds of Stoa: We Jazz", "en": "Olli Ahvenlahti New Quintet | Ida Alanen Trio – Sounds of Stoa: We Jazz" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66799/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66833", "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: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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490412, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-18T10:15:02.037797Z", "last_modified_time": "2025-08-18T10:15:02.037817Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772494.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490412/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-18T10:15:01.933639Z", "last_modified_time": "2025-09-10T14:14:18.768353Z", "date_published": null, "start_time": "2025-10-04", "end_time": "2026-09-05", "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, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/631086C4A57DC529631B9A941D17A7E9/Piilossa", "sv": "http://www.annantalo.fi/sv/evenemang/event/631086C4A57DC529631B9A941D17A7E9/Piilossa_Gomd_", "en": "http://www.annantalo.fi/en/events/event/631086C4A57DC529631B9A941D17A7E9/Piilossa_Hidden_" }, "provider_contact_info": null, "short_description": { "fi": "Pilven sisällä, pinnan alla, maan kätköissä vai luukun takana? Piilossa on näyttely asioista, jotka eivät aina ole näkyvillä.", "sv": "En utställning om sådant som inte alltid är synligt.", "en": "An exhibition of things that are not always visible." }, "description": { "fi": "<p>Pilven sisällä, pinnan alla, maan kätköissä vai luukun takana? Piilossa on näyttely asioista, jotka eivät aina ole näkyvillä.</p><p>Piilossa-näyttelyssä Alagalleria on muuttunut huoneistoksi: se on jaettu erilaisiin tiloihin, joista kukin on omanlaisensa piilo. Jos löydät näyttelystä nupin tai kahvan, voit kokeilla aukeaako siitä jotain.</p><p>Näyttely on prosessi – se ei siis ole jatkuvasti samanlainen, vaan muuttuu kauden aikana. Osa huoneista saattaa olla välillä kiinni ja avautua uudella sisällöllä tai siellä olevat teokset voivat vaihtua. Näyttelyssä voi siis vierailla monta kertaa ja löytää aina jotain uutta!</p><p>Näyttelyssä ovat mukana taiteilijat Janne Kärkkäinen, Anniina Salo ja Kirsti Taiviola. Esillä on myös vaihtuvasti teoksia lapsilta ja nuorilta.</p><p>Näyttelyn avajaiset 3.10. klo 17-19 - Tervetuloa!</p><p>Annantalon vuosien 2025-2026 teemana on Piilossa. Se kutsuu perheitä tutkimaan, mitä kaikkea voi olla näkymättömissä – tunteita, unelmia, leikkejä tai kokonaisia tarinoita. Piilossa voi olla jotakin, joka vain odottaa tulevansa nähdyksi. Ehkä löydämme sen yhdessä Annantalosta!</p>", "sv": "<p>En utställning om sådant som inte alltid är synligt.</p><p>Dolt eller synligt? I den här utställningen har Annegårdens nedre galleri blivit till en lägenhet. Den är indelad i tio olika rum, som vart och ett har ett eget gömställe. I utställningen finns bland annat temarummen Pesä, Pilvi, Sukellus, Kellari, Kammi, Mennyt, Museo, Sisus och Mikro.</p><p>Utställningen är en process – den är inte alltid likadan utan förändras under utställningsperioden. En del av rummen kan ibland vara stängda och öppnas med nytt innehåll, eller så kan verken i dem bytas ut. Man kan alltså ta del av utställningen många gånger och alltid hitta något nytt!</p><p>Vernissagen är den 3.10 kl. 17–19 – Välkommen!</p><p>Annegården har gömställen och att gömma sig som tema för åren 2025–2026. Familjer bjuds in att utforska allt det som kan vara dolt – känslor, drömmar, lekar eller hela berättelser. Det som är gömt kanske bara väntar på att någon ska se det. Kanske hittar vi det tillsammans på Annegården!</p>", "en": "<p>An exhibition of things that are not always visible.</p><p>Hidden or visible? The Hide and seek exhibition has changed the Alagalleria gallery of Annantalo into an apartment that has been divided into ten different rooms that are all their own kinds of hiding places. The exhibition has e.g. the theme rooms Nest, Cloud, Dive, Basement, Peat Goahti, Past, Museum, Interior and Micro.</p><p>The exhibition is a process – meaning that it does not stay the same but instead changes during the exhibition term. Some of the rooms may be closed for a time and then reopen with new contents or different works. You can therefore visit the exhibition many times and always find something new!</p><p>Exhibition opening on October 3rd from 17 to 19 – Welcome!</p><p>The Annantalo theme for 2025–2026 is Hide and seek. It invites families to explore all the things that could be hidden – feelings, dreams, games or entire stories. Maybe something hidden is only waiting to be seen. Maybe we can discover it together at Annantalo!</p>" }, "provider": null, "name": { "fi": "Piilossa", "sv": "Piilossa (Gömd)", "en": "Piilossa (Hidden)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66833/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66183", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 892919, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-30T07:12:48.337714Z", "last_modified_time": "2025-05-30T07:12:48.337728Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772445.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/892919/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-30T07:12:48.284097Z", "last_modified_time": "2025-09-10T13:14:32.117511Z", "date_published": null, "start_time": "2025-09-25T13:00:00Z", "end_time": "2025-09-25T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1BBA2AFEDFC9B0F731B5418BF9A4E60A/Welcome_Day_Malmitalo", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1BBA2AFEDFC9B0F731B5418BF9A4E60A/Welcome_Day_Malmitalo", "en": "http://www.malmitalo.fi/en/events/event/1BBA2AFEDFC9B0F731B5418BF9A4E60A/Welcome_Day_Malmitalo" }, "provider_contact_info": null, "short_description": { "fi": "Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!", "sv": "Welcome Day hälsar invånare som nyligen flyttat till Finland välkomna till Helsingfors!", "en": "Cultural Centre Malmitalo welcomes the recently arrived international residents to Helsinki!" }, "description": { "fi": "<p>Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!</p><p>Tapahtumassa tuoreet kaupunkilaiset pääsevät tutustumaan oman asuinalueensa palveluihin, harrastuksiin ja vapaa-ajan tarjontaan.</p><p>Welcome Day tarjoaa hyödyllisen tiedon lisäksi hauskaa, inspiroivaa ja yhteisöllistä ohjelmaa kaikenikäisille. Ohjelma huipentuu Suistamon Sähkö -yhtyeen vauhdikkaaseen konserttiin.</p><p>Welcome Dayssa puhumme englantia, minkä lisäksi tarjoamme tulkkausta tarpeen mukaan. Tapahtuma on maksuton, mutta vaatii ennakkoilmoittautumisen. <br><u><a href=\"https://link.webropolsurveys.com/EP/65ECB10FDE606661\">Ilmoittaudu mukaan!</a></u></p><p>Tapahtumassa osallistujat pääsevät nauttimaan myös pullasta ja kahvista kuten suomalaiseen perinteeseen kuuluu.</p><p><b>Welcome Dayn aikataulu</b></p><p>klo 16–19 Palvelujen ja harrastustoiminnan esittely Malmitalon aulassa <br>klo 16.30–18.30 Työpajoja ja osallistavaa toimintaa <br>klo 18.15–19.30 Ohjelmaa Malmisalissa</p><p><b>klo 16–19 Palvelujen ja harrastustoiminnan esittely Malmitalon aulassa</b> <br>Aulaan saapuu 20 kaupungin palvelujen ja yhdistystoiminnan edustajaa esittelemään toimintaansa.</p><p><b>klo 16.30–18.30 Työpajoja ja osallistavaa toimintaa</b></p><p>Stories about integration art workshop, AFAES ry <br>Keskustelua ja kohtaamisia sisältävä taidepaja, jossa paalataan T-paitoja. <br>Paikka: Kirjaston monitoimitila</p><p>Seikkailutaidekoulun luonnonmaalipalettipaja <br>Maalausta luonnonmateriaalitekniikoilla ohjaajien opastuksessa. <br>Sijainti: Kirjasto, lasten osaston ja varaushyllyjen välinen tila</p><p>Nuorisopalvelujen korutyöpaja lapsille <br>Tehdään yhdessä koruja nuorisopalvelujen opastuksella! <br>Sijainti: Kirjasto, Lasten osaston satunurkkaus</p><p>Sirkus Magentan temppuilupaja lapsille<br>Tule mukaan kokeilemaan sirkusta!</p><p>Speed Friending -työpaja klo 17-18.30<br>Sijainti: Kokoushuone 2</p><p><b>klo 18.15–19.30 Ohjelmaa Malmisalissa</b> <br>Juontajan puhe: Bilal Hussein (MakeSomeNoise-verkosto) n. 18.15-18.30 välillä</p><p><b>Suistamon sähkön musiikkiesitys 18.30-19.30</b></p><p><b>Suistamon Sähkö</b><br>Suistamon Sähkö on riehakasta reivimeininkiä, syntetisaattorin surinaa, räppijulistusta ja neuvostovalmisteista paljepeliä suosiva genrehybridi. Yhtyeen primitiivisen alkuvoimainen rytmimaailma liikkuu ennakkoluulottomasti etnoteknon ja hiphopin maailmoissa tuottaen yleisölleen vallatonta ja kokeellista tanssimusiikkia.</p>", "sv": "<p>Welcome Day hälsar invånare som nyligen flyttat till Finland välkomna till Helsingfors!</p><p>Under evenemanget får de nya stadsborna möjlighet att bekanta sig med tjänster, hobbyer och fritidsaktiviteter inom det egna bostadsområdet.</p><p>Welcome Day erbjuder förutom nyttig information även ett roligt, inspirerande och gemenskapligt program för personer i alla åldrar. Programmet kulminerar i en fartfylld konsert med Suistamon Sähkö.</p><p>På Welcome Day talar vi engelska, och dessutom erbjuder vi tolkning enligt behov. Evenemanget är avgiftsfritt men förutsätter förhandsanmälan. <br><u><a href=\"https://link.webropolsurveys.com/EP/65ECB10FDE606661\">Anmäl dig!</a></u></p><p>Under evenemanget får deltagarna även njuta av kaffe och bulle enligt finländsk tradition.</p><p>Suistamon Sähkö<br>Suistamon Sähkö är en genrehybrid med högljutt reverb, synthesizersurr, rapmanifest och bälgspel tillverkat i Sovjetunionen. Bandets rytmvärld med primitiv kraft rör sig fördomsfritt i etnoteknos och hiphopens världar och producerar vild och experimentell dansmusik för sin publik.</p><p>Fritt inträde!</p><p>Längd: 4 timmar</p>", "en": "<p>Cultural Centre Malmitalo welcomes the recently arrived international residents to Helsinki!</p><p>In this event new residents will get to know the services, hobbies and other leisure time activities available to them in their neighborhoods.</p><p>In addition to providing useful information, the Welcome Day program includes fun, inspiring and communal activities for people of all ages. The program culminates in a high-energy concert by Suistamo Sähkö.</p><p>We speak English at Welcome Day. Additionally, interpreters will be present at the event. The event is free to attend, but sign-ups are required. <br><u><a href=\"https://link.webropolsurveys.com/EP/65ECB10FDE606661\">Sign up!</a></u></p><p>Traditional Finnish “pulla” (pastries) and coffee will also be served.</p><p>Welcome Day schedule</p><p>16:00–19:00 Presentation of services and leisure activities in Malmitalo’s lobby <br>16:30–18:30 Workshops and participatory activities <br>18:15–19:30 Programme in Malmisali</p><p><b>16:00–19:00 Presentation of services and leisure activities in Malmitalo’s lobby</b></p><p>20 representatives from the city’s services and associations will arrive in the lobby to tell more about their activities.</p><p><b>16:30–18:30 Workshops and participatory activities</b></p><p><b>Stories about integration art workshop, AFAES ry</b> <br>An art workshop with discussions and encounters, including T-shirt printing. <br>Location: Library multipurpose room</p><p><b>Adventure Art School’s natural paint palette workshop <br>Painting with natural material techniques guided by instructors. <br>Location: Library, space between the children’s section and reservation shelves</p><p><b>Jewellery workshop for children by Youth Services</b> <br>Let’s make jewellery together with guidance from Youth Services! <br>Location: Library, children’s section story corner</p><p><b>Circus Magenta’s circus tricks workshop for children</b> <br>Come and try out circus activities!</p><p><b>Speed Friending workshop 17:00–18:30</b> <br>Location: Meeting room 2</p><p><b>18:15–19:30 Programme in Malmisali</b> <br>Host’s speech: Bilal Hussein (MakeSomeNoise network) around 18:15–18:30</p><p><b>Suistamon Sähkö music performance 18:30–19:30</b></p><p><b>Suistamon Sähkö</b> <br> <br>Suistamon Sähkö gains momentum gig by gig and cheerfully moves through ethno techno and smoke shack sounds to the world of hip hop like the genre hybrid they are. The group favours a boisterous rave atmosphere, synthesizer buzz, rap declarations and a Soviet-made accordion and makes the audience jiggle and the cottage floor shake. The Suistamon Sähkö rhythm universe is a rambunctious mix of primitive primordial force and experimental dance music.</p>" }, "provider": null, "name": { "fi": "Welcome Day Malmitalo", "sv": "Welcome Day Malmitalo", "en": "Welcome Day Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66183/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66494", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 893979, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-30T10:14:02.894943Z", "last_modified_time": "2025-05-30T10:14:02.894961Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774649.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/893979/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-30T10:14:02.802810Z", "last_modified_time": "2025-09-10T13:14:31.091156Z", "date_published": null, "start_time": "2025-09-23T13:00:00Z", "end_time": "2025-09-23T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4788E496AA1B2FBC0594607DFF9D2392/Welcome_Day_Stoa", "sv": "http://www.stoa.fi/sv/evenemang/event/4788E496AA1B2FBC0594607DFF9D2392/Welcome_Day_Stoa", "en": "http://www.stoa.fi/en/events/event/4788E496AA1B2FBC0594607DFF9D2392/Welcome_Day_Stoa" }, "provider_contact_info": null, "short_description": { "fi": "Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!", "sv": "Welcome Day hälsar invånare som nyligen flyttat till Finland välkomna till Helsingfors!", "en": "Cultural Centre Stoa welcomes the recently arrived international residents to Helsinki!" }, "description": { "fi": "<p>Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!</p><p>Tapahtumassa tuoreet kaupunkilaiset pääsevät tutustumaan oman asuinalueensa palveluihin, harrastuksiin ja vapaa-ajan tarjontaan.</p><p>Welcome Day tarjoaa hyödyllisen tiedon lisäksi hauskaa, inspiroivaa ja yhteisöllistä ohjelmaa kaikenikäisille. Ohjelma huipentuu Ombre Zion & The Riddiments -yhtyeen lämminhenkiseen konserttiin.</p><p>Welcome Dayssa puhumme englantia, minkä lisäksi tarjoamme tulkkausta tarpeen mukaan. Tapahtuma on maksuton, mutta vaatii ennakkoilmoittautumisen. <br><u><a href=\"https://link.webropolsurveys.com/EP/E99AC2DD7FB23B19\">Ilmoittaudu mukaan!</a></u></p><p>Tapahtumassa osallistujat pääsevät nauttimaan myös pullasta ja kahvista kuten suomalaiseen perinteeseen kuuluu.</p><p><b>Ombre Zion & The Riddiments</b><br> <br>Ombre Zion & The Riddiments upottaa sinut reggae new rootsin, afrobeatin, afro fusionin, popin, soulin ja rockin täytteiseen ympäristöön unohtamatta perinteistä afrikkalaista musiikkia. Huolella hiottu yhdistelmä kuljettaa sinut kauniiden melodioiden läpi.</p><p>Esityksessä on englanniksi, ranskaksi ja wolofiksi (Zionin äidinkieli) laulettuja kappaleita. Ilmapiiri on lämmin ja kotoisa.</p>", "sv": "<p>Welcome Day hälsar invånare som nyligen flyttat till Finland välkomna till Helsingfors!</p><p>Under evenemanget får de nya stadsborna möjlighet att bekanta sig med tjänster, hobbyer och fritidsaktiviteter inom det egna bostadsområdet.</p><p>Welcome Day erbjuder förutom nyttig information även ett roligt, inspirerande och gemenskapligt program för personer i alla åldrar. Programmet kulminerar i en fartfylld konsert med Ombre Zion & The Riddiments.</p><p>På Welcome Day talar vi engelska, och dessutom erbjuder vi tolkning enligt behov. Evenemanget är avgiftsfritt men förutsätter förhandsanmälan.<br><u><a href=\"https://link.webropolsurveys.com/EP/E99AC2DD7FB23B19\">Anmäl dig!</a></u></p><p>Under evenemanget får deltagarna även njuta av kaffe och bulle enligt finländsk tradition.</p>", "en": "<p>Cultural Centre Stoa welcomes the recently arrived international residents to Helsinki!</p><p>In this event new residents will get to know the services, hobbies and other leisure time activities available to them in their neighborhoods.</p><p>In addition to providing useful information, the Welcome Day program includes fun, inspiring and communal activities for people of all ages. The program culminates in a warm-hearted concert by Ombre Zion & The Riddiments.</p><p>We speak English at Welcome Day. Additionally, interpreters will be present at the event. The event is free to attend, but sign-ups are required. <br><u><a href=\"https://link.webropolsurveys.com/EP/E99AC2DD7FB23B19\">Sign up!</a></u></p><p>Traditional Finnish “pulla” (pastries) and coffee will also be served.</p><p><b>Ombre Zion & The Riddiments</b><br> <br>Ombre Zion & The Riddiments will immerse you in a reggae new roots, afrobeats, Afro fusion, pop, soul, and rock atmosphere, without forgetting a touch of traditional African music. A well-crafted fusion that transports you through beautiful melodies.</p><p>Songs in English, French, and Wolof (his native language) will be performed. All in a welcoming family atmosphere.</p>" }, "provider": null, "name": { "fi": "Welcome Day Stoa", "sv": "Welcome Day Stoa", "en": "Welcome Day Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66494/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66656", "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:104/?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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1469242, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-12T11:13:55.636349Z", "last_modified_time": "2025-08-12T11:13:55.636366Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775481.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1469242/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-12T11:13:55.511276Z", "last_modified_time": "2025-09-10T13:14:28.570871Z", "date_published": null, "start_time": "2025-09-17", "end_time": "2025-10-19", "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, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/051C306F8A989CB477257A7E1AAEE386/Mad_Corridors_Contemporary_comics_and_zines_on_madness_from_India_and_Finland", "sv": "http://www.stoa.fi/sv/evenemang/event/051C306F8A989CB477257A7E1AAEE386/Mad_Corridors_Contemporary_comics_and_zines_on_madness_from_India_and_Finland", "en": "http://www.stoa.fi/en/events/event/051C306F8A989CB477257A7E1AAEE386/Mad_Corridors_Contemporary_comics_and_zines_on_madness_from_India_and_Finland" }, "provider_contact_info": null, "short_description": { "fi": "Näyttely tutkii ajatuksia hulluudesta, mielen ongelmista ja toipumisesta sarjakuvien ja pienlehtien kautta.", "sv": "Den här utställningen utforskar uppfattningar om galenskap, psykiskt lidande och läkande genom serier och zines.", "en": "This exhibition explores notions of madness, mental distress and healing through comics and zines." }, "description": { "fi": "<p>Näyttely tutkii ajatuksia hulluudesta, mielen ongelmista ja toipumisesta sarjakuvien ja pienlehtien kautta.</p><p>Näyttelyn eteläaasialaistaustaiset taitelijat Intiasta ja Suomesta kertovat tarinoita, jotka ovat sekä henkilökohtaisia että poliittisia. Teoksissa paljastetaan, miten epäoikeudenmukaisuus ja sorto muokkaavat mieltämme, sekä tutkitaan hoivan ja vastarinnan tekoja ja ilon hetkiä vaikeuksien keskellä.</p><p>Taiteilijat:<br>Siddesh Gautam, Amanda Tikkanen, Anpu Varkey, Manjula Padmanabhan Kadak Collective: (Featuring Aarthi Parthasarathy & Shreyas R Krishnan, Aleesha Nandhra, Aravani Art Project, Upasana Agarwal & Nandini Moitra, Aziza, Baljinder Kaur, Divya Kandukuri & Shrujana Shridhar, Sabba Khan, Gopika Bashi & Kaveri Gopalakrishnan, Mrigaja Bajracharya, Xinaneo). Kutti Terävä, Zina Marpe, Punit Hiremath, Taneli Kemppi, The Circle Poetry Collective (Jamie Lee, Aino Rahkonen, Sofia Sylvia), Rikki Project (Apila Pepita, Siiri Viljakka, H-P Ontto-Panula and Paju Ruotsalainen), Renuka Rajiv.</p><p>Vapaa pääsy</p>", "sv": "<p>Den här utställningen utforskar uppfattningar om galenskap, psykiskt lidande och läkande genom serier och zines.</p><p>I utställningen presenterar konstnärer med sydasiatisk härkomst från Indien och Finland berättelser som är både personliga och politiska. Verken avslöjar hur orättvisa och förtryck formar våra sinnen och utforskar handlingar av omsorg, motstånd och stunder av glädje under jobbiga tider.</p><p>Konstnärer:<br>Siddesh Gautam, Amanda Tikkanen, Anpu Varkey, Manjula Padmanabhan Kadak Collective: (Featuring Aarthi Parthasarathy & Shreyas R Krishnan, Aleesha Nandhra, Aravani Art Project, Upasana Agarwal & Nandini Moitra, Aziza, Baljinder Kaur, Divya Kandukuri & Shrujana Shridhar, Sabba Khan, Gopika Bashi & Kaveri Gopalakrishnan, Mrigaja Bajracharya, Xinaneo). Kutti Terävä, Zina Marpe, Punit Hiremath, Taneli Kemppi, The Circle Poetry Collective (Jamie Lee, Aino Rahkonen, Sofia Sylvia), Rikki Project (Apila Pepita, Siiri Viljakka, H-P Ontto-Panula and Paju Ruotsalainen), Renuka Rajiv.</p>", "en": "<p>This exhibition explores notions of madness, mental distress and healing through comics and zines.</p><p>In the exhibition artists of South Asian descent from India and Finland present narratives that are both personal and political. These works reveal how injustice and oppression shape our minds and explore acts of care, resistance, and moments of joy in times of struggle.</p><p>Artists:<br>Siddesh Gautam, Amanda Tikkanen, Anpu Varkey, Manjula Padmanabhan Kadak Collective: (Featuring Aarthi Parthasarathy & Shreyas R Krishnan, Aleesha Nandhra, Aravani Art Project, Upasana Agarwal & Nandini Moitra, Aziza, Baljinder Kaur, Divya Kandukuri & Shrujana Shridhar, Sabba Khan, Gopika Bashi & Kaveri Gopalakrishnan, Mrigaja Bajracharya, Xinaneo). Kutti Terävä, Zina Marpe, Punit Hiremath, Taneli Kemppi, The Circle Poetry Collective (Jamie Lee, Aino Rahkonen, Sofia Sylvia), Rikki Project (Apila Pepita, Siiri Viljakka, H-P Ontto-Panula and Paju Ruotsalainen), Renuka Rajiv.</p>" }, "provider": null, "name": { "fi": "Mad Corridors: Contemporary comics and zines on madness from India and Finland – Helsingin sarjakuvafestivaalit 2025", "sv": "Mad Corridors: Contemporary comics and zines on madness from India and Finland – Helsinki Comics Festival 2025", "en": "Mad Corridors: Contemporary comics and zines on madness from India and Finland – Helsinki Comics Festival 2025" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66656/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66367", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 892918, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-30T07:12:47.968145Z", "last_modified_time": "2025-05-30T07:12:47.968158Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773638.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/892918/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-30T07:12:47.904973Z", "last_modified_time": "2025-09-10T13:14:28.220145Z", "date_published": null, "start_time": "2025-09-16T13:00:00Z", "end_time": "2025-09-16T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/710C620C888DCAF55051854D3C0F34FE/Welcome_Day_Kanneltalo", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/710C620C888DCAF55051854D3C0F34FE/Welcome_Day_Kanneltalo", "en": "http://www.kanneltalo.fi/en/events/event/710C620C888DCAF55051854D3C0F34FE/Welcome_Day_Kanneltalo" }, "provider_contact_info": null, "short_description": { "fi": "Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!", "sv": "Welcome Day välkomnar Finlands nyinflyttade invånare välkomna till Helsingfors!", "en": "Cultural Centre Kanneltalo welcomes the recently arrived international residents to Helsinki!" }, "description": { "fi": "<p>Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!</p><p>Tapahtumassa tuoreet kaupunkilaiset pääsevät tutustumaan oman asuinalueensa palveluihin, harrastuksiin ja vapaa-ajan tarjontaan.</p><p>Welcome Day tarjoaa hyödyllisen tiedon lisäksi hauskaa, inspiroivaa ja yhteisöllistä ohjelmaa kaikenikäisille. Ohjelma huipentuu energisestä ja tanssittavasta musiikista tunnetun BaranBand-yhtyeen vauhdikkaaseen esitykseen!</p><p>Welcome Dayssa puhumme englantia, minkä lisäksi tarjoamme tulkkausta tarpeen mukaan. Tapahtuma on maksuton, mutta vaatii ennakkoilmoittautumisen. <br><u><a href=\"https://link.webropolsurveys.com/EP/6BE3D8DFEEB99EB7\">Ilmoittaudu mukaan!</a></u></p><p><b>BaranBand</b> tanssittaa ja hurmaa kurdilaisesta ja persialaisesta musiikista vaikutteita ottavalla soundillaan! Baranin (kurdiksi sade) omaperäiset tulkinnat ovat peräisin bändin jäsenten monenkirjavista taustoista erilaisten musiikkikulttuurien parissa. Bändiä johtavat veljekset Gian ja Marouf Majidi.</p><p>Tapahtumassa osallistujat pääsevät nauttimaan myös pullasta ja kahvista kuten suomalaiseen perinteeseen kuuluu.</p>", "sv": "<p>Welcome Day välkomnar Finlands nyinflyttade invånare välkomna till Helsingfors!</p><p>Under evenemanget får de nya stadsborna möjlighet att bekanta sig med tjänster, hobbyer och fritidsaktiviteter inom det egna bostadsområdet.</p><p>Welcome Day erbjuder förutom nyttig information även ett roligt, inspirerande och gemensamt program för personer i alla åldrar. Programmet kulminerar i ett fartfyllt uppträdande av gruppen BaranBand som är känt för sin energiska och dansanta musik!</p><p>På Welcome Day talar vi engelska, och dessutom erbjuder vi tolkning enligt behov. Evenemanget är avgiftsfritt men förutsätter förhandsanmälan. <br><u><a href=\"https://link.webropolsurveys.com/EP/6BE3D8DFEEB99EB7\">Anmäl dig!</a></u><br> <br>BaranBand lockar till dans och charmerar med ett sound som hämtar inspiration från kurdisk och persisk musik! Barans (på kurdiska regn) originella tolkningar har sitt ursprung i de många olika bakgrunderna i olika musikkulturer. Bandet leds av bröderna Gian och Marouf Majidi.</p><p>Under evenemanget får deltagarna även njuta av kaffe och bulle enligt finländsk tradition.</p>", "en": "<p>Cultural Centre Kanneltalo welcomes the recently arrived international residents to Helsinki!</p><p>Cultural Centre Kanneltalo welcomes the recently arrived international residents to Helsinki! In this event new residents will get to know the services, hobbies and other leisure time activities available to them in their neighborhoods. <br> <br>In addition to providing useful information, the Welcome Day program includes fun, inspiring and communal activities for people of all ages. Finally, the event will end with a bang as BaranBand raises the energy with their fun and electrifying musical performance!</p><p>We speak English at Welcome Day. Additionally, interpreters will be present at the event. The event is free to attend, but sign-ups are required. <br><u><a href=\"https://link.webropolsurveys.com/EP/6BE3D8DFEEB99EB7\">Sign up!</a></u></p><p>Traditional Finnish “pulla” (pastries) and coffee will also be served.</p><p><b>The program for Welcome Day Kanneltalo</b></p><p><b>16.00</b>: The services of the City of Helsinki, local art schools and NGOs present their activities in the lobby of Kanneltalo. This part of the program will end at 18.45.</p><p><b>16.30–18.30: Fun activities for people of all ages:</b></p><p><b>African and Street Dances (Outdoors at Sitratori square)</b><br>16.30-17.00: Performance and dance workshop<br>17.30-18.00: Performance and dance workshop<br>Organizer: Just Dance Finland</p><p><b>Circus for Kids! (Outdoors at Sitratori square)</b><br>Organizer: Sirkus Magenta</p><p><b>Decorate your tote bag! (Library)</b><br>Decorate your own Helsinki tote bag!<br>Organizer: Helsinki Urban Art</p><p><b>Stories about integration art workshop (Library)</b><br>Organizer: Africans and African European Association</p><p><b>Baroque-style photoshoot & music (Library)</b><br>Organizer: Finnish Baroque Orchestra</p><p><b>17.00-18.15 Music at the Café Stage</b> <br> <br><b>18.30: The host of the evening, Noor Assad, will share his experiences on living/working in Helsinki. (Kanneltalo Theatre and Concert Hall)</b></p><p><b>18.40–19.30: BaranBand will perform (Kanneltalo Theatre and Concert hall)</b><br>BaranBand is known for getting people on the dance floor with their sound that takes inspiration from Kurdish and Persian music. Baran (rain in Kurdish) creates unique compositions out of diverse musical traditions represented by the band members. The band is led by brothers Gian and Marouf Majidi.</p>" }, "provider": null, "name": { "fi": "Welcome Day Kanneltalo", "sv": "Welcome Day Kanneltalo", "en": "Welcome Day Kanneltalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66367/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66753", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € / 17,80 / 0 €", "sv": "20 € / 17,80 / 0 €", "en": "20 € / 17,80 / 0 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347620/", "sv": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347620/", "en": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347620/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1255730, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-14T09:14:08.649845Z", "last_modified_time": "2025-07-14T09:14:08.649865Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774906.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1255730/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-14T09:14:08.508444Z", "last_modified_time": "2025-09-10T13:14:26.819072Z", "date_published": null, "start_time": "2025-09-12T15: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, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D5CE02B8404B6EFCA1830B3657061B7D/Klubi-ilta_Atomirotta", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D5CE02B8404B6EFCA1830B3657061B7D/Klubi-ilta_Atomirotta", "en": "http://www.vuotalo.fi/en/events/event/D5CE02B8404B6EFCA1830B3657061B7D/Klubi-ilta_Atomirotta" }, "provider_contact_info": null, "short_description": { "fi": "Atomirotta aloittaa jälleen Vuotalosta perinteisen Lähiö-kiertueensa!", "sv": "Atomirotta startar igen sin traditionella förortsturné från Nordhuset!", "en": "Once again, Atomirotta will start their traditional Lähiö (‘Suburb’) tour at Vuotalo!" }, "description": { "fi": "<p>Atomirotta aloittaa jälleen Vuotalosta perinteisen Lähiö-kiertueensa!</p><p>”On suuri ilo ja kunnia jälleen startata Vuotalolta meidän perinteinen Lähiö-rundimme ja tietysti myös toimia legendaarisen venuen syyskauden itseoikeutettuna käyntiinpolkaisijana! Ja nämähän ovat aina todella upeita ja uniikkeja vetoja, koska perheen pienimmätkin pääsevät mukaan joraamaan! Hyvän mielen paikka numero yksi!”, yhtye iloitsee.</p><p>Ystävänpäivänä 2014 perustettu Atomirotta on alusta asti seurannut vanhaa hienoa viisautta: tekemällä oppii! Yhtye on pitänyt aina langat täysin omissa käsissään ja vaalinut tiukasti hienoa DIY-perinnettä.<br> <br>Vuonna 2025 on kulunut yksitoista vuotta: viisi albumia, lukuisia kulta- ja platinasinkkuja, oma levy-yhtiö, ohjelmatoimisto ja verkkokauppa sekä satoja räjäyttäviä keikkoja ennakkoluulottomasti kuumilta lähiöklubeilta aina suurimmille festarilavoille, joilla Atomirotalle on sementoitu maine yhtenä maamme kovimmista ja tinkimättömimmistä live-bändeistä!<br> <br>Kesto: 75 min (ei väliaikaa)<br>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa.<br>Sali avautuu klo 17.30.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Hanki Jässäri ja lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/klubi-ilta-helsingin-kaupunki-nuorisolippu-vuotalo-20470579/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Atomirotta startar igen sin traditionella förortsturné från Nordhuset!</p><p>\"Det är ett stort nöje och en ära att återigen få starta vår traditionella förortsturné på Nordhuset och naturligtvis också att få vara den berättigade inledaren av den legendariska evenemangsplatsens höstsäsong! Och det här är alltid riktigt bra och unika evenemang, eftersom även de yngsta familjemedlemmarna kan vara med! Den främsta platsen för gott humör!\", säger bandet glatt.<br> <br>Atomirotta grundades på alla hjärtans dag 2014 och har alltid följt ett gammalt ordspråk: övning ger färdighet! Bandet har alltid hållit tyglarna helt i sina egna händer och har alltid strikt upprätthållit en fin DIY-tradition.<br> <br>År 2025 har elva år gått: fem album, många guld- och platinasinglar, eget skivbolag, artistförmedling och webbutik, och hundratals explosiva spelningar från heta förortsklubbar till de största festivalscenerna, vilket har cementerat Atomirottas rykte som ett av de tuffaste och mest kompromisslösa livebanden i landet!</p><p>Längd: 75 minuter (utan paus)<br>Klubbkväll: Café Pokkari står för serveringen, A-rättigheter. Under 18 år i sällskap med en vuxen.<br>Dörrarna till salen öppnas kl. 17.30.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/klubi-ilta-helsingin-kaupunki-nuorisolippu-vuotalo-20470579/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Once again, Atomirotta will start their traditional Lähiö (‘Suburb’) tour at Vuotalo!</p><p>“It is a great pleasure and honour to once again start our traditional Lähiö tour at Vuotalo and, of course, to also be the self-appointed kickstarter of the autumn season of this legendary venue! And these are always really great and unique gigs, because even the youngest members of the family can join the fun! The number one feelgood place!” the band enthuses.<br> <br>Founded on Valentine’s Day 2014, Atomirotta has always followed a great old adage: you learn by doing! The band has always kept the reins completely in their own hands and has always strictly maintained a fine DIY tradition.<br> <br>In 2025, eleven years have passed: five albums, numerous gold and platinum singles, the band’s own record label, promotion agency and online store, and hundreds of explosive gigs with no prejudice from hot suburban clubs to the biggest festival stages, cementing Atomirotta’s reputation as one of the best and most uncompromising live bands in the country!</p><p>Duration: 75 min (no intermission)<br>Club night: catering by Café Pokkari, licensed to serve alcohol. People under the age of 18 must be accompanied by an adult.<br>The doors of the hall will open at 17.30.</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/klubi-ilta-helsingin-kaupunki-nuorisolippu-vuotalo-20470579/?affiliate=FSF\">HERE</a></u></p>" }, "provider": null, "name": { "fi": "Klubi-ilta: Atomirotta", "sv": "Klubi-ilta: Atomirotta", "en": "Klubi-ilta: Atomirotta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66753/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmo7smczm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@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": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490601, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-02T12:37:04.746316Z", "last_modified_time": "2025-09-02T12:37:04.746331Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/b75cc648-faee-47f1-b8e4-6f1c0d118597.png", "cropping": "284,0,661,378", "photographer_name": "", "alt_text": "Kuvituskuva.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490601/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-28T07:47:27.094022Z", "last_modified_time": "2025-09-10T12:48:05.181070Z", "date_published": null, "start_time": "2025-09-26T07:00:00Z", "end_time": "2025-09-26T09: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Lapsiperheille suunnattu maksuton tapahtuma pitää sisällään vauvoille ja isommillekin lapsille sopivia konsertteja, valokylvyn ja perhekahvilatoimintaa. ", "sv": "Detta kostnadsfria evenemang för barnfamiljer omfattar konserter som passar för bebisar och småbarn, en ljusbad och ett familjecafé. ", "en": "Baby's Day is a family-friendly event that includes concerts suitable for babies and toddlers, a light bath, and a family café." }, "description": { "fi": "<p>Tule juhlistamaan Vauvan päivää 26. syyskuuta Lippulaivan kirjastoon Espoonlahteen! Lapsiperheille suunnattu maksuton tapahtuma pitää sisällään vauvoille ja isommillekin lapsille sopivia konsertteja, valokylvyn ja perhekahvilatoimintaa. Tilaisuudessa lanseerataan Lastenkulttuurikortti, joka tarjoaa espoolaisille lapsiperheille vinkkejä luovaan tekemiseen kotona ja kaupungin kulttuuripalveluiden parissa. </p><p><br></p><p><br></p>\nOhjelma: <p> </p><p><strong>10.00–10.30 | Sinfoniettan kvartetti: Pötköttelykonsertti | Salonki </strong></p><p>Tapiola Sinfoniettan jousikvartetti soittaa noin puolen tunnin konsertin, jossa kuullaan tuttuja klassikoita ja muita kivoja kappaleita. </p><p>Voit kuunnella musiikkia makoillen tai köllötellen patjoilla, tai vaikka istua vanhemman sylissä. Konsertti sopii kaikille lapsille ja aikuisille – ja on ihan ilmainen! </p><p>Jukka Rantamäki, viulu </p><p>Kati Rantamäki, viulu </p><p>Tuula Saari, alttoviulu </p><p>Jukka Kaukola, sello </p><p> </p><p><strong>10.45–12.00 | Valokylpy | Salonki </strong></p><p>Veikeillään värikkäissä varjoissa ja kujeillaan kuvastimissa. Pienten ikiomassa kummastelussa tankataan sylikaupalla valoa varastoon. Ikäsuositus 4-14 kk. Valokylpy toimii non-stop-periaatteella. </p><p>Ohjaaja: Jenni Vilander, Lasten kulttuurikeskus Aurora </p><p> </p><p><strong>11.15–12.00 | Vauvamuskari | Perhealue</strong></p><p>Vauvamuskarissa tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Vauvamuskarin kesto on noin 30 minuuttia. Voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. </p><p>Ohjaaja: Lauri Iljin, Espoon kaupunginkirjasto </p><p> </p><p><strong>10.00–12.00 | Kohtaamispiste | Yhteisökeittiö Kapyysi </strong></p><p>Tervetuloa tutustumaan muihin vanhempiin ja kuulemaan samalla Espoon kaupunginkirjaston tapahtumatoiminnasta. Jaamme perheille ruokalappuja. Jos perheen pienokaisella iskee nälkäkiukku kesken tapahtuman Muru Baby ❤ Miu-smoothie auttaa! Tarjolla Muru Babyn ja Fanniemotionsin kanssa yhteistyössä tehtyjä Miu-smoothieitä. </p><p> </p><p>Vauvan päivän järjestää KulttuuriEspoon lastenkulttuurin toimijat, mukaan lukien Espoon kaupunginkirjasto, Lasten kulttuurikeskus Aurora ja Tapiola Sinfonietta. Yhteistyökumppanina Vauvan päivässä on Muru Baby, joka sponsoroi tapahtumaan Muru Baby ❤ Miu-smoothiet. Tapahtuma on osa valtakunnallista Vauvan päivää. </p>", "sv": "<p>Kom och fira Babydagen den 26 september på Lippulaivabiblioteket i Espoonlahti! Detta kostnadsfria evenemang för barnfamiljer erbjuder konserter för spädbarn och småbarn, ljusbad och ett familjecafé. Evenemanget markerar lanseringen av Barnens kulturkort, som ger barnfamiljer i Esbo tips på kreativa aktiviteter hemma och med stadens kulturtjänster. </p><p> </p>\nProgram: <p> </p><p><strong>10:00–10:30 | Sinfonietta kvartett: liggande konsert | Salonki </strong></p><p>Tapiola Sinfonietta stråkkvartett spelar en halvtimmes konsert med välkända klassiker och andra roliga stycken. </p><p>Barnen kan lyssna på konserten medan de ligger eller ligger på madrasser eller sitter i föräldrarnas knä. Konserten passar alla barn och vuxna – och den är helt gratis! </p><p>Jukka Rantamäki, fiol </p><p>Kati Rantamäki, fiol </p><p>Tuula Saari, viola </p><p>Jukka Kaukola, cello </p><p> </p><p><strong>10:45–12:00 | Ljusbad | Salonki </strong></p><p>Lek i färgglada skuggor och ha kul med speglar. Låt dina små fylla på med ljus i sitt eget sagoland. Rekommenderad ålder: 4–14 månader. Ljusbadet är öppet non-stop. </p><p>Instruktör: Jenni Vilander, Barnkulturcenter Aurora </p><p><br></p><p><strong>11:15–12:00 | Musiklekis för bebisar | Familjeområdet </strong></p><p>Musiklekis för bebisar är ett tillfälle att utforska musik och ha roligt tillsammans med ditt barn. Ingen tidigare erfarenhet av att spela instrument eller sjunga krävs. Lektionen varar i cirka 30 minuter. Alla är välkomna att delta, oavsett språkkunskaper eller musikalisk bakgrund. </p><p>Instruktör: Lauri Iljin, Esbo stadsbibliotek </p><p> </p><p><strong>10:00–12:00 | Mötesplats | Kapyysi gemenskaps kök </strong></p><p>Kom och träffa andra föräldrar och få mer information om de evenemang som Esbo stadsbibliotek anordnar. Vi delar ut haklappar till familjerna. Om ditt barn blir hungrigt under evenemanget finns Muru Baby ❤ Miu-smoothies till hands! Miu-smoothies, som tillverkas i samarbete med Muru Baby och Fanniemotions, kommer att finnas tillgängliga. </p><p><br></p><p>Babydagen anordnas av KulturEsbos barnkulturarrangörer, bland annat Esbo stadsbibliotek, barnkulturcentret Aurora och Tapiola Sinfonietta. Muru Baby är partner i Babydagen och sponsrar Muru Baby ❤ Miu-smoothies till evenemanget. Evenemanget är en del av de nationella Babydagen-firandena. </p>", "en": "<p>Come celebrate Baby’s Day on September 26 at Lippulaiva Library in Espoonlahti! This free event for families with children includes concerts suitable for babies and toddlers, a light bath, and a family café. The event will launch the Children's Culture Card, which offers families with children in Espoo tips for creative activities at home and with the city's cultural services. </p><p> </p>\nProgram: <p><br></p><p><strong>10:00–10:30 a.m. | Sinfonietta Quartet: Lie-Down Concert | Salonki </strong></p><p>The Tapiola Sinfonietta string quartet will play a half-hour concert featuring familiar classics and other fun pieces. </p><p>Children may listen to the concert while lying down or lounging on mattresses or sitting on their parent's lap. The concert is suitable for all children and adults – and it's completely free! </p><p>Jukka Rantamäki, violin </p><p>Kati Rantamäki, violin </p><p>Tuula Saari, viola </p><p>Jukka Kaukola, cello </p><p><br></p><p><strong>10:45 a.m.–12:00 p.m. | Light Bath | Salonki </strong></p><p>Play in colorful shadows and have fun with mirrors. Let your little ones fill up on light in their own wonderland. Recommended age: 4–14 months. The light bath is open non-stop. </p><p>Instructor: Jenni Vilander, Aurora Children's Cultural Center </p><p> </p><p><strong>11:15 a.m.–12:00 p.m. | Baby Music Class | Family Area </strong></p><p>Baby Music Class is an opportunity to explore music and enjoy yourself with your child. No prior experience of playing an instrument or singing is necessary. The class lasts about 30 minutes. Everyone is welcome to participate, regardless of their language skills or musical background. </p><p>Instructor: Lauri Iljin, Espoo City Library </p><p> </p><p><strong>10:00 a.m.–12:00 p.m. | Meeting Point | Kapyysi Community Kitchen </strong></p><p>Come and meet other parents and find out more about the events organized by Espoo City Library. We will be handing out bibs to families. If your little one gets hungry during the event, Muru Baby ❤ Miu smoothies are here to help! Miu smoothies, made in collaboration with Muru Baby and Fanniemotions, will be available. </p><p> </p><p>Baby's Day is organised by CultureEspoo's children's cultural operators, including Espoo City Library, Children's Cultural Centre Aurora and Tapiola Sinfonietta. Muru Baby is a partner in Baby's Day, sponsoring Muru Baby ❤ Miu smoothies for the event. The event is part of the national Baby's Day celebrations. </p>" }, "provider": { "fi": "KulttuuriEspoo", "sv": "KulturEsbo", "en": "CultureEspoo" }, "name": { "fi": "Vauvan päivä Lippulaivan kirjastossa ", "sv": "Babydagen på Lippulaivabiblioteket ", "en": "Baby's Day at Lippulaiva Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmo7smczm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:72639948-6848-413a-8db1-d32d61c5b53a", "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:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": { "fi": "0" }, "description": null, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=199_luotu_nyttely_UAT3817503121" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1490744, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-10T12:29:08.608086Z", "last_modified_time": "2025-09-10T12:29:08.608100Z", "name": "linked events sivulla kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/aa9d7115-06d3-ef11-8eea-000d3adf4af4", "cropping": "", "photographer_name": "linkedevents sivulla kuvaajan nimi", "alt_text": "linked events sivulla alt-teksti", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490744/?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:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" } ], "created_time": "2025-09-10T12:07:51.368927Z", "last_modified_time": "2025-09-10T12:29:09.112007Z", "date_published": "2025-09-10T10:49:23Z", "start_time": "2025-09-15T05:00:00Z", "end_time": "2025-10-01T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": 100, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 10000, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-09-15T08:00:00+03:00", "enrolment_end_time": "2025-09-15T16:00:00+03:00", "local": false, "replaced_by": null, "location_extra_info": { "fi": "Aula" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tapahtuman lyhyt kuvaus suomeksi." }, "description": { "fi": "<div><p>Tapahtuman kuvaus suomeksi.</p><p> </p><p>Mokattu myöhemmin.</p></div>" }, "provider": { "fi": "Annantalo" }, "name": { "fi": "19.9. luotu näyttely UAT" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:72639948-6848-413a-8db1-d32d61c5b53a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:bbefe8e8-9edc-48ad-8360-fc4766d7476c", "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:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": { "fi": "0" }, "description": null, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=UAT_nyttely_Milka_10920251803753836" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1490743, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-10T12:28:37.867119Z", "last_modified_time": "2025-09-10T12:28:37.867133Z", "name": "Vihreä testikuva", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/a99d7115-06d3-ef11-8eea-000d3adf4af4", "cropping": "", "photographer_name": "Milka Salonen", "alt_text": "Vihreä kuva, jossa lukee Testikuva 222 x 222 px", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490743/?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:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "created_time": "2025-09-10T12:07:51.305598Z", "last_modified_time": "2025-09-10T12:28:38.202510Z", "date_published": "2025-09-10T10:49:12Z", "start_time": "2025-10-01T05:00:00Z", "end_time": "2025-10-31T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 8, "audience_max_age": 99, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 1000, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-09-10T08:00:00+03:00", "enrolment_end_time": "2025-10-01T08:00:00+03:00", "local": false, "replaced_by": null, "location_extra_info": { "fi": "Annansali", "zh_hans": "的语言。" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Näyttely kaikesta mukavasta", "zh_hans": "学习新的语言。" }, "description": { "fi": "<div><p>Näyttely lapsenmielisille<br>Näyttely kaikesta mukavasta</p></div>", "zh_hans": "<div><p>学习新的语言。<br>Lisätietoja</p><p> </p></div>" }, "provider": { "fi": "ABC Yritys OY", "zh_hans": "学习新的" }, "name": { "fi": "UAT näyttely Milka 10.9.2025", "zh_hans": "中文:我喜欢" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:bbefe8e8-9edc-48ad-8360-fc4766d7476c/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:2521b85d-4b86-4e49-8806-4b5cd362cd62", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:77550/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": { "fi": "0" }, "description": null, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Tm_on_testi_-nyttely982971620" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1490742, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-10T12:28:08.490394Z", "last_modified_time": "2025-09-10T12:28:08.490412Z", "name": "Hieno leipä", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/332b6bba-3a8e-f011-b4cc-7ced8d7420c5", "cropping": "", "photographer_name": "Kuvapankki", "alt_text": "Kuvassa on leipä", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490742/?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:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" } ], "created_time": "2025-09-10T12:07:51.246665Z", "last_modified_time": "2025-09-10T12:28:08.879847Z", "date_published": "2025-09-10T10:53:34Z", "start_time": "2025-11-01T08:00:00Z", "end_time": "2025-12-01T19:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 15, "audience_max_age": 100, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 5000, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-11-01T08:00:00+02:00", "enrolment_end_time": "2025-12-01T08:00:00+02:00", "local": false, "replaced_by": null, "location_extra_info": { "fi": "Huvilan piha-alue" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Kuvaus tekstistä", "zh_hans": "项目成果的展览" }, "description": { "fi": "<div><p>Näyttely erään hankkeen tuotoksista</p></div>", "zh_hans": "<div><p>项目成果的展览</p><p> </p><p> </p><p> </p></div>" }, "provider": { "fi": "Helsingin kaupunki", "zh_hans": "赫尔辛基市" }, "name": { "fi": "Tämä on testi! -näyttely", "zh_hans": "项目成果的展览" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:2521b85d-4b86-4e49-8806-4b5cd362cd62/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmthud4vy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/lyckokattervocal/?locale=fi_FI", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/lyckokattervocal/", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490745, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-10T12:22:07.063399Z", "last_modified_time": "2025-09-10T12:22:07.063414Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/98631bac-598b-4daa-a28c-7a7cbd77a123.jpg", "cropping": "420,0,1505,1084", "photographer_name": "Ana Belcic", "alt_text": "Perhosia beigellä pohjalla, sekä teksti \"Wings of light, wings of life - International repertoire for hig voices\"", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490745/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T12:25:49.133278Z", "last_modified_time": "2025-09-10T12:25:49.133296Z", "date_published": "2025-09-10T12:10:00Z", "start_time": "2025-10-04T11:00:00Z", "end_time": "2025-10-04T12: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Lyckokatter Vocal Ensemble (2017–) on Tapiolassa toimiva kansainvälinen a cappella -yhtye, jossa lauletaan sopraano- ja alttoäänillä.", "sv": "Lyckokatter Vocal Ensemble (2017–) är en internationell a cappella-grupp med sopran- och altstämmor, baserad i Hagalund.", "en": "Lyckokatter Vocal Ensemble (2017–) is a Tapiola-based international a capella group of soprano and alto voices." }, "description": { "fi": "<p><strong>Lyckokatter Vocal Ensemble est. 2017</strong></p><p>Taiteellinen johtaja Kristina Bogataj esittää</p><p>Syksyn kirjastosarja:</p><p>WINGS OF LIGHT, WINGS OF LIFE - International repertoire for high voices.</p><p>Lyckokatter Vocal Ensemble (2017–) on Tapiolassa toimiva kansainvälinen a cappella -yhtye, jossa lauletaan sopraano- ja alttoäänillä. Yhtyeen taiteellinen johtaja on Kristina Bogataj, slovenialainen kuoronjohtaja ja mezzosopraano.</p><p>Seuraa LKK:</p><p>Instagram: @lyckokattervocal</p><p>Facebook: Lyckokatter Vocal Ensemble</p><p>Info: lyckokattervocal@gmail.com</p><p><br></p><p>Design: Ana Belcic</p>", "sv": "<p><strong>Lyckokatter Vocal Ensemble est. 2017</strong></p><p>Konstnärlig ledare Kristina Bogataj presenterar</p><p>Höstens biblioteksserie: WINGS OF LIGHT, WINGS OF LIFE</p><p>Lyckokatter Vocal Ensemble (2017–) är en internationell a cappella-grupp med sopran- och altstämmor, baserad i Hagalund. Deras konstnärliga ledare är Kristina Bogataj, slovensk körledare och mezzosopran.</p><p><br></p><p>Följ LKK:</p><p>Instagram: @lyckokattervocal</p><p>Facebook: Lyckokatter Vocal Ensemble</p><p>Info: lyckokattervocal@gmail.com</p><p>Design: Ana Belcic</p>", "en": "<p><strong>Lyckokatter Vocal Ensemble est. 2017</strong></p><p>Artistic leader Kristina Bogataj presents</p><p>Autumn Library Series:</p><p>WINGS OF LIGHT, WINGS OF LIFE - International repertoire for high voices.</p><p>Lyckokatter Vocal Ensemble (2017–) is a Tapiola-based international a capella group of soprano and alto voices. Their artistic leader is Kristina Bogataj, a Slovenian choral conductor and mezzosoprano.</p><p><br></p><p>Follow LKK:</p><p>Instagram: @lyckokattervocal</p><p>Facebook: Lyckokatter Vocal Ensemble</p><p>Info: lyckokattervocal@gmail.com</p><p><br></p><p>Design: Ana Belcic</p>" }, "provider": { "fi": "Lyckokatter Vocal Ensemble", "sv": "Lyckokatter Vocal Ensemble", "en": "Lyckokatter Vocal Ensemble" }, "name": { "fi": "Wings of Light, Wings of Life - International repertoire for high voices", "sv": "Wings of Light, Wings of Life - International repertoire for high voices", "en": "Wings of Light, Wings of Life - International repertoire for high voices" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmthud4vy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:abf4648b-e4e6-4ccd-b4ef-c9b041db6029", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:22971/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": { "fi": "0", "ru": "0" }, "description": { "fi": "Ei!", "ru": "Njet!" }, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Karpaloinen_kastrulli3276654418" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1490739, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T12:25:06.628164Z", "last_modified_time": "2025-09-10T12:25:06.628179Z", "name": "AI-rämmäle, joka ei liity tapahtumaan", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9", "cropping": "", "photographer_name": "Belsebuubi", "alt_text": "Joku AI rämmäle kehissä", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490739/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "created_time": "2025-09-10T12:07:51.343063Z", "last_modified_time": "2025-09-10T12:25:07.040284Z", "date_published": "2025-09-10T10:53:32Z", "start_time": "2025-09-27T05:00:00Z", "end_time": "2025-10-25T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 8, "audience_max_age": 100, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 10000, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-09-27T08:00:00+03:00", "enrolment_end_time": "2025-09-27T17:00:00+03:00", "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Oppilastöitä karpaloaiheen läheltä ja ympäriltä.", "ru": "Njet!" }, "description": { "fi": "<div><p>Lorem ipsum karpalom parpalom jarpalom</p></div>", "ru": "<div><p>Студент работает с близкой и вокруг клюквенной темы.</p><p> </p></div>" }, "provider": { "fi": "Annantalo", "ru": "Аннантало" }, "name": { "fi": "Karpaloinen kastrulli", "ru": "Da daa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:abf4648b-e4e6-4ccd-b4ef-c9b041db6029/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:a5c66f5e-2ef8-4f99-b959-4e2b4c632698", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:22967/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": { "fi": "0" }, "description": null, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=A_Projektin_nyttely1619104037" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1490736, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-10T12:21:51.792119Z", "last_modified_time": "2025-09-10T12:21:51.792133Z", "name": "Kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/9135e53f-c987-f011-b4cc-000d3a6811bd", "cropping": "", "photographer_name": "Nimekäs Kuvaaja", "alt_text": "Kuva hinnihiirestä. Hiiri on hieno.", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490736/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" } ], "created_time": "2025-09-10T12:07:55.915778Z", "last_modified_time": "2025-09-10T12:21:52.257488Z", "date_published": "2025-09-10T10:55:48Z", "start_time": "2025-12-23T08:00:00Z", "end_time": "2025-12-25T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 100, "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, "location_extra_info": { "fi": "Patsas" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "A Projektin näyttelyA Projektin näyttely", "sv": "Täytetty", "ar": "تعلم لغات جديدة ممتع" }, "description": { "fi": "<div><p>A Projektin näyttelyA Projektin näyttely</p><p>TÄTÄ ON MUOKATTU</p></div>", "sv": "<div><p>Täytetty mutta täyttyykö muualle?</p></div>", "ar": "<div><p>هذه هي اللغة الفنلندية.</p><p> </p><p> </p><p> </p><p> </p></div>" }, "provider": { "fi": "KPMG suomeksi", "sv": "KPMG ruotsiksi", "ar": "KPMG arabiaksi" }, "name": { "fi": "A Projektin näyttely", "sv": "Täytetty", "ar": "تعلم لغات جديدة ممتع" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a5c66f5e-2ef8-4f99-b959-4e2b4c632698/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:81f84a2a-9e9f-40dc-9219-53fe353ac8ac", "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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": { "fi": "0" }, "description": null, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Annin_oma_nyttely1230047382" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1490731, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T12:18:51.731764Z", "last_modified_time": "2025-09-10T12:18:51.731778Z", "name": "näyttelykuva", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/b64288a3-3a8e-f011-b4cc-000d3ab33a80", "cropping": "", "photographer_name": "Noomi Ljungdell", "alt_text": "kuvaaja kuvaa pimiössä", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490731/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "created_time": "2025-09-10T12:07:51.186863Z", "last_modified_time": "2025-09-10T12:18:52.250871Z", "date_published": "2025-09-10T10:52:35Z", "start_time": "2025-10-13T05:00:00Z", "end_time": "2025-10-31T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 100, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 300, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-09-10T08:00:00+03:00", "enrolment_end_time": "2025-09-26T08:00:00+03:00", "local": false, "replaced_by": null, "location_extra_info": { "fi": "alagalleria" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "lyhyt kuvaus näyttelystä jee" }, "description": { "fi": "<div><p>pitempi kuvaus näyttelystä</p></div>" }, "provider": { "fi": "Annantalo" }, "name": { "fi": "Annin oma näyttely" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:81f84a2a-9e9f-40dc-9219-53fe353ac8ac/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67003", "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/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490726, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T12:14:55.067752Z", "last_modified_time": "2025-09-10T12:14:55.067775Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773705.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490726/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T12:14:54.940327Z", "last_modified_time": "2025-09-10T12:14:55.229122Z", "date_published": null, "start_time": "2025-11-30T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7370DCE36CDF75653106985EE84784E2/Poropudas_Savolainen_Object_trouv_", "sv": "http://www.stoa.fi/sv/evenemang/event/7370DCE36CDF75653106985EE84784E2/Poropudas_Savolainen_Object_trouv_", "en": "http://www.stoa.fi/en/events/event/7370DCE36CDF75653106985EE84784E2/Poropudas_Savolainen_Object_trouv_" }, "provider_contact_info": null, "short_description": { "fi": "Object trouvé ilakoi sattumanvaraisuudessa, jossa tuntematon maasto luo jatkuvaa neuvottelua loputtomien mahdollisuuksien tiellä.", "sv": "Object trouvé är en duett om rörelse och musik, som fylls från motsatta sidor och krafter genom att ge utrymme även harmoni och kongruens.", "en": "Object trouvé is a duet of movement and music, filled with opposing directions and forces, while also giving space to harmony and congruence." }, "description": { "fi": "<p>Object trouvé ilakoi sattumanvaraisuudessa, jossa tuntematon maasto luo jatkuvaa neuvottelua loputtomien mahdollisuuksien tiellä.</p><p>Object trouvé mielikuvailee, draamailee ja tavoittelee mahdottomuutta. Abstrakti teos kytkeytyy tanssiin, jossa Merce Cunningham on kummitus ja teoksen kohtalo määrittyy osaksi chance-metodin eli sattumanvaraisuuden keinoin.</p><p>Teos kutsuu esiin olevaisuutta, joka ilmentyy ja purkautuu moninaisilla tavoilla tulvahtaen tähän hetkeen. Esiintyjät tanssivat ihmeellisyyttä, joka elää rinnan ääni- ja valomaiseman kanssa. Merce Cunninghamista inspiroitunut geometrisuus, tarkkuus, ajallisuus ja energia rakentavat kompositiota Object trouvélle, jonka avulla työryhmä tarkastelee näiden elementtien kiinnittymistä tähän hetkeen.</p><p>Teos on samanaikaisesti liikkeen ja musiikin duetto, joka täyttyy vastakkaisista suunnista ja voimista antaen myös tilaa harmonialle ja yhteneväisyydelle. Musiikki ja liike avaavat yhdessä näkymän kummalliseen todellisuuteen, jossa yllätyksellisyys sekä tarkkuus (linjakkuus) vuorottelevat. Tanssi muodostaa kaavoja ja sääntöjä, jotka sattumanvaraisesti hajoavat uudenlaisiin suuntiin.</p><p><b>Työryhmän esittely</b><br>Object trouvé -työryhmään kuuluvat tanssitaiteilija-esiintyjät Pinja Poropudas ja Marjukka Savolainen sekä äänisuunnittelija Antti Mäki. Kollektiivinen työskentely pohjaa Merce Cunninghamin ja John Cagen yhteistyötavoista inspiroituneeseen metodiin sekä sattumanvaraisuuteen. Työryhmän jäsenet ovat kokeneita sarallaan, mutta yhdistävät voimansa tällä kokoonpanolla ensimmäistä kertaa, tarkoituksenaan luoda kestävää jatkumoa yhteiselle taiteen tekemiselle.</p><p><b>Teoksen tukijat</b><br>Teosta on ollut tukemassa Jenny ja Antti Wihurin rahasto, Kansan Sivistysrahasto, Taiteen edistämiskeskus sekä Liisa Pentti + Co:n kesäresidenssi 2024. Teoksen aihioista nähtiin myös hetkessä syntynyt katkelma Liisa Pentti + Co:n Improsyksy 2024 -tapahtumassa.</p>", "sv": "<p>Object trouvé är en duett om rörelse och musik, som fylls från motsatta sidor och krafter genom att ge utrymme även harmoni och kongruens.</p><p>Verket öppnar vyn till en underlig verklighet, där oförutsägbarheten, geometriska former och stilfullheten växlar genom att skapa och söndra såväl överenskomna regler som planer.</p><p><b>Presentation av arbetsgruppen</b><br>Object trouvé-arbetsgruppen omfattar danskonstnärerna Pinja Poropudas och Marjukka Savolainen samt ljudplaneraren Antti Mäki. Det kollektiva arbetssättet grundar sig på en metod som inspirerats av Merce Cunninghams och John Cages samarbetssätt samt slumpmässighet. Medlemmarna i arbetsgruppen är erfarna i sin sektor, men slår ihop sina styrkor med denna sammansättning för första gången, med avsikt att skapa en hållbar fortsättning för gemensamt skapande av konst.</p>", "en": "<p>Object trouvé is a duet of movement and music, filled with opposing directions and forces, while also giving space to harmony and congruence.</p><p>The work offers a view into a strange reality where the unexpected alternates with geometric shapes and linearity, forming and breaking both established rules and patterns.</p><p><b>Presentation of the working group</b><br>The Object trouvé team includes dance artists Pinja Poropudas and Marjukka Savolainen and sound designer Antti Mäki. Their collective work is based on a method inspired by the collaborative methods of Merce Cunningham and John Cage, as well as on randomness. The members of the working group are all experienced in their fields, but are now joining forces for the first time with this composition, with the aim of creating a sustainable continuum of collective creation of art.</p>" }, "provider": null, "name": { "fi": "Poropudas & Savolainen: Object trouvé", "sv": "Poropudas & Savolainen: Object trouvé", "en": "Poropudas & Savolainen: Object trouvé" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67003/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66789", "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/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/poropudas-savolainen-object-trouve-3948308/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1359526, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-28T09:14:03.140913Z", "last_modified_time": "2025-07-28T09:14:03.140929Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773704.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1359526/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-28T09:14:02.991040Z", "last_modified_time": "2025-09-10T12:14:54.570854Z", "date_published": null, "start_time": "2025-11-29T13: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, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/107D2ECF4432E874C93362177EC7CD69/Poropudas_Savolainen_Object_trouv_", "sv": "http://www.stoa.fi/sv/evenemang/event/107D2ECF4432E874C93362177EC7CD69/Poropudas_Savolainen_Object_trouv_", "en": "http://www.stoa.fi/en/events/event/107D2ECF4432E874C93362177EC7CD69/Poropudas_Savolainen_Object_trouv_" }, "provider_contact_info": null, "short_description": { "fi": "Object trouvé ilakoi sattumanvaraisuudessa, jossa tuntematon maasto luo jatkuvaa neuvottelua loputtomien mahdollisuuksien tiellä.", "sv": "Object trouvé är en duett om rörelse och musik, som fylls från motsatta sidor och krafter genom att ge utrymme även harmoni och kongruens.", "en": "Object trouvé is a duet of movement and music, filled with opposing directions and forces, while also giving space to harmony and congruence." }, "description": { "fi": "<p>Object trouvé ilakoi sattumanvaraisuudessa, jossa tuntematon maasto luo jatkuvaa neuvottelua loputtomien mahdollisuuksien tiellä.</p><p>Object trouvé mielikuvailee, draamailee ja tavoittelee mahdottomuutta. Abstrakti teos kytkeytyy tanssiin, jossa Merce Cunningham on kummitus ja teoksen kohtalo määrittyy osaksi chance-metodin eli sattumanvaraisuuden keinoin.</p><p>Teos kutsuu esiin olevaisuutta, joka ilmentyy ja purkautuu moninaisilla tavoilla tulvahtaen tähän hetkeen. Esiintyjät tanssivat ihmeellisyyttä, joka elää rinnan ääni- ja valomaiseman kanssa. Merce Cunninghamista inspiroitunut geometrisuus, tarkkuus, ajallisuus ja energia rakentavat kompositiota Object trouvélle, jonka avulla työryhmä tarkastelee näiden elementtien kiinnittymistä tähän hetkeen.</p><p>Teos on samanaikaisesti liikkeen ja musiikin duetto, joka täyttyy vastakkaisista suunnista ja voimista antaen myös tilaa harmonialle ja yhteneväisyydelle. Musiikki ja liike avaavat yhdessä näkymän kummalliseen todellisuuteen, jossa yllätyksellisyys sekä tarkkuus (linjakkuus) vuorottelevat. Tanssi muodostaa kaavoja ja sääntöjä, jotka sattumanvaraisesti hajoavat uudenlaisiin suuntiin.</p><p><b>Työryhmän esittely</b><br>Object trouvé -työryhmään kuuluvat tanssitaiteilija-esiintyjät Pinja Poropudas ja Marjukka Savolainen sekä äänisuunnittelija Antti Mäki. Kollektiivinen työskentely pohjaa Merce Cunninghamin ja John Cagen yhteistyötavoista inspiroituneeseen metodiin sekä sattumanvaraisuuteen. Työryhmän jäsenet ovat kokeneita sarallaan, mutta yhdistävät voimansa tällä kokoonpanolla ensimmäistä kertaa, tarkoituksenaan luoda kestävää jatkumoa yhteiselle taiteen tekemiselle.</p><p><b>Teoksen tukijat</b><br>Teosta on ollut tukemassa Jenny ja Antti Wihurin rahasto, Kansan Sivistysrahasto, Taiteen edistämiskeskus sekä Liisa Pentti + Co:n kesäresidenssi 2024. Teoksen aihioista nähtiin myös hetkessä syntynyt katkelma Liisa Pentti + Co:n Improsyksy 2024 -tapahtumassa.</p>", "sv": "<p>Object trouvé är en duett om rörelse och musik, som fylls från motsatta sidor och krafter genom att ge utrymme även harmoni och kongruens.</p><p>Verket öppnar vyn till en underlig verklighet, där oförutsägbarheten, geometriska former och stilfullheten växlar genom att skapa och söndra såväl överenskomna regler som planer.</p><p><b>Presentation av arbetsgruppen</b><br>Object trouvé-arbetsgruppen omfattar danskonstnärerna Pinja Poropudas och Marjukka Savolainen samt ljudplaneraren Antti Mäki. Det kollektiva arbetssättet grundar sig på en metod som inspirerats av Merce Cunninghams och John Cages samarbetssätt samt slumpmässighet. Medlemmarna i arbetsgruppen är erfarna i sin sektor, men slår ihop sina styrkor med denna sammansättning för första gången, med avsikt att skapa en hållbar fortsättning för gemensamt skapande av konst.</p>", "en": "<p>Object trouvé is a duet of movement and music, filled with opposing directions and forces, while also giving space to harmony and congruence.</p><p>The work offers a view into a strange reality where the unexpected alternates with geometric shapes and linearity, forming and breaking both established rules and patterns.</p><p><b>Presentation of the working group</b><br>The Object trouvé team includes dance artists Pinja Poropudas and Marjukka Savolainen and sound designer Antti Mäki. Their collective work is based on a method inspired by the collaborative methods of Merce Cunningham and John Cage, as well as on randomness. The members of the working group are all experienced in their fields, but are now joining forces for the first time with this composition, with the aim of creating a sustainable continuum of collective creation of art.</p>" }, "provider": null, "name": { "fi": "Poropudas & Savolainen: Object trouvé – ENSI-ILTA", "sv": "Poropudas & Savolainen: Object trouvé – PREMIÄR", "en": "Poropudas & Savolainen: Object trouvé – PREMIERE" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66789/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27526, "next": "