Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=305
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=306", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=304" }, "data": [ { "id": "kulke:65249", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153390, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-12T09:14:25.246665Z", "last_modified_time": "2024-12-12T09:14:25.246685Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760202.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153390/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T09:14:25.218892Z", "last_modified_time": "2025-01-15T15:15:05.651877Z", "date_published": null, "start_time": "2025-02-06T16: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, "provider_contact_info": null, "short_description": { "fi": "Historian ensimmäinen koltansaamenkielinen elokuva kertoo pakkosuomalaistamisen paineessa taustansa hylänneestä naisesta.", "sv": "Den första filmen någonsin på skoltsamiska berättar om en kvinna som övergivit sin bakgrund under trycket av tvångsförfinskningen.", "en": "The first-ever film in the Skolt Sámi language tells the story of a woman who abandoned her heritage under the pressure of forced Finnishization." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2C5E2AF611DDE4E3969FF89FA50654AE/Je_vida_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2C5E2AF611DDE4E3969FF89FA50654AE/Je_vida_12_", "en": "http://www.malmitalo.fi/en/events/event/2C5E2AF611DDE4E3969FF89FA50654AE/Je_vida_12_" }, "location_extra_info": null, "name": { "fi": "Je’vida (12) – Saamelaisten kansallispäivän ilmaisnäytös", "sv": "Je’vida (12) – Gratisvisning på samernas nationaldag", "en": "Je’vida (12) – A free show for the Sámi National Day" }, "description": { "fi": "<p>Historian ensimmäinen koltansaamenkielinen elokuva kertoo pakkosuomalaistamisen paineessa taustansa hylänneestä naisesta.</p><p>Iäkäs kolttasaamelainen nainen Iida joutuu vanhan kotitilan myymisen ja kulttuuriperimän salaamisen suhteen kahden vaiheille, sillä pois tukahdutettu luonnonläheinen maailma alkaa hiipiä takaisin.</p><p>Kesto: 99 min<br>Ikäraja 12<br>Tekstitetty suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Den första filmen någonsin på skoltsamiska berättar om en kvinna som övergivit sin bakgrund under trycket av tvångsförfinskningen.</p><p>Den äldre skoltsamiska kvinnan Iida hamnar i ett dilemma kring att sälja sin gamla hemgård och dölja sitt kulturarv, eftersom den undanträngda naturnära världen börjar smyga sig tillbaka.</p><p>Längd: 99 min.<br>Åldersgräns 12 år<br>Textning på finska</p><p>Fritt inträde!</p>", "en": "<p>The first-ever film in the Skolt Sámi language tells the story of a woman who abandoned her heritage under the pressure of forced Finnishization.</p><p>Iida, an older Skolt Sámi woman, finds herself torn between selling her old homestead and hiding her cultural heritage, as the world in tune with nature that she has suppressed begins to creep back in.</p><p>Duration: 99 min<br>Age limit: 12<br>Finnish subtitles</p><p>Admission is free!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65249/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64661", "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": [], "info_url": { "fi": "https://www.lippu.fi/event/we-still-got-the-blues-the-spanish-castle-esp-malmitalo-19255105/", "sv": "https://www.lippu.fi/event/we-still-got-the-blues-the-spanish-castle-esp-malmitalo-19255105/", "en": "https://www.lippu.fi/event/we-still-got-the-blues-the-spanish-castle-esp-malmitalo-19255105/" }, "price": { "fi": "24,80 € / 19,80 €", "sv": "24,80 € / 19,80 €", "en": "24,80 € / 19,80 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153439, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-13T13:14:09.885088Z", "last_modified_time": "2024-12-13T13:14:09.885104Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758910.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153439/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T13:14:09.862683Z", "last_modified_time": "2025-01-15T15:15:05.133352Z", "date_published": null, "start_time": "2025-02-05T17: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, "provider_contact_info": null, "short_description": { "fi": "Esimerkiksi sielukkaista Gary Moore -tulkinnostaan tunnettu espanjalainen The Spanish Castle käynnistää Suomen-kiertueensa Malmitalolta!", "sv": "Spanska The Spanish Castle som bland annat är känt för sina själfulla Gary Moore-tolkningar inleder sin Finlandsturné i Malms kulturhus!", "en": "The Spanish Castle, the Spanish band known for their soulful interpretations of Gary Moore's music, will kick off their Finnish tour at Malmitalo!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0AEDEA718A4A81D08EBEDA63F2BD1AB3/The_Spanish_Castle", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0AEDEA718A4A81D08EBEDA63F2BD1AB3/The_Spanish_Castle", "en": "http://www.malmitalo.fi/en/events/event/0AEDEA718A4A81D08EBEDA63F2BD1AB3/The_Spanish_Castle" }, "location_extra_info": null, "name": { "fi": "The Spanish Castle – We Still Got The Blues", "sv": "The Spanish Castle – We Still Got The Blues", "en": "The Spanish Castle – We Still Got The Blues" }, "description": { "fi": "<p>Esimerkiksi sielukkaista Gary Moore -tulkinnostaan tunnettu espanjalainen The Spanish Castle käynnistää Suomen-kiertueensa Malmitalolta!</p><p>We Still Got The Blues -kiertueen materiaali koostuu Gary Mooren lisäksi myös muiden etenkin Britanniasta ponnistaneiden blues-kitaristien materiaalista. Mukana on myös muutamia bändin omia biisejä. Kulttihitiksi kutsuttu ja kovaa suitsutusta saanut ”Marigold Road” kuullaan joka keikalla.</p><p>Tämä kaikki soitetaan espanjalaisittain groovaavan rytmimankelin läpi tunnetta, fiilistä ja omaa tulkintaa säästelemättä!</p><p>Málagassa vuonna 2017 perustetun The Spanish Castlen muodostavat Englannissa kitaraoppinsa ja sikäläisissä jazz- ja blues-piireissä sekä mm. The Whon Quadrophenian teatteriversiossa aikoinaan vaikuttanut kitaristi-laulaja Antti Kajander sekä Andalucian käytetyimpiin muusikoihin lukeutuvat basisti Cañon Bass sekä rumpali Marcos Hostos. Suomen keikoilla bändiä vahvistaa monista yhteyksistä tuttu kosketinvirtuoosi Ilkka Joronen.</p><p>Tammikuussa bändi julkaisee cd- ja vinyylipainoksina ensimmäisen live-levynsä, Södertäljessä ja Göteborgissa nauhoitetun, Live En Suecia.</p><p>Helmikuun pimeyteen parasta lääkettä onkin aurinkoisesti groovava bluesin ja boogien ilosanomaa juhlistava The Spanish Castle.</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>", "sv": "<p>Spanska The Spanish Castle som bland annat är känt för sina själfulla Gary Moore-tolkningar inleder sin Finlandsturné i Malms kulturhus!</p><p>Utöver Gary Moore består materialet för We Still Got The Blues även av material av andra bluesgitarrister, särskilt med bakgrund i Storbritannien. Även några av bandets egna låtar ryms med. Lovprisade “Marigold Road” som även kallats för en kulthit får vi höra på varje spelning.</p><p>Allt detta spelas genom en spanskinspirerad groovemangel utan att spara på känsla, stämning eller egen tolkning!</p><p>The Spanish Castle som grundades i Málaga år 2017 består av gitarristen och sångaren Antti Kajander, som inhämtat sina gitarrkunskaper i England och jazz- och blueskretsarna där, och bland annat verkat i The Whos teaterversion av Quadrophenia samt basisten Cañon Bass och trummisen Marcos Hostos som räknas bland de mest eftersökta musikerna i Andalusien. På Finlandsspelningarna förstärks bandet med tangentvirtuosen Ilkka Joronen som är känd från många sammanhang.</p><p>I januari släpper bandet sitt första livealbum som cd- och vinylupplaga, Live En Suecia, som har spelats in i Södertälje och Göteborg.</p><p>Den bästa medicinen mot februarimörkret är The Spanish Castles soligt grooviga blues och firande av boogiens glädjebudskap.</p><p>Längd: 2 h, inklusive en paus på 20 minuter</p>", "en": "<p>The Spanish Castle, the Spanish band known for their soulful interpretations of Gary Moore's music, will kick off their Finnish tour at Malmitalo!</p><p>The material of the We Still Got The Blues tour consists not only of Gary Moore’s music but also of other blues guitarists, especially from the United Kingdom. Also included are some of the band’s own songs. “Marigold Road”, a widely praised piece that is often hailed as a cult hit, is played at every gig.</p><p>Everything is played through a groovy Spanish rhythm machine with no shortage of emotion, feeling and personal interpretation!</p><p>Formed in Málaga in 2017, The Spanish Castle is made up of guitarist-singer Antti Kajander – who learned to play guitar in England, influenced jazz and blues circles there, and was involved in the theatre version of The Who’s Quadrophenia – and bassist Cañon Bass and drummer Marcos Hostos, two of Andalucia’s most sought-after musicians. In Finland, the band will be backed up by keyboard virtuoso Ilkka Joronen, who is well-known for his many collaborations.</p><p>In January, the band will release their first live album, Live En Suecia, recorded in Södertälje and Gothenburg. The album will be available on CD and vinyl.</p><p>The best cure for February’s darkness is The Spanish Castle, celebrating the gospel of blues and boogie with sunny grooves.</p><p>Duration: 2 h, incl. 20 min intermission</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64661/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64870", "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:348/?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": [], "info_url": { "fi": "https://www.lippu.fi/artist/jarkko-toivonen/", "sv": "https://www.lippu.fi/artist/jarkko-toivonen/", "en": "https://www.lippu.fi/artist/jarkko-toivonen/" }, "price": { "fi": "22,80 €", "sv": "22,80 €", "en": "22,80 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153389, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-12T09:14:24.819400Z", "last_modified_time": "2024-12-12T09:14:24.819417Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760592.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153389/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T09:14:24.792985Z", "last_modified_time": "2025-01-15T15:15:04.517023Z", "date_published": null, "start_time": "2025-02-04T17: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, "provider_contact_info": null, "short_description": { "fi": "Brasilialaiseen musiikkiin erikoistuneen Bossa Nova -kitaristi Jarkko Toivosen 13. levyn julkistamiskonsertti.", "sv": "Skivsläppskonsert för Bossa Nova-gitarristen och specialisten på brasiliansk musik Jarkko Toivonens 13. skiva.", "en": "Album release concert for the 13th album by Jarkko Toivonen, a Bossa Nova guitarist specialising in Brazilian music" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A974384BF4147423F44568DF6B308081/Jarkko_Toivonen_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A974384BF4147423F44568DF6B308081/Jarkko_Toivonen_", "en": "http://www.malmitalo.fi/en/events/event/A974384BF4147423F44568DF6B308081/Jarkko_Toivonen_" }, "location_extra_info": null, "name": { "fi": "Jarkko Toivonen – levynjulkaisukonsertti", "sv": "Jarkko Toivonen – skivsläppskonsert", "en": "Jarkko Toivonen – album release concert" }, "description": { "fi": "<p>Brasilialaiseen musiikkiin erikoistuneen Bossa Nova -kitaristi Jarkko Toivosen 13. levyn julkistamiskonsertti.</p><p>Useiden legendaaristen brasilialaisartistien kanssa esiintynyt ja Brasiliassa konsertoinut kitaristi Jarkko Toivonen tarjoaa uusimmalla levyllään niin brasilialaisia kuin kansainvälisiä klassikoita 1920–1970-luvuilta tyylipuhtaaseen bossa nova -tyyliin.</p><p><b>Kokoonpano</b><br>Jarkko Toivonen - kitara<br>Sari Ann - laulu<br>Tuure Koski - basso<br>Mongo Aaltonen - perkussiot</p><p>Kesto: 2 tuntia, sis. 20 min. väliajan</p>", "sv": "<p>Skivsläppskonsert för Bossa Nova-gitarristen och specialisten på brasiliansk musik Jarkko Toivonens 13. skiva.</p><p>Jarkko Toivonen har framträtt med flera legendariska brasilianska artister och gett konserter i Brasilien. På sitt nya album bjuder Toivonen på både brasilianska och internationella klassiker från 1920–1970-talen i stilren bossa nova-stil.</p><p><b>Ensemble</b><br>Jarkko Toivonen - gitarr<br>Sari Ann - sång<br>Tuure Koski - bas<br>Mongo Aaltonen - slagverk</p><p>Längd: 2 timmar, inklusive en paus på 20 minuter</p>", "en": "<p>Album release concert for the 13th album by Jarkko Toivonen, a Bossa Nova guitarist specialising in Brazilian music</p><p>Guitarist Jarkko Toivonen has performed with many legendary Brazilian artists and toured in Brazil. On his latest album, he offers both Brazilian and international classics from the 1920s and 1970s, delivered in a pure Bossa Nova style.</p><p><b>Ensemble:</b><br>Jarkko Toivonen – guitar<br>Sari Ann – vocals<br>Tuure Koski – bass<br>Mongo Aaltonen – percussion</p><p>Duration: 2 hours, incl. 20 min intermission</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64870/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65248", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153388, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-12T09:14:24.626186Z", "last_modified_time": "2024-12-12T09:14:24.626210Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760558.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153388/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T09:14:24.581363Z", "last_modified_time": "2025-01-15T15:15:04.386358Z", "date_published": null, "start_time": "2025-02-04", "end_time": "2025-02-06", "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, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!", "sv": "Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!", "en": "We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1AF0823D46B30CDDE15C7A536121188F/Suojelevat_symbolit_-taidepaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1AF0823D46B30CDDE15C7A536121188F/Skyddande_symboler_konstworkshop", "en": "http://www.malmitalo.fi/en/events/event/1AF0823D46B30CDDE15C7A536121188F/Protective_Symbols_art_workshop" }, "location_extra_info": null, "name": { "fi": "Suojelevat symbolit -taidepaja", "sv": "Skyddande symboler – konstworkshop", "en": "Protective Symbols art workshop" }, "description": { "fi": "<p>Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!</p><p>Teoskokonaisuus on taidepajoissa tehtyjen osasten summa, joten jokaisen osallistujan panos ja kädenjälki on merkittävä sen syntymisen kannalta.</p><p>Filippiiniläisen taiteilijan Geraldine Javierin ideoima Earth, Water, Air, Fire, Void (Maa, Ilma, Vesi, Tuli, Tyhjiö) käsittelee ihmisen suhdetta luontoon ja sitä, miten voimme elää vastavuoroisessa suhteessa ympäristömme kanssa. Teoksen yhtenä osana ovat suojelevat talismaanit, joita teemme taidepajoissa. Ne ovat eri symboleihin taivutettua rautalankaa, joka on kääritty kierrätyskankaisiin.</p><p>Talismaanien symbolit ammentavat luonnosta ja ne ovat sekä suomalaisesta että filippiiniläisestä kulttuurista poimittuja. Kesäkuussa ne ripustetaan kuuteen vaahteraan Esplanadilla, missä ne muodostavat yhden suuren kokonaisuuden. Talismaanien tehtävänä on suojella puita, joihin ne on ripustettu.</p><p>Taidepajat ovat ilmaisia ja kaikki materiaalit löytyvät paikan päältä. Tule Malmitalolle ja anna kättenjälkesi loistaa Helsinki Biennaalin tulevassa taideteoksessa!</p><p><b>Taidepaja on avoinna Malmitalossa tiistaista torstaihin 4.-6.2.2025 klo 15.30–16.30. Paikkana kokoushuone 3.</b></p><p>Helsinki Biennaalia vietetään 8.6.-21.9.2025 ja tapahtumapaikkoina ovat HAM Helsingin taidemuseo, Vallisaari sekä Esplanadi.</p>", "sv": "<p>Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!</p><p>Verket som helhet är summan av de delar som görs under konstworkshopparna, och därför är varje deltagares insats och avtryck betydelsefullt för verkets uppkomst.</p><p>Earth, Water, Air, Fire, Void (Jord, Lyft, Vatten, Eld, Tomrum) grundar sig på en idé av den filippinska konstnären Geraldine Javier, och behandlar människans förhållande till naturen och hur vi kan leva interaktivt i förhållande till vår miljö. En del av verket är de skyddande talismaner, som vi gör i workshopparna. De består av ståltråd som har böjts till olika symboler och svepts in i återvinningstyger.</p><p>Talismanernas symboler inhämtar inspiration ur naturen, och har plockats från både den finländska och den filippinska kulturen. I juni hängs de upp i sex lönnar på Esplanaden, där de bildar en enda stor helhet. Talismanernas uppgift är att skydda de träd i vilka de hängts upp.</p><p>Konstworkshopparna är avgiftsfria och allt material finns på plats. Kom till Malms kulturhus och låt ditt handarbete stråla i det kommande konstverket för Helsingforsbiennalen! Konstworkshoppen är öppen 4.-6.2.2025 kl 15.30–16.30.</p><p>Fritt inträde.</p><p>Helsingforsbiennalen firas 8.6.–21.9.2025 och evenemangsplatserna är HAM Helsingfors konstmuseum, Skanslandet och Esplanaden.</p>", "en": "<p>We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!</p><p>The collection of artwork will be the sum of the pieces made in the workshops, so each participant’s contribution and handprint will be important to creating it.</p><p>Earth, Water, Air, Fire, Void, the work conceived by Filipino artist Geraldine Javier, explores the human relationship with nature and how we can live in a reciprocal relationship with our environment. One part of the work will be the protective talismans that we will make in art workshops. They are made with wire bent into different symbols and wrapped in recycled fabric.</p><p>The symbols of the talismans are drawn from nature and inspired by both Finnish and Filipino culture. In June, they will be hung on six maples on the Esplanade, where they will form one large collection. The talismans are meant to protect the trees on which they are hung.</p><p>The workshops are free of charge, and all materials will be available on-site. Come to Malmitalo, and let your handiwork shine in the upcoming Helsinki Biennial artwork! The art workshop is open from Tuesday to Thursday, 4–6 February, from 15:30 to 16:30.</p><p>Free admission.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65248/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64816", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-malmitalo-19301208/", "sv": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-malmitalo-19301208/", "en": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-malmitalo-19301208/" }, "price": { "fi": "16,80 / 14,40 €", "sv": "16,80 / 14,40 €", "en": "16,80 / 14,40 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152903, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-29T12:16:14.686491Z", "last_modified_time": "2024-10-29T12:16:14.686520Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760140.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152903/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-10-29T12:16:14.643359Z", "last_modified_time": "2025-01-15T15:15:03.942720Z", "date_published": null, "start_time": "2025-02-01T15: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, "provider_contact_info": null, "short_description": { "fi": "Lasten ja aikuisten legendaarinen kestosuosikki ja TV:stä tuttu maailmanmestari-taikuri Simo Aalto tarjoilee iloa ja riemua koko perheelle yhdessä avustaja-vaimonsa Kirstin kanssa.", "sv": "Barnens och de vuxnas favorit, TV-personligheten och världsmästartrollkonstnären Simo Aalto bjuder på glädje för hela familjen tillsammans med sin assistent och hustru Kirsti.", "en": "A perennial favourite of children and adults alike, World Champion Magician Simo Aalto , well-known from TV programmes, brings fun for the whole family together with his wife Kirsti as his assistant." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9DDF3EAB5438B27AAA6307A36F915FD5/Jokeri_Pokeri_Box_Ihan_Simona_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9DDF3EAB5438B27AAA6307A36F915FD5/Jokeri_Pokeri_Box_Ihan_Simona_", "en": "http://www.malmitalo.fi/en/events/event/9DDF3EAB5438B27AAA6307A36F915FD5/Jokeri_Pokeri_Box_Ihan_Simona_" }, "location_extra_info": null, "name": { "fi": "Jokeri Pokeri Box: Ihan Simona!", "sv": "Jokeri Pokeri Box: Ihan Simona!", "en": "Jokeri Pokeri Box: Ihan Simona!" }, "description": { "fi": "<p>Lasten ja aikuisten legendaarinen kestosuosikki ja TV:stä tuttu maailmanmestari-taikuri Simo Aalto tarjoilee iloa ja riemua koko perheelle yhdessä avustaja-vaimonsa Kirstin kanssa.</p><p>Uudessa Iloisessa showssa nähdään maailman parhaita taikatemppuja ryyditettynä hyväntuulisella lavashowlla. Simo johdolla kaikenikäiset katsojat pääsevät tunnin matkalle taikamaailmaan, jossa mikään ei ole mahdotonta.</p><p>Mukana seikkailevat Simon ja Kirstin eläinkaverit Erkki-kani ja Paloma-kyyhky sekä itsepäinen papukaija Eino. Ja toki lapset pääsevät auttamaan taikuria lavalle asti!</p><p>Simon mukaansatempaava esiintyminen takaa, että taikapölyn vaikutus säilyy pitkään, mieli virkistyy ja arjen pyöritys unohtuu. Sanalla sanoen luvassa on laadukasta estradiviihdettä!</p><p>Simon omin sanoin: ”Pitkän, yli 45-vuotisen urani aikana on jo yksi sukupolvi kasvanut aikuisiksi ja he tulevat nyt omien lastensa kanssa katsomaan lapsuutensa idolia, siksi haluan tarjota iloa ja ihmetystä kaikenikäisille.”</p><p>Kesto 1 tunti<br>Ikäsuositus 2-100 v</p>", "sv": "<p>Barnens och de vuxnas favorit, TV-personligheten och världsmästartrollkonstnären Simo Aalto bjuder på glädje för hela familjen tillsammans med sin assistent och hustru Kirsti.</p><p>I den nya glada showen får vi se världens bästa trollkonster smaksatta med en gladlynt scenshow. Under ledning av Simo får åskådare av alla åldrar åka på en timmes resa till trollkonsternas värld, där inget är omöjligt.</p><p>Med i äventyret är Simos och Kirstis djurkompisar kaninen Erkki och duvan Paloma samt den egensinniga papegojan Eino. Och visst får barnen vara med och hjälpa trollkarlen ända upp på scenen!</p><p>Simos medryckande framträdande garanterar att trollpillret verkar länge, humöret piggas upp och vardagens rutiner glöms bort. Med andra ord utlovas högklassig estradunderhållning!</p><p>Själv säger Simo: “Under min långa karriär har redan en generation, nittiotalsbarnen, hunnit växa upp, och de kommer nu för att se sin barndomsidol med sina egna barn. Därför vill jag bjuda på glädje och förundran för alla åldrar.”</p><p>Längd 1 h <br>Åldersrekommendation: 2–100 år</p>", "en": "<p>A perennial favourite of children and adults alike, World Champion Magician Simo Aalto , well-known from TV programmes, brings fun for the whole family together with his wife Kirsti as his assistant.</p><p>The happy new show will feature some of the world’s best magic tricks accompanied by a light-hearted stage show. Simo leads audiences of all ages on a one-hour journey into a magical world where everything is possible.</p><p>Along for the adventure are Simo and Kirsti’s animal friends, Erkki the rabbit, Paloma the pigeon, and Eino, the stubborn parrot. And, of course, the kids get to assist the magician up on stage!</p><p>Simo’s engaging performance ensures that the magic pill lasts for a long time, refreshing your mind and making you forget the daily hustle and bustle. In a word, this will be high-quality entertainment on the stage!</p><p>In Simo’s own words, “During my long career, one generation – the ‘90s kids – have already grown up, and are now bringing their own children to see their childhood idol. That’s why I want to offer joy and wonder to people of all ages.”</p><p>Duration: 1 h <br>Age recommendation: 2–100 years</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64816/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64815", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-malmitalo-19301207/", "sv": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-malmitalo-19301207/", "en": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-malmitalo-19301207/" }, "price": { "fi": "16,80 / 14,40 €", "sv": "16,80 / 14,40 €", "en": "16,80 / 14,40 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152902, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-29T12:16:14.483051Z", "last_modified_time": "2024-10-29T12:16:14.483074Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760139.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152902/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-10-29T12:16:14.443560Z", "last_modified_time": "2025-01-15T15:15:03.698144Z", "date_published": null, "start_time": "2025-02-01T12: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, "provider_contact_info": null, "short_description": { "fi": "Lasten ja aikuisten legendaarinen kestosuosikki ja TV:stä tuttu maailmanmestari-taikuri Simo Aalto tarjoilee iloa ja riemua koko perheelle yhdessä avustaja-vaimonsa Kirstin kanssa.", "sv": "Barnens och de vuxnas favorit, TV-personligheten och världsmästartrollkonstnären Simo Aalto bjuder på glädje för hela familjen tillsammans med sin assistent och hustru Kirsti.", "en": "A perennial favourite of children and adults alike, World Champion Magician Simo Aalto , well-known from TV programmes, brings fun for the whole family together with his wife Kirsti as his assistant." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7C3406F08B056B3ACBD89E72415B54D4/Jokeri_Pokeri_Box_Ihan_Simona_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7C3406F08B056B3ACBD89E72415B54D4/Jokeri_Pokeri_Box_Ihan_Simona_", "en": "http://www.malmitalo.fi/en/events/event/7C3406F08B056B3ACBD89E72415B54D4/Jokeri_Pokeri_Box_Ihan_Simona_" }, "location_extra_info": null, "name": { "fi": "Jokeri Pokeri Box: Ihan Simona!", "sv": "Jokeri Pokeri Box: Ihan Simona!", "en": "Jokeri Pokeri Box: Ihan Simona!" }, "description": { "fi": "<p>Lasten ja aikuisten legendaarinen kestosuosikki ja TV:stä tuttu maailmanmestari-taikuri Simo Aalto tarjoilee iloa ja riemua koko perheelle yhdessä avustaja-vaimonsa Kirstin kanssa.</p><p>Uudessa Iloisessa showssa nähdään maailman parhaita taikatemppuja ryyditettynä hyväntuulisella lavashowlla. Simo johdolla kaikenikäiset katsojat pääsevät tunnin matkalle taikamaailmaan, jossa mikään ei ole mahdotonta.</p><p>Mukana seikkailevat Simon ja Kirstin eläinkaverit Erkki-kani ja Paloma-kyyhky sekä itsepäinen papukaija Eino. Ja toki lapset pääsevät auttamaan taikuria lavalle asti!</p><p>Simon mukaansatempaava esiintyminen takaa, että taikapölyn vaikutus säilyy pitkään, mieli virkistyy ja arjen pyöritys unohtuu. Sanalla sanoen luvassa on laadukasta estradiviihdettä!</p><p>Simon omin sanoin: ”Pitkän, yli 45-vuotisen urani aikana on jo yksi sukupolvi kasvanut aikuisiksi ja he tulevat nyt omien lastensa kanssa katsomaan lapsuutensa idolia, siksi haluan tarjota iloa ja ihmetystä kaikenikäisille.”</p><p>Kesto 1 tunti<br>Ikäsuositus 2-100 v</p>", "sv": "<p>Barnens och de vuxnas favorit, TV-personligheten och världsmästartrollkonstnären Simo Aalto bjuder på glädje för hela familjen tillsammans med sin assistent och hustru Kirsti.</p><p>I den nya glada showen får vi se världens bästa trollkonster smaksatta med en gladlynt scenshow. Under ledning av Simo får åskådare av alla åldrar åka på en timmes resa till trollkonsternas värld, där inget är omöjligt.</p><p>Med i äventyret är Simos och Kirstis djurkompisar kaninen Erkki och duvan Paloma samt den egensinniga papegojan Eino. Och visst får barnen vara med och hjälpa trollkarlen ända upp på scenen!</p><p>Simos medryckande framträdande garanterar att trollpillret verkar länge, humöret piggas upp och vardagens rutiner glöms bort. Med andra ord utlovas högklassig estradunderhållning!</p><p>Själv säger Simo: “Under min långa karriär har redan en generation, nittiotalsbarnen, hunnit växa upp, och de kommer nu för att se sin barndomsidol med sina egna barn. Därför vill jag bjuda på glädje och förundran för alla åldrar.”</p><p>Längd 1 h <br>Åldersrekommendation: 2–100 år</p>", "en": "<p>A perennial favourite of children and adults alike, World Champion Magician Simo Aalto , well-known from TV programmes, brings fun for the whole family together with his wife Kirsti as his assistant.</p><p>The happy new show will feature some of the world’s best magic tricks accompanied by a light-hearted stage show. Simo leads audiences of all ages on a one-hour journey into a magical world where everything is possible.</p><p>Along for the adventure are Simo and Kirsti’s animal friends, Erkki the rabbit, Paloma the pigeon, and Eino, the stubborn parrot. And, of course, the kids get to assist the magician up on stage!</p><p>Simo’s engaging performance ensures that the magic pill lasts for a long time, refreshing your mind and making you forget the daily hustle and bustle. In a word, this will be high-quality entertainment on the stage!</p><p>In Simo’s own words, “During my long career, one generation – the ‘90s kids – have already grown up, and are now bringing their own children to see their childhood idol. That’s why I want to offer joy and wonder to people of all ages.”</p><p>Duration: 1 h <br>Age recommendation: 2–100 years</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64815/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64733", "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:348/?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": [], "info_url": { "fi": "https://www.lippu.fi/event/antti-autio-yksin-konserttisalikiertue-malmitalo-19324313/", "sv": "https://www.lippu.fi/event/antti-autio-yksin-konserttisalikiertue-malmitalo-19324313/", "en": "https://www.lippu.fi/event/antti-autio-yksin-konserttisalikiertue-malmitalo-19324313/" }, "price": { "fi": "34,90 €", "sv": "34,90 €", "en": "34,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152853, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-22T12:15:18.980407Z", "last_modified_time": "2024-10-22T12:15:18.980421Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759428.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152853/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-22T12:15:18.956468Z", "last_modified_time": "2025-01-15T13:15:32.222200Z", "date_published": null, "start_time": "2025-03-28T17: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, "provider_contact_info": null, "short_description": { "fi": "Antti Aution Yksin-konserttisalikiertueesta saadaan nauttia myös Malmitalossa.", "sv": "Publiken får njuta av Antti Autios konsertsalturné Yksin även i Malms kulturhus.", "en": "Antti Autio’s Yksin concert hall tour will also arrive at Malmitalo!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/146E8B44381F15018219F8974EEC30B5/LOPPUUNMYYTY_Antti_Autio_Yksin", "sv": "http://www.malmitalo.fi/sv/evenemang/event/146E8B44381F15018219F8974EEC30B5/SLUTSALD_Antti_Autio_Yksin_", "en": "http://www.malmitalo.fi/en/events/event/146E8B44381F15018219F8974EEC30B5/SOLD_OUT_Antti_Autio_Yksin" }, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY Antti Autio: Yksin – konserttisalikiertue", "sv": "SLUTSÅLD Antti Autio: Yksin – konsertsalturné", "en": "SOLD OUT Antti Autio: Yksin – concert hall tour" }, "description": { "fi": "<p>Antti Aution Yksin-konserttisalikiertueesta saadaan nauttia myös Malmitalossa.</p><p>Luvassa on rakastetun lauluntekijän musiikkia niin kuin se on sävelletty, yksin kitaralla säestäen.</p><p>Suomen rakastetuimpiin uuden polven laulaja-lauluntekijöihin kuuluva Antti Autio suuntaa alkuvuodesta 2025 Yksin-konserttisalikiertueelle.</p><p>Helmikuussa neljännen albuminsa “Täällä sinua kaivataan” julkaissut artisti esiintyy 11 keikkaa kattavalla kiertueella intiimisti soolona. Luvassa on kappaleita lauluntekijän koko uran varrelta niin kuin ne ovat saaneet alkunsa, yksin kitaralla säestäen.</p><p>\"Kaikki mun biisit on tehty kitaran kanssa, joten esitän kappaleita niin kuin ne ovat syntyneet. Jokainen konsertti tulee olemaan ainutlaatuinen. Soolona esiintyessä keikan dramaturgia syntyy aina hetkessä, ilman varsinaisia settilistoja, mikä on kiehtovaa ja jännittävää. Nautin siitä, kun ihmiset voivat esittää myös omia toiveitaan keikkojen aikana”, Autio kertoo kiertueesta.</p><p>Vuonna 2017 debyyttialbuminsa julkaisseen Aution voimakkaat ja vilpittömät kappaleet kaipuusta ja rakkaudesta ovat lumonneet sekä kuulijat että kriitikot ympäri Suomen. Autiolla on hurmaava taito onnistua maalaamaan esiin kuulijoiden tunteita hienovaraisen lohdullisesti. Pehmeyden ja tunnelmallisuuden sidosaineena toimii häkellyttävä intensiivisen rohkea voima ja etenkin lyyrinen ilmaisu on täynnä painavaa kuultavaa.</p><p>Kesto 1 h 40 min (sis. väliajan)<br>Liput: 34,90 €</p>", "sv": "<p>Publiken får njuta av Antti Autios konsertsalturné Yksin även i Malms kulturhus.</p><p>Den älskade låtskrivarens musik spelas såsom den är komponerad, ackompanjerad endast på gitarr.</p><p>Antti Autio, en av Finlands mest älskade sångare-låtskrivare som hör till den nya generationen, uppträder på konsertsalturnén Yksin i början av 2025. Artisten, som gav ut sitt fjärde album ”Täällä sinua kaivataan” i februari, uppträder intimt solo på turnén som omfattar 11 konserter. På konserterna hörs låtar från sångare-låtskrivarens hela karriär såsom de har kommit till, ackompanjerade endast på gitarr.</p><p>”Jag har komponerat alla mina låtar på gitarr, så jag spelar låtarna såsom de har kommit till. Varje konsert kommer att vara unik. När man uppträder solo, uppstår konsertens dramaturgi alltid i ett ögonblick, utan egentliga setlistor, vilket är fascinerande och spännande. Jag njuter av när publiken också kan framföra sina egna önskemål under konserterna”, berättar Autio om turnén.</p><p>Autio, som gav ut sitt debutalbum 2017, har förtjust både lyssnare och kritiker runtom i Finland med sina kraftfulla och uppriktiga låtar om längtan och kärlek. Autio har en charmig förmåga att måla fram sina lyssnares känslor på ett lyhört och trösterikt sätt. En häpnadsväckande intensivt modig kraft och i synnerhet en lyrisk uttrycksform binder mjukheten och stämningsfullheten och är fyllda av betydelse.</p><p>Längd 1 h 40 min (inkl. paus)</p>", "en": "<p>Antti Autio’s Yksin concert hall tour will also arrive at Malmitalo!</p><p>The music of the beloved songwriter as it was composed, just a man and his guitar.</p><p>Antti Autio, one of Finland’s most beloved next generation singer-songwriters, will start his Yksin (Alone) concert hall tour in early 2025. The artist, who released his fourth album Here You Are Missed last February, will do a solo tour of eleven concerts covering songs spanning his entire career as the were originally composed, just for him and his guitar.</p><p>‘I have written all my songs with a guitar, and I’ll play them as they were created. Every concert will be unique. When you perform alone, the dramaturgy is created in the moment, without any set lists, which is fascinating and exciting. I enjoy it when people can also express their wishes during the concert,’ Autio explains his tour.</p><p>The powerful and sincere songs about longing and love by Autio, who released his debut album in 2017, have charmed both listeners and critics all over Finland. Autio is charmingly skilful and able to paint out the emotions of the listeners with subtle comfort. His softness and moodiness are bound together by his overwhelming, intense strength: his lyrical expression in particular is a powerful experience.</p><p>Duration 1h 40min (incl. an interval)</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64733/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64826", "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": [], "info_url": { "fi": "https://www.lippu.fi/event/litku-klemetti-malmitalo-19319746/", "sv": "https://www.lippu.fi/event/litku-klemetti-malmitalo-19319746/", "en": "https://www.lippu.fi/event/litku-klemetti-malmitalo-19319746/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153065, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-21T09:14:14.193411Z", "last_modified_time": "2024-11-21T09:14:14.193426Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760345.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153065/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-21T09:14:14.142459Z", "last_modified_time": "2025-01-15T13:15:26.528012Z", "date_published": null, "start_time": "2025-02-28T17: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, "provider_contact_info": null, "short_description": { "fi": "Litku Klemetti on lauluntekijä Sanna Klemetin rohkea alter ego, sekä 2015 perustettu ja kahdesti Emma-palkittu yhtye." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0D673D965C1160B5CC8A19517F9D923E/LOPPUUNMYYTY_Litku_Klemetti_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0D673D965C1160B5CC8A19517F9D923E/SLUTSALD_Litku_Klemetti_FULLBOKAT_", "en": "http://www.malmitalo.fi/en/events/event/0D673D965C1160B5CC8A19517F9D923E/SOLD_OUT_Litku_Klemetti" }, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY Litku Klemetti – A la Malmi", "sv": "SLUTSÅLD Litku Klemetti (FULLBOKAT)", "en": "SOLD OUT Litku Klemetti" }, "description": { "fi": "<p>Litku Klemetti on lauluntekijä Sanna Klemetin rohkea alter ego, sekä 2015 perustettu ja kahdesti Emma-palkittu yhtye.</p><p>Litku Klemetti teki läpimurtonsa 2017 hittilevyllään Juna Kainuuseen. Lokakuussa 2024 julkaistiin yhtyeen kahdeksas albumi Funny Girl, jonka tiimoilta yhtye kiertää jälleen Suomea. Tuhansia albumeita myyneen ja miljoonia kuunteluita suoratoistopalveluissa keränneen Litku Klemetin musiikki on omaehtoista, hauskaa ja koskettavaa. Kriitikoiden ja yleisön rakastaman Litkun keikoilla käyvät niin musadiggarit kuin heidän mutsitkin.</p><p><b>A la Malmi</b> on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia. A la Malmi ei välitä genrerajoista, vaan tarjoilee kuulijoille parhaat itsenäisen musiikin tekijät.</p><p>Laadukas konserttisaliympäristö nousevine katsomoineen tarjoaa jokaiselle asiakkaalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Akustiset, äänentoistolliset ja valaistukselliset puitteet ovat Malmisalissa huippuluokkaa.</p><p>Kesto: 1 tunti, 20 min</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64826/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23ei2q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ejrq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150454, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T07:37:14.621279Z", "last_modified_time": "2024-03-15T07:37:14.621301Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/ENTERry-20_1.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Opastustilanne", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150454/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-01-15T12:57:59.295291Z", "last_modified_time": "2025-01-15T12:57:59.295316Z", "date_published": null, "start_time": "2025-05-21T07:00:00Z", "end_time": "2025-05-21T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. ", "sv": "Personligt stöd i att använda smartphones, surfplattor, datorer och e-tjänster på finska.", "en": "Personalised guidance in the use of smartphones, tablets, computers and e-services in Finnish." }, "info_url": null, "location_extra_info": { "fi": "Kokoustila Kari" }, "name": { "fi": "ENTER ry Tietotekniikkaopastusta senioreille", "sv": "ENTER ry IT utbildning för seniorer", "en": "ENTER ry IT tutoring for seniors" }, "description": { "fi": "<p>Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. Ota mukaan oma laite, tarvittavat tunnukset ja salasanat.</p><p>Opastajina toimivat ENTER ry:n vapaaehtoiset vertaisopastajat.</p>", "sv": "<p>Personligt stöd i att använda smartphones, surfplattor, datorer och e-tjänster på finska.</p>", "en": "<p>Personalised guidance in the use of smartphones, tablets, computers and e-services in Finnish.</p>" }, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ei2q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23ejgi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ejrq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150454, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T07:37:14.621279Z", "last_modified_time": "2024-03-15T07:37:14.621301Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/ENTERry-20_1.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Opastustilanne", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150454/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-01-15T12:57:58.881334Z", "last_modified_time": "2025-01-15T12:57:58.881360Z", "date_published": null, "start_time": "2025-05-20T07:00:00Z", "end_time": "2025-05-20T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. ", "sv": "Personligt stöd i att använda smartphones, surfplattor, datorer och e-tjänster på finska.", "en": "Personalised guidance in the use of smartphones, tablets, computers and e-services in Finnish." }, "info_url": null, "location_extra_info": { "fi": "Kokoustila Kari" }, "name": { "fi": "ENTER ry Tietotekniikkaopastusta senioreille", "sv": "ENTER ry IT utbildning för seniorer", "en": "ENTER ry IT tutoring for seniors" }, "description": { "fi": "<p>Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. Ota mukaan oma laite, tarvittavat tunnukset ja salasanat.</p><p>Opastajina toimivat ENTER ry:n vapaaehtoiset vertaisopastajat.</p>", "sv": "<p>Personligt stöd i att använda smartphones, surfplattor, datorer och e-tjänster på finska.</p>", "en": "<p>Personalised guidance in the use of smartphones, tablets, computers and e-services in Finnish.</p>" }, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ejgi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23ejrq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ei2q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ejgi/?format=api" } ], "images": [ { "id": 150454, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T07:37:14.621279Z", "last_modified_time": "2024-03-15T07:37:14.621301Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/ENTERry-20_1.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Opastustilanne", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150454/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-01-15T12:57:42.115002Z", "last_modified_time": "2025-01-15T12:57:42.115028Z", "date_published": null, "start_time": "2025-01-21T08:00:00Z", "end_time": "2025-05-21T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. ", "sv": "Personligt stöd i att använda smartphones, surfplattor, datorer och e-tjänster på finska.", "en": "Personalised guidance in the use of smartphones, tablets, computers and e-services in Finnish." }, "info_url": null, "location_extra_info": { "fi": "Kokoustila Kari" }, "name": { "fi": "ENTER ry Tietotekniikkaopastusta senioreille", "sv": "ENTER ry IT utbildning för seniorer", "en": "ENTER ry IT tutoring for seniors" }, "description": { "fi": "<p>Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. Ota mukaan oma laite, tarvittavat tunnukset ja salasanat.</p><p>Opastajina toimivat ENTER ry:n vapaaehtoiset vertaisopastajat.</p>", "sv": "<p>Personligt stöd i att använda smartphones, surfplattor, datorer och e-tjänster på finska.</p>", "en": "<p>Personalised guidance in the use of smartphones, tablets, computers and e-services in Finnish.</p>" }, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ejrq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65450", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510659/", "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510659/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510659/" }, "price": { "fi": "20 € / 17 €", "sv": "20 € / 17 €", "en": "20 € / 17 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153771, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-15T10:13:48.191924Z", "last_modified_time": "2025-01-15T10:13:48.191936Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763441.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153771/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-15T10:13:48.179873Z", "last_modified_time": "2025-01-15T10:13:48.226046Z", "date_published": null, "start_time": "2025-05-10T16: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, "provider_contact_info": null, "short_description": { "fi": "Kuinka käy, kun kolmen ystävän elämä on jämähtänyt kotiin?", "sv": "Vad händer när tre vänners liv har fastnat i hemmet?", "en": "What happens when the lives of three friends have become stuck at home?" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/CEEE0AA7AA4263657867AEC684F5EDAC/Oskari_Turpeinen_Block_Maybe_We_Go_Out", "sv": "http://www.stoa.fi/sv/evenemang/event/CEEE0AA7AA4263657867AEC684F5EDAC/Oskari_Turpeinen_Block_Maybe_We_Go_Out", "en": "http://www.stoa.fi/en/events/event/CEEE0AA7AA4263657867AEC684F5EDAC/Oskari_Turpeinen_Block_Maybe_We_Go_Out" }, "location_extra_info": null, "name": { "fi": "Oskari Turpeinen: Block – Maybe We Go Out – Spring Break Festival 2025", "sv": "Oskari Turpeinen: Block – Maybe We Go Out – Spring Break Festival 2025", "en": "Oskari Turpeinen: Block – Maybe We Go Out – Spring Break Festival 2025" }, "description": { "fi": "<p>Kuinka käy, kun kolmen ystävän elämä on jämähtänyt kotiin?</p><p>Heillä on visioita tulevaisuudesta, mutta muutoksen huoli ja kodin luoma turva valavat jatkuvasti sementtiä sandaaleihin. Suunnitelmia löytyy, mutta toteutus tuntuu ylitsepääsemättömältä. Haaveet, pelot, kaipuu ja kärsimättömyys myllertävät kodin nuhjuisten huonekalujen päällä notkuvien ystävysten mielessä.</p><p>Aika valuu, venyy ja puuhastelu menee asunnosta ulos pääsemisen edelle. Koti, huonekalut ja asukkaat järjestetään jatkuvasti uudelleen, ja aina tuntuu löytyvän jotain muuta tekemistä kuin tulevaisuuden kohtaaminen. Ulos olisi joskus lähdettävä, vaan kun se ei vain tunnu onnistuvan.</p><p>Block – Maybe We Go Out on tanssiteos, jossa tanssi, musiikki, akrobatia ja teatteri sulautuvat yhteen kuvaten kaoottista ja odottavaa tilaa. Teoksessa lavalla nähdään kolme ystävystä, jotka kelluskelevat kodissaan yrittäen poissulkea tulevan. Teos pohtii nuorten ja nuorten aikuisten tulevaisuuden näkymiä. Kuinka pelottavaa ja epävarmaa elämä onkaan ilman kodin ja ystävien turvaa?</p><p>Ohjaus ja koreografia: Oskari Turpeinen<br>Dramaturgia: Sanni Giordani<br>Esiintyjät: Eetu Hölttä, Iiro Näkki, Oskari Turpeinen<br>Musiikki ja äänisuunnittelu: Eetu Hölttä, Josu Mämmi<br>Valosuunnittelu: Lauri Hietala</p><p>Osatuotanto: Kinetic Orchestra<br>Teoksen on mahdollistanut: Taiteen Edistämiskeskus & Kinetic Orchestra</p><p>Kesto noin 60 min</p>", "sv": "<p>Vad händer när tre vänners liv har fastnat i hemmet?</p><p>De har visioner för framtiden, men oron för förändring och tryggheten i hemmet fortsätter att hälla cement i deras sandaler. Planerna finns där, men att genomföra dem verkar oöverstigligt. Drömmar, rädslor, längtan och otålighet snurrar i huvudet på polarna som vaggas i hemmets sjabbiga möbler. Tiden rinner iväg, dras ut och plottrande går före att ta sig ut ur lägenheten. Hemmet, möblerna och invånarna omorganiseras ständigt, och det verkar alltid finnas något annat att göra än att möta framtiden. Ibland borde man gå ut, men då det bara inte blir av.</p><p>Block – Maybe We Go Out är ett dansverk där dans, musik, akrobatik och teater smälter samman och skapar ett tillstånd av kaos och väntan. På scenen ser vi tre polare som flyter omkring i sitt hem och försöker stänga ute framtiden. Verket behandlar framtidsutsikterna för ungdomar och unga vuxna. Hur skrämmande och osäkert är inte livet utan hemmets trygghet och vännernas skydd?</p><p>Regi och koreografi: Oskari Turpeinen<br>Dramaturgi: Sanni Giordani<br>Framträdande: Eetu Hölttä, Iiro Näkki, Oskari Turpeinen<br>Musik och ljuddesign: Eetu Hölttä, Josu Mämmi<br>Ljusdesign: Lauri Hietala</p><p>Delproduktion: Kinetic Orchestra<br>Verket möjliggjordes av: Centret för konstfrämjande & Kinetic Orchestra</p><p>Längd ca 60 min</p>", "en": "<p>What happens when the lives of three friends have become stuck at home?</p><p>They have grand visions for the future, but the fear of change and the comfort of home constantly pour cement into their sandals. Planning the future comes easily, but putting those plans into action seems impossible. Dreams, fears, longing, and impatience swirl in the minds of these friends. Time slips by, stretches on, and procrastination turns every little task into a reason to avoid stepping outside. The home, its furniture, and the residents are constantly being rearranged, yet there’s always something else to do rather than face the future. Maybe we go out at some point, but it just never seems to happen.</p><p>Block – Maybe We Go Out is a dance piece where dance, music, acrobatics, and theater merge to portray the chaotic and expectant state of the friends. On stage, we see three friends floating through their home, trying to shut out what lies ahead. The piece reflects on the future prospects of young people and young adults. How terrifying and uncertain life feels without the safety of home and friends?</p><p>Directing and Choreography: Oskari Turpeinen<br>Dramaturgy: Sanni Giordani<br>Performers: Eetu Hölttä, Iiro Näkki, Oskari Turpeinen<br>Music and sound design: Eetu Hölttä, Josu Mämmi<br>Light design: Lauri Hietala</p><p>Co-production: Kinetic Orchestra<br>Supported by: Taiteen Edistämiskeskus & Kinetic Orchestra</p><p>Duration: 1 hour</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65450/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65449", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510658/", "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510658/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510658/" }, "price": { "fi": "20 € / 17 €", "sv": "20 € / 17 €", "en": "20 € / 17 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153770, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-15T10:13:48.027389Z", "last_modified_time": "2025-01-15T10:13:48.027402Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763440.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153770/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-15T10:13:48.012393Z", "last_modified_time": "2025-01-15T10:13:48.065333Z", "date_published": null, "start_time": "2025-05-09T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kuinka käy, kun kolmen ystävän elämä on jämähtänyt kotiin?", "sv": "Vad händer när tre vänners liv har fastnat i hemmet?", "en": "What happens when the lives of three friends have become stuck at home?" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/C835E3F5F3924AAA1D24FE60A00BD8D3/Oskari_Turpeinen_Block_Maybe_We_Go_Out", "sv": "http://www.stoa.fi/sv/evenemang/event/C835E3F5F3924AAA1D24FE60A00BD8D3/Oskari_Turpeinen_Block_Maybe_We_Go_Out", "en": "http://www.stoa.fi/en/events/event/C835E3F5F3924AAA1D24FE60A00BD8D3/Oskari_Turpeinen_Block_Maybe_We_Go_Out" }, "location_extra_info": null, "name": { "fi": "Oskari Turpeinen: Block – Maybe We Go Out – Spring Break Festival 2025", "sv": "Oskari Turpeinen: Block – Maybe We Go Out – Spring Break Festival 2025", "en": "Oskari Turpeinen: Block – Maybe We Go Out – Spring Break Festival 2025" }, "description": { "fi": "<p>Kuinka käy, kun kolmen ystävän elämä on jämähtänyt kotiin?</p><p>Heillä on visioita tulevaisuudesta, mutta muutoksen huoli ja kodin luoma turva valavat jatkuvasti sementtiä sandaaleihin. Suunnitelmia löytyy, mutta toteutus tuntuu ylitsepääsemättömältä. Haaveet, pelot, kaipuu ja kärsimättömyys myllertävät kodin nuhjuisten huonekalujen päällä notkuvien ystävysten mielessä.</p><p>Aika valuu, venyy ja puuhastelu menee asunnosta ulos pääsemisen edelle. Koti, huonekalut ja asukkaat järjestetään jatkuvasti uudelleen, ja aina tuntuu löytyvän jotain muuta tekemistä kuin tulevaisuuden kohtaaminen. Ulos olisi joskus lähdettävä, vaan kun se ei vain tunnu onnistuvan.</p><p>Block – Maybe We Go Out on tanssiteos, jossa tanssi, musiikki, akrobatia ja teatteri sulautuvat yhteen kuvaten kaoottista ja odottavaa tilaa. Teoksessa lavalla nähdään kolme ystävystä, jotka kelluskelevat kodissaan yrittäen poissulkea tulevan. Teos pohtii nuorten ja nuorten aikuisten tulevaisuuden näkymiä. Kuinka pelottavaa ja epävarmaa elämä onkaan ilman kodin ja ystävien turvaa?</p><p>Ohjaus ja koreografia: Oskari Turpeinen<br>Dramaturgia: Sanni Giordani<br>Esiintyjät: Eetu Hölttä, Iiro Näkki, Oskari Turpeinen<br>Musiikki ja äänisuunnittelu: Eetu Hölttä, Josu Mämmi<br>Valosuunnittelu: Lauri Hietala</p><p>Osatuotanto: Kinetic Orchestra<br>Teoksen on mahdollistanut: Taiteen Edistämiskeskus & Kinetic Orchestra</p><p>Kesto noin 60 min</p>", "sv": "<p>Vad händer när tre vänners liv har fastnat i hemmet?</p><p>De har visioner för framtiden, men oron för förändring och tryggheten i hemmet fortsätter att hälla cement i deras sandaler. Planerna finns där, men att genomföra dem verkar oöverstigligt. Drömmar, rädslor, längtan och otålighet snurrar i huvudet på polarna som vaggas i hemmets sjabbiga möbler. Tiden rinner iväg, dras ut och plottrande går före att ta sig ut ur lägenheten. Hemmet, möblerna och invånarna omorganiseras ständigt, och det verkar alltid finnas något annat att göra än att möta framtiden. Ibland borde man gå ut, men då det bara inte blir av.</p><p>Block – Maybe We Go Out är ett dansverk där dans, musik, akrobatik och teater smälter samman och skapar ett tillstånd av kaos och väntan. På scenen ser vi tre polare som flyter omkring i sitt hem och försöker stänga ute framtiden. Verket behandlar framtidsutsikterna för ungdomar och unga vuxna. Hur skrämmande och osäkert är inte livet utan hemmets trygghet och vännernas skydd?</p><p>Regi och koreografi: Oskari Turpeinen<br>Dramaturgi: Sanni Giordani<br>Framträdande: Eetu Hölttä, Iiro Näkki, Oskari Turpeinen<br>Musik och ljuddesign: Eetu Hölttä, Josu Mämmi<br>Ljusdesign: Lauri Hietala</p><p>Delproduktion: Kinetic Orchestra<br>Verket möjliggjordes av: Centret för konstfrämjande & Kinetic Orchestra</p><p>Längd ca 60 min</p>", "en": "<p>What happens when the lives of three friends have become stuck at home?</p><p>They have grand visions for the future, but the fear of change and the comfort of home constantly pour cement into their sandals. Planning the future comes easily, but putting those plans into action seems impossible. Dreams, fears, longing, and impatience swirl in the minds of these friends. Time slips by, stretches on, and procrastination turns every little task into a reason to avoid stepping outside. The home, its furniture, and the residents are constantly being rearranged, yet there’s always something else to do rather than face the future. Maybe we go out at some point, but it just never seems to happen.</p><p>Block – Maybe We Go Out is a dance piece where dance, music, acrobatics, and theater merge to portray the chaotic and expectant state of the friends. On stage, we see three friends floating through their home, trying to shut out what lies ahead. The piece reflects on the future prospects of young people and young adults. How terrifying and uncertain life feels without the safety of home and friends?</p><p>Directing and Choreography: Oskari Turpeinen<br>Dramaturgy: Sanni Giordani<br>Performers: Eetu Hölttä, Iiro Näkki, Oskari Turpeinen<br>Music and sound design: Eetu Hölttä, Josu Mämmi<br>Light design: Lauri Hietala</p><p>Co-production: Kinetic Orchestra<br>Supported by: Taiteen Edistämiskeskus & Kinetic Orchestra</p><p>Duration: 1 hour</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65449/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65448", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510657/", "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510657/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510657/" }, "price": { "fi": "20 € / 17 €", "sv": "20 € / 17 €", "en": "20 € / 17 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153769, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-15T10:13:47.702511Z", "last_modified_time": "2025-01-15T10:13:47.702526Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763438.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153769/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-15T10:13:47.687570Z", "last_modified_time": "2025-01-15T10:13:47.746496Z", "date_published": null, "start_time": "2025-05-07T16: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, "provider_contact_info": null, "short_description": { "fi": "Ulkomaisen vierailuteoksen HITO koreografit ja esiintyjät, Akira Yoshida ja Chey Jurado, kuvaavat teoksessaan elämän suunnan löytämistä ja sen kadottamista.", "sv": "I det utländska gästspelet HITO beskriver koreograferna och artisterna Akira Yoshida och Chey Jurado hur det är att hitta riktning i livet och förlora den.", "en": "“HITO” features choreographer-performers Akira Yoshida and Chey Jurado, presenting a depiction of finding and losing the right direction in life." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/65B61116E798792CA6190FD7B42EC878/Akira_Yoshida_Chey_Jurado_HITO", "sv": "http://www.stoa.fi/sv/evenemang/event/65B61116E798792CA6190FD7B42EC878/Akira_Yoshida_Chey_Jurado_HITO", "en": "http://www.stoa.fi/en/events/event/65B61116E798792CA6190FD7B42EC878/Akira_Yoshida_Chey_Jurado_HITO" }, "location_extra_info": null, "name": { "fi": "Akira Yoshida & Chey Jurado: HITO – Spring Break Festival 2025", "sv": "Akira Yoshida & Chey Jurado: HITO – Spring Break Festival 2025", "en": "Akira Yoshida & Chey Jurado: HITO – Spring Break Festival 2025" }, "description": { "fi": "<p>Ulkomaisen vierailuteoksen HITO koreografit ja esiintyjät, Akira Yoshida ja Chey Jurado, kuvaavat teoksessaan elämän suunnan löytämistä ja sen kadottamista.</p><p>Tässä yksinkertaisuuden etsinnässä löytyy monimutkaisuus. Hito näyttää kaksi ystävää puhtaassa olemassaolon tilassa, etsimässä jotain niin yksinkertaista kuin elämää. Etsintä ravitsee heitä keskinäisellä läheisyydellä ja tuella, mutta samalla etäännyttää heitä toisistaan.</p><p>Chey Jurado ja Akira Yoshida ovat molemmat tanssijoita, jotka aloittivat breakingista ja jatkoivat uraansa esittävien taiteiden parissa. He ovat työskennelleet yhdessä Roberto Olivánin kanssa sekä mm. Peeping Tomin, La Veronalin, Lali Ayguadén, Yoann Bourgeoisin, Hungry Sharksin kanssa. Tällä hetkellä he yhdistävät työssään esiintymisen ja opettamisen ympäri maailmaa.</p><p>Koreografia ja esitys: Akira Yoshida & Chey Jurado<br>Tuotanto: Patty Hinchado, Eduardo Torres <br>Levitys: Patty Hinchado<br>Yhteistuotannossa: Kulturschiene, QuéTalEstás producciones, Teatro Pérez Galdós, Fundación Auditorio Las Palmas de Gran Canarias</p><p>Kesto: noin 50 min</p>", "sv": "<p>I det utländska gästspelet HITO beskriver koreograferna och artisterna Akira Yoshida och Chey Jurado hur det är att hitta riktning i livet och förlora den.</p><p>I denna strävan efter enkelhet uppstår komplexitet. Hito visar två vänner som befinner sig i ett tillstånd av ren existens, på jakt efter något så enkelt som livet. Sökandet ger dem näring i form av ömsesidig närhet och stöd, men fjärmar dem samtidigt från varandra.</p><p>Chey Jurado och Akira Yoshida är båda dansare som började med breaking och fortsatte sina karriärer inom scenkonsten. De har arbetat med bland andra Roberto Oliván, Peeping Tom, La Veronal, Lali Ayguadé, Yoann Bourgeois och Hungry Sharks. För närvarande går deras arbete ut på att kombinera uppträdanden med undervisning runtom i världen.</p><p>Längd: ca 50 min</p><p>Koreografi och framförande: Akira Yoshida & Chey Jurado<br>Produktion: Patty Hinchado, Eduardo Torres <br>Distribution: Patty Hinchado</p><p>I samproduktion: Kulturschiene, QuéTalEstás producciones, Teatro Pérez Galdós, Fundación Auditorio Las Palmas de Gran Canarias</p>", "en": "<p>“HITO” features choreographer-performers Akira Yoshida and Chey Jurado, presenting a depiction of finding and losing the right direction in life.</p><p>In the search for the simple, it´s where the complex is found. Hito shows the mere existence of two friends looking for something as simple as living, and how this nourishes them with closeness and support, and at the same time distances them.</p><p>Chey Jurado and Akira Yoshida are two dancers that after starting with Breaking, they begun their careers in performing arts. They both worked together with Roberto Oliván, and separately with Peeping Tom, La Veronal, Lali Ayguadé Company, Yoann Bourgeois, Hungry Sharks, etc. Right now they combine the performing arts with workshops all around the globe.</p><p>Duration: 50 min</p><p>Artists: Akira Yoshida & Chey Jurado<br>Production: Patty Hinchado, Eduardo Torres <br>Distribution: Patty Hinchado</p><p>Co-produced: Kulturschiene, QuéTalEstás producciones, Teatro Pérez Galdós, Fundación Auditorio Las Palmas de Gran Canarias</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65448/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65447", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510656/", "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510656/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510656/" }, "price": { "fi": "20 € / 17 €", "sv": "20 € / 17 €", "en": "20 € / 17 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153768, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-15T10:13:47.463499Z", "last_modified_time": "2025-01-15T10:13:47.463513Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763436.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153768/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-15T10:13:47.439411Z", "last_modified_time": "2025-01-15T10:13:47.525538Z", "date_published": null, "start_time": "2025-05-06T16: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, "provider_contact_info": null, "short_description": { "fi": "\"We Do This. We Don’t Talk” on sukkela ja loistokkaasti ylilyövä soolo aitouden tavoittelusta.", "sv": "”We Do This. We Don’t Talk” är ett kvickt och briljant överdrivet solo om strävan efter äkthet.", "en": "“We do this. We don’t talk” is a witty and gloriously over-the-top solo about the pursuit of authenticity." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/BB360600F12622B28BDFA0C013812F45/Yhteisilta_9_We_Do_This_We_Don_t_Talk_", "sv": "http://www.stoa.fi/sv/evenemang/event/BB360600F12622B28BDFA0C013812F45/Gemensam_kvall_9_We_Do_This_We_Don_t_Talk_", "en": "http://www.stoa.fi/en/events/event/BB360600F12622B28BDFA0C013812F45/Double_Bill_9_We_Do_This_We_Don_t_Talk_" }, "location_extra_info": null, "name": { "fi": "Yhteisilta: 9 & We Do This. We Don’t Talk. – Spring Break Festival 2025", "sv": "Gemensam kväll: 9 & We Do This. We Don’t Talk. – Spring Break Festival 2025", "en": "Double Bill: 9 & We Do This. We Don’t Talk. – Spring Break Festival 2025" }, "description": { "fi": "<p>\"We Do This. We Don’t Talk” on sukkela ja loistokkaasti ylilyövä soolo aitouden tavoittelusta.</p><p>Huolellisesti muotoiltujen internet-persoonien aikakaudella tämä soolo juhlistaa tanssin esittämisen ainutlaatuista rehellisyyttä.<br>Soolo on syntynyt koreografi Barnaby Boothin kiinnostuksesta lähestyä koreografiaa henkilökuvauksen muotona, jossa yleisö tutustuu esiintyjä Samuli Emeryyn katsoessaan hänen tanssimistaan.</p><p>\"Henkilökuvassa on kyse identiteetin tutkimisesta, ja se on hyvin herkkä, haavoittuva asia... Henkilökuva on kädenpuristus, syleily, sopimus, jossa kohtaamme kuvattavan kanssa yhteistyömme puolessa välissä\" -Valokuvaaja Tim Walker.</p><p>Vuonna 2017 \"We Do This. We Don't Talk.\" voitti 2. palkinnon \"Best Performance\" Stuttgartin kansainvälisessä tanssiteatterikilpailussa Saksassa ja \"Audience's Favourite\" -palkinnon Gdanskin tanssifestivaaleilla Puolassa. Tämän jälkeen esitys on kiertänyt laajasti lähes kahdessakymmenessä eri kaupungissa ympäri Eurooppaa.</p><p>Koreografia: Barnaby Booth<br>Esitys: Samuli Emery<br>Musiikki: “I Want You Back”, The Shivers<br>Tukijat: Susan Quinn, Salzburg Experimental Academy of Dance, Solo Tanz Theater Festival Stuttgart, Gdanski Festival Tanca</p><p>Laajasalon opiston tanssijan koulutus on monipuolinen ja fyysinen opintolinja, joka toimii yhteistyössä Kinetic Orchestra tanssiryhmän kanssa. Linjan opinnot kestävät vuoden, ja sen tavoitteena on tukea opiskelijoiden omaa kehitystä tanssijana, vahvistaa tanssisuhdetta sekä valmistaa kiinnostuneita opiskelijoita tanssin jatko-opintoihin.</p><p>Osana yhteisiltaa nähtävä teos rakentuu osana Tanssijana työskentely produktiossa -opintojaksoa, jonka aikana opiskelijat tutustuvat tanssijan työnkuvaan käytännön harjoittelun kautta. Opintojakson aikana opiskelijat pääsevät harjoittelemaan ryhmässä toimimista sekä vastuullisen ja ammattimaisen toiminnan periaatteita osana tanssijana toimimista taiteellisessa prosessissa. Opintojakso tarjoaa mahdollisuuden kurkistaa tanssijan työnkuvaan turvallisessa ympäristössä itseään haastaen. Ryhmäkoreografian “9” linjan opiskelijoille valmistaa Jarkko Mandelin kevään 2025 aikana.</p><p>Koreografia: Jarkko Mandelin<br>Esitys: Laajasalon opiston tanssilinjan opiskelijat<br>Kesto noin 1 tunti, sisältäen väliajan (teos n. 20minuuttia + väliaika 15min + teos n.15min)</p>", "sv": "<p>”We Do This. We Don’t Talk” är ett kvickt och briljant överdrivet solo om strävan efter äkthet.</p><p>I en tid av noggrant utformade internetpersonligheter hyllar det här solot den unika ärligheten i dansuppträdanden.<br>Solot föddes ur koreografen Barnaby Booths intresse för att närma sig koreografi som en form av personskildring, där publiken lär känna artisten Samuli Emery genom att se honom dansa.</p><p>”Personskildring handlar om att utforska identitet, och det är en mycket känslig, sårbar sak... En personskildring är en handtryckning, en omfamning, ett avtal där vi möter motivet halvvägs genom vårt samarbete” – Tim Walker, fotograf.</p><p>År 2017 vann ”We Do This. We Don't Talk.” andrapris för ”Best Performance” vid den internationella tävlingen för dansteater i Stuttgart i Tyskland och ”Audience's Favourite” vid dansfestivalen i Gdansk i Polen. Sedan dess har föreställningen turnerat flitigt i närmare tjugo städer runtom i Europa.</p><p>Koreografi: Barnaby Booth<br>Framförande: Samuli Emery<br>Musik: ”I Want You Back”, The Shivers<br>Stödd av: Susan Quinn, Salzburg Experimental Academy of Dance, Solo Tanz Theater Festival Stuttgart, Gdański Festiwal Tańca</p><p>Dansutbildningen på Laajasalon opisto är en mångsidig och fysisk studielinje som samarbetar med dansgruppen Kinetic Orchestra. Studierna pågår under ett år och syftar till att stödja de studerandes egen utveckling som dansare, stärka deras förhållande till dans och förbereda intresserade studerande för vidare studier inom dans.</p><p>Verket, som kommer att visas som en del av den gemensamma kvällen, är en del av studieavsnittet om att arbeta som dansare i en produktion, där de studerande får lära sig om dansarens jobb genom praktisk övning. Under studieavsnittet får de studerande möjlighet att öva på att arbeta i grupp och principerna för ansvarsfullt och professionellt förfarande som en del av att vara dansare i en konstnärlig process. Kursen ger möjlighet att i en trygg miljö få smakprov av dansarens arbete och utmana sig själv. Gruppkoreografin ”9” för de studerande på linjen kommer att utarbetas av Jarkko Mandelin under våren 2025.</p><p>Koreografi: Jarkko Mandelin<br>Framförande: Studerande på danslinjen på Laajasalon opisto</p><p>Längd ca 1 timme, inklusive paus (framförande ca 20 minuter + paus 15 minuter + framförande ca 15 minuter)</p>", "en": "<p>“We do this. We don’t talk” is a witty and gloriously over-the-top solo about the pursuit of authenticity.</p><p>In a time of meticulously crafted online personas, this short solo celebrates the unique honesty of dance performance.</p><p>The solo is the result of choreographer Barnaby Booth’s interest in approaching choreography as a form of portraiture, so that the audience might get to know performer Samuli Emery as they watch them dance.</p><p>“Portraiture is about exploring someone’s identity and that’s a very tender, vulnerable thing… The portrait is a handshake, the embrace, the agreement where we meet halfway along a collaborative path” – Photographer Tim Walker.</p><p>In 2017 \"We Do This. We Don't Talk.\" won the 2nd prize for \"Best Performance\" in the Stuttgart International Dance Theatre Competition in Germany and the \"Audience's Favourite\" prize in the Gdansk Dance Festival in Poland. After this the performance has toured extensively in almost twenty different cities and venues all over Europe.</p><p>Choreography: Barnaby Booth<br>Performing: Samuli Emery<br>Music: “I Want You Back”, The Shivers<br>Supporters: Susan Quinn, Salzburg Experimental Academy of Dance, Solo Tanz Theater Festival Stuttgart, Gdanski Festival Tanca</p><p>Laajasalo Folk High School’s dance programme is a versatile and physical study line that collaborates with the Kinetic Orchestra dance company. The program lasts for one year and aims to support students' personal development as dancers, strengthen their relationship with dance, and prepare interested students for further studies in dance.</p><p>The piece presented in the evening is part of the Working as a Dancer course, during which students explore the role of a dancer through practical training. Throughout the course, students practice working as a group and the principles of responsible and professional conduct as part of the artistic process. The course offers a chance to gain insight into the dancer's role in a safe environment while challenging themselves. The group choreography “9” for the students of the programme will be created by Jarkko Mandelin during the spring 2025.</p><p>Choreography: Jarkko Mandelin<br>Performance: students of Laajasalo Folk High School’s dance programme</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65447/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65443", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153749, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-14T12:15:20.174370Z", "last_modified_time": "2025-01-14T12:15:20.174386Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759328.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153749/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-14T12:15:20.145908Z", "last_modified_time": "2025-01-14T13:15:16.128670Z", "date_published": null, "start_time": "2025-03-06T13:30:00Z", "end_time": "2025-03-06T14: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, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!", "sv": "Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!", "en": "We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/EAC1B147CF16E450FFC954D4DEC32AB3/Suojelevat_symbolit_-taidepaja", "sv": "http://www.stoa.fi/sv/evenemang/event/EAC1B147CF16E450FFC954D4DEC32AB3/Skyddande_symboler_konstworkshop", "en": "http://www.stoa.fi/en/events/event/EAC1B147CF16E450FFC954D4DEC32AB3/Protective_Symbols_art_workshop" }, "location_extra_info": null, "name": { "fi": "Suojelevat symbolit -taidepaja – Helsinki Biennaali", "sv": "Skyddande symboler – konstworkshop – Helsingforsbiennalen", "en": "Protective Symbols art workshop – The Helsinki Biennial" }, "description": { "fi": "<p>Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!</p><p>Teoskokonaisuus on taidepajoissa tehtyjen osasten summa, joten jokaisen osallistujan panos ja kädenjälki on merkittävä sen syntymisen kannalta.</p><p>Filippiiniläisen taiteilijan Geraldine Javierin ideoima Earth, Water, Air, Fire, Void (Maa, Ilma, Vesi, Tuli, Tyhjiö) käsittelee ihmisen suhdetta luontoon ja sitä, miten voimme elää vastavuoroisessa suhteessa ympäristömme kanssa. Teoksen yhtenä osana ovat suojelevat talismaanit, joita teemme taidepajoissa. Ne ovat eri symboleihin taivutettua rautalankaa, joka on kääritty kierrätyskankaisiin.</p><p>Talismaanien symbolit ammentavat luonnosta ja ne ovat sekä suomalaisesta että filippiiniläisestä kulttuurista poimittuja. Kesäkuussa ne ripustetaan kuuteen vaahteraan Esplanadilla, missä ne muodostavat yhden suuren kokonaisuuden. Talismaanien tehtävänä on suojella puita, joihin ne on ripustettu.<br>Taidepajat ovat ilmaisia ja kaikki materiaalit löytyvät paikan päältä. Tule Stoan aulaan ja anna kättenjälkesi loistaa Helsinki Biennaalin tulevassa taideteoksessa! Taidepaja on avoinna tiistaista torstaihin 4.–6.3. klo 15.30–16.30.</p><p>Helsinki Biennaalia vietetään 8.6.-21.9.2025 ja tapahtumapaikkoina ovat HAM Helsingin taidemuseo, Vallisaari sekä Esplanadi. www.helsinkibiennaali.fi</p>", "sv": "<p>Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!</p><p>Verket som helhet är summan av de delar som görs under konstworkshopparna, och därför är varje deltagares insats och avtryck betydelsefullt för verkets uppkomst.</p><p>Earth, Water, Air, Fire, Void (Jord, Lyft, Vatten, Eld, Tomrum) grundar sig på en idé av den filippinska konstnären Geraldine Javier, och behandlar människans förhållande till naturen och hur vi kan leva interaktivt i förhållande till vår miljö. En del av verket är de skyddande talismaner, som vi gör i workshopparna. De består av ståltråd som har böjts till olika symboler och svepts in i återvinningstyger.</p><p>Talismanernas symboler inhämtar inspiration ur naturen, och har plockats från både den finländska och den filippinska kulturen. I juni hängs de upp i sex lönnar på Esplanaden, där de bildar en enda stor helhet. Talismanernas uppgift är att skydda de träd i vilka de hängts upp.</p><p>Konstworkshopparna är avgiftsfria och allt material finns på plats. Kom till Gamlasgårdens galleri och låt ditt handarbete stråla i det kommande konstverket för Helsingforsbiennalen! Konstworkshoppen är öppen 4–6.3. kl. 15.30–16.30.</p><p>Fritt inträde.</p><p>Helsingforsbiennalen firas 8.6.–21.9.2025 och evenemangsplatserna är HAM Helsingfors konstmuseum, Skanslandet och Esplanaden.</p>", "en": "<p>We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!</p><p>The collection of artwork will be the sum of the pieces made in the workshops, so each participant’s contribution and handprint will be important to creating it.</p><p>Earth, Water, Air, Fire, Void, the work conceived by Filipino artist Geraldine Javier, explores the human relationship with nature and how we can live in a reciprocal relationship with our environment. One part of the work will be the protective talismans that we will make in art workshops. They are made with wire bent into different symbols and wrapped in recycled fabric.</p><p>The symbols of the talismans are drawn from nature and inspired by both Finnish and Filipino culture. In June, they will be hung on six maples on the Esplanade, where they will form one large collection. The talismans are meant to protect the trees on which they are hung.</p><p>The workshops are free of charge, and all materials will be available on-site. Come visit the Kanneltalo gallery, and let your handiwork shine in the upcoming Helsinki Biennial artwork! The art workshop is open 3–6<br>March, from 15:30 to 16:30.</p><p>Free admission.</p><p>The Helsinki Biennial will take place from 8 June to 21 September 2025, and the event venues will be HAM Helsinki Art Museum, Vallisaari and the Esplanade.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65443/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65439", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/" }, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153747, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-14T12:15:16.423774Z", "last_modified_time": "2025-01-14T12:15:16.423792Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761469.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153747/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-14T12:15:16.392716Z", "last_modified_time": "2025-01-14T12:15:16.504200Z", "date_published": null, "start_time": "2025-04-26T15: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, "provider_contact_info": null, "short_description": { "fi": "Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.", "sv": "Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.", "en": "Every year, the twins prepare to celebrate the birthday of someone who is absent." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/3EAE7699447B551FD07A615F0A94DC3C/Vuosipaiva_Anniversary_Un_Anniversaire", "sv": "http://www.caisa.fi/sv/evenemang/event/3EAE7699447B551FD07A615F0A94DC3C/Vuosipaiva_Anniversary_Un_Anniversaire", "en": "http://www.caisa.fi/en/events/event/3EAE7699447B551FD07A615F0A94DC3C/Vuosipaiva_Anniversary_Un_Anniversaire" }, "location_extra_info": null, "name": { "fi": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas", "sv": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas", "en": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas" }, "description": { "fi": "<p>Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.</p><p>Juuttuneina omiin mietiskelyihinsä, yksinäisinä, lapsettomina ja tarpeettomina, he jakavat tappionsa. Huolimatta synkkiin ajatuksiin vaipumisista he pysyvät optimisteina ja odottavat yhä pientä kipinää, joka valaisee hetkeksi hauraan onnen pimeydessä.</p><p>Vuosipäivä on ranskan-guyanalais-martiniquelais-suomalainen yhteistyö. Teos on osa palkitun nykynäytelmäkirjailija <b>Alfred Alexandren</b> trilogiaa, joka käsittelee poissaolevaa henkilöä. Alkuperäisteksti on kirjoitettu ranskaksi.</p><p>Tämän fyysisen komedian tragedian on ohjannut ranskalais-guyanalainen Ewlyne Guillame ja esiintyjinä ovat suomalaiset fyysisen teatterin ja komedian taitajat Jenni Kallo ja Niina Rinta-Opas aka Kylmä ja Kalma, jotka syntyivät vuonna 2000 Q-teatterin Lumotussa Saaressa.</p><p>Esityksen pääkieli on fyysinen teatteri, mutta klovnerian ja tragedian summanmutikassa saattaa vilahtaa eri kieliä esimerkiksi ranskaa ja englantia suomen lisäksi. Teos käsittelee syvällisiä ja universaaleja teemoja, jotka koskettavat ihmisiä taustasta riippumatta. Hahmojen elämänkokemukset ja tunteet tarjoavat samaistumispintaa ja korostavat inhimillisten kokemusten moninaisuutta.</p><p>Tämä kansainvälisen yhteistyön hedelmä sai maailman ensi-iltansa Rovaniemellä Kulttuuritalo Wiljamissa osana Rimpparemmin vierailunäyttämöä elokuussa 2024. Ranskankielisen version ensi-ilta puolestaan näkee päivänvalon Les Tréteaux du Maroni festivaaleilla Ranskan Guayanassa huhtikuussa 2025.</p><p>Kesto: 45 minuuttia<br>Ikäsuositus: 16+<br>Kieli: suomi, ranska <br>Sisältöhuomio: Esitys sisältää kovia ääniä, alkoholia, vahvoja tunteita, voimakkaita hajuja ja huumoria.</p><p><b>Työryhmä</b><br>Ohjaus Ewelyne Guillame <br>Esiintyjät Jenni Kallo & Niina Rinta-Opas <br>Teksti Alfred Alexandre <br>Musiikki Harri Kuusijärvi <br>Valot Michael Creusy & Atte Herd <br>Pukusuunnittelu Reija Laine</p><p><b>Kulttuurikaveri-etu</b> <br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. <br><u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">Lue lisää kulttuurikavereista täältä</u></a><br>Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.</p><p>Fast i sina egna grubblerier, ensamma, barnlösa och värdelösa, delar de med sig av sina förluster. Trots sina dystra tankar är de optimistiska och väntar fortfarande på att en liten gnista ska lysa upp den bräckliga lyckans mörker för en stund.</p><p>Årsdagen är ett fransk-guyansk-martinikansk-finskt samarbete. Verket ingår i en trilogi av den prisbelönte martinikanske författaren <b>Alfred Alexandre</b> om en frånvarande person. Originaltexten är skriven på franska.</p><p>Denna tragedi inom fysisk komedi har regisserats av fransk-guyanske Ewlyne Guillame och framförs av de finländska artisterna inom fysisk teater och komedi Jenni Kallo och Niina Rinta-Opas aka Kylmä ja Kalma, som föddes år 2000 i Q-teatteris Lumottu Saari.</p><p>Föreställningens huvudspråk är fysisk teater, men i den slumpmässiga blandningen av clowneri och tragedi kan olika språk förekomma, utöver finska även franska och engelska. Verket behandlar djupa och universella teman som berör människor från alla bakgrunder. Karaktärernas livserfarenheter och känslor erbjuder igenkänningspunkter och framhäver mångfalden av mänskliga upplevelser.</p><p>Längd: 45 minuter<br>Åldersrekommendation: 16+<br>Språk: finska, franska <br>Observation om innehållet: Föreställningen innehåller höga ljud, alkohol, starka känslor, starka dofter och humor.</p><p><b>Arbetsgrupp</b><br>Regi Ewelyne Guillame <br>Artister Jenni Kallo & Niina Rinta-Opas <br>Text Alfred Alexandre <br>Musik Harri Kuusijärvi <br>Ljus Michael Creusy & Atte Herd <br>Kostymdesign Reija Laine</p>", "en": "<p>Every year, the twins prepare to celebrate the birthday of someone who is absent.</p><p>Stuck in their private reflections, lonely, childless and useless, they share their losses. Despite their lapses into gloomy thoughts, they remain optimists, waiting for a small spark to momentarily light up the darkness with fragile happiness.</p><p>Vuosipäivä (Anniversary) is a French-Guyanese-Martiniquan-Finnish collaboration. The work is part of a trilogy by award-winning Martiniquan author Alfred Alexandre that explores the absence of a person. The original text is written in French.</p><p>This physical tragicomedy is directed by French-Guyanese Ewlyne Guillame and performed by two Finnish talents in physical theatre and comedy, Jenni Kallo and Niina Rinta-Opas, also known as Kylmä and Kalma, who first performed at Q-teatteri’s Enchanted Island in 2000.</p><p>The main language of the performance is physical theatre, but in the mixture of clownery and tragedy, there may be a few snippets of different languages, such as French and English, in addition to Finnish. The work deals with profound and universal themes that will touch people from all backgrounds. The characters’ life experiences and emotions provide a space for identifying with them, highlighting the diversity of human experience.</p><p>Duration: 45 minutes<br>Age recommendation: 16+<br>Language: Finnish, French <br>Content warning: The performance includes loud sounds, alcohol, strong emotions, strong odours and humour.</p><p><b>Working Group</b><br>Director: Ewelyne Guillame <br>Performers: Jenni Kallo & Niina Rinta-Opas <br>Text: Alfred Alexandre <br>Music: Harri Kuusijärvi <br>Lights: Michael Creusy & Atte Herd <br>Costume design: Reija Laine</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65439/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65438", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/" }, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153746, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-14T12:15:16.148814Z", "last_modified_time": "2025-01-14T12:15:16.148838Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761468.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153746/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-14T12:15:16.117314Z", "last_modified_time": "2025-01-14T12:15:16.217484Z", "date_published": null, "start_time": "2025-04-25T16: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, "provider_contact_info": null, "short_description": { "fi": "Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.", "sv": "Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.", "en": "Every year, the twins prepare to celebrate the birthday of someone who is absent." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/55E9A9AA5984EE56A3DAFBF3A724D987/Vuosipaiva_Anniversary_Un_Anniversaire", "sv": "http://www.caisa.fi/sv/evenemang/event/55E9A9AA5984EE56A3DAFBF3A724D987/Vuosipaiva_Anniversary_Un_Anniversaire", "en": "http://www.caisa.fi/en/events/event/55E9A9AA5984EE56A3DAFBF3A724D987/Vuosipaiva_Anniversary_Un_Anniversaire" }, "location_extra_info": null, "name": { "fi": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas", "sv": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas", "en": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas" }, "description": { "fi": "<p>Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.</p><p>Juuttuneina omiin mietiskelyihinsä, yksinäisinä, lapsettomina ja tarpeettomina, he jakavat tappionsa. Huolimatta synkkiin ajatuksiin vaipumisista he pysyvät optimisteina ja odottavat yhä pientä kipinää, joka valaisee hetkeksi hauraan onnen pimeydessä.</p><p>Vuosipäivä on ranskan-guyanalais-martiniquelais-suomalainen yhteistyö. Teos on osa palkitun nykynäytelmäkirjailija <b>Alfred Alexandren</b> trilogiaa, joka käsittelee poissaolevaa henkilöä. Alkuperäisteksti on kirjoitettu ranskaksi.</p><p>Tämän fyysisen komedian tragedian on ohjannut ranskalais-guyanalainen Ewlyne Guillame ja esiintyjinä ovat suomalaiset fyysisen teatterin ja komedian taitajat Jenni Kallo ja Niina Rinta-Opas aka Kylmä ja Kalma, jotka syntyivät vuonna 2000 Q-teatterin Lumotussa Saaressa.</p><p>Esityksen pääkieli on fyysinen teatteri, mutta klovnerian ja tragedian summanmutikassa saattaa vilahtaa eri kieliä esimerkiksi ranskaa ja englantia suomen lisäksi. Teos käsittelee syvällisiä ja universaaleja teemoja, jotka koskettavat ihmisiä taustasta riippumatta. Hahmojen elämänkokemukset ja tunteet tarjoavat samaistumispintaa ja korostavat inhimillisten kokemusten moninaisuutta.</p><p>Tämä kansainvälisen yhteistyön hedelmä sai maailman ensi-iltansa Rovaniemellä Kulttuuritalo Wiljamissa osana Rimpparemmin vierailunäyttämöä elokuussa 2024. Ranskankielisen version ensi-ilta puolestaan näkee päivänvalon Les Tréteaux du Maroni festivaaleilla Ranskan Guayanassa huhtikuussa 2025.</p><p>Kesto: 45 minuuttia<br>Ikäsuositus: 16+<br>Kieli: suomi, ranska <br>Sisältöhuomio: Esitys sisältää kovia ääniä, alkoholia, vahvoja tunteita, voimakkaita hajuja ja huumoria.</p><p><b>Työryhmä</b><br>Ohjaus Ewelyne Guillame <br>Esiintyjät Jenni Kallo & Niina Rinta-Opas <br>Teksti Alfred Alexandre <br>Musiikki Harri Kuusijärvi <br>Valot Michael Creusy & Atte Herd <br>Pukusuunnittelu Reija Laine</p><p><b>Kulttuurikaveri-etu</b> <br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. <br><u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">Lue lisää kulttuurikavereista täältä</u></a><br>Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.</p><p>Fast i sina egna grubblerier, ensamma, barnlösa och värdelösa, delar de med sig av sina förluster. Trots sina dystra tankar är de optimistiska och väntar fortfarande på att en liten gnista ska lysa upp den bräckliga lyckans mörker för en stund.</p><p>Årsdagen är ett fransk-guyansk-martinikansk-finskt samarbete. Verket ingår i en trilogi av den prisbelönte martinikanske författaren <b>Alfred Alexandre</b> om en frånvarande person. Originaltexten är skriven på franska.</p><p>Denna tragedi inom fysisk komedi har regisserats av fransk-guyanske Ewlyne Guillame och framförs av de finländska artisterna inom fysisk teater och komedi Jenni Kallo och Niina Rinta-Opas aka Kylmä ja Kalma, som föddes år 2000 i Q-teatteris Lumottu Saari.</p><p>Föreställningens huvudspråk är fysisk teater, men i den slumpmässiga blandningen av clowneri och tragedi kan olika språk förekomma, utöver finska även franska och engelska. Verket behandlar djupa och universella teman som berör människor från alla bakgrunder. Karaktärernas livserfarenheter och känslor erbjuder igenkänningspunkter och framhäver mångfalden av mänskliga upplevelser.</p><p>Längd: 45 minuter<br>Åldersrekommendation: 16+<br>Språk: finska, franska <br>Observation om innehållet: Föreställningen innehåller höga ljud, alkohol, starka känslor, starka dofter och humor.</p><p><b>Arbetsgrupp</b><br>Regi Ewelyne Guillame <br>Artister Jenni Kallo & Niina Rinta-Opas <br>Text Alfred Alexandre <br>Musik Harri Kuusijärvi <br>Ljus Michael Creusy & Atte Herd <br>Kostymdesign Reija Laine</p>", "en": "<p>Every year, the twins prepare to celebrate the birthday of someone who is absent.</p><p>Stuck in their private reflections, lonely, childless and useless, they share their losses. Despite their lapses into gloomy thoughts, they remain optimists, waiting for a small spark to momentarily light up the darkness with fragile happiness.</p><p>Vuosipäivä (Anniversary) is a French-Guyanese-Martiniquan-Finnish collaboration. The work is part of a trilogy by award-winning Martiniquan author Alfred Alexandre that explores the absence of a person. The original text is written in French.</p><p>This physical tragicomedy is directed by French-Guyanese Ewlyne Guillame and performed by two Finnish talents in physical theatre and comedy, Jenni Kallo and Niina Rinta-Opas, also known as Kylmä and Kalma, who first performed at Q-teatteri’s Enchanted Island in 2000.</p><p>The main language of the performance is physical theatre, but in the mixture of clownery and tragedy, there may be a few snippets of different languages, such as French and English, in addition to Finnish. The work deals with profound and universal themes that will touch people from all backgrounds. The characters’ life experiences and emotions provide a space for identifying with them, highlighting the diversity of human experience.</p><p>Duration: 45 minutes<br>Age recommendation: 16+<br>Language: Finnish, French <br>Content warning: The performance includes loud sounds, alcohol, strong emotions, strong odours and humour.</p><p><b>Working Group</b><br>Director: Ewelyne Guillame <br>Performers: Jenni Kallo & Niina Rinta-Opas <br>Text: Alfred Alexandre <br>Music: Harri Kuusijärvi <br>Lights: Michael Creusy & Atte Herd <br>Costume design: Reija Laine</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65438/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65437", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/" }, "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153745, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-14T12:15:15.780613Z", "last_modified_time": "2025-01-14T12:15:15.780632Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761466.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153745/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-14T12:15:15.738327Z", "last_modified_time": "2025-01-14T12:15:15.867770Z", "date_published": null, "start_time": "2025-04-24T16: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, "provider_contact_info": null, "short_description": { "fi": "Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.", "sv": "Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.", "en": "Every year, the twins prepare to celebrate the birthday of someone who is absent." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/B273F270195009939C1D1D9211A78038/Vuosipaiva_Anniversary_Un_Anniversaire", "sv": "http://www.caisa.fi/sv/evenemang/event/B273F270195009939C1D1D9211A78038/Vuosipaiva_Anniversary_Un_Anniversaire", "en": "http://www.caisa.fi/en/events/event/B273F270195009939C1D1D9211A78038/Vuosipaiva_Anniversary_Un_Anniversaire" }, "location_extra_info": null, "name": { "fi": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas", "sv": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas", "en": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas" }, "description": { "fi": "<p>Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.</p><p>Juuttuneina omiin mietiskelyihinsä, yksinäisinä, lapsettomina ja tarpeettomina, he jakavat tappionsa. Huolimatta synkkiin ajatuksiin vaipumisista he pysyvät optimisteina ja odottavat yhä pientä kipinää, joka valaisee hetkeksi hauraan onnen pimeydessä.</p><p>Vuosipäivä on ranskan-guyanalais-martiniquelais-suomalainen yhteistyö. Teos on osa palkitun nykynäytelmäkirjailija <b>Alfred Alexandren</b> trilogiaa, joka käsittelee poissaolevaa henkilöä. Alkuperäisteksti on kirjoitettu ranskaksi.</p><p>Tämän fyysisen komedian tragedian on ohjannut ranskalais-guyanalainen Ewlyne Guillame ja esiintyjinä ovat suomalaiset fyysisen teatterin ja komedian taitajat Jenni Kallo ja Niina Rinta-Opas aka Kylmä ja Kalma, jotka syntyivät vuonna 2000 Q-teatterin Lumotussa Saaressa.</p><p>Esityksen pääkieli on fyysinen teatteri, mutta klovnerian ja tragedian summanmutikassa saattaa vilahtaa eri kieliä esimerkiksi ranskaa ja englantia suomen lisäksi. Teos käsittelee syvällisiä ja universaaleja teemoja, jotka koskettavat ihmisiä taustasta riippumatta. Hahmojen elämänkokemukset ja tunteet tarjoavat samaistumispintaa ja korostavat inhimillisten kokemusten moninaisuutta.</p><p>Tämä kansainvälisen yhteistyön hedelmä sai maailman ensi-iltansa Rovaniemellä Kulttuuritalo Wiljamissa osana Rimpparemmin vierailunäyttämöä elokuussa 2024. Ranskankielisen version ensi-ilta puolestaan näkee päivänvalon Les Tréteaux du Maroni festivaaleilla Ranskan Guayanassa huhtikuussa 2025.</p><p>Kesto: 45 minuuttia<br>Ikäsuositus: 16+<br>Kieli: suomi, ranska <br>Sisältöhuomio: Esitys sisältää kovia ääniä, alkoholia, vahvoja tunteita, voimakkaita hajuja ja huumoria.</p><p><b>Työryhmä</b><br>Ohjaus Ewelyne Guillame <br>Esiintyjät Jenni Kallo & Niina Rinta-Opas <br>Teksti Alfred Alexandre <br>Musiikki Harri Kuusijärvi <br>Valot Michael Creusy & Atte Herd <br>Pukusuunnittelu Reija Laine</p><p><b>Kulttuurikaveri-etu</b> <br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. <br><u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">Lue lisää kulttuurikavereista täältä</u></a><br>Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.</p><p>Fast i sina egna grubblerier, ensamma, barnlösa och värdelösa, delar de med sig av sina förluster. Trots sina dystra tankar är de optimistiska och väntar fortfarande på att en liten gnista ska lysa upp den bräckliga lyckans mörker för en stund.</p><p>Årsdagen är ett fransk-guyansk-martinikansk-finskt samarbete. Verket ingår i en trilogi av den prisbelönte martinikanske författaren <b>Alfred Alexandre</b> om en frånvarande person. Originaltexten är skriven på franska.</p><p>Denna tragedi inom fysisk komedi har regisserats av fransk-guyanske Ewlyne Guillame och framförs av de finländska artisterna inom fysisk teater och komedi Jenni Kallo och Niina Rinta-Opas aka Kylmä ja Kalma, som föddes år 2000 i Q-teatteris Lumottu Saari.</p><p>Föreställningens huvudspråk är fysisk teater, men i den slumpmässiga blandningen av clowneri och tragedi kan olika språk förekomma, utöver finska även franska och engelska. Verket behandlar djupa och universella teman som berör människor från alla bakgrunder. Karaktärernas livserfarenheter och känslor erbjuder igenkänningspunkter och framhäver mångfalden av mänskliga upplevelser.</p><p>Längd: 45 minuter<br>Åldersrekommendation: 16+<br>Språk: finska, franska <br>Observation om innehållet: Föreställningen innehåller höga ljud, alkohol, starka känslor, starka dofter och humor.</p><p><b>Arbetsgrupp</b><br>Regi Ewelyne Guillame <br>Artister Jenni Kallo & Niina Rinta-Opas <br>Text Alfred Alexandre <br>Musik Harri Kuusijärvi <br>Ljus Michael Creusy & Atte Herd <br>Kostymdesign Reija Laine</p>", "en": "<p>Every year, the twins prepare to celebrate the birthday of someone who is absent.</p><p>Stuck in their private reflections, lonely, childless and useless, they share their losses. Despite their lapses into gloomy thoughts, they remain optimists, waiting for a small spark to momentarily light up the darkness with fragile happiness.</p><p>Vuosipäivä (Anniversary) is a French-Guyanese-Martiniquan-Finnish collaboration. The work is part of a trilogy by award-winning Martiniquan author Alfred Alexandre that explores the absence of a person. The original text is written in French.</p><p>This physical tragicomedy is directed by French-Guyanese Ewlyne Guillame and performed by two Finnish talents in physical theatre and comedy, Jenni Kallo and Niina Rinta-Opas, also known as Kylmä and Kalma, who first performed at Q-teatteri’s Enchanted Island in 2000.</p><p>The main language of the performance is physical theatre, but in the mixture of clownery and tragedy, there may be a few snippets of different languages, such as French and English, in addition to Finnish. The work deals with profound and universal themes that will touch people from all backgrounds. The characters’ life experiences and emotions provide a space for identifying with them, highlighting the diversity of human experience.</p><p>Duration: 45 minutes<br>Age recommendation: 16+<br>Language: Finnish, French <br>Content warning: The performance includes loud sounds, alcohol, strong emotions, strong odours and humour.</p><p><b>Working Group</b><br>Director: Ewelyne Guillame <br>Performers: Jenni Kallo & Niina Rinta-Opas <br>Text: Alfred Alexandre <br>Music: Harri Kuusijärvi <br>Lights: Michael Creusy & Atte Herd <br>Costume design: Reija Laine</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65437/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65442", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153744, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-14T12:15:06.573191Z", "last_modified_time": "2025-01-14T12:15:06.573217Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759327.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153744/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-14T12:15:06.540735Z", "last_modified_time": "2025-01-14T12:15:06.653696Z", "date_published": null, "start_time": "2025-03-05T13:30:00Z", "end_time": "2025-03-05T14: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, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!", "sv": "Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!", "en": "We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/B33A3EA76134EB84AD59C2E50A13C1FA/Suojelevat_symbolit_-taidepaja", "sv": "http://www.stoa.fi/sv/evenemang/event/B33A3EA76134EB84AD59C2E50A13C1FA/Skyddande_symboler_konstworkshop", "en": "http://www.stoa.fi/en/events/event/B33A3EA76134EB84AD59C2E50A13C1FA/Protective_Symbols_art_workshop" }, "location_extra_info": null, "name": { "fi": "Suojelevat symbolit -taidepaja – Helsinki Biennaali", "sv": "Skyddande symboler – konstworkshop – Helsingforsbiennalen", "en": "Protective Symbols art workshop – The Helsinki Biennial" }, "description": { "fi": "<p>Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!</p><p>Teoskokonaisuus on taidepajoissa tehtyjen osasten summa, joten jokaisen osallistujan panos ja kädenjälki on merkittävä sen syntymisen kannalta.</p><p>Filippiiniläisen taiteilijan Geraldine Javierin ideoima Earth, Water, Air, Fire, Void (Maa, Ilma, Vesi, Tuli, Tyhjiö) käsittelee ihmisen suhdetta luontoon ja sitä, miten voimme elää vastavuoroisessa suhteessa ympäristömme kanssa. Teoksen yhtenä osana ovat suojelevat talismaanit, joita teemme taidepajoissa. Ne ovat eri symboleihin taivutettua rautalankaa, joka on kääritty kierrätyskankaisiin.</p><p>Talismaanien symbolit ammentavat luonnosta ja ne ovat sekä suomalaisesta että filippiiniläisestä kulttuurista poimittuja. Kesäkuussa ne ripustetaan kuuteen vaahteraan Esplanadilla, missä ne muodostavat yhden suuren kokonaisuuden. Talismaanien tehtävänä on suojella puita, joihin ne on ripustettu.<br>Taidepajat ovat ilmaisia ja kaikki materiaalit löytyvät paikan päältä. Tule Stoan aulaan ja anna kättenjälkesi loistaa Helsinki Biennaalin tulevassa taideteoksessa! Taidepaja on avoinna tiistaista torstaihin 4.–6.3. klo 15.30–16.30.</p><p>Helsinki Biennaalia vietetään 8.6.-21.9.2025 ja tapahtumapaikkoina ovat HAM Helsingin taidemuseo, Vallisaari sekä Esplanadi. www.helsinkibiennaali.fi</p>", "sv": "<p>Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!</p><p>Verket som helhet är summan av de delar som görs under konstworkshopparna, och därför är varje deltagares insats och avtryck betydelsefullt för verkets uppkomst.</p><p>Earth, Water, Air, Fire, Void (Jord, Lyft, Vatten, Eld, Tomrum) grundar sig på en idé av den filippinska konstnären Geraldine Javier, och behandlar människans förhållande till naturen och hur vi kan leva interaktivt i förhållande till vår miljö. En del av verket är de skyddande talismaner, som vi gör i workshopparna. De består av ståltråd som har böjts till olika symboler och svepts in i återvinningstyger.</p><p>Talismanernas symboler inhämtar inspiration ur naturen, och har plockats från både den finländska och den filippinska kulturen. I juni hängs de upp i sex lönnar på Esplanaden, där de bildar en enda stor helhet. Talismanernas uppgift är att skydda de träd i vilka de hängts upp.</p><p>Konstworkshopparna är avgiftsfria och allt material finns på plats. Kom till Gamlasgårdens galleri och låt ditt handarbete stråla i det kommande konstverket för Helsingforsbiennalen! Konstworkshoppen är öppen 4–6.3. kl. 15.30–16.30.</p><p>Fritt inträde.</p><p>Helsingforsbiennalen firas 8.6.–21.9.2025 och evenemangsplatserna är HAM Helsingfors konstmuseum, Skanslandet och Esplanaden.</p>", "en": "<p>We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!</p><p>The collection of artwork will be the sum of the pieces made in the workshops, so each participant’s contribution and handprint will be important to creating it.</p><p>Earth, Water, Air, Fire, Void, the work conceived by Filipino artist Geraldine Javier, explores the human relationship with nature and how we can live in a reciprocal relationship with our environment. One part of the work will be the protective talismans that we will make in art workshops. They are made with wire bent into different symbols and wrapped in recycled fabric.</p><p>The symbols of the talismans are drawn from nature and inspired by both Finnish and Filipino culture. In June, they will be hung on six maples on the Esplanade, where they will form one large collection. The talismans are meant to protect the trees on which they are hung.</p><p>The workshops are free of charge, and all materials will be available on-site. Come visit the Kanneltalo gallery, and let your handiwork shine in the upcoming Helsinki Biennial artwork! The art workshop is open 3–6<br>March, from 15:30 to 16:30.</p><p>Free admission.</p><p>The Helsinki Biennial will take place from 8 June to 21 September 2025, and the event venues will be HAM Helsinki Art Museum, Vallisaari and the Esplanade.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65442/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27581, "next": "