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&hide_recurring_children=true&page=176
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=177", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=175" }, "data": [ { "id": "kulke:63066", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "39,50/37,50 €", "sv": "39,50/37,50 €", "en": "39,50/37,50 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/18306078", "sv": "https://www.lippu.fi/event/18306078", "en": "https://www.lippu.fi/event/18306078" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10836, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-14T11:13:14.926501Z", "last_modified_time": "2024-02-14T11:13:14.926518Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744615.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10836/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-14T11:13:14.884777Z", "last_modified_time": "2024-08-29T05:13:17.546026Z", "date_published": null, "start_time": "2024-08-20T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/796B6FF91D9B38AA08D8ED2792047077/Topmost_60_Forever", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/796B6FF91D9B38AA08D8ED2792047077/Topmost_60_Forever", "en": "http://www.savoyteatteri.fi/en/events/event/796B6FF91D9B38AA08D8ED2792047077/Topmost_60_Forever" }, "name": { "fi": "Topmost 60 Forever – Topmost with Special Guests", "sv": "Topmost 60 Forever – Topmost med speciell gästernä", "en": "Topmost 60 Forever – Topmost with Special Guests" }, "provider_contact_info": null, "provider": { "fi": "Lapsbasso Oy", "sv": "Lapsbasso Oy", "en": "Lapsbasso Oy" }, "description": { "fi": "<p>Populaarimusiikin maailmassa ei ole montakaan 60-luvulla aloittanutta yhtyettä, joka vieläkin esiintyy ja levyttää lähes alkuperäisessä kokoonpanossaan.</p><p>Vuonna 1964 helsinkiläisistä koulupojista perustettu Topmost-yhtye toimii vieläkin viiden alkuperäisjäsenen voimin: Gugi Kokljuschkin, Harri Saksala, Eero Lupari, Holle Holopainen ja Kisu Jernström. Kuudes Topmost, Poku Tarkkonen menehtyi vuonna 2007 ja hänen tilalleen tuli vuonna 2004 kosketinsoittaja Tommi Lindell.</p><p>Topmost oli vuosia Suomen suosituin popyhtye. Se teki kuusi singleä ja yhden albumin, kiersi myös Tanskassa ja Ruotsissa sellaisella menestyksellä, että ruotsalainen iltapäivälehti Expressen äityi kehumaan: Topmost on suurin sensaatio sitten Beatlesin!<br>Topmostin suosio perustui tuoreimpien pophittien esittämiseen, puhtaaseen stemmalauluun sekä rhythm and blues- ja soulmusiikin hallitsemiseen. Nuoret soittajat olivat myös tyttöjen mieleen, tätä edesauttoi huoliteltu pukeutuminen ja esiintymisasut ostettiin tietenkin Tukholman sen ajan huippuvaatekaupoista.</p><p>Topmostin 60 Forever juhlakonsertti pidetään Helsingin ytimessä ti 20.8. Savoy-teatterissa. Konsertissa esiintyy Topmostin yllätysvieraina muusikkoystäviä vuosien varrelta.</p><p>Vuosi 2024 on Topmostin juhlavuosi: 60 vuotta musiikintekoa.<br>Kunnianosoitus Suomen legendaarisimmalle ja maailman ehkä pitkäikäisimmälle 60-luvun yhtyeelle!</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua.</p>", "sv": "<p>I populärmusikens värld finns inte många band som grundades på 60-talet, och som fortfarande uppträder och spelar in musik i nästan sin ursprungliga sammansättning.</p><p>Topmost grundades år 1964 av skolpojkar från Helsingfors och är fortfarande verksamt med fem av de ursprungliga medlemmarna: Gugi Kokljuschkin, Harri Saksala, Eero Lupari, Holle Holopainen och Kisu Jernström. Den sjätte Topmost-medlemmen Poku Tarkkonen dog år 2007 och ersattes år 2004 av keyboardisten Tommi Lindell.</p><p>I flera år var Topmost det populäraste popbandet i Finland. Bandet släppte sex singlar och ett album, och turnerade även i Danmark och Sverige med sådan framgång att den svenska kvällstidningen Expressen utropade: Topmost är den största sensationen sedan Beatles!<br>Topmosts popularitet byggde på att framföra de senaste pophittarna, sjunga rent i stämmor och bemästra rhytm and blues och soulmusik. De unga musikernas vårdade klädsel gjorde dem också populära bland flickor. Självklart köptes scenkostymerna i tidens bästa klädbutiker i Stockholm.</p><p>Topmosts jubileumskonsert 60 Forever ordnas i Helsingfors stadskärna ti 20.8. på Savoy-teatern. Konserten omfattar även överraskningsgäster – Topmosts musikervänner från de gångna åren.</p><p>År 2024 är Topmosts jubileumsår: 60 år av musikskapande.<br>En hyllning till Finlands mest legendariska och kanske världens långvarigaste band från 1960-talet!</p><p>Längd ca 2 h, inklusive paus</p><p>Parkett F18 servering av alkoholdrycker. Balkong T, ingen servering av alkoholdrycker.</p>", "en": "<p>Once the most popular popband in Finland, Topmost makes a comeback!</p><p>In the world of popular music, there aren’t many bands that started in the 1960s who are still performing and recording with almost their original line-up.</p><p>Founded in 1964 by a group of schoolboys from Helsinki, Topmost is still active with five original members: Gugi Kokljuschkin, Harri Saksala, Eero Lupari, Holle Holopainen and Kisu Jernström. The sixth member of Topmost, Poku Tarkkonen, passed away in 2007 and was replaced in 2004 by keyboardist Tommi Lindell.</p><p>Topmost was the most popular pop band in Finland for years. They released six singles and one album and also toured Denmark and Sweden with such success that the Swedish tabloid Expressen was quick to praise them: “Topmost is the biggest sensation since the Beatles!”<br>Topmost’s popularity was based on playing the latest pop hits, pure harmonies, and on their proficiency in rhythm and blues and soul music. The young musicians were also popular with the girls, thanks to their stylish attire, and their stage outfits were naturally bought from the top clothing stores in Stockholm at the time.</p><p>Topmost’s 60 Forever celebration concert will be held in the heart of Helsinki on Tue, 20 August , at the Savoy Theatre. The concert will feature surprise guest appearances by Topmost’s musician friends from over the years.</p><p>2024 is Topmost’s anniversary year, celebrating 60 years of making music.<br>A tribute to Finland’s most legendary and perhaps the world’s longest-lived band from the 1960s!</p><p>Duration: approx. 2 h, including an intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. The balcony is a non-licensed area without an age limit.</p>" }, "short_description": { "fi": "Populaarimusiikin maailmassa ei ole montakaan 60-luvulla aloittanutta yhtyettä, joka vieläkin esiintyy ja levyttää lähes alkuperäisessä kokoonpanossaan.", "sv": "I populärmusikens värld finns inte många band som grundades på 60-talet, och som fortfarande uppträder och spelar in musik i nästan sin ursprungliga sammansättning.", "en": "Once the most popular popband in Finland, Topmost makes a comeback!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63066/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63859", "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": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151244, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-21T08:13:32.103266Z", "last_modified_time": "2024-05-21T08:13:32.103282Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744925.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151244/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-21T08:13:32.064811Z", "last_modified_time": "2024-08-29T05:13:17.488340Z", "date_published": null, "start_time": "2024-08-20T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7F7BB3EE04F138AC3449ED137B07C62B/Rebekka_Holi", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7F7BB3EE04F138AC3449ED137B07C62B/Rebekka_Holi", "en": "http://www.malmitalo.fi/en/events/event/7F7BB3EE04F138AC3449ED137B07C62B/Rebekka_Holi" }, "name": { "fi": "Rebekka Holi – Malmin tapahtumakesä", "sv": "Rebekka Holi – Malms evenemangssommar", "en": "Rebekka Holi – Malmi Summer of Events" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Indiepoppia ja rokkia oivaltavasti sekoittava Rebekka Holi tuo Malmin tapahtumakesään kaunista jammailua. Hurmaavat sävelet ja sanat puhkeavat Rebekka Holin uusimman albumin mukaisesti Kukkaan!</p><p>Rebekka Holi on Helsingistä kotoisin oleva artisti ja lauluntekijä. Musiikkia läpi elämänsä säveltänyt artisti on suorasukainen sanoittaja, joka kertoo kappaleissaan oman elämänsä kokemuksista ja koukeroista. Syvällä oman taiteensa parissa viihtyvä Rebekka Holi on kokonaisvaltainen artisti, joka luo omaa taiteellista maailmansa pala kerrallaan. Kappaleet ovat Holin sanoittamia sekä säveltämiä. Artisti on myös itse tehnyt kansitaiteensa.</p><p>Rebekka Holi julkaisi helmikuussa 2024 uuden Kukkaan-albumin. Holin soittama akustinen kitara nivoo albumin tunnelmallisesti latautuneita kappaleita kauniisti yhteen. Tuokiokuvamaisesta albumista välittyy kuuntelijoille selkeä viesti: ympäristön tarkkaileminen ja kohtaamiset toisten olentojen kanssa kasvattavat ja auttavat kukkaan puhkeamisessa.</p>", "sv": "<p>Rebekka Holi som på ett undersökande sätt kombinerar indiepop och rock hämtar vackert jammande till Malms evenemangssommar. De förtjusande tonerna och orden blommar upp på samma sätt som Rebekka Holis nyaste album Kukkaan!</p><p>Rebekka Holi är en artist och låtskrivare från Helsingfors. Artisten som har komponerat musik i hela sitt liv är en rättfram textförfattare, som i sina låtar berättar om upplevelserna och kringelikrokarna i hennes eget liv. Den helhetsbetonade artisten Rebekka Holi trivs djupt inne i sin egen konst och skapar sin konstnärliga värld en bit i taget. Holi har skrivit texten till och komponerat låtarna. Artisten har även själv gjort konsten på albumets omslag.</p>", "en": "<p>Rebekka Holi creates an insightful combination of indie pop and rock, bringing a beautiful jam session to the Malmi Summer of Events. Her charming tunes and lyrics can quite literally make the flowers bloom!</p><p>Rebekka Holi is a singer-songwriter from Helsinki. Having made music all her life, she is an outspoken lyricist who uses her own experiences, twists and turns in her songs. Rebekka Holi enjoys her own art deeply and is a complete artist who creates her own artistic world, one piece at a time. Holi writes and composes all of her songs. She also draws her own album art.</p>" }, "short_description": { "fi": "Indiepoppia ja rokkia oivaltavasti sekoittava Rebekka Holi tuo Malmin tapahtumakesään kaunista jammailua. Hurmaavat sävelet ja sanat puhkeavat Rebekka Holin uusimman albumin mukaisesti Kukkaan!", "sv": "Rebekka Holi som på ett undersökande sätt kombinerar indiepop och rock hämtar vackert jammande till Malms evenemangssommar. De förtjusande tonerna och orden blommar upp på samma sätt som Rebekka Holis nyaste album Kukkaan!", "en": "Rebekka Holi creates an insightful combination of indie pop and rock, bringing a beautiful jam session to the Malmi Summer of Events. Her charming tunes and lyrics can quite literally make the flowers bloom!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63859/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64128", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151533, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T10:13:03.453445Z", "last_modified_time": "2024-06-26T10:13:03.453461Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746692.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151533/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T10:13:03.433311Z", "last_modified_time": "2024-08-29T05:13:17.431192Z", "date_published": null, "start_time": "2024-08-20T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/54501EDBA40D16D5DA0261484F336EDF/Aventur_The_Best_of_PrimeTime-show", "sv": "http://www.espanlava.fi/sv/evenemang/event/54501EDBA40D16D5DA0261484F336EDF/Aventur_The_Best_of_PrimeTime-show", "en": "http://www.espanlava.fi/en/events/event/54501EDBA40D16D5DA0261484F336EDF/Aventur_The_Best_of_PrimeTime-show" }, "name": { "fi": "Aventur: The Best of PrimeTime-show – Open Stage", "sv": "Aventur: The Best of PrimeTime-show – Open Stage", "en": "Aventur: The Best of PrimeTime-show – Open Stage" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Showkuoro Aventur vuoroin mykisti ja vuoroin villiinnytti yleisön legendaarisessa PrimeTime-showssa toukokuussa. Espan Open Stagella kuoro esittää parhaat palat tästä vauhdikkaasta tuotannosta.</p><p>Tarjolla on a cappella -laulua jykevällä biitillä ja taatulla Aventura-asenteella!</p>", "sv": "<p>Den Helsingforsbaserade showkören Aventur trollband publiken under den legendariska PrimeTime-showen på Aleksandersteatern in maj. På Espa Open Stage framför kören ett urval av de bästa låtarna från showen.</p><p>Välkommen att njuta av a cappella sång med tungt beat och unik Aventurattityd!</p>", "en": "<p>The crowd went both silent and wild during the legendary PrimeTime-show by the showchoir Aventur in May 2024. In the Espa Open Stage concert the choir performs the highlights of this incredible production.</p><p>Welcome to enjoy a cappella singing with a kick-ass beat and the unique attitude of Aventur!</p>" }, "short_description": { "fi": "Showkuoro Aventur vuoroin mykisti ja vuoroin villiinnytti yleisön legendaarisessa PrimeTime-showssa toukokuussa. Espan Open Stagella kuoro esittää parhaat palat tästä vauhdikkaasta tuotannosta.", "sv": "Den Helsingforsbaserade showkören Aventur trollband publiken under den legendariska PrimeTime-showen på Aleksandersteatern in maj. På Espa Open Stage framför kören ett urval av de bästa låtarna från showen.", "en": "The crowd went both silent and wild during the legendary PrimeTime-show by the showchoir Aventur in May 2024. In the Espa Open Stage concert the choir performs the highlights of this incredible production." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64128/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64127", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151532, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T10:13:03.361600Z", "last_modified_time": "2024-06-26T10:13:03.361614Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746691.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151532/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T10:13:03.346859Z", "last_modified_time": "2024-08-29T05:13:17.382248Z", "date_published": null, "start_time": "2024-08-20T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/12E213815DE50DE3C94EBBF2AAFE65B5/Hi-Five_Quintet", "sv": "http://www.espanlava.fi/sv/evenemang/event/12E213815DE50DE3C94EBBF2AAFE65B5/Hi-Five_Quintet", "en": "http://www.espanlava.fi/en/events/event/12E213815DE50DE3C94EBBF2AAFE65B5/Hi-Five_Quintet" }, "name": { "fi": "Hi-Five Quintet – Open Stage", "sv": "Hi-Five Quintet – Open Stage", "en": "Hi-Five Quintet – Open Stage" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Helsinkiläinen Hi-Five Quintet on sykähdyttävä soul & blues -bändi, joka valloittaa yleisönsä sielukkailla melodioillaan ja vastustamattomalla groovella.</p><p>Vuodesta 2014 lähtien viisihenkinen kokoonpano on yhdistänyt soul & bluesin moderniin tyyliin luoden ohjelmiston täynnä ikivihreitä hittejä ja vauhdikkaita rhythm & blues kappaleita.</p><p>Hi-Five Quintet edusti Suomea kesäkuussa 2023 European Blues Challenge -kilpailussa Puolan Chorzówissa, ja heidän upea esityksensä vakuutti niin tuomariston kuin yleisönkin. Bändin laulajan Saara Koiviston voimakas ja tunteikas ääni koskettaa kuulijoita syvältä, ja hänen tulkintansa herättävät unohtumattomia tuntemuksia, jotka jäävät mieleen.</p><p>Hi-Five Quintet on julkaissut kaksi vaikuttavaa levyä, ja tuorein, \"The Land Of Make Believe,\" näki päivänvalon toukokuussa 2023. Levy on täynnä tunteikasta soulia ja bluesia, ja se on saanut kiitosta kriitikoilta laajasti.</p><p>Hi-Five Quintet tuo mukanaan sielukkaan ja soul bluesin täyteisen tunnelman, joka ei varmasti jätä yleisöä kylmäksi.</p>", "sv": "<p>Helsingforsbaserade Hi-Five Quintet är ett spännande soul & blues band som fängslar sin publik med sina själfulla melodier och oemotståndliga groove.</p><p>Sedan 2014, en line-up på fem personer har kombinerat själfull soulblues med en modern stil och skapat en repertoar full av vintergröna hits och snabba rhythm & blues låtar.</p><p>Hi-Five Quintet representerade Finland i juni 2023 vid European Blues Challenge i Chorzów, Polen, och deras fantastiska framträdande övertygade både juryn och publiken. Bandets sångerska Saara Koivistos starka och känslomässiga röst berör lyssnarna djupt, och hennes tolkningar väcker oförglömliga känslor som finns kvar i minnet.</p><p>Hi-Five Quintet har släppt två imponerande album, med det senaste, \"The Land Of Make Believe\", som kommer att se dagens ljus i maj 2023. Fullt av själfull soul och blues har albumet fått stor kritik.</p><p>Hi-Five Quintet för med sig en själfull blues stämning som absolut inte kommer att lämna publiken kallt.</p>", "en": "<p>Helsinki-based Hi-Five Quintet is an exciting soul & blues band that captivates the audience with soulful melodies and irresistible groove.</p><p>Since 2014, the five-member ensemble has combined soulful soul & blues with a modern style, creating a repertoire full of evergreen hits and fast-paced rhythm & blues songs.</p><p>Hi-Five Quintet represented Finland in June 2023 at the European Blues Challenge in Chorzów, Poland, and their wonderful performance convinced both the jury and the audience. The strong and emotional voice of the band's singer Saara Koivisto touches the listeners deeply, and her interpretations evoke unforgettable feelings that remain in the memory.</p><p>Hi-Five Quintet has released two impressive albums, with the latest, \"The Land Of Make Believe,\" set to see the light of day in May 2023. Full of soulful soul and blues, the album has received widespread critical acclaim.</p><p>Hi-Five Quintet brings a soulful blues atmosphere that will certainly not leave the audience cold.</p>" }, "short_description": { "fi": "Helsinkiläinen Hi-Five Quintet on sykähdyttävä soul & blues -bändi, joka valloittaa yleisönsä sielukkailla melodioillaan ja vastustamattomalla groovella.", "sv": "Helsingforsbaserade Hi-Five Quintet är ett spännande soul & blues band som fängslar sin publik med sina själfulla melodier och oemotståndliga groove.", "en": "Helsinki-based Hi-Five Quintet is an exciting soul & blues band that captivates the audience with soulful melodies and irresistible groove." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64127/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63384", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150624, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-16T15:13:07.547540Z", "last_modified_time": "2024-04-16T15:13:07.547559Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745541.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150624/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-16T15:13:07.532926Z", "last_modified_time": "2024-08-29T05:13:17.280283Z", "date_published": null, "start_time": "2024-08-20T07:40:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/11D4A4A5F4DC2E2DED60FFDDE803BA1D/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/11D4A4A5F4DC2E2DED60FFDDE803BA1D/Musikstund_pa_sommaren", "en": "http://www.annantalo.fi/en/events/event/11D4A4A5F4DC2E2DED60FFDDE803BA1D/Music_playschool_in_summer_" }, "name": { "fi": "Kesämuskari – Summer Music Play School", "sv": "Musikstund på sommaren", "en": "Music playschool in summer" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin.</p><p>Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>", "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk.</p><p>Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>", "en": "<p>Annantalo Art Centre’s music playschool in summer invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>" }, "short_description": { "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.", "en": "Annantalo Art Centre’s music playschool in summer invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63384/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63383", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150623, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-16T15:13:07.474172Z", "last_modified_time": "2024-04-16T15:13:07.474184Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745540.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150623/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-16T15:13:07.462119Z", "last_modified_time": "2024-08-29T05:13:17.222840Z", "date_published": null, "start_time": "2024-08-20T06:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/17190EAF774416FF643867C65629DC48/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/17190EAF774416FF643867C65629DC48/Musikstund_pa_sommaren", "en": "http://www.annantalo.fi/en/events/event/17190EAF774416FF643867C65629DC48/Music_playschool_in_summer_" }, "name": { "fi": "Kesämuskari – Summer Music Play School", "sv": "Musikstund på sommaren", "en": "Music playschool in summer" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin.</p><p>Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>", "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk.</p><p>Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>", "en": "<p>Annantalo Art Centre’s music playschool in summer invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>" }, "short_description": { "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.", "en": "Annantalo Art Centre’s music playschool in summer invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63383/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64126", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151531, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T10:13:03.145378Z", "last_modified_time": "2024-06-26T10:13:03.145392Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755876.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151531/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T10:13:03.132877Z", "last_modified_time": "2024-08-29T05:13:17.171346Z", "date_published": null, "start_time": "2024-08-19T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/97D5281C2E4788853A6C3641C41F7989/Sahaj_Unlimited", "sv": "http://www.espanlava.fi/sv/evenemang/event/97D5281C2E4788853A6C3641C41F7989/Sahaj_Unlimited", "en": "http://www.espanlava.fi/en/events/event/97D5281C2E4788853A6C3641C41F7989/Sahaj_Unlimited" }, "name": { "fi": "Sahaj Unlimited", "sv": "Sahaj Unlimited", "en": "Sahaj Unlimited" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Sahaj Unlimited on intialaisella vaikutteella soivaa folk-popmusiikkia, jonka juuret ovat henkisessä bhajan-genren perinteessä.</p><p>Yhtyeen muusikot ovat suomalaisia musiikin ammattilaisia, mutta Espan lavalle he saavat mukaansa itävallanintialaisia muusikoita, laulajan sekä tabla-rumpujen soittajan. Ohjelmassa on bhajan-lauluja, joita Sahaj Unlimited on levyttänyt 2000-luvun alkupuolella. Tämän lisäksi kuullaan semiklassista intialaista laulua, intialaisilla soittimilla säestettynä.</p><p>Yhtyeen esittämä musiikki liittyy myös löyhästi meditaatioon, ja Espan lavan sivuun pystytetään meditointipiste, jossa puiston ihmiset ja ohikulkijat voivat kokeilla Sahaja Yoga -meditointia ilmaiseksi.</p><p>Tervetuloa nauttimaan intialaisen musiikin sointiväreistä ja hyvistä meditointiviboista!</p>", "sv": "<p>Sahaj Unlimited är en indisk influerad folk-popmusik grupp, som har sina rötter i bhajan-genrens andliga tradition.</p><p>På Esplanadens scen den 19 Augusti kommer vi att få höra bandets finska musiker samt ett par österrikiska indiska musiker. Programmet börjar kl 17:00 och innehåller bhajan-låtar inspelade av bandet i början av 2000-talet samt indisk sång, ackompanjerad av indiska instrument.</p><p>Musiken som bandet framför är också delvis kopplat till meditation, som vi även kan få prova intill Esplanadens scen. Sahaja Yoga-meditation är gratis och evenemanget är kostnadsfritt och öppet för alla.</p><p>Välkomna och njuta av toner av indisk musik och goda vibbar!</p>", "en": "<p>Sahaj Unlimited is Indian-influenced folk-pop music that has its roots in the spiritual tradition of the bhajan-genre.</p><p>The band's musicians are Finnish music professionals, but this Espa Stage program includes also Austrian Indian musicians, a singer and a player of tabla drums. The program includes bhajan songs recorded by Sahaj Unlimited in the early 2000s. In addition to that, there is semi-classical Indian singing, accompanied by Indian instruments.</p><p>The music performed by the band is also loosely related to meditation, and there shall be a meditation stand on the side of the stage, where people in the park can try Sahaja Yoga meditation for free.</p><p>Welcome to enjoy the tones of Indian music and good vibes of meditation!</p>" }, "short_description": { "fi": "Sahaj Unlimited on intialaisella vaikutteella soivaa folk-popmusiikkia, jonka juuret ovat henkisessä bhajan-genren perinteessä.", "sv": "Sahaj Unlimited är en indisk influerad folk-popmusik grupp, som har sina rötter i bhajan-genrens andliga tradition.", "en": "Sahaj Unlimited is Indian-influenced folk-pop music that has its roots in the spiritual tradition of the bhajan-genre." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64126/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64125", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151530, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T10:13:03.059891Z", "last_modified_time": "2024-06-26T10:13:03.059935Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755875.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151530/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T10:13:03.048060Z", "last_modified_time": "2024-08-29T05:13:17.118437Z", "date_published": null, "start_time": "2024-08-19T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/E276813DC9C858406DFC5DACA4D1F371/Ed_Littlefield", "sv": "http://www.espanlava.fi/sv/evenemang/event/E276813DC9C858406DFC5DACA4D1F371/Ed_Littlefield", "en": "http://www.espanlava.fi/en/events/event/E276813DC9C858406DFC5DACA4D1F371/Ed_Littlefield" }, "name": { "fi": "Ed Littlefield", "sv": "Ed Littlefield", "en": "Ed Littlefield" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Ed on freelance-perkussionisti, opettaja ja säveltäjä, joka asuu Seattlessa, Washingtonin osavaltiossa.</p><p>Hän on Lingít Sitkasta, Alaskasta, ja on julkaissut kolme albumia, joissa esiintyy perinteisiä alkuperäiskansojen melodioita, jotka hän on myös sovittanut jazz-tyyliin Native Jazz Quartet -yhtyeen kanssa.</p><p>Tämä kvartetti edusti myös Yhdysvaltoja Etelä-Amerikassa \"Jazz Ambassadors\" -ohjelman kautta American Music Abroad -ohjelman puitteissa. Elokuva-alalla hän on säveltänyt kappaleen Betty Whiten hahmolle vuoden 2009 Disney-elokuvaan The Proposal ja soitti lyömäsoittimia sekä konsultoi alkuperäismusiikin osalta vuoden 2022 dokumenttielokuvassa Exposing Muybridge.</p><p>Tällä hetkellä hän työskentelee kolmivuotisen projektin parissa luodakseen ensimmäisen Lingít-oopperan. Tämä projekti yhdistää perinteisiä ja nykyaikaisia Lingít-melodioita länsimaiseen oopperagenreen ja siihen kuuluu myös täysin alkuperäiskansoista koostuva näyttelijäryhmä.</p><p>Ed on myös aktiivinen opettaja ympäri maata, ohjaten taiteilijaresidenssejä opiskelijoille ja opettajille auttaen heitä oppimaan lisää Lingít-kulttuurista ja musiikista sekä perinteisistä tiedonhankintatavoista.</p><p>Konsertti toteutetaan yhteistyössä Suomen Yhdysvaltain suurlähetystön kanssa.</p>", "sv": "<p>Ed är en frilansande perkussionist, lärare och kompositör som bor i Seattle i delstaten Washington. Han är hemma från Lingít Sitka i Alaska, och har släppt tre album med ursprungsbefolkningens traditionella melodier, som han också har arrangerat för jazzstil tillsammans med bandet Native Jazz Quartet.</p><p>Denna kvartett representerade också USA i Sydamerika via programmet “Jazz Ambassadors” inom ramen för programmet American Music Abroad. Inom filmindustrin har han komponerat en låt för karaktären Betty White i Disney-filmen The Proposal från 2009, och spelat slagverk och konsulterat om ursprungsmusik i dokumentären Exposing Muybridge från 2022.</p><p>För närvarande arbetar han med ett treårigt projekt för att skapa den första Lingít-operan. Detta projekt kombinerar traditionella och moderna Lingít-melodier med den västerländska operagenren, och inkluderar även en skådespelargrupp som består uteslutande av ursprungsbefolkningar.</p><p>Ed är också en aktiv lärare på olika håll i landet, och vägleder konstnärsresidens för studerande och lärare för att lära dem mer om Lingít-kultur och musik samt traditionella sätt att förvärva kunskap.</p><p>Konserten genomförs i samarbete med USA:s ambassad i Finland.</p>", "en": "<p>Ed is a freelance percussionist, educator and composer based out of Seattle, WA. He is Lingít from Sitka, Alaska and has released three albums featuring traditional native melodies, which he also arranged into the jazz idiom with the Native Jazz Quartet.</p><p>This quartet also represented the United States in South America as “Jazz Ambassadors” through the American Music Abroad program. For film he composed a song for the 2009 Disney movie The Proposal for Betty White’s character and played the percussion score and consulted on indigenous music for the 2022 documentary Exposing Muybridge.</p><p>Currently he is working on a three-year project to create the first ever Lingít opera. This project will combine traditional contemporary Lingít melodies inside the western opera genre and will also include an all-indigenous cast.</p><p>Ed is also an active educator around the country facilitating artist residencies for students and teachers to help them learn more about Lingít culture and music and traditional ways of knowing.<br>The concert is established in collaboration with the U.S. Embassy in Finland.</p>" }, "short_description": { "fi": "Ed on freelance-perkussionisti, opettaja ja säveltäjä, joka asuu Seattlessa, Washingtonin osavaltiossa.", "sv": "Ed är en frilansande perkussionist, lärare och kompositör som bor i Seattle i delstaten Washington. Han är hemma från Lingít Sitka i Alaska, och har släppt tre album med ursprungsbefolkningens traditionella melodier, som han också har arrangerat för jazzstil tillsammans med bandet Native Jazz Quartet.", "en": "Ed is a freelance percussionist, educator and composer based out of Seattle, WA. He is Lingít from Sitka, Alaska and has released three albums featuring traditional native melodies, which he also arranged into the jazz idiom with the Native Jazz Quartet." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64125/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63721", "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: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "15 € / 10 € + support ticket 25 €", "en": "15 € / 10 € + support ticket 25 €" }, "description": null, "info_url": { "fi": "https://www.tiketti.fi/outsider-art-festival-2024-kulttuurikeskus-caisa-helsinki-tickets/100066", "en": "https://www.tiketti.fi/outsider-art-festival-2024-kulttuurikeskus-caisa-helsinki-tickets/100066" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151127, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-14T14:12:55.716063Z", "last_modified_time": "2024-05-14T14:12:55.716080Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752249.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151127/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-14T14:12:55.696477Z", "last_modified_time": "2024-08-29T05:13:17.063282Z", "date_published": null, "start_time": "2024-08-17T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/BE9180C7F21AC59B7167B2091D96BC61/Stella_Massa_Ondi", "en": "http://www.caisa.fi/en/events/event/BE9180C7F21AC59B7167B2091D96BC61/Stella_Massa_Ondi" }, "name": { "fi": "Stella Massa & Ondi – OAF X Caisa", "en": "Stella Massa & Ondi – OAF X Caisa" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>OAF:n Musiikillinen Mikrokosmos on lyyrinen, omaääninen, koskettava ja kantaaottava. Lauantaina lavan valtaa kaksi nousevaa artistia: Stella Massa ja Ondi.</p><p><b>Stella Massa</b> on suomalais-karjalainen näyttelijä, performanssitaiteilija, musiikintekijä ja aktivisti. Stella Massa esittää tekemänsä Kukkilintu-teoksen, joka yhdistelee musiikkia sekä video- ja esitystaidetta. Teoksen kappaleet käsittelevät ylisukupolvisuutta, ei-binäärisyyttä, luontosuhdetta sekä karjalaisiin juuriin tutustumista.</p><p><b>Ondi</b> on Porissa asuva kenialainen tarinankertoja, joka itse kuvaa musiikkiaan Nairobi-folkiksi. Tämän vuoden festivaaleille Ondi tuo soolo-esityksen, jossa hänen ainutlaatuisia tarinoitaan kuullaan laulun, ukulelen ja kitaran kiehtovana kokonaisuutena.</p><p><b>Illan aikataulu</b><br>klo 19 Stella Massa<br>klo 20 Ondi</p><p>Tapahtuman kesto noin kaksi tuntia.</p><p>Huomaathan, että OAF-liput myy Tiketti, eikä niitä voi ostaa Caisan lipunmyynnistä!</p><p>Lue lisää festivaalista <u>https://outsiderart.fi/</u></p>", "en": "<p>The OAF Musical Microcosm is lyrical, original, touching and topical. On Saturday, two up-and-coming artists will take the stage: Stella Massa and Ondi.</p><p><b>Stella Massa</b> is a Finnish-Carelian actress, performance artist, musician and activist. Stella Massa will perform her work Kukkilintu, which combines music, video and performance art. The piece deal with transgenerationalism, being non-binary, relationship with nature and the exploration of Karelian roots.</p><p><b>Ondi</b> is a Kenyan storyteller living in Pori, who describes his music as Nairobi-folk. For this year’s festival, Ondi will bring a solo performance, where her unique stories will be heard as a fascinating ensemble of song, ukulele and guitar.</p><p>Doors 18.30, Stella Massa 19.00, Ondi 20.00</p><p>Tickets 15 € / 10 € + support ticket 25 €, tiketti.fi<br>Please note that OAF tickets are not sold at the Caisa ticket counter.</p><p>Read more about the festival and the artists <u>https://outsiderart.fi/en/outsider-art-finland/</u></p>" }, "short_description": { "fi": "OAF:n Musiikillinen Mikrokosmos on lyyrinen, omaääninen, koskettava ja kantaaottava. Lauantaina lavan valtaa kaksi nousevaa artistia: Stella Massa ja Ondi.", "en": "The OAF Musical Microcosm is lyrical, original, touching and topical. On Saturday, two up-and-coming artists will take the stage: Stella Massa and Ondi." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63721/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63852", "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": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151182, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-20T11:13:00.136717Z", "last_modified_time": "2024-05-20T11:13:00.136737Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749011.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151182/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-20T11:13:00.119587Z", "last_modified_time": "2024-08-29T05:13:16.914263Z", "date_published": null, "start_time": "2024-08-16T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/79E0771D970E6BF988A5AD44222EA412/Pimea_Hedelma", "sv": "http://www.malmitalo.fi/sv/evenemang/event/79E0771D970E6BF988A5AD44222EA412/Pimea_Hedelma", "en": "http://www.malmitalo.fi/en/events/event/79E0771D970E6BF988A5AD44222EA412/Pimea_Hedelma" }, "name": { "fi": "Pimeä Hedelmä – Malmin tapahtumakesä", "sv": "Pimeä Hedelmä – Malms evenemangssommar", "en": "Pimeä Hedelmä – Malmi Summer of Events" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Modernin hiphop-estetiikan ja bassovoittoisen grimen ja trapin sekä memphisrapin rajapinnassa pomppiva Pimeä Hedelmä hurmaa Malmin tapahtumakesässä!</p><p><b>HUOM! Pimeä Hedelmä esiintyy vasta kello 19, vaikka aiemmin aikatauluissa luki ajankohtana 18.30. Olemme pahoillamme muutoksesta.</b></p><p>PIMEÄ HEDELMÄ on Pirkanmaalta lähtöisin oleva, vahvasta livepresenssistään tunnettu UG-suomirap -yhtye. Bändin räppärit Kaisa Cleva ja Vane Vane käsittelevät lyriikoissaan todellisuutta ironisen toteavaan ja humoristiseen sävyyn, siinä missä tuottaja Liki varmistaa, että Pimeä Hedelmä ei laahaa hetkeäkään, vaan pomppii joka tilanteessa. Biitit ammentavat modernin hiphop-estetiikan ja bassovoittoisen grimen ja memphisrapin rajapinnoilta.</p>", "sv": "<p>Pimeä Hedelmä som studsar i gränssnittet mellan hiphop-estetik och grime och trap med tung bas samt memphisrap förtjusar i Malms evenemangssommar!</p><p>PIMEÄ HEDELMÄ är ett UG-suomirapband från Birkaland som är känt för sina starka framträdanden. I sin lyrik behandlar bandets rappare Kaisa Cleva och Vane Vane verkligheten i en ironiskt konstaterande och humoristisk ton, och producenten Liki ser till att Pimeä Hedelmä inte släpar efter en enda stund, utan studsar hela tiden.</p>", "en": "<p>Pimeä Hedelmä, who exist in the gap between modern hip-hop aesthetics, bassy grime and trap, and Memphis rap will charm your socks off at Malmi Summer of Events!</p><p>PIMEÄ HEDELMÄ are an underground Finnish rap group from Pirkanmaa, who are known for their powerful performances. The rappers, Kaisa Cleva and Vane Vane use their lyrics to talk about reality in an ironic and humorous way, while producer Liki makes sure that Pimeä Hedelmä never feels like its dragging its feet, remaining bouncy in every situation.</p>" }, "short_description": { "fi": "Modernin hiphop-estetiikan ja bassovoittoisen grimen ja trapin sekä memphisrapin rajapinnassa pomppiva Pimeä Hedelmä hurmaa Malmin tapahtumakesässä!", "sv": "Pimeä Hedelmä som studsar i gränssnittet mellan hiphop-estetik och grime och trap med tung bas samt memphisrap förtjusar i Malms evenemangssommar!", "en": "Pimeä Hedelmä, who exist in the gap between modern hip-hop aesthetics, bassy grime and trap, and Memphis rap will charm your socks off at Malmi Summer of Events!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63852/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64124", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151529, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T10:13:02.855677Z", "last_modified_time": "2024-06-26T10:13:02.855693Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746390.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151529/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T10:13:02.832587Z", "last_modified_time": "2024-08-29T05:13:16.865601Z", "date_published": null, "start_time": "2024-08-16T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/106C0505F561E6812E11B4FB1971D6DE/Metsakyla_-_Maensivu_-_Peri", "sv": "http://www.espanlava.fi/sv/evenemang/event/106C0505F561E6812E11B4FB1971D6DE/Metsakyla_-_Maensivu_-_Peri", "en": "http://www.espanlava.fi/en/events/event/106C0505F561E6812E11B4FB1971D6DE/Metsakyla_-_Maensivu_-_Peri" }, "name": { "fi": "Metsäkylä - Mäensivu - Peri", "sv": "Metsäkylä - Mäensivu - Peri", "en": "Metsäkylä - Mäensivu - Peri" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kitaristi Jonas Metsäkylä tunnetaan uuden sukupolven nousevana muusikkona, jonka taituruutta on ylistänyt muun muassa jazzlegenda, basisti Chuck Israels.</p><p>Basisti Kaisa Mäensivu Savoy JAZZfestin taiteellinen johtaja ja Manhattan School of Musicissa opiskellut, kansainvälistä uraa luova kontrabasisti, jonka soittotaito on kovassa kysynnässä kotimaassa ja maailmalla. Yhtyeen täydentää amerikkalainen rumpali Joe Peri, joka on levyttänyt muun muassa Lady Gagan ja Tony Bennettin levyllä 'Love for Sale'.</p><p>Keikalla kuullaan tyylikkäästi svengaavia sävellyksiä Metsäkylän, Perin ja Mäensivun kynistä sekä kekseliäitä, retrosoundin omaavalle kitaratriolle sopivia sovituksia jazzklassikoista.</p>", "sv": "<p>Gitarristen Jonas Metsäkylä är känd som en stigande stjärna inom den nya generationen av musiker. Hans skicklighet har bland annat hyllats av jazzlegenden och basisten Chuck Israels.</p><p>Basisten Kaisa Mäensivu är konstnärlig ledare för Savoy JAZZfest och har studerat vid Manhattan School of Music. Hennes skicklighet på kontrabas har gett internationell framgång, och efterfrågan på hennes spelande är stor både i hemlandet och utomlands. Bandet kompletteras av den amerikanske trummisen Joe Peri, som bland annat har spelat in på Lady Gagas och Tony Bennetts album “Love for Sale”.</p><p>På konserten får vi höra elegant svängande kompositioner av Metsäkylä, Peri och Mäensivu samt uppfinningsrika arrangemang av jazzklassiker som lämpar sig för gitarrtrion med retrosound.</p>", "en": "<p>Guitarist Jonas Metsäkylä is known as a rising musician of the new generation, whose skill has received praise from legendary jazz bassist Chuck Israels, among others.</p><p>Double bassist Kaisa Mäensivu, Artistic Director of Savoy JAZZfest and a Manhattan School of Music graduate, has created an international career with playing skills that are in high demand in Finland and abroad. The band is complemented by American drummer Joe Peri, who has played, among others, on Lady Gaga and Tony Bennett's album 'Love for Sale'.</p><p>The gig will feature elegant swing compositions by Metsäkylä, Peri and Mäensivu, as well as inventive retro-tinged arrangements of jazz classics for a guitar trio.</p>" }, "short_description": { "fi": "Kitaristi Jonas Metsäkylä tunnetaan uuden sukupolven nousevana muusikkona, jonka taituruutta on ylistänyt muun muassa jazzlegenda, basisti Chuck Israels.", "sv": "Gitarristen Jonas Metsäkylä är känd som en stigande stjärna inom den nya generationen av musiker. Hans skicklighet har bland annat hyllats av jazzlegenden och basisten Chuck Israels.", "en": "Guitarist Jonas Metsäkylä is known as a rising musician of the new generation, whose skill has received praise from legendary jazz bassist Chuck Israels, among others." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64124/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63851", "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": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151181, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-20T11:13:00.009261Z", "last_modified_time": "2024-05-20T11:13:00.009280Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744918.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151181/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-20T11:12:59.975175Z", "last_modified_time": "2024-08-29T05:13:16.812282Z", "date_published": null, "start_time": "2024-08-16T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E68F97AD5D9ABA8E8A5EF94A744D1A37/Kriso", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E68F97AD5D9ABA8E8A5EF94A744D1A37/Kriso", "en": "http://www.malmitalo.fi/en/events/event/E68F97AD5D9ABA8E8A5EF94A744D1A37/Kriso_" }, "name": { "fi": "Kriso – Malmin tapahtumakesä", "sv": "Kriso – Malms evenemangssommar", "en": "Kriso – Malmi Summer of Events" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Jyväskyläläisen suomirap-kulttuurin tienraivaaja, KPC-kollektiivin taustamuskelina ja kasvona vaikuttava Kriso tunnetaan kentällään erityisesti omatoimisesta ja kokonaisvaltaisesta lähestymisestään tekemiseensä ja puheräppityylin suvereenina ykkösnimenä.</p><p>Artistin kyky sanoittaa oivaltavasti itse tuotettujen äänimaisemien päälle, sekä kuvittaa ne videoiden muotoon, vakuuttaa kuulijansa kerta toisensa jälkeen. Kriso on tuottanut myös laajalti musiikkia suomirapin keskuudessa. Krison tuotantoa kuultiin esimerkiksi arvostetun Teosto-palkinnon saaneella Eevil Stöön ”Marsipan Wave” -albumilla.</p><p>Krison materiaalista tekee poikkeavan artistin rento elämänfilosofia: humoristisella, mutta laadukkaalla otteella musiikkia työstävä artisti kuvailee itseään seuraavasti:<br>“Oon työskennellyt muun muassa radiossa, levykaupassa, julkisella sektorilla, musiikkialalla sekä vuosia Postin lajittelukeskuksessa.\u2028 Rakastan uunissa valmistuvaa ruokaa, Nerf-pyssyjä sekä kevättä.”</p><p>Kriso edustaa paitsi musiikillista lahjakkuutta myös kokonaisvaltaista omistautumista rapmusiikille ja siihen liittyvän historian yksityiskohtien spekuloimista. Aren ja Krison JKL Funk Days-tapahtuman ympärille on kasvanut radio-ohjelma, kulttimaineen saavuttanut oheistuotesarja sekä ajanhampaan purentaa kestävää räppimusaa.</p><p>Kriso keikkailee tällä hetkellä pääsääntöisesti duona Aren kanssa. Suomirappiin korvaamattomasti vaikuttaneelta kaksikolta voidaan odottaa viihdyttävä ja ainutlaatuinen keikkakokemus takuuvarmalla suorittamisella.</p>" }, "short_description": { "fi": "Jyväskyläläisen suomirap-kulttuurin tienraivaaja, KPC-kollektiivin taustamuskelina ja kasvona vaikuttava Kriso tunnetaan kentällään erityisesti omatoimisesta ja kokonaisvaltaisesta lähestymisestään tekemiseensä ja puheräppityylin suvereenina ykkösnimenä." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63851/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64122", "has_user_editable_resources": false, "location": null, "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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151527, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T10:13:02.568211Z", "last_modified_time": "2024-06-26T10:13:02.568224Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744812.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151527/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T10:13:02.547647Z", "last_modified_time": "2024-08-29T05:13:16.693464Z", "date_published": null, "start_time": "2024-08-15T18:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/5756234127239199FD98C1E4CF2176F7/Taiteiden_yo_Vilma_Jaa", "sv": "http://www.espanlava.fi/sv/evenemang/event/5756234127239199FD98C1E4CF2176F7/Konstens_natt_Vilma_Jaa", "en": "http://www.espanlava.fi/en/events/event/5756234127239199FD98C1E4CF2176F7/Night_of_the_Arts_Vilma_Jaa" }, "name": { "fi": "Taiteiden yö: Vilma Jää", "sv": "Konstens natt: Vilma Jää", "en": "Night of the Arts: Vilma Jää" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Etnopop-artisti Vilma Jää yhdistää kansanperinteelle tyypillisiä soittimia synteettisesti tuotettuihin biitteihin ja suomalais-ugrilaista lauluperinnettä pop-estetiikkaan.</p><p>Jää lähestyy feministisen kantaaottavassa musiikissaan ajankohtaisia aiheita historian kautta, joka paljastaa meille, kuinka surullisen vähän maailma on erityisesti monissa naisiin kohdistuvissa asioissa muuttunut. Kansanmusiikkijuurten lisäksi hänen sävelkielessään kuuluu hänen pitkä taustansa sekä kuoromusiikin että instrumentaalimusiikin parissa.</p><p>Kovassa nosteessa olevan laulajan debyyttialbumi ‘Kosto’ ilmestyi vuoden 2023 lopussa ja sai huippuarvostelut mm. Helsingin Sanomilta. Vilma Jään debyyttialbumilla on lunastettu jo vuoden kansanmusiikkilevy -palkinto, vuoden Etno-Emma-palkinto ja lisäksi se on ehdolla Teosto-palkinnon saajaksi.</p><p>Kesto noin 1 tunti</p><p>Konsertti on osa Suomen Kulttuurirahaston Uudenmaan rahaston tukemaa Meidän Uusimaa -konserttikokonaisuutta.</p>", "sv": "<p>Etnopopartisten Vilma Jää kombinerar traditionella folkmusikinstrument med syntetiskt producerade beats och finsk-ugrisk sångtradition med popestetik.</p><p>I sin feministiskt ställningstagande musik närmar sig Jää aktuella frågor via historien, vilket visar oss hur sorgligt lite världen har förändrats särskilt då det gäller frågor som påverkar kvinnor. Utöver rötterna som finns i folkmusiken påverkas Jääs tonspråk av hennes långa bakgrund både inom kör- och instrumentalmusiken.</p><p>Den mycket aktuella sångerskans debutalbum “Kosto” släpptes i slutet av 2023 och fick topprecensioner i bland annat Helsingin Sanomat. Vilma Jääs debutalbum har redan tilldelats utmärkelsen för årets folkmusikalbum, årets Etno-Emma-pris, och är dessutom nominerat till Teosto-priset.</p><p>Konserten är en del av konserthelheten Meidän Uusimaa (Vårt Nyland) som stöds av Finska kulturfondens Nylandsfond.</p>", "en": "<p>In the closing concert of the Night of the Arts at the Espa Stage, Vilma Jää combines Finno-Ugric singing traditions with pop aesthetics, and archetypal folk music instruments with synthetically produced beats.</p><p>Through her feminist and ideologically charged music, Jää approaches current topics from a historical standpoint, illustrating to us how frustratingly little the world has changed, particularly when it comes to many issues related to women. In addition to the artist’s folk music roots, her music reflects her long involvement with both choral and instrumental music.</p><p>Enjoying a skyrocketing career, the singer’s debut album Kosto (Revenge) was released at the end of 2023 and has already nabbed a string of awards, such as the Folk Music Record of the Year and the Ethno-Emma Award, as well as a Teosto Prize nomination.</p><p>Duration 1 hour.</p>" }, "short_description": { "fi": "Etnopop-artisti Vilma Jää yhdistää kansanperinteelle tyypillisiä soittimia synteettisesti tuotettuihin biitteihin ja suomalais-ugrilaista lauluperinnettä pop-estetiikkaan.", "sv": "Etnopopartisten Vilma Jää kombinerar traditionella folkmusikinstrument med syntetiskt producerade beats och finsk-ugrisk sångtradition med popestetik.", "en": "In the closing concert of the Night of the Arts at the Espa Stage, Vilma Jää combines Finno-Ugric singing traditions with pop aesthetics, and archetypal folk music instruments with synthetically produced beats." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64122/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63724", "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: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151126, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-14T13:12:41.912472Z", "last_modified_time": "2024-05-14T13:12:41.912485Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752254.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151126/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-14T13:12:41.898695Z", "last_modified_time": "2024-08-29T05:13:16.641678Z", "date_published": null, "start_time": "2024-08-15T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/7AA3225332AFCD0F722ED42F98C1F584/Madde_Matilda_Pure_MC_Zen_Urbaani_unelma", "en": "http://www.caisa.fi/en/events/event/7AA3225332AFCD0F722ED42F98C1F584/Madde_Matilda_Pure_MC_Zen_Urbaani_unelma" }, "name": { "fi": "Madde Matilda, Pure, MC Zen & Urbaani unelma – OAF X Caisa", "en": "Madde Matilda, Pure, MC Zen & Urbaani unelma – OAF X Caisa" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>OAF:n Musiikillinen Mikrokosmos on lyyrinen, omaääninen, koskettava ja kantaaottava. Avajaisiltana festivaalin käynnistävät Madde Matilda, Pure ja MC Zen & Urbaani unelma.</p><p><b>Madde Matilda</b> on duo Pohjanmaalta, joka tekee raikasta ja hyväntuulista pop-musiikkia omasta elämästä ja heille tärkeistä asioista: “Meillä molemmilla on Downin syndrooma, mutta se ei estä meitä tekemästä sitä, mitä haluamme, ja työskentelemästä unelmiemme saavuttamiseksi.”</p><p><b>Pure</b> on joensuulainen rap-artisti ja rapin Suomen mestari, joka on erikoistunut improvisoituun freestyle-rappiin. Purelta nähdään freestyle-rap -esitys, jossa rapataan yleisön antamista aiheista, tavaroista ja milloin mistäkin.</p><p><b>MC Zen & Urbaani Unelma</b> esittää energistä ja lyyrisesti monimuotoista suomenkielistä räppiä. Syksyllä 2023 Satakieli-nimisen EP:n julkaissut bändi esiintyy Outsider Art Festivaalilla kolmihenkisellä kokoonpanolla, johon kuuluu keulakuva MC Zenin (Sami Kekäläinen) ohella perkussionisti Eero Loutti ja kitaristi Linda Toratti.</p><p>Tapahtuman kesto noin 3 tuntia.</p><p>Vapaa pääsy, tervetuloa!</p><p>Lue lisää festivaaleista ja artisteista <u>https://outsiderart.fi/</u></p>", "en": "<p>The OAF Musical Microcosm is lyrical, original, touching and topical. OAF music program artists are Stella Massa, Ondi, MC Zen & Urbaani Unelma, Timjune Tianjun Li and Madde Matilda.</p><p><b>Madde Matilda</b> is a duo from west Finland that makes fresh upbeat pop music. “We both have Down’s syndrome, but it doesn’t stop us from doing what we want and working towards our dreams”.</p><p><b>Pure</b> is a rap artist from Joensuu, specializing in improvised freestyle rap. Pure has a total of three medals from the Finnish Rap Championship competition (Rapin SM-kilpailut), the brightest of which is gold. At Outsider Art Festival, Pure will perform a freestyle rap show, improvising rhymes on the spot about any topics the audience gives him.</p><p><b>MC Zen & Urbaani Unelma</b> is an energetic and lyrically diverse Finnish rap group. The band’s music carries the lyrical and cultural heritage of rap, but also boldly deviates from the norms of the genre. The lyrics contain references to oriental philosophies, social grievances and, for example, bohemian artist life.</p><p>The event is free, welcome!</p><p>Read more about the festival and the artist at <u>https://outsiderart.fi/en/outsider-art-finland/</u>>></p>" }, "short_description": { "fi": "OAF:n Musiikillinen Mikrokosmos on lyyrinen, omaääninen, koskettava ja kantaaottava. Avajaisiltana festivaalin käynnistävät Madde Matilda, Pure ja MC Zen & Urbaani unelma.", "en": "The OAF Musical Microcosm is lyrical, original, touching and topical. OAF music program artists are Stella Massa, Ondi, MC Zen & Urbaani Unelma, Timjune Tianjun Li and Madde Matilda." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63724/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63954", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151436, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-12T12:13:34.674858Z", "last_modified_time": "2024-06-12T12:13:34.674873Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743734.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151436/?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-06-12T12:13:34.639371Z", "last_modified_time": "2024-08-29T05:13:16.525414Z", "date_published": null, "start_time": "2024-08-15T14:00:00Z", "end_time": "2024-08-15T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/19661B940FC83892FE2E0C51579CBA98/Stoan_Elojuhla_UMO_feat_Pikku_Papu_Elena_M_ndru_Juha-Pekka_Mikkola", "sv": "http://www.stoa.fi/sv/evenemang/event/19661B940FC83892FE2E0C51579CBA98/Stoas_Elojuhla_UMO_feat_Pikku_Papu_Elena_M_ndru_Juha-Pekka_Mikkola", "en": "http://www.stoa.fi/en/events/event/19661B940FC83892FE2E0C51579CBA98/Stoan_Elojuhla_UMO_feat_Pikku_Papu_Elena_M_ndru_Juha-Pekka_Mikkola" }, "name": { "fi": "Stoan Elojuhla: UMO feat. Pikku Papu & Elena Mîndru & Juha-Pekka Mikkola – Taiteiden yö", "sv": "Stoas Elojuhla: UMO feat. Pikku Papu & Elena Mîndru & Juha-Pekka Mikkola – Konstens natt", "en": "Stoan Elojuhla: UMO feat. Pikku Papu & Elena Mîndru & Juha-Pekka Mikkola – Night of the Arts" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Taiteiden yönä Stoan aukiolla vietetään syyskauden avaavaa Elojuhlaa musiikin lumoissa. UMO Helsinki Jazz Orchestra saa solisteikseen Pikku Papun Orkesterin sekä Elena Mindrun & Juha-Pekka Mikkolan.</p><p>Illassa on luvassa myös monenlaista elokuun iltaa ilahduttavaa maksutonta tekemistä.</p><p>Ravintola Box Stoa on avoinna ja tarjoilee herkkuja Elojuhlien ajan.</p><p><b>Esitykset</b><br>klo 17.45 Pikku Papu & UMO Helsinki Jazz Orchestra (kesto n. 40 min.)<br>klo 18.30 Agit Cirk: Sphere (nykysirkusesitys)<br>klo 19 Elena Mîndru, J-P Mikkola & UMO Helsinki Jazz Orchestra</p><p><b>Maksuttomat työpajat</p><p>klo 17–18.30 Skeittipaku, maksuton skeittikoulu koko perheelle </b><br>Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita. Opettajana toimii ammattiskeittaaja Petrus Marttila, joka on kiertänyt skeittipakun kanssa päiväkodeissa, kouluissa, nuorisotaloilla sekä eri tapahtumissa jo vuodesta 2012.</p><p><b>klo 17–20 Kosmista hiekkaa</b><br>Maalataan hetkellisiä kuvia hiekalla. Nautitaan kuvan luomisesta – ja lopuksi sen pois pyyhkimisestä.</p><p><b>klo 17–20 Myyttinen maisema -työpaja</b><br>Tule tekemään oma mielenmaisemasi. Työpajoissa syntyneet kuvaelmat heijastetaan valaisemaan Stoan aukiota pimeyden saavuttua syksyllä.</p><p><b>klo 17–20 Vesiplaktonpaja</b><br>Näe vesikirput, hankajalkaiset, hyönteisten toukat, kovakuoriaiset, vesisiirat, ja juotikkaat. Katso mikroskooppiin, niin sukellat metsälammen kiehtovaan maailmaan!</p><p><b>klo 17–20 Luovuus itää -kollaasityöpaja</b><br>Luovuus itää -näyttelyn taiteilijat ohjaavat kollaasityöpajan, jossa sekä piirretään että liimaillaan kuvia.</p><p><b>klo 17–20 Kasvissalapoliisit</b><br>Toiminnallisessa työpajassa lapset ja perheet pääsevät tutkimaan kasviksia ja hedelmiä kuin kasvissalapoliisit, tuoksuttelemaan erilaisia tuoksuja, rouskuttelemaan erilaisia tekstuureja ja maistelemaan taikavesiä.</p><p><b>klo 17–20 Tulevien Kuolleiden Päiväkirja -työpaja</b><br>Mitä elämä ja kuolema tarkoittavat tässä ajassa? <br>Tervetuloa osallistumaan työpajaan, josta rakentuu \"Tulevien kuolleiden päiväkirja\" - näyttely 14.10.- 3.11.2024 kulttuurikeskus Stoaan.</p><p><b>klo 17.45 ja klo 19 Metsään laskeutuminen – esityksellinen rentoutumishetki Matokallion metsässä</b><br>Kutsumme Taiteiden yön juhlakansaa hengähtämään metsän sylissä. Matokalliolla rentoudumme riippumatoissa kuunnellen runoja, elävää musiikkia ja metsän ääniä. Mukaan mahtuu 17 henkeä, ilmoittautuminen paikan päällä Stoassa, tapahtuman info-pisteellä. Lähdöt Info-pisteeltä klo 17.45 ja klo 19. Kesto 60 min per sessio.</p><p><b>klo 17–20 Kirjastoauto Stoori!</b><br>Tule tutustumaan kirjastoautoon ja lainaamaan kiinnostavia kirjoja ja osallistu poistokirja-arpajaisiin.</p><p><b>Pikku Papun Orkesteri & UMO Helsinki Jazz Orchestra klo 17.45</b><br>Kun yhdistetään Pikku Papun Orkesteri ja UMO Helsinki Jazz Orchestra, saadaan iiiiiiiso koko perheen lastenmusiikkikonsertti!</p><p>Konsertissa perheen pienimmätkin pääsevät mukaan lauluihin ja leikkeihin. Myös riemunkiljahtelu ja tanssiminen on sallittua – jopa toivottavaa!</p><p>Huom! Puhallinorkesterimme sointi on välillä äänekäs. Etenkin pienimpien konserttikävijöiden kanssa suosittelemme varautumaan koviin äänenvoimakkuuksiin.</p><p>Konsertin kesto n. 40 min. <br>Sateen sattuessa konsertti siirretään Stoan sisätiloihin.</p><p><b>Agit Cirk: Sphere klo 18.30</b><br>Sphere on viihdyttävä ja ilahduttavan humoristinen ulkoilmateos kaikenikäiselle yleisölle. Katsojat pääsevät todistamaan luottamusta uhkuvaa pariakrobatiaa, villejä heittoja, pudottautumisia ja taidokasta kiipeilyä, jotka tekevät teoksesta mieleenpainuvan.</p><p>Kesto noin 25 min.</p><p><b>Elena Mindru & Juha-Pekka Mikkola & UMO Helsinki Jazz Orchestra klo 19</b><br>UMO Helsinki Jazz Orchestra, jazzlaulaja Elena Mindru ja näyttelijä-muusikko Juha-Pekka Mikkola tarjoilevat täyslaidallisen kiehtovaa ja kutkuttavaa hittilistoilta ja elokuvista tuttua musiikkia big band -versioina.</p><p>Miltä Beyoncén Crazy In Love kuulostaa funk-versiona? Entä Ed Sheeranin Shape of You lattarina? Puhumattakaan Harry Stylesin Watermelon Sugarista, joka on taivutettu aivan erityisen makeaan muotoon 16-henkisen orkesterin käsittelyssä!</p>", "sv": "<p>Den skönaste augustikvällen är här igen! Vi välkomnar såväl lokalbor som mer långväga gäster till Stoaplatsen för en trivsam stund tillsammans inför höstsäsongen.</p><p><b>Föreställningar</b><br>kl. 17.45 Pikku Papu & UMO Helsingfors Jazz Orchestra (varaktighet ca 40 min.)<br>kl. 18.30 Agit Cirk: Sphere (nutida cirkusföreställning)<br>kl. 19 Elena Mîndru, J-P Mikkola & UMO Helsingfors Jazz Orchestra</p><p><b>Gratis workshops<br>kl. 17–18.30 Skateboardbilen, gratis skateboardskola för hela familjen</b><br>Kom och bekanta dig med skateboardbilen och prova på hur det känns att rulla på en bräda! Skateboardbilen har skateboards och skyddsutrustning att låna. Lärare är proffsskejtaren Petrus Marttila, som har åkt runt med skateboardbilen till daghem, skolor, ungdomsgårdar och olika evenemang sedan 2012.</p><p><b>kl. 17–20 Kosmisk sand</b><br>Vi målar tillfälliga bilder med sand. Vi njuter av att skapa bilder – och till slut sudda bort dem.</p><p><b>kl. 17–20 Mytiskt landskap-workshop</b><br>Kom och skapa ditt eget själslandskap. De bildberättelser som skapas i workshoparna projiceras för att lysa upp Stoas torg när höstmörkret faller.</p><p><b>kl. 17–20 Vattenplankton-workshop</b><br>Se vattenloppor, hoppkräftor, insektslarver, skalbaggar, vattengråsuggor och iglar. Titta i mikroskop och dyk ner i skogsdammens fascinerande värld!</p><p><b>kl. 17–20 Kreativitet spirar-collageworkshop</b><br>Konstnärerna från utställningen Kreativitet spirar leder en collageworkshop där vi både ritar och klistrar bilder.</p><p><b>kl. 17–20 Växtdetektiverna</b><br>I den här aktiva workshopen får barn och familjer undersöka grönsaker och frukter som växtdetektiver, lukta på olika dofter, knapra på olika texturer och smaka på magiskt vatten.</p><p><b>kl. 17–20 Framtida dödas dagboksworkshop<br>Vad betyder liv och död i denna tid?</b><br>Välkommen att delta i en workshop som kommer att bli en del av utställningen \"Framtida dödas dagbok\" 14.10–3.11.2024 i kulturcentret Stoa.</p><p><b>kl. 17–20 Nedstigning i skogen – en föreställande avkopplingsstund för vuxna i Myllypuro skogen</b><br>Vi bjuder in Taiteiden yön-firare att ta en paus i skogens famn. I Myllypuro skogen kopplar vi av i hängmattor medan vi lyssnar på dikter, levande musik och skogens ljud. 20 vuxna ryms med, anmälan på plats i Stoa.</p>", "en": "<p>The most wonderful evening of August is here once again! All locals and even people from further away are welcome to join us at Stoa Square to enjoy the atmosphere of the beginning of autumn.</p><p><b>Performances</b><br>5:45 PM Pikku Papu & UMO Helsinki Jazz Orchestra (duration approx. 40 min.)<br>6:30 PM Agit Cirk: Sphere (contemporary circus performance)<br>7:00 PM Elena Mîndru, J-P Mikkola & UMO Helsinki Jazz Orchestra</p><p><b>Free workshops<br>5:00–6:30 PM Skateboard Truck, free skateboarding school for the whole family</b><br>Come and explore the skateboard truck and try out what it feels like to roll on a board! The skateboard truck offers skateboards and protective gear for loan. The instructor is professional skateboarder Petrus Marttila, who has been touring with the skateboard truck in kindergartens, schools, youth centers, and various events since 2012.</p><p><b>5:00–8:00 PM Cosmic Sand</b><br>We paint temporary images with sand. Enjoy creating an image – and then wiping it away.</p><p><b>5:00–8:00 PM Mythical Landscape Workshop</b><br>Come and create your own mindscape. The scenes created in the workshops will be projected to illuminate Stoa Square as the autumn darkness falls.</p><p><b>5:00–8:00 PM Water Plankton Workshop</b><br>See water fleas, copepods, insect larvae, beetles, aquatic isopods, and leeches. Look through a microscope and dive into the fascinating world of a forest pond!</p><p><b>5:00–8:00 PM Luovuus itää (Creativity Sprouts) Collage Workshop</b><br>Artists from the “Luovuus itää” exhibition will lead a collage workshop where both drawing and pasting images take place.</p><p><b>5:00–8:00 PM Vegetable Detectives</b><br>In this interactive workshop, children and families get to investigate vegetables and fruits like vegetable detectives, smell various scents, crunch different textures, and taste magical waters.</p><p><b>5:00–8:00 PM Diary of the Future Dead Workshop</b><br>What do life and death mean in this time?<br>Welcome to participate in a workshop that will become part of the \"Diary of the Future Dead\" exhibition from 14.10–3.11.2024 at the Stoa Cultural Centre.</p><p><b>5:00–8:00 PM Descent into the Forest – a Performative Relaxation Session for Adults in Myllypuro Forest</b><br>We invite Taiteiden yö celebrants to pause in the embrace of the forest. In Myllypuro Forest, we relax in hammocks while listening to poetry, live music, and the sounds of the forest. Space for 20 adults, sign-up on-site at Stoa.</p>" }, "short_description": { "fi": "Taiteiden yönä Stoan aukiolla vietetään syyskauden avaavaa Elojuhlaa musiikin lumoissa. UMO Helsinki Jazz Orchestra saa solisteikseen Pikku Papun Orkesterin sekä Elena Mindrun & Juha-Pekka Mikkolan.", "sv": "Den skönaste augustikvällen är här igen! Vi välkomnar såväl lokalbor som mer långväga gäster till Stoaplatsen för en trivsam stund tillsammans inför höstsäsongen.", "en": "The most wonderful evening of August is here once again! All locals and even people from further away are welcome to join us at Stoa Square to enjoy the atmosphere of the beginning of autumn." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63954/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63830", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151169, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-17T11:13:01.031644Z", "last_modified_time": "2024-05-17T11:13:01.031660Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745436.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151169/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-17T11:13:01.012804Z", "last_modified_time": "2024-08-29T05:13:16.465644Z", "date_published": null, "start_time": "2024-08-15T14:00:00Z", "end_time": "2024-08-15T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0D4BFA0FE98FDFDF3EF0C162F24F870D/Taiteiden_yo_Sitratorilla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0D4BFA0FE98FDFDF3EF0C162F24F870D/Konstens_natt_pa_Cittertorget", "en": "http://www.kanneltalo.fi/en/events/event/0D4BFA0FE98FDFDF3EF0C162F24F870D/Night_of_the_Arts_at_Sitratori" }, "name": { "fi": "Taiteiden yö Sitratorilla", "sv": "Konstens natt på Cittertorget", "en": "Night of the Arts at Sitratori" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kanneltalon Taiteiden yössä lumoudutaan musiikin ja luonnon kauneudesta.</p><p>Kahvilassa kuullaan harmonikan, kanteleen ja shakuhachi-huilun säveliä, kun eri kansanmusiikin perinteitä yhdistelevä Kaiun kajo nousee lavalle. Sitratorilla jokainen pääsee taiteilemaan kukkakoristeita ja kukkakimppuja Hupsansaan Kukkabuffet-työpajassa. Tapahtumiin on vapaa pääsy!</p><p><b>klo 18 Kaiun kajo</b></p><p>Kaiun kajo on kolmen erilaisesta taustasta tulevan muusikon yhtye, jonka musiikissa yhdistyvät suomalaisen, virolaisen ja belgialaisen kansanmusiikin sekä perinteisen japanilaisen musiikin sävelmät ja sävelkielet. Yhtyeen työskentelytapoja ovat improvisaatio, mietiskely ja läsnäolon voima. He käyttävät työkaluina mm. tekstuureiden kerrostamista sekä soittimien äänenvärien kuuntelemista ja yhdistämistä. Lopputuloksena syntyy rakennelma, joka kestää vain hetken, mutta saattaa inspiroida ja jättää pidemmän muistijäljen.</p><p><b>Kaiun kajo:</b> <br>Barbara Ardenois – Harmonikka <br>Eva Väljaots – Kannel <br>Sakari Heikka – Shakuhachi-huilu</p><p>Paikka: Kanneltalon kahvilan stage</p><p><b>klo 17–19 Kukkabuffet</b><br>Väriloistoa tulviva Kukkabuffet on katettu aidoilla kukilla! Tervetuloa taiteilemaan kukkakoristeita ja kukkakimppuja! Kukkabistron virkistävä menu tarjoilee värikkäitä leikkokukkia, vehreitä koristeita ja ripauksen kimalletta. Ilahduta kukkakoristeilla itseäsi tai anna lahjaksi ystävälle!</p><p>Tapahtumassa hyödynnetään aina sesongin kukkia sekä hävikkikukkia saatavuuden mukaan. Hupsansaan toteuttama kukkatyöpaja sopii kaikenikäisille!</p><p>Paikka: Sitratori</p><p><b>klo 19.30–20 Taiteiden yön iltalaulut</b></p><p>Kanneltalon Taiteiden yö hiljentyy iltalauluhetkeen Kahvilan Stagella. Satu Luomajoki laulaa ja laulattaa lempeitä sävelmiä illan päätteeksi. Järjestäjänä Työväenopisto.<br>Paikka: Kahvilan stage</p>", "sv": "<p>På Konstens natt på Gamlasgården förtrollas vi av musikens och naturens skönhet.</p><p>På kaféet får vi höra toner från dragspel, kantele och shakuhachi-flöjten, då Kaiun kajo stiger på scenen med sin kombination av folkmusikens traditioner. På Cittertorget får var och en skapa blomsterprydnader och blombuketter i Hupsansaas workshopp Blomsterbuffé.</p><p><b>Kl. 18 Kaiun kajo</b></p><p>Kaiun kajo är ett band som består av tre musiker med olika bakgrund och musik som kombinerar finländsk, estnisk och belgisk folkmusik samt traditionella japanska kompositioner och tonspråk. Bandets arbetssätt är improvisation, meditation och närvarons kraft. Som redskap använder de bland annat skiktning av texturer och lyssnande på och kombination av instrumentens ljudvibrationer. Slutresultatet är en konstruktion som räcker endast en stund, men som kan inspirera och lämna ett längre minnesspår.</p><p><b>Kaiun kajo:</b> <br>Barbara Ardenois – Dragspel <br>Eva Väljaots – Kantele <br>Sakari Heikka – Shakuhachi-flöjt<br>Plats: Scenen i Gamlasgårdens kafé</p><p><b>Kl. 17–19 Blomsterbuffé</b><br>Den färgsprakande Blomsterbuffén har dukats med äkta blommor! Välkommen att skapa blomsterprydnader och blombuketter! Blomsterbistrons uppfriskande meny bjuder på färggranna snittblommor, grönskande prydnader och en gnutta glitter. Gläd dig själv eller överraska en vän med blomsterprydnader!</p><p>Vid evenemanget utnyttjas alltid säsongens blommor och svinnblommor enligt utbudet. Blomsterworkshoppen som genomförs av Hupsansaa passar för alla åldrar!</p><p>Plats: Cittertorget</p>", "en": "<p>Night of the Arts at Kanneltalo enchants us with music and natural beauty.</p><p>Accordion, kantele and shakuhachi can be heard all the way to the café when Kaiun kajo, a group that combines different folk music traditions, gets up on stage. At Sitratori, everyone gets to create floral decorations and bouquets at the Hupsansaa Flower Buffet workshop.</p><p><b>6 pm Kaiun kajo</b></p><p>Kaiun kajo is a band of three musicians from different backgrounds, whose music combines Finnish, Estonian and Belgian folk music as well as traditional Japanese music compositions and melodies. The band creates through improvisation, meditation and presence. They use layered textures and listen and combine their instruments’ timbres, among other things. This results in a structure that only lasts for a moment, with the chance to inspire and be remembered.</p><p><b>Kaiun kajo:</b> <br>Barbara Ardenois – Accordion<br>Eva Väljaots – Kantele<br>Sakari Heikka – Shakuhachi</p><p>Location: Kanneltalo café stage</p><p><b>5–7 pm Flower Buffet</b><br>The bright and colourful Flower Buffet is set with real flowers! Join us in creating floral ornaments and bouquets. The flower bistro’s refreshing menu includes colourful cut flowers, green ornamentals, and a dash of glitter. Make yourself or a friend happy with a floral ornament!</p><p>This event always uses seasonal flowers and ones that would otherwise be disposed of, depending on availability. This flower workshop, by Hupsansaa, is suited for people of all ages!</p><p>Event location: Sitratori</p><p>All events are free of charge!</p>" }, "short_description": { "fi": "Kanneltalon Taiteiden yössä lumoudutaan musiikin ja luonnon kauneudesta.", "sv": "På Konstens natt på Gamlasgården förtrollas vi av musikens och naturens skönhet.", "en": "Night of the Arts at Kanneltalo enchants us with music and natural beauty." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63830/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63723", "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:31/?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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "50 €", "en": "50 €" }, "description": null, "info_url": { "fi": "https://www.tiketti.fi/outsider-art-festival-2024-helsinki-lippuja/100031", "en": "https://www.tiketti.fi/outsider-art-festival-2024-helsinki-lippuja/100031" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151125, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-14T13:12:41.821316Z", "last_modified_time": "2024-05-14T13:12:41.821330Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752253.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151125/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-14T13:12:41.802265Z", "last_modified_time": "2024-08-29T05:13:16.410445Z", "date_published": null, "start_time": "2024-08-15T13:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9D1A268929634029D178E0716D7FC74E/True_Equality_-avajaisjuhlat_kutsuvieraille_ja_kannattajille", "en": "http://www.caisa.fi/en/events/event/9D1A268929634029D178E0716D7FC74E/True_Equality_party_for_invited_guests_and_supporters" }, "name": { "fi": "True Equality -avajaisjuhlat kutsuvieraille ja kannattajille – OAF X Caisa", "en": "True Equality party for invited guests and supporters – OAF X Caisa" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>True Equality -juhlissa jaetaan OAF 2024 parhaan taiteilijan palkinto. Juhlissa esiintyy myös upeita artisteja! Tapahtuman tuotto ohjataan erityisryhmien työllistämiseen.</p><p>True Equality -tilaisuus juhlistaa festivaalin taiteilijoita ja ohjelmistoa ja yhdenvertaista yhteistyötä. Juhlien kutsuvieraina on OAF festivaalin taiteilijoita ja yhteistyökumppaneita. Tapahtuma on avoin myös yleisölle: juhliin voi osallistua ostamalla kannatuslipun.</p><p>Juhlien ohjelmaan sisältyy vuoden parhaan taiteilijan palkinnon jako, juhlapuheita sekä esityksiä festivaalin artisteilta. Tarjolla on <b>Teresa Välimäen</b> ja <b>Sami Helteen</b> suunnittelema festarimenu. Ohjelman kieli on suomi ja englanti. Juhla on cocktailtilaisuus.</p><p>Tapahtuman tuotto ohjataan erityisryhmien työllistämiseen.</p><p>Tapahtuma on osa Pertin valinnan ja Kyrö Distilleryn käynnistämää True Equality -työllistämisohjelmaa. Ohjelman lähtökohtana on, että kaikki saavat osallistua yhdenvertaisesti kulttuuri- ja ravintola-alan uudelleenrakentamiseen.<br> <br>Tapahtuman kesto on noin 1,5 tuntia.</p><p>Tapahtuman tuottaa Pertin Valinta yhteistyössä True Equality -kumppanit.</p><p>Tarkempi ohjelma julkistetaan 15.5. OAF-festivaalisivustolla, osoitteessa https://outsiderart.fi/</p>", "en": "<p>The pre-party of Outsider Art Festival, the True Equality party will take place in the Caisa Hall at the Caisa Cultural Centre from 16:30 to 18:00.</p><p>Invited guests will include OAF artists and partners. The event is also open to the public: you can attend the party by buying a supporter’s ticket.</p><p>The True Equality event celebrates the festival’s program the festival’s artists and equal collaboration. The celebrations will include an award ceremony for the best artist of the year, a festive speeches, and performances by the festival’s artists. A festival menu designed by Teresa Välimäki and Sami Helle will be on offer. The programme is in Finnish and English. The event will be a cocktail party.</p><p>Proceeds from the event will be used to employ people with special needs. The event is part of the True Equality employment programme launched by Pertti’s Choice and Kyrö Distillery. The programme is based on the premise that everyone should be able to participate equally in the rebuilding of the cultural and hospitality sector.</p><p>The event is produced by Pertti’s Choice and the Cultural Centre Caisa. In cooperation with True Equality partners, Bruket, Kyrö Distillery Company, Alvi ry and Teresa Välimäki.</p>" }, "short_description": { "fi": "True Equality -juhlissa jaetaan OAF 2024 parhaan taiteilijan palkinto. Juhlissa esiintyy myös upeita artisteja! Tapahtuman tuotto ohjataan erityisryhmien työllistämiseen.", "en": "The pre-party of Outsider Art Festival, the True Equality party will take place in the Caisa Hall at the Caisa Cultural Centre from 16:30 to 18:00." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63723/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64036", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151470, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-17T08:12:44.382015Z", "last_modified_time": "2024-06-17T08:12:44.382032Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746053.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151470/?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-06-17T08:12:44.353403Z", "last_modified_time": "2024-08-29T05:13:16.325126Z", "date_published": null, "start_time": "2024-08-15T13:00:00Z", "end_time": "2024-08-15T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DFA59479E35BD4E5D1CC77EC8848591C/Annantalon_Taiteiden_yo", "sv": "http://www.annantalo.fi/sv/evenemang/event/DFA59479E35BD4E5D1CC77EC8848591C/Konstens_natt_i_Annegarden", "en": "http://www.annantalo.fi/en/events/event/DFA59479E35BD4E5D1CC77EC8848591C/Annantalo_s_Night_of_the_Arts" }, "name": { "fi": "Annantalon Taiteiden yö", "sv": "Konstens natt i Annegården", "en": "Annantalo’s Night of the Arts" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Annantalon Taiteiden yö on inspiroitunut Liikkuva laboratorio -näyttelystä, joka tutkii liikettä! Taiteiden yössä rakennellaan kummallisia härveleitä ja tavataan mitä ihmeellisempiä tyyppejä. Luvassa on esityksiä, työpajoja ja muuta merkillistä.</p><p><b>TYÖPAJAT</p><p>klo 16–18<br>Kineettiset rullat</b><br>Kuvataideluokka 1</p><p>Tule kokeilemaan kineettisen eli liikkeessä olevan taiteen tekemistä! <br>Työpajassa työskennellään ja hassutellaan kineettisillä objekteilla ja saadaan aikaiseksi jotakin ihmeellistä liikkuvaa.<br>Työpajan ohjaa taiteilija Tuomo Vuoteenoma Kineettisen taiteen talosta <br>Ikäsuositus: Työpaja soveltuu kaikenikäisille, alle 7v. aikuisen kanssa<br>Non-stop<br>Vapaa pääsy</p><p><b>klo 16–19<br>Mikä on supervoimasi?</b><br>Teatteriluokka ja grafiikan luokka</p><p>Jättikorvat! Älyhattu! Megahaba!<br>Millaisia supervoimia sinulla on? Millaisen supervoiman haluaisit? <br>Rakenna itsellesi pahvista asu ja kokeile liikkua sen kanssa varjoteatterissa. <br>Ohjaajina Annantalon taidekasvattajat<br>Ikäsuositus: Työpaja soveltuu kaikenikäisille, alle 7v. aikuisen kanssa<br>Non-stop-työpaja</p><p><b>klo 16–19<br>Pullakone</b><br>Tanssiluokka</p><p>Astu sisälle keholliseen pullakoneeseen! <br>Koneessa voit pötkötellä ja olla taikinaa. Tai voit kaulia, leipoa ja kohottaa kaveria. <br>Osallistuminen pullakoneeseen pareittain.<br>Kesto noin. 20min. <br>Ohjaajina kanssaleipurit Annantalon taidekasvattajat<br>Ikäsuositus: Työpaja soveltuu kaikenikäisille, alle 7v. aikuisen kanssa<br>Non-stop-työpaja</p><p><b>klo 16–19<br>Kipin kapin - Hassut kävelijät </b><br>Kuvataideluokka 3. Annantalon 2. kerros</p><p>Työpajassa rakennetaan mekaaninen lelu Annantalon oppilasnäyttely Liikkuvan laboratorion hengessä.<br>Ohjaajina Annantalon taidekasvattajat<br>Ikäsuositus: Työpaja soveltuu kaikenikäisille, alle 7v. aikuisen kanssa<br>Non-stop-työpaja</p><p><b>MUSIIKKIESITYKSET</p><p>klo 16.30-17.10<br>Toiveita ja unelmia</b><br>Annantalon 2.krs.</p><p>Annantalon kesätaiteilija Jukka Kääriäinen on kesän aikana kerännyt kävijöiden toiveita ja unelmia ja työstänyt niistä ääni- installaation sekä säveltänyt oman musiikkiteoksen. Taiteiden yönä kuulemme musiikkiteoksen livenä 40 minuutin mittaisena konserttina Annantalon toisessa kerroksessa.</p><p><b>klo 17–17.15 <br>A-lava</p><p>Haastattelussa Cleaning Women -yhtye: Itsetehdyt soittimet</b><br>Tule kuulemaan soittimista, jotka on itse tehty mm. pyykkitelineistä ja pyykkirummuista.</p><p><b>klo 18–19<br>Cleaning Women </b><br>A-lava</p><p>Cleaning Women -yhtye huipentaa Annantalon Taiteiden yön avoimella ulkokeikalla!</p><p>Cleaning Women on suomalainen vuonna 1996 perustettu yhtye, joka tunnetaan itsetehdyistä soittimistaan, androgyynistä imagostaan ja poikkitaiteellisista tempauksistaan, kuten audiovisuaalisista installaatioista ja mykkäelokuvasäestyksistä.</p>", "sv": "<p>Konstens natt i Annegården är inspirerad av utställningen Rörliga laboratoriet, som utforskar rörelse! På Konstens natt bygger vi konstiga mackapärer och träffar de mest fantastiska typer. Framträdanden, workshoppar och andra konstiga saker utlovas.</p><p><b>VERKSTÄDER<br>kl. 16–18<br>Kinetiska rullar</b><br>Bildkonstklassrum 1<br>Kom och testa på att skapa kinetisk, alltså rörlig, konst!<br>Under verkstaden arbetar och skojar vi med kinetiska objekt och skapar något märkvärdigt och rörligt.<br>Verkstaden leds av konstnären Tuomo Vuoteenoma från Kineettisen taiteen talo</p><p>Åldersrekommendation: Verkstaden passar för personer i alla åldrar, barn under 7 år tillsammans med en vuxen<br>Non-stop<br>Fritt inträde</p><p><b>kl. 16–19<br>Vad är din superkraft?</b><br>Teaterklassrummet och grafikklassrummet<br>Jätteöron! Smarthatt! Megamuskler!<br>Vilka superkrafter har du? Vilka superkrafter skulle du vilja ha?<br>Bygg din egen dräkt av kartong och testa att röra dig i den i en skuggteater.<br>Verkstaden leds av Annegårdens konstpedagoger<br>Åldersrekommendation: Verkstaden passar för personer i alla åldrar, barn under 7 år tillsammans med en vuxen<br>Non-stop-verkstad</p><p><b>kl. 16–19<br>Bullmaskin</b><br>Dansklassrummet<br>Stig in i en kroppslig bullmaskin!<br>I maskinen kan du ligga och dega. Eller så kan du kavla, baka och låta din kompis jäsa.<br>Deltagande i bullmaskinen sker parvis.</p><p>Längd ca 20 min.<br>Verkstaden leds av medbagare som också är konstpedagoger på Annegården<br>Åldersrekommendation: Verkstaden passar för personer i alla åldrar, barn under 7 år tillsammans med en vuxen<br>Non-stop-verkstad</p><p><b>kl. 16–19<br>Snabba ryck – Lustiga vandrare</b><br>Bildkonstklassrum 3 Våning 2 i Annegården<br>Under verkstaden bygger vi en mekanisk leksak i anda med Annegårdens elevutställning Rörliga laboratoriet.<br>Verkstaden leds av Annegårdens konstpedagoger<br>Åldersrekommendation: Verkstaden passar för personer i alla åldrar, barn under 7 år tillsammans med en vuxen<br>Non-stop-verkstad</p><p><b>MUSIKUPPTRÄDANDEN<br>Kl. 16.30–17.10<br>Önskningar och drömmar</b><br>Våning 2 i Annegården<br>Under sommaren har Annegårdens sommarkonstnär Jukka Kääriäinen samlat ihop besökarnas önskningar och drömmar, och av dem har han gjort en ljudinstallation och komponerat ett eget musikverk. Under Konstens natt får vi höra musikverket live under en 40 minuter lång konsert på andra våningen i Annegården.</p><p><b>kl. 17–17.15<br>Intervju med bandet Cleaning Women: Egenhändigt gjorda instrument</b><br>A-scenen <br>Kom och lyssna till egenhändigt gjorda instrument av bland annat tvättställningar och tvättrummor.</p><p><b>kl. 18–19<br>Cleaning Women</b><br>A-scenen<br>Den öppna utomhuskonserten med bandet Cleaning Women är pricken över i:et på Konstens natt på Annegården!</p><p>Cleaning Women är ett finländskt band som grundades 1996 och som kännetecknas av de egenhändigt gjorda instrumenten, den androgyna imagen och de tvärkonstnärliga upptågen i form av till exempel audiovisuella installationer och stumfilmsframställningar.</p>", "en": "<p>Annantalo’s Night of the Arts is inspired by the Moving Laboratory exhibition, which explores movement! During the Night of the Arts, we will build strange gadgets and meet the most amazing people. There will be presentations, workshops and other peculiar things.</p><p><b>WORKSHOPS<br>4 pm to 6 pm<br>Kinetic rolls</b><br>Visual arts classroom 1<br>Come and try making kinetic art, or art in motion!<br>The workshop is all about working and fooling around with kinetic objects and creating something amazingly moving.</p><p>The workshop is led by artist Tuomo Vuoteenoma from the House of Kinetic Arts</p><p>Age recommendation: The workshop is suitable for all ages, and for children aged under 7 years with an adult<br>Non-stop<br>Free of charge</p><p><b>4 pm to 7 pm<br>What is your superpower?</b><br>Theatre classroom and graphics classroom<br>Giant ears! Smart hat! Mega biceps!<br>What kind of superpowers do you have? What kind of a superpower would you like to have?<br>Build yourself a cardboard outfit and try to move in it in a shadow theatre.</p><p>Led by art educators from Annantalo<br>Age recommendation: The workshop is suitable for all ages, and for children aged under 7 years with an adult<br>Non-stop workshops</p><p><b>4 pm to 7 pm<br>Bun machine</b><br>Dance classroom<br>Step inside a bodily bun machine!<br>You can lie down in the machine and be part of dough. Or you can roll, bake and rise your friend.<br>Entering the bun machine in pairs.</p><p>Duration approx. 20 minutes.<br>Led by fellow bakers and art educators from Annantalo<br>Age recommendation: The workshop is suitable for all ages, and for children aged under 7 years with an adult<br>Non-stop workshops</p><p><b>4 pm to 7 pm<br>Hotfoot - Funny walkers</b><br>Visual arts classroom 3. Annantalo, 2nd floor</p><p>A mechanical toy is built in the workshop in the spirit of Annantalo’s Moving Laboratory student exhibition.<br>Led by art educators from Annantalo<br>Age recommendation: The workshop is suitable for all ages, and for children aged under 7 years with an adult<br>Non-stop workshops</p><p><b>MUSIC PERFORMANCES<br>4.30 pm to 5.10 pm<br>Wishes and dreams</b><br>Annantalo, 2nd floor<br>During the summer, Annantalo’s summer artist Jukka Kääriäinen has collected the wishes and dreams of visitors and worked them into a sound installation and composed a piece of music. We will hear the work live in a 40-minute concert on the second floor of Annantalo during the Night of the Arts.</p><p><b>5 pm to 5.15 pm<br>Interview with Cleaning Women: Self-made instruments</b><br>A stage <br>Come and hear about instruments made of laundry racks and laundry drums, for example.</p><p><b>6 pm to 7 pm<br>Cleaning Women</b><br>A stage<br>Annantalo’s Night of the Arts is culminated by Cleaning Women’s free open-air concert!</p><p>Cleaning Women is a Finnish band founded in 1996, known for their self-made instruments, androgynous image and cross-artistic undertakings such as audiovisual installations and silent film soundtracks.</p>" }, "short_description": { "fi": "Annantalon Taiteiden yö on inspiroitunut Liikkuva laboratorio -näyttelystä, joka tutkii liikettä! Taiteiden yössä rakennellaan kummallisia härveleitä ja tavataan mitä ihmeellisempiä tyyppejä. Luvassa on esityksiä, työpajoja ja muuta merkillistä.", "sv": "Konstens natt i Annegården är inspirerad av utställningen Rörliga laboratoriet, som utforskar rörelse! På Konstens natt bygger vi konstiga mackapärer och träffar de mest fantastiska typer. Framträdanden, workshoppar och andra konstiga saker utlovas.", "en": "Annantalo’s Night of the Arts is inspired by the Moving Laboratory exhibition, which explores movement! During the Night of the Arts, we will build strange gadgets and meet the most amazing people. There will be presentations, workshops and other peculiar things." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64036/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63599", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151028, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-07T14:13:41.193859Z", "last_modified_time": "2024-05-07T14:13:41.193876Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744597.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151028/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-07T14:13:41.152278Z", "last_modified_time": "2024-08-29T05:13:16.260843Z", "date_published": null, "start_time": "2024-08-15T12:00:00Z", "end_time": "2024-08-15T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/991AE44F150A25645D847B32708F2485/Taiteiden_yo_Vuotalossa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/991AE44F150A25645D847B32708F2485/Konstens_natt_pa_Nordhuset", "en": "http://www.vuotalo.fi/en/events/event/991AE44F150A25645D847B32708F2485/Vuotatalo_s_Night_of_the_Arts" }, "name": { "fi": "Taiteiden yö Vuotalossa", "sv": "Konstens natt på Nordhuset", "en": "Vuotatalo’s Night of the Arts" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Vuotalon Taiteiden yö on maailmanmusiikin, tanssin ja iloisen yhdessäolon juhlaa. Vietämme taiteiden yötä konserttien merkeissä Vuotorilla ja tutustumme toisiimme Vuotalon alapihalla, ihanassa tarinoiden puutarhassa.</p><p><b>Ohjelma</b></p><p><b>klo 15–16<br>Delado Internationalin esitys:<br>Etnofusion – musiikkia ja tanssia</b><br>Vuotalon Taiteiden yö käynnistyy vauhdikkaasti Delado Internationalin afroteemaisella esityksellä. Elämäniloista etnomusiikkia, perinteisiä afrikkalaisia rytmejä ja energistä afrotanssia yhdistelevä show kutsuu kaikki vuosaarelaiset nauttimaan Taiteiden yöstä. Tanssitaan kaikki yhdessä Vuotorilla! <br>Delado yhdistää afrikkalaista ja länsimaalaista perinnekulttuuria.</p><p>Tarjolla on mieleenpainuva yhdistelmä nyky- ja traditionaalista tanssia ja musiikkia, jota kuullaan harvoin. <br>Kieli: suomi, ruotsi, englanti, ranska</p><p><b>klo 16–18<br>Aarteitani Suomesta - My Favourite Finnish Things - taidetyöpajoja perheille </b></p><p>Perheet, tulkaa luomaan omia lempiasioita tai ihan hassuja ötököitä yhdessä! Pajat pidetään Vuotalon aulassa, näyttelytilassa.</p><p>Ohjaajat: Satu Kettunen ja Eungyung Kim<br>Ohjauskieli: suomi ja englanti</p><p><b>klo 18–19<br>Dan + Claudia Zanes <br>– elämäniloista maailmanmusiikkia kaiken ikäisille!</b> <br>Laula, tanssi ja hupsuttele iloisen folk- ja maailmanmusiikin tahdissa! Rennossa koko perheen konsertissa kaikki pääsevät riemuitsemaan musiikista ja tanssista.</p><p>Amerikkalais-haitilainen muusikkopariskunta Dan ja Claudia Zanes sekoittelevat rohkeasti ja luovasti aikuisten ja lastenmusiikin raja-aitoja. Hilpeän hauskanpidon rinnalla lauluissa kulkee inspiroiva sanoma – jokainen saa olla oma itsensä.<br>Dan ja Claudia ovat molemmat arvostettuja ja pitkän uran tehneitä ammattimuusikoita.</p><p>Dan on Grammy-palkittu folk-rokkari ja yksi amerikkalaisen lastenmusiikin pioneereja. Claudia on jazz-laulaja ja musiikkiterapeutti. Pariskunta tekee työtä myös aistiystävällisten musiikkielämysten puolesta, ja konsertteihin ovat aina erityisen tervetulleita myös erityisryhmiin kuuluvat lapset ja aikuiset.</p><p>He kiertävät ympäri maailmaa esiintymässä ja yhdistämässä ihmisiä musiikin kautta, tänä syksynä myös Suomessa ja Vuosaaressa! Pariskunnan uusin levy \"Walkin' Talkin' Baltimore\" julkaistaan elokuussa, joten Vuotorilla pääsemme ensimmäisten joukossa kuulemaan myös ihan uutta materiaalia!</p><p><b>klo 19–21<br>Story Sharing Café</b><br>Story Sharing Café on avoin ja hauska tapahtuma, jossa ihmiset eri puolilta maailmaa, erilaisine taustoineen ja todellisuuksineen, voivat tavata ja jakaa arjen tarinoita.</p><p>Voit tulla yksin tai ystävän kanssa. Jaamme tarinoita ja muistoja pienissä ryhmissä. Meillä on myös erityisiä tarinavieraita, musiikkia ja avoin tarinamikrofoni. Yhdessä luomme sydäntä lämmittävän ja nautinnollisen tapahtuman!</p><p>Puhumme vähintään englantia, suomea, ruotsia, arabiaa, paštua, espanjaa ja venäjää.</p><p>Tämä kahvila järjestetään puiden alla Vuotalon ulkopuolella, alapihalla. Yö taikapuutarhassa on täynnä valoa, musiikkia ja upeita tarinoita.</p><p>Tapahtumiin on vapaa pääsy.</p>", "sv": "<p>Konstens natt på Nordhuset är en hyllning till världsmusiken, dansen och den glada samvaron. Vi tillbringar Konstens natt med konserter på Nortorget och lär känna varandra i berättelsernas underbara trädgård på Nordhusets nedre gård.</p><p><b>Program</b></p><p><b>kl 15–16<br>Delado International uppträder:<br>Etnofusion – musik och dans</b><br>Konstens natt på Nordhuset inleds med ett fartfyllt framträdande med afrotema av Delado International. Showen kombinerar levnadsglad etnomusik, traditionella afrikanska rytmer och energisk afrodans och bjuder in alla nordsjöbor att njuta av Konstens natt. Vi dansar tillsammans på Nortorget!</p><p>Delado kombinerar afrikansk och västerländsk traditionell kultur. Vi bjuder på en minnesvärd kombination av modern och traditionell dans och musik som man sällan får höra. <br>Språk: finska, svenska, engelska, franska</p><p><b>kl 16–18<br>Mina skatter från Finland - verkstäder för barn och familjer med Satu Kettunen och Eungyung Kim </b></p><p><b>kl. 18–19<br>Dan + Claudia Zanes <br>– levnadsglad världsmusik för alla åldrar! </b></p><p><b> klo 19-21<br>Story Sharing Café </b><br>Story Sharing Café är ett öppet och roligt evenemang där människor från hela världen, med olika bakgrunder och verkligheter, kan träffas och dela med sig av berättelser från vardagen. Tillsammans skapar vi ett hjärtvärmande och njutbart evenemang!</p><p>Vi talar åtminstone engelska, finska, svenska, arabiska, pashto, spanska och ryska.</p><p>Detta speciella café finns under träden utanför Nordhuset. Natten i den magiska trädgården är full av ljus, musik och fantastiska berättelser.</p>", "en": "<p>Vuotalo’s Night of the Arts is a celebration of world music, dance and joyful togetherness. We spend the Night of the Arts enjoying concerts at Vuotori and get to know each other in Vuotalo’s lower yard, the lovely garden of stories.</p><p><b>Programme</p><p>3 pm to 4 pm<br>Performance by Delado International:<br>Ethnofusion – music and dance</b><br>Vuotalo’s Night of the Arts is kicking off with an afro-themed performance by Delado International. Combining ethnomusic sparkling with life, traditional African rhythms and energetic afro dance, the show invites everyone at Vuosaari to enjoy the Night of the Arts. Let’s dance together in Vuotori!</p><p>Delado combines African and Western traditional culture. It offers a memorable mix of contemporary and traditional dance and music that is rarely heard. <br>Language: Finnish, Swedish, English, French</p><p><b>4 pm to 6 pm<br>My Favourite Finnish Things - art workshops for kids and families with Satu Kettunen and Eungyung Kim </b></p><p><b>6 pm to 7 pm<br>Dan + Claudia Zanes <br>– exhilarating world music for all ages! </b><br>Relaxed multicultural family concert by lovely American-Haitian couple Dan and Claudia Zanes, where everybody gets to participate –sing, dance, be silly and get empowered. Music is a natural part of all of us! The concert is a joyful mix of new and traditional acoustic folk and world music. It’s also blending together the boundaries around adult’s and children’s music in a creative and fresh way, respecting and delighting all age listeners.</p><p>Dan and Claudia are both highly acclaimed professional musicians with life-long careers –Dan is a Grammy award winner folk rocker and one of the pioneers in American children’s music scene, Claudia is a jazz vocalist and a music therapist. They tour around the world performing and uniting people through music, this autumn also in Finland and Vuosaari!</p><p><b>7 pm to 9 pm<br>Story Sharing Café </b><br>Story Sharing Café is an easy and fun event where people from all over the world, with diverse backgrounds and realities can meet and share everyday stories.</p><p>You can come alone or bring a friend and share stories and memories in small groups at coffee tables hosted by members of our Story Sharing group. <br>We also have some special storytelling guests, music and an open story sharing mic. Together we will create a heart-warming and enjoyable event!</p><p>We speak at least English, Finnish, Swedish, Arabic, Pashto, Spanish and Russian.</p><p>This special café will happen under the trees outside Vuotalo. <br>The night in the magic garden will be full of light, music and wonderful stories.</p><p>Duration apx 2,5 h. Free entrance.</p>" }, "short_description": { "fi": "Vuotalon Taiteiden yö on maailmanmusiikin, tanssin ja iloisen yhdessäolon juhlaa. Vietämme taiteiden yötä konserttien merkeissä Vuotorilla ja tutustumme toisiimme Vuotalon alapihalla, ihanassa tarinoiden puutarhassa.", "sv": "Konstens natt på Nordhuset är en hyllning till världsmusiken, dansen och den glada samvaron. Vi tillbringar Konstens natt med konserter på Nortorget och lär känna varandra i berättelsernas underbara trädgård på Nordhusets nedre gård.", "en": "Vuotalo’s Night of the Arts is a celebration of world music, dance and joyful togetherness. We spend the Night of the Arts enjoying concerts at Vuotori and get to know each other in Vuotalo’s lower yard, the lovely garden of stories." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63599/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63710", "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:29/?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:55/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151124, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-14T13:12:41.674328Z", "last_modified_time": "2024-05-14T13:12:41.674342Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752171.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151124/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-14T13:12:41.652584Z", "last_modified_time": "2024-08-29T05:13:16.113080Z", "date_published": null, "start_time": "2024-08-15", "end_time": "2024-08-18", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/73F78C4EDDB32E070337DB2055F8DF17/OAF_X_Caisa_Elokuvanaytokset", "en": "http://www.caisa.fi/en/events/event/73F78C4EDDB32E070337DB2055F8DF17/OAF_Films_at_Caisa" }, "name": { "fi": "OAF X Caisa: Elokuvanäytökset", "en": "OAF Films at Caisa" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>OAF elokuvanäytöksissä nähdään kuusi suomalaista outsider-lyhytelokuvaa.</p><p>Valitse sinulle sopiva näytös ja tule katsomaan kuusi upeaa outsider-lyhytelokuvaa.</p><p>Tänä vuonna mukana ovat:</p><p>Pikselijuhlan yltäkylläisyys (Petri Keckman)<br>Two Silly Rabbits And a Ball (Kanimaattorit)<br>Hengittävä riutta (Satu & Maima Tani)<br>Into (Aleksi Leskinen) <br>FUR FUR (Kardo Shiwan)<br>Shadows (Vahid Goodarzpour).</p><p>Elokuville on neljä näytöstä, jossa katsotaan kaikki elokuvat.</p><p><b>Elokuvanäytösten aikataulut</b><br>To 15.8. klo 17–18.15<br>Pe 16.8. klo 13–15 | näytös ja Q&A<br>La 17.8. klo 15–16.15<br>Su 18.8. klo 13–14.15</p><p>Näytöksiin on vapaa pääsy. Paikat täytetään saapumisjärjestyksessä - ole siis ajoissa!</p><p>Lue lisää festivaalista <u>https://outsiderart.fi/</u>>></p>", "en": "<p>OAF film screenings present a wide-ranging selection of Finnish outsider cinema.</p><p>The film screenings present six short films:<br>Pixel Party Extravaganza (Petri Keckman)<br>Two Silly Rabbits And a Ball (Kanimaattorit)<br>Breathing reef (Satu & Maima Tani)<br>Into (Aleksi Leskinen)<br>FUR FUR (Kardo Shiwan)<br>Shadows (Vahid Goodarzpour).</p><p>The Cultural Centre Caisa Kino Caisa is hosting the film screenings.</p><p><b>Film Screening Schedule</b></p><p>Thu 15 Aug, 5:00 PM – 6:15 PM<br>Fri 16 Aug, 1:00 PM – 3:00 PM | screening and Q&A<br>Sat 17 Aug, 3:00 PM – 4:15 PM<br>Sun 18 Aug, 1:00 PM – 2:15 PM</p><p>The events are free.</p><p>You can also watch the films at the OAF Online Stage starting from 15.8.2024.</p><p>Read more about the festival <u>https://outsiderart.fi/</u>>></p>" }, "short_description": { "fi": "OAF elokuvanäytöksissä nähdään kuusi suomalaista outsider-lyhytelokuvaa.", "en": "OAF film screenings present a wide-ranging selection of Finnish outsider cinema." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63710/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19216, "next": "