Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=97&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 11952, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=98&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=96&publisher_ancestor=ahjo%3A00001" }, "data": [ { "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": [], "description": null, "info_url": null, "price": 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", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773638.jpg", "name": "", "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, "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": null, "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>" }, "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!" }, "location_extra_info": null, "name": { "fi": "Welcome Day Kanneltalo", "sv": "Welcome Day Kanneltalo", "en": "Welcome Day Kanneltalo" }, "provider_contact_info": null, "@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": [], "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/" }, "price": { "fi": "20 € / 17,80 / 0 €", "sv": "20 € / 17,80 / 0 €", "en": "20 € / 17,80 / 0 €" } } ], "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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774906.jpg", "name": "", "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, "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": null, "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>" }, "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!" }, "location_extra_info": null, "name": { "fi": "Klubi-ilta: Atomirotta", "sv": "Klubi-ilta: Atomirotta", "en": "Klubi-ilta: Atomirotta" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66753/?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": [], "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" }, "price": { "fi": "0" } } ], "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", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/aa9d7115-06d3-ef11-8eea-000d3adf4af4", "name": "linked events sivulla kuvateksti", "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, "info_url": null, "provider": { "fi": "Annantalo" }, "description": { "fi": "<div><p>Tapahtuman kuvaus suomeksi.</p><p> </p><p>Mokattu myöhemmin.</p></div>" }, "short_description": { "fi": "Tapahtuman lyhyt kuvaus suomeksi." }, "location_extra_info": { "fi": "Aula" }, "name": { "fi": "19.9. luotu näyttely UAT" }, "provider_contact_info": null, "@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": [], "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" }, "price": { "fi": "0" } } ], "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", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/a99d7115-06d3-ef11-8eea-000d3adf4af4", "name": "Vihreä testikuva", "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, "info_url": null, "provider": { "fi": "ABC Yritys OY", "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>" }, "short_description": { "fi": "Näyttely kaikesta mukavasta", "zh_hans": "学习新的语言。" }, "location_extra_info": { "fi": "Annansali", "zh_hans": "的语言。" }, "name": { "fi": "UAT näyttely Milka 10.9.2025", "zh_hans": "中文:我喜欢" }, "provider_contact_info": null, "@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": [], "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" }, "price": { "fi": "0" } } ], "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", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/332b6bba-3a8e-f011-b4cc-7ced8d7420c5", "name": "Hieno leipä", "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, "info_url": null, "provider": { "fi": "Helsingin kaupunki", "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>" }, "short_description": { "fi": "Kuvaus tekstistä", "zh_hans": "项目成果的展览" }, "location_extra_info": { "fi": "Huvilan piha-alue" }, "name": { "fi": "Tämä on testi! -näyttely", "zh_hans": "项目成果的展览" }, "provider_contact_info": null, "@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": "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:p16197/?format=api" }, { "@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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "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" }, "price": { "fi": "0", "ru": "0" } } ], "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", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9", "name": "AI-rämmäle, joka ei liity tapahtumaan", "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:p16197/?format=api" }, { "@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" } ], "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, "info_url": null, "provider": { "fi": "Annantalo", "ru": "Аннантало" }, "description": { "fi": "<div><p>Lorem ipsum karpalom parpalom jarpalom</p></div>", "ru": "<div><p>Студент работает с близкой и вокруг клюквенной темы.</p><p> </p></div>" }, "short_description": { "fi": "Oppilastöitä karpaloaiheen läheltä ja ympäriltä.", "ru": "Njet!" }, "location_extra_info": null, "name": { "fi": "Karpaloinen kastrulli", "ru": "Da daa" }, "provider_contact_info": null, "@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": [], "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" }, "price": { "fi": "0" } } ], "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", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/9135e53f-c987-f011-b4cc-000d3a6811bd", "name": "Kuvateksti", "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, "info_url": null, "provider": { "fi": "KPMG suomeksi", "sv": "KPMG ruotsiksi", "ar": "KPMG arabiaksi" }, "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>" }, "short_description": { "fi": "A Projektin näyttelyA Projektin näyttely", "sv": "Täytetty", "ar": "تعلم لغات جديدة ممتع" }, "location_extra_info": { "fi": "Patsas" }, "name": { "fi": "A Projektin näyttely", "sv": "Täytetty", "ar": "تعلم لغات جديدة ممتع" }, "provider_contact_info": null, "@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": [], "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" }, "price": { "fi": "0" } } ], "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", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/b64288a3-3a8e-f011-b4cc-000d3ab33a80", "name": "näyttelykuva", "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, "info_url": null, "provider": { "fi": "Annantalo" }, "description": { "fi": "<div><p>pitempi kuvaus näyttelystä</p></div>" }, "short_description": { "fi": "lyhyt kuvaus näyttelystä jee" }, "location_extra_info": { "fi": "alagalleria" }, "name": { "fi": "Annin oma näyttely" }, "provider_contact_info": null, "@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": [], "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/" }, "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" } } ], "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", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773705.jpg", "name": "", "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, "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": null, "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>" }, "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." }, "location_extra_info": null, "name": { "fi": "Poropudas & Savolainen: Object trouvé", "sv": "Poropudas & Savolainen: Object trouvé", "en": "Poropudas & Savolainen: Object trouvé" }, "provider_contact_info": null, "@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": [], "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/" }, "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" } } ], "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", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773704.jpg", "name": "", "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, "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": null, "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>" }, "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." }, "location_extra_info": null, "name": { "fi": "Poropudas & Savolainen: Object trouvé – ENSI-ILTA", "sv": "Poropudas & Savolainen: Object trouvé – PREMIÄR", "en": "Poropudas & Savolainen: Object trouvé – PREMIERE" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66789/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:c3312ca8-3acd-448e-812c-d2ab93b8682f", "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/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Uusi_nyttelyprojekti_1093192332245" }, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1490720, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-10T12:07:49.032588Z", "last_modified_time": "2025-09-10T12:07:49.032604Z", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/5309159a-3a8e-f011-b4cc-000d3ab0762c", "name": "Näyttämö", "cropping": "", "photographer_name": "Valo Kuvaaja", "alt_text": "Piirretty Näyttämö kuva", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490720/?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:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "created_time": "2025-09-10T12:07:51.404250Z", "last_modified_time": "2025-09-10T12:07:51.404270Z", "date_published": "2025-09-10T10:52:35Z", "start_time": "2025-09-22T05:00:00Z", "end_time": "2025-10-12T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 10, "audience_max_age": 99, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 200, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-09-10T08:00:00+03:00", "enrolment_end_time": "2025-09-11T23:30:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "ABC yritys" }, "description": { "fi": "<div><p>Kaikkea kivaa paljon.</p></div>", "en": "<div><p>Loads on nice things</p></div>" }, "short_description": { "fi": "Kaikkea kivaa.", "en": "Everything nice" }, "location_extra_info": null, "name": { "fi": "Uusi näyttelyprojekti 10.9.", "en": "New exhibition" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:c3312ca8-3acd-448e-812c-d2ab93b8682f/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66493", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 893978, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-30T10:14:01.876463Z", "last_modified_time": "2025-05-30T10:14:01.876480Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765406.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/893978/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-30T10:14:01.750214Z", "last_modified_time": "2025-09-10T11:14:31.389533Z", "date_published": null, "start_time": "2025-09-10T13:00:00Z", "end_time": "2025-09-10T16: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A5CA5DAAAD3759A0F8FEFABB5306EB40/Welcome_Day_Vuotalo_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A5CA5DAAAD3759A0F8FEFABB5306EB40/Welcome_Day_Vuotalo_", "en": "http://www.vuotalo.fi/en/events/event/A5CA5DAAAD3759A0F8FEFABB5306EB40/Welcome_Day_Vuotalo_" }, "provider": null, "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 venezuelalais-syyrialaisen Ramithawin tunteikkaaseen konserttiin. <br> <br>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/B6ECC15E038BD3D1\">Ilmoittaudu mukaan!</a></u></p><p>Tapahtumassa osallistujat pääsevät nauttimaan myös pullasta ja kahvista kuten suomalaiseen perinteeseen kuuluu.</p><p><b>Klo 18.30: Ramithawi</b></p><p>Ramithawi on venezuelalais-syyrialainen laulaja-lauluntekijä, joka asuu Helsingissä ja Tbilisissä. Hänen musiikkinsa on yhdistelmä latinalaisamerikkalaisia ja arabialaisia elementtejä. Tässä sooloesityksessä hän esittää kappaleita, jotka kertovat rakkaudesta, menneistä traumoista ja sodasta.</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 känslosam konsert med den venezuelansk-syrianska artisten Ramithawi.</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/B6ECC15E038BD3D1\">Anmäl dig!</a></u></p><p>Under evenemanget får deltagarna även njuta av kaffe och bulle enligt finländsk tradition.</p><p><b>Kl. 18.15: Ramithawi</b><br>Ramithawi är en venezuelansk-syriansk sångare och låtskrivare baserad i Helsingfors och Tbilisi. Hans musik är en kombination av latinamerikanska och arabiska inslag. I detta soloframträdande framför han sånger om kärlek, gamla trauman och krig.</p>", "en": "<p>Cultural Centre Vuotalo 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 event culminates in an emotional concert by Venezuelan-Syrian artist Ramithawi.</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/B6ECC15E038BD3D1\">Sign up!</a></u></p><p>Traditional Finnish “pulla” (pastries) and coffee will also be served.</p><p><b>The program for Welcome Day Vuotalo</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 Vuotalo. 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>Instant Story Sharing Cafe (Vuotalo Gallery)</b><br>Share stories and get to know people over a cup of coffee/tea. Mostly for adults.<br>Organizer: Story Sharing Universum</p><p><b>African and Street Dances (Vuotalo 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! (Vuotalo square)</b><br>Organizer: Sirkus Magenta</p><p><b>Decorate your tote bag! (Library)</b><br>Decorate your own Helsinki tote bag!<br>Organizer: Chloe Mahy Hulkko</p><p><b>Make your own jewelry and sketch a graffiti! (Library)</b><br>Organizer: Youth Services of the City of Helsinki</p><p><b>18.30: The host of the evening, Tawab Qaderzada, will share his experiences on living and working in Helsinki. (Vuosali music hall)</b></p><p><b>18.40–19.30: Ramithawi and his band will perform (Vuosali music hall)</b><br> Ramithawi is a Venezuelan/Syrian singer-songwriter whose music is a fusion of Latin and Arabic elements. Tonight he will perform for us together with his band.</p>" }, "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 Vuotalo welcomes the recently arrived international residents to Helsinki!" }, "location_extra_info": null, "name": { "fi": "Welcome Day Vuotalo", "sv": "Welcome Day Vuotalo", "en": "Welcome Day Vuotalo" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66493/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66925", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490711, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T08:14:31.270168Z", "last_modified_time": "2025-09-10T08:14:31.270188Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775286.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490711/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T08:14:31.120544Z", "last_modified_time": "2025-09-10T10:14:38.776081Z", "date_published": null, "start_time": "2025-11-05T16: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2538D158344AC2C17B511C531F46FE65/Nainen_ja_meri_12_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2538D158344AC2C17B511C531F46FE65/Den_svenska_torpeden_12_", "en": "http://www.vuotalo.fi/en/events/event/2538D158344AC2C17B511C531F46FE65/The_Swedish_Torpedo_12_" }, "provider": null, "description": { "fi": "<p>Ruotsalaisohjaaja Frida Kempffin elokuva Nainen ja meri kertoo inspiroivan tositarinan periksi antamattomasta naisesta Sally Bauerista (Josefin Neldén).</p><p>Bauer haastoi aikansa normit tavoitellessaan unelmaansa uida Englannin kanaalin yli sodan kynnyksellä.</p><p>Toinen maailmansota on valtaamassa Eurooppaa, mutta ruotsalaisen äidin mielessä on vain yksi asia – valtameri. Sally on aina unelmoinut Englannin kanaalin ylittämisestä, mutta hänen haavettaan on torpedoitu jatkuvasti. Sallyn vanhemmat väheksyvät tyttärensä uintiunelmaa ja suunnittelematon raskaus ja yksinhuoltajuus 1930-luvun Ruotsissa pakottavat hänet elämään sen mukaisesti, mitä naiselta odotetaan; olemaan äiti. Sally vajoaa syvään synkkyyteen, kunnes saa tilaisuuden tavoitella unelmaansa, josta hän joutuu kuitenkin äitinä maksamaan kovan hinnan. Sally ravistelee yhteiskunnan asettamia odotuksia ja normeja, ja sen lisäksi uhkarohkean unelman yllä leijuu sodan uhka. Sallyn ystävää Sigridiä esittää Seidi Haarla.</p><p>Ohjaajat: Ralf Siig, Frida Kempff, Kelly Väli, Silver Õun, Rebeka Rummel</p><p>Päärooleissa: Josefin Neldén, Gunnel Fred, Seidi Haarla, Lisa Carlehed, Hanna Ullerstam<br>Genre: Drama, historia<br>Ruotsi 2025</p><p>Kieli: ruotsi<br>Tekstitys: suomeksi<br>Kesto: 2 tuntia<br>Ikäraja: K12</p><p>Vapaa pääsy</p>", "sv": "<p>Sommaren 1939. Krigsutbrottet i Europa kryper allt närmare men Sally Bauer, en 30-årig ensamstående mamma, kan inte slita sig från havet och sin längtan efter att få simma över Engelska kanalen.</p><p>För att nå sitt mål måste hon trotsa både sin familj och samhällets förväntningar – ett val som hotar att beröva henne allt.</p><p>Regissörer: Ralf Siig, Frida Kempff, Kelly Väli, Silver Õun, Rebeka Rummel<br>Huvudroller: Josefin Neldén, Gunnel Fred, Seidi Haarla, Lisa Carlehed, Hanna Ullerstam<br>Genre: Drama, historia<br>Sverige 2025</p><p>Språk: svenska<br>Text: finsk<br>Längd 2h<br>F12</p><p>Fri entré</p>", "en": "<p>World War II is around the corner, but the only thing Sally Bauer can think of is the ocean.</p><p>Her dream is to swim across the English Channel. <br> <br>Director: Ralf Siig, Frida Kempff, Kelly Väli, Silver Õun, Rebeka Rummel<br>Leading rooles: Josefin Neldén, Gunnel Fred, Seidi Haarla, Lisa Carlehed, Hanna Ullerstam<br>Genre: Drama, history<br>Sweden 2025</p><p>Language: Swedish<br>Subtitles: Finnish<br>Duration 2h<br>Age limit 12</p><p>Free entry</p>" }, "short_description": { "fi": "Ruotsalaisohjaaja Frida Kempffin elokuva Nainen ja meri kertoo inspiroivan tositarinan periksi antamattomasta naisesta Sally Bauerista (Josefin Neldén).", "sv": "Sommaren 1939. Krigsutbrottet i Europa kryper allt närmare men Sally Bauer, en 30-årig ensamstående mamma, kan inte slita sig från havet och sin längtan efter att få simma över Engelska kanalen.", "en": "World War II is around the corner, but the only thing Sally Bauer can think of is the ocean." }, "location_extra_info": null, "name": { "fi": "Nainen ja meri (12) – Onsdagsbio", "sv": "Den svenska torpeden (12) – Onsdagsbio", "en": "The Swedish Torpedo (12) – Onsdagsbio" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66925/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67000", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3975529", "sv": "https://www.lippu.fi/eventseries/name-3975529", "en": "https://www.lippu.fi/eventseries/name-3975529" }, "price": { "fi": "30,90 / 40,90 €", "sv": "30,90 / 40,90 €", "en": "30,90 / 40,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490715, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T09:14:32.563350Z", "last_modified_time": "2025-09-10T09:14:32.563375Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777433.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490715/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T09:14:32.442412Z", "last_modified_time": "2025-09-10T09:14:32.709545Z", "date_published": null, "start_time": "2026-01-17T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B02101E40B81270BFC9513E05433AF44/AK_Ensemble_Mad_World", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/B02101E40B81270BFC9513E05433AF44/AK_Ensemble_Mad_World", "en": "http://www.savoyteatteri.fi/en/events/event/B02101E40B81270BFC9513E05433AF44/AK_Ensemble_Mad_World" }, "provider": { "fi": "ÅK Ensemble rf", "sv": "ÅK Ensemble rf", "en": "ÅK Ensemble rf" }, "description": { "fi": "<p>ÅK Ensemblen show MAD WORLD on kokemus täynnä äärimmäisyyksiä ja kontrasteja. Matka valon ja pimeyden, rauhallisuuden ja kiihkon, tutun ja absurdin välillä. Aivan kuten hullussa maailmassa, jossa elämme. Lavalla on noin 40 laulajaa Pia Kullan johdolla, kullakin oma mikrofoninsa, ja The 52nd Street Band Tomas \"Skitta\" Lindroosin johdolla. Kokonaisuutta korostavat Karin Eklundin (KDC) koreografia, sekä tietenkin valaistus ja muut visuaaliset tehosteet. Yleisö pääsee nauttimaan niin Musesta ja Coldplaysta, kuin Leonard Cohenista ja TOTOsta tässä ÅK Ensemblen ainutlaatuisessa tapahtumassa.</p><p>Ikäraja: S</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p>", "sv": "<p>ÅK Ensembles show MAD WORLD är en upplevelse fylld av ytterligheter och kontraster. En resa mellan ljus och mörker, lugn och frenesi, det bekanta och det absurda. Precis som den galna värld vi lever i. På scenen står cirka 40 sångare ledda av Pia Kulla, var oc en med sin egen mikrofo, samt The 52nd Street Band med Tomas ”Skitta” Lindroos i spetsen. Helheten förstärks med koreografi av Karin Eklund (KDC), ljussättning och andra visuella effekter. Publiken får ta del av allt från Muse och Coldplay till Leonard Cohen och TOTO i ÅK Ensembles unika tappning.</p><p>Längd ca 2 t 15 min, inkl. paus.</p>", "en": "<p>ÅK Ensemble's show MAD WORLD is an experience filled with extremes and contrasts. It is a journey between light and darkness, calm and frenzy, the familiar and the absurd. Just like the mad world we live in. On stage we have about forty singers lead by Pia Kulla, each with their own microphone. They are joined by The 52nd Street Band with Tomas ”Skitta” Lindroos at the helm. Choreography by Karin Eklund (KDC), lighting and other visual effects augment the show. The audience get to experience everything from Muse and Coldplay to Leonard Cohen and TOTO in ÅK Ensemble's own unique style.</p><p>Duration about 2 h 15 min, including intermission</p>" }, "short_description": null, "location_extra_info": null, "name": { "fi": "ÅK Ensemble: Mad World", "sv": "ÅK Ensemble: Mad World", "en": "ÅK Ensemble: Mad World" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67000/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:c2fbcfb8-feae-4203-b06b-665b3dc0a308", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?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": [], "description": null, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=emma_testailee_99251826174899" }, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-09-09T18:27:43.263192Z", "last_modified_time": "2025-09-09T18:27:43.263207Z", "date_published": "2025-09-09T18:11:40Z", "start_time": "2025-09-09T18:15:00Z", "end_time": "2025-09-09T20:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 4, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 100, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-09-10T08:00:00+03:00", "enrolment_end_time": "2025-09-10T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "annantalo" }, "description": { "fi": "<div><p>tarkka</p></div>" }, "short_description": { "fi": "lyhyt" }, "location_extra_info": null, "name": { "fi": "emma testailee 9.9.25" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:c2fbcfb8-feae-4203-b06b-665b3dc0a308/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66508", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/maja-mannila/malmijazz-maja-mannila-3889754/", "sv": "https://www.lippu.fi/artist/maja-mannila/malmijazz-maja-mannila-3889754/", "en": "https://www.lippu.fi/artist/maja-mannila/malmijazz-maja-mannila-3889754/" }, "price": { "fi": "20 €/ 15 €", "sv": "20 €/ 15 €", "en": "20 €/ 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1154482, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-01T08:13:43.452455Z", "last_modified_time": "2025-07-01T08:13:43.452472Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774754.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154482/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-01T08:13:43.276302Z", "last_modified_time": "2025-09-09T14:13:59.837244Z", "date_published": null, "start_time": "2025-09-11T16: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C4E48D83F85E01705BA0DAD784401B1E/Maja_Mannila", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C4E48D83F85E01705BA0DAD784401B1E/Maja_Mannila", "en": "http://www.malmitalo.fi/en/events/event/C4E48D83F85E01705BA0DAD784401B1E/Maja_Mannila" }, "provider": null, "description": { "fi": "<p>MalmiJazzin 2025 syyskausi aloitetaan maagisen Maja Mannilan konsertilla.</p><p>Maja Mannila on vaikuttava nuori jazz/soul-laulaja, pianisti ja säveltäjä. Yhtyeensä kanssa hän esittää omia, englanninkielisiä kappaleita, jotka ovat tyyliltään sekoitus r'n'b-tä, soulia, jazzia ja gospel-musiikkia. Muusikkoperheen kasvatilla on varma ote musisointiin samalla kun hän painottaa vapauden ja hauskanpidon olevan tärkeää musiikin luomisessa ja soittamisessa.</p><p>Tulevaisuudessa Mannila tähtää levyttämiseen ja kansainväliseen keikkailuun sekä yhtyeen kanssa että sooloartistina. Maja on noteerattu englantilaisen rumpali Richard Spavenin ja laulaja Anthony Strongin toimesta, jotka ovat pyytäneet Majaa esiintymään kanssaan.</p><p>Maja Mannilan yhtye valittiin vuoden 2023 Nordic Jazz Comets -tapahtumaan edustamaan suomalaista uutta jazzia. Kansainvälisesti yhtye on esiintynyt mm. Saksassa, Sloveniassa, Englannissa ja Virossa. Lisäksi Majalla oli huhtikuussa 2023 kaksi konserttia Kaunas Big Bandin solistina Liettuassa omalla materiaalilla. Maja soittaa ja laulaa myös nuoressa nousevassa Peela-yhtyeessä. Vuosina 2021–22 hän esiintyi Iiro Rantalan Flock-kokoonpanossa kiertäen Keski-Eurooppaa.</p><p>Majan kesäkuussa 2022 julkaistu debyyttialbumi \"Up & Down\" sai kiitettävän vastaanoton kotimaisten medioiden keskuudessa. Hänen toinen albumi \"Seasons\" julkaistiin 16. marraskuuta 2023.</p><p>Maja Mannila Triossa Mannilan kanssa musisoivat Severi Sorjonen (rummut) ja Johannes Granroth (basso)</p><p><i>”Taidokkaan trion esityksessä huomion vie Mannila itse, jonka syvä ja hunajainen ääni on yksi parhaista, mitä tästä maasta löytyy. Mannilan äänenkäyttö on luonnollista ja vaivatonta, taituruudessaan suvereenia.”</i><br>– Aleksi Näsänen, Turun Sanomat 4.3.2023</p><p>Kesto: 1 tunti 15 min</p>", "sv": "<p>Höstsäsongen för MalmiJazz 2025 inleds med en konsert av den magiska Maja Mannila.</p><p>Maja Mannila är en imponerande ung jazz/soul-sångare, pianist och kompositör. Tillsammans med sitt band framför hon sina egna engelskspråkiga låtar, som till sin stil är en blandning av r'n'b, soul, jazz och gospel-musik. Maja växte upp i en musikalisk familj och har ett fast grepp om musicerande, samtidigt som hon betonar vikten av frihet och glädje i att skapa och spela musik.</p><p>I framtiden siktar hon på att spela in skivor och turnera internationellt både med bandet och som soloartist. Maja har uppmärksammats av den engelske trumslagaren Richard Spaven och sångaren Anthony Strong, som har bett Maja att uppträda med dem.</p><p>Bandet utsågs att representera ny jazz i Finland vid evenemanget Nordic Jazz Comets 2023. Internationellt har bandet uppträtt bland annat i Tyskland, Slovenien, England och Estland. I april 2023 medverkade Maja också i två konserter som solist med Kaunas Big Band i Litauen, där hon framförde eget material. Maja spelar och sjunger också i det unga och lovande bandet Peela. Under 2021–2022 uppträdde hon i Iiro Rantalas sammansättning Flock och turnerade med dem i Centraleuropa.<br>Majas debutalbum Up & Down, som släpptes i juni 2022, mottogs väl av inhemska medier. Hennes andra album Seasons släpptes den 16 november 2023.</p><p>I Maja Mannila Trio musicerar Severi Sorjonen (trummor) och Johannes Granroth (basgitarr) tillsammans med Mannila.</p><p><i>”I den begåvade trions framträdande är det Mannila själv som står i fokus, vars djupa, honungslena röst är en av de bästa som landet har att erbjuda. Mannilas röst är naturlig och utan ansträngning, och hennes virtuositet är suverän.”</i><br>– Aleksi Näsänen, Turun Sanomat 4.3.2023</p><p>Längd: 1 timme 15 minuter</p>", "en": "<p>The MalmiJazz's autumn 2025 season kicks off with the magical Maja Mannila's concert.</p><p>Maja Mannila is a remarkable young jazz/soul singer, pianist and composer. Together with her band, she performs her own English-language songs that blend elements of R&B, soul, jazz and gospel music. Raised in a family of musicians, she plays with confidence while emphasising that freedom and fun are essential elements in creating and performing music.</p><p>Looking ahead, Mannila aims to record and tour internationally – both with her band and as a solo artist. Maja has caught the attention of British drummer Richard Spaven and singer Anthony Strong, who have invited her to perform with them.</p><p>The band was selected for the 2023 Nordic Jazz Comets event to represent new Finnish jazz. Internationally, the band has performed in Germany, Slovenia, England and Estonia. Maja also gave two concerts in April 2023 in Lithuania as a soloist with the Kaunas Big Band, performing her own material. She also sings and plays in the up-and-coming band Peela. In 2021–2022, she toured Central Europe as part of Iiro Rantala's Flock ensemble.<br>Maja's debut album Up & Down, released in June 2022, was warmly received by Finnish media. Her second album, Seasons, was released on 16 November 2023.</p><p>In the Maja Mannila Trio, she is joined by Severi Sorjonen (drums) and Johannes Granroth (bass).</p><p><i>\"In the trio's skilful performance, all attention is drawn to Mannila herself, whose deep and honeyed voice is one of the finest this country has to offer. Her vocal delivery is natural and effortless – masterful in its smoothness.\"</i><br>– Aleksi Näsänen, Turun Sanomat 4 March 2023</p><p>Duration: 1 hour 15 min</p>" }, "short_description": { "fi": "MalmiJazzin 2025 syyskausi aloitetaan maagisen Maja Mannilan konsertilla.", "sv": "Höstsäsongen för MalmiJazz 2025 inleds med en konsert av den magiska Maja Mannila.", "en": "The MalmiJazz's autumn 2025 season kicks off with the magical Maja Mannila's concert." }, "location_extra_info": null, "name": { "fi": "Maja Mannila – MalmiJazz", "sv": "Maja Mannila – MalmiJazz", "en": "Maja Mannila – MalmiJazz" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66508/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66997", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": { "fi": "24 € / 12 € / 10 €", "sv": "24 € / 12 € / 10 €", "en": "24 € / 12 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490697, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-09T08:13:25.138949Z", "last_modified_time": "2025-09-09T08:13:25.138973Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777219.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490697/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-09T08:13:25.039346Z", "last_modified_time": "2025-09-09T08:13:25.285532Z", "date_published": null, "start_time": "2025-09-20T12: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7AEE4B9976C0DCC3A7FD85ACA87D8ACB/The_Inherent_Error_of_the_Dancing_Sharks", "sv": "http://www.stoa.fi/sv/evenemang/event/7AEE4B9976C0DCC3A7FD85ACA87D8ACB/The_Inherent_Error_of_the_Dancing_Sharks", "en": "http://www.stoa.fi/en/events/event/7AEE4B9976C0DCC3A7FD85ACA87D8ACB/The_Inherent_Error_of_the_Dancing_Sharks" }, "provider": null, "description": { "fi": "<p>Tuttavallisessa kokoontumisessa nainen alkaa epäillä erästä miesvierasta.</p><p>Tämä epäilys käynnistää joukon monimutkaisia keskusteluja ja vastakkainasetteluja. Esitys on persiankielinen, mutta sisältää osuuksia myös suomeksi.</p><p>Näytelmäkirjailija & ohjaaja: Alireza Farshad Pour<br>Laji: Moderni tragedia<br>Teema: Sosiaalinen<br>Esitystyyli: Kertovan tarinankerronnan ja eeppisen teatterin yhdistelmä, Brechtin menetelmästä inspiroituneena, painottaen tietoista toimintaa.<br>Kieli: persia (osuuksia suomeksi)<br>Kesto: 2 h 50 min<br>Ikäsuositus: 15+</p><p>Lippujen hinnat:<br>Peruslippu: 24 €</p><p>Alennetut liput:<br>Instagram-seuraajat: 12 €<br>Työttömät: 12 €<br>Eläkeläiset: 12 €<br>Opiskelijat: 10 €</p><p>HUOM! Lipunmyynti vain ovelta ennen esitystä.</p>", "en": "<p>At a friendly gathering, a woman grows suspicious of a man who is a guest in the group.</p><p>This suspicion becomes the starting point for a series of complex conversations and confrontations.</p><p>Playwright & Director: Alireza Farshad Pour<br> Genre: Modern Tragedy<br> Theme: Social<br> Style of Performance: A combination of narrative storytelling and epic theater, inspired by Brecht’s method, with a focus on conscious actions.</p><p>Language: Persian (with sections in Finnish)<br>Runtime: 2 hours 50 minutes<br>Age Recommendation: 15+</p><p>Ticket prices:<br>Standard ticket: €24</p><p>Discounted tickets:<br>Instagram followers: €12<br>Unemployed: €12<br>Pensioners: €12<br>Students: €10</p><p>Ticket sales: at the door before the performance</p>" }, "short_description": { "fi": "Tuttavallisessa kokoontumisessa nainen alkaa epäillä erästä miesvierasta.", "en": "At a friendly gathering, a woman grows suspicious of a man who is a guest in the group." }, "location_extra_info": null, "name": { "fi": "The Inherent Error of the Dancing Sharks", "sv": "The Inherent Error of the Dancing Sharks", "en": "The Inherent Error of the Dancing Sharks" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66997/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66996", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": { "fi": "24 € / 12 € / 10 €", "sv": "24 € / 12 € / 10 €", "en": "24 € / 12 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490696, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-09T08:13:24.232466Z", "last_modified_time": "2025-09-09T08:13:24.232482Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777218.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490696/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-09T08:13:24.102699Z", "last_modified_time": "2025-09-09T08:13:24.390542Z", "date_published": null, "start_time": "2025-09-19T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/DCDBC0D30E7B0FC81C05B19B9FAADC11/The_Inherent_Error_of_the_Dancing_Sharks", "sv": "http://www.stoa.fi/sv/evenemang/event/DCDBC0D30E7B0FC81C05B19B9FAADC11/The_Inherent_Error_of_the_Dancing_Sharks", "en": "http://www.stoa.fi/en/events/event/DCDBC0D30E7B0FC81C05B19B9FAADC11/The_Inherent_Error_of_the_Dancing_Sharks" }, "provider": null, "description": { "fi": "<p>Tuttavallisessa kokoontumisessa nainen alkaa epäillä erästä miesvierasta.</p><p>Tämä epäilys käynnistää joukon monimutkaisia keskusteluja ja vastakkainasetteluja. Esitys on persiankielinen, mutta sisältää osuuksia myös suomeksi.</p><p>Näytelmäkirjailija & ohjaaja: Alireza Farshad Pour<br>Laji: Moderni tragedia<br>Teema: Sosiaalinen<br>Esitystyyli: Kertovan tarinankerronnan ja eeppisen teatterin yhdistelmä, Brechtin menetelmästä inspiroituneena, painottaen tietoista toimintaa.<br>Kieli: persia (osuuksia suomeksi)<br>Kesto: 2 h 50 min<br>Ikäsuositus: 15+</p><p>Lippujen hinnat:<br>Peruslippu: 24 €</p><p>Alennetut liput:<br>Instagram-seuraajat: 12 €<br>Työttömät: 12 €<br>Eläkeläiset: 12 €<br>Opiskelijat: 10 €</p><p>HUOM! Lipunmyynti vain ovelta ennen esitystä.</p>", "en": "<p>At a friendly gathering, a woman grows suspicious of a man who is a guest in the group.</p><p>This suspicion becomes the starting point for a series of complex conversations and confrontations.</p><p>Playwright & Director: Alireza Farshad Pour<br> Genre: Modern Tragedy<br> Theme: Social<br> Style of Performance: A combination of narrative storytelling and epic theater, inspired by Brecht’s method, with a focus on conscious actions.</p><p>Language: Persian (with sections in Finnish)<br>Runtime: 2 hours 50 minutes<br>Age Recommendation: 15+</p><p>Ticket prices:<br>Standard ticket: €24</p><p>Discounted tickets:<br>Instagram followers: €12<br>Unemployed: €12<br>Pensioners: €12<br>Students: €10</p><p>Ticket sales: at the door before the performance</p>" }, "short_description": { "fi": "Tuttavallisessa kokoontumisessa nainen alkaa epäillä erästä miesvierasta.", "en": "At a friendly gathering, a woman grows suspicious of a man who is a guest in the group." }, "location_extra_info": null, "name": { "fi": "The Inherent Error of the Dancing Sharks", "sv": "The Inherent Error of the Dancing Sharks", "en": "The Inherent Error of the Dancing Sharks" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66996/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66924", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490653, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T11:14:19.938482Z", "last_modified_time": "2025-09-08T11:14:19.938499Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775283.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490653/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-08T11:14:19.784356Z", "last_modified_time": "2025-09-08T11:14:20.126471Z", "date_published": null, "start_time": "2025-10-22T15: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/496F6DEA8CE0EA19AD4471AB5663CB20/XXL_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/496F6DEA8CE0EA19AD4471AB5663CB20/XXL_", "en": "http://www.vuotalo.fi/en/events/event/496F6DEA8CE0EA19AD4471AB5663CB20/XXL_" }, "provider": null, "description": { "fi": "<p>Yhteinen matka Helsinkiin koe-esiintymiseen antaa erossa olleille ruotsalaissisaruksille mahdollisuuden tutustua uudelleen toisiinsa.</p><p>Kun Magda (Astrid Drettner) ja Enzio (Georgios Giokotos) kulkevat kaupungin kaduilla, ajan merkitys häviää ja vuodenajat vaihtuvat kuin huomaamatta. Pietarsaarelaistaustaisen Sawandi Groskindin ja ruotsalaisen Kim Ekbergin yhteisohjauksessa helsinkiläisistä maisemista muodostuu vaihtuvien kohtaamisten ja keskustelujen sinfonia.</p><p>Suomi/Ruotsi 2024</p><p>Ohjaajat: Kim Ekberg ja Sawandi Groskind</p><p>Päärooleissa: Astrid Drettner, Georgios Giokotos, Marianne Carlsson, Enkete Mungbaba, Ken Mai, John Holm, Farah Muse, Teri-Anne Brink, Katja Kiuru</p><p>Kieli: ruotsi<br>Tekstitys: englanti<br>Kesto: 77 min.<br>Sallittu kaikenikäisille.<br>Vapaa pääsy</p><p>HUOM! Elokuvan jälkeen Q&A elokuvan yhden ohjaajan, Sawandi Groskindin kanssa.</p>", "sv": "<p>XXL är en humoristisk och psykologisk roadmovie om syskonparet Enzo och Magdas försök att lappa ihop sin trasiga relation genom en gemensam en resa till Helsingfors.</p><p>Under en lågintensiv helg möter syskonparet en rad udda karaktärer och hamnar i situationer och samtal om livet, konsten och existensen. Minnen blandas med samtid och drömmar och verklighet smälter samman för de två resenärerna på drift i ett stämningsfullt Helsingfors.</p><p>Finland/Sverige 2024</p><p>Regissörer: Kim Ekberg och Sawandi Groskind</p><p>Medverkande: Astrid Drettner, Georgios Giokotos, Marianne Carlsson, Enkete Mungbaba, Ken Mai, John Holm, Farah Muse, Teri-Anne Brink, och Katja Kiuru</p><p>Språk: svenska<br>Text: engelska<br>Längd: 77 min.<br>T<br>Fri entré</p><p>OBS! Efter filmen Q&A med filmens ena regissör, Sawandi Groskind under ledning av Mikaela Westerlund från Finlandssvenskt filmcentrum.</p>", "en": "<p>Siblings Enzo and Magda have drifted apart, and in an attempt to reconnect, Magda invites her brother on a trip to Helsinki.</p><p>Over a weekend, the sibling duo encounters a series of eccentric characters and confronts situations that necessitate conversations about life, art and existence. Memories blend with the present, and dreams and reality merge for the two travelers adrift in the atmospheric city of Helsinki.</p><p>Finland/Sweden 2024</p><p>Directorsr: Kim Ekberg and Sawandi Groskind</p><p>Leading roles: Astrid Drettner, Georgios Giokotos, Marianne Carlsson, Enkete Mungbaba, Ken Mai, John Holm, Farah Muse, Teri-Anne Brink, Katja Kiuru</p><p>Language: Swedish<br>Subtitles: English<br>Duration: 77 min.<br>Age limit: allowed<br>Free entry</p><p>Please note! After the film Q&A with one of the filmdirectors, Sawandi Groskind</p>" }, "short_description": { "fi": "Yhteinen matka Helsinkiin koe-esiintymiseen antaa erossa olleille ruotsalaissisaruksille mahdollisuuden tutustua uudelleen toisiinsa.", "sv": "XXL är en humoristisk och psykologisk roadmovie om syskonparet Enzo och Magdas försök att lappa ihop sin trasiga relation genom en gemensam en resa till Helsingfors.", "en": "Siblings Enzo and Magda have drifted apart, and in an attempt to reconnect, Magda invites her brother on a trip to Helsinki." }, "location_extra_info": null, "name": { "fi": "XXL – Onsdagsbio", "sv": "XXL – Onsdagsbio", "en": "XXL – Onsdagsbio" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66924/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66095", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kanae-nozawa-erhu-concert-malmitalo-20206078/%20MS%20Vuokra", "sv": "https://www.lippu.fi/event/kanae-nozawa-erhu-concert-malmitalo-20206078/%20MS%20Vuokra", "en": "https://www.lippu.fi/event/kanae-nozawa-erhu-concert-malmitalo-20206078/%20MS%20Vuokra" }, "price": { "fi": "28,80 € / 22,80 €", "sv": "28,80 € / 22,80 €", "en": "28,80 € / 22,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490649, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T09:13:58.264983Z", "last_modified_time": "2025-09-08T09:13:58.265002Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771480.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490649/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-08T09:13:58.098378Z", "last_modified_time": "2025-09-08T09:13:58.468646Z", "date_published": null, "start_time": "2025-12-03T17: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EB48F3D8BFC07719A58EF3ABEF43387B/Kanae_Nozawa_Erhu_Concert", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EB48F3D8BFC07719A58EF3ABEF43387B/Kanae_Nozawa_Erhu_Concert", "en": "http://www.malmitalo.fi/en/events/event/EB48F3D8BFC07719A58EF3ABEF43387B/Kanae_Nozawa_Erhu_Concert" }, "provider": null, "description": { "fi": "<p>Menestyksekkään vuoden 2024 Suomen-kiertueensa jälkeen Kanae Nozawa palaa Suomeen lumoavan erhukonsertin myötä!</p><p>Yleisön \"kauneimmaksi konsertiksi, jonka olen koskaan kuullut\" kuvailtu esitys lumoaa kuulijansa Kanae Nozawan ilmeikkäällä erhunsoitolla ja pehmeällä laululla. Erhu, ”kiinalainen viulu”, on monelle tuttu elokuvien ja videopelien musiikista. Sen monipuolinen ja tunteikas sointi pääsee täyteen loistoonsa Kanaen käsissä.<br> <br>Konsertissa esiintyvät myös arvostettu säveltäjä Tamiya Terashima koskettimissa sekä Maki Furugaki, jonka vaikuttava yhtäaikainen melodica- ja pianonsoitto tuovat konserttiin ainutlaatuisen sävyn.<br> <br>Illan aikana kuullaan Studio Ghiblin klassikoita, esimerkiksi Liikkuvasta linnasta ja Naapurini Totorosta, sekä Maameren tarinoista, jonka musiikin on säveltänyt Tamiya Terashima. Lisäksi luvassa on japanilaista animemusiikkia, perinteisiä sävelmiä sekä Kanae Nozawan omia sävellyksiä.<br> <br>Tutustu Kanaen esityksiin YouTubessa: www.youtube.com/c/KanaeNozawa<br> <br>Kokoonpano<br>Kanae Nozawa, Erhu & Vocals <br>Tamiya Terashima, Keyboard <br>Maki Furugaki, Piano Melodica</p><p>Kesto: 1 h 30 min.</p>", "sv": "<p>Efter sin framgångsrika turné i Finland 2024 återvänder Kanae Nozawa med en förtrollande erhukonsert!</p><p>Publikerna har hyllat Kanaes konsert som ”den vackraste konsert de någonsin hört” och hon fängslar oss med sin uttrycksfulla erhu och mjuka sång. Det uttrycksfulla ljudet av erhu, den ”kinesiska violinen”, är bekant för många från film- och videospelmusik, och dess mångsidiga toner kommer verkligen till sin rätta i Kanae Nozawas framförande. Kanae får sällskap av den berömda kompositören Tamiya Terashima på keyboard och Maki Furugaki med hennes fantastiska samtidiga melodica- och pianoframträdande, och konserten utlovar en magisk kväll.</p><p>Njut av Studio Ghibli-klassiker som Det levande slottet och Min granne Totoro, liksom Legender från Övärlden, komponerad av Tamiya Terashima, tillsammans med japanska animesånger, traditionella melodier och Kanaes originalkompositioner. Se hennes framträdanden på YouTube: <a>www.youtube.com/c/KanaeNozawa</a></p><p>Kanae Nozawa, Erhu & Vocals <br>Tamiya Terashima, Keyboard <br>Maki Furugaki, Piano Melodica</p><p>Längd: 1 h 30 min</p>", "en": "<p>Following her successful 2024 Finland tour, Kanae Nozawa returns with an enchanting erhu concert!</p><p>Praised as \"the most beautiful concert ever heard\" by audiences, Kanae will captivate you with her expressive erhu and gentle vocals. The expressive sound of the erhu, the \"Chinese violin,\" is familiar to many from movie and video game music, and its versatile tone truly shines in Kanae Nozawa’s performance. Joined by renowned composer Tamiya Terashima on keyboard and Maki Furugaki with her stunning simultaneous melodica and piano performance, this concert promises a magical night.</p><p>Enjoy Studio Ghibli classics like Howl's Moving Castle and My Neighbor Totoro, as well as Tales from Earthsea, composed by Tamiya Terashima, alongside Japanese anime songs, traditional melodies, and Kanae’s original compositions. Check out her performances on YouTube: <a>www.youtube.com/c/KanaeNozawa</a></p><p>Kanae Nozawa, Erhu & Vocals <br>Tamiya Terashima, Keyboard <br>Maki Furugaki, Piano Melodica</p><p>Duration: 1 h 30 min</p>" }, "short_description": { "fi": "Menestyksekkään vuoden 2024 Suomen-kiertueensa jälkeen Kanae Nozawa palaa Suomeen lumoavan erhukonsertin myötä!", "sv": "Efter sin framgångsrika turné i Finland 2024 återvänder Kanae Nozawa med en förtrollande erhukonsert!", "en": "Following her successful 2024 Finland tour, Kanae Nozawa returns with an enchanting erhu concert!" }, "location_extra_info": null, "name": { "fi": "Kanae Nozawa Erhu Concert", "sv": "Kanae Nozawa Erhu Concert", "en": "Kanae Nozawa Erhu Concert" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66095/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }