Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=222&weekday=6%2C7
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=223&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=221&weekday=6%2C7" }, "data": [ { "id": "kulke:60790", "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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3471841" }, "price": { "fi": "37,50/34,50/24,50 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4470, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:25:22.971986Z", "last_modified_time": "2023-09-07T14:25:22.972026Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734149.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4470/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:25:22.811663Z", "last_modified_time": "2023-11-14T06:13:30.532879Z", "date_published": null, "start_time": "2023-10-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Oopperatähtipariskunta Raimo Sirkiä ja Cynthia Makris tulkitsevat suosikkisävelmiään viihteen, musikaalin ja operetin maailmoista. Säestävänä orkesterina toimii yhdeksänmiehinen Filharmooninen Viihdejousikko, joka esittää konsertissa myös omia vauhdikkaita ja tunnelmallisia show-numeroita. Upeiden sävelmien lomassa saamme kuulla taiteilijoiden kertomia muistoja heidän huikeista uristaan ja yhteisestä matkastaan." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/22545D65816D35654F80053AF77523B0/Raimo_Sirkia_Cynthia_Makris_On_Hetki_" }, "location_extra_info": null, "name": { "fi": "Raimo Sirkiä & Cynthia Makris: On Hetki – Filharmooninen Viihdejousikko" }, "description": { "fi": "<p>Oopperatähtipariskunta Raimo Sirkiä ja Cynthia Makris tulkitsevat suosikkisävelmiään viihteen, musikaalin ja operetin maailmoista. Säestävänä orkesterina toimii yhdeksänmiehinen Filharmooninen Viihdejousikko, joka esittää konsertissa myös omia vauhdikkaita ja tunnelmallisia show-numeroita. Upeiden sävelmien lomassa saamme kuulla taiteilijoiden kertomia muistoja heidän huikeista uristaan ja yhteisestä matkastaan.</p><p>Raimo Sirkiä on kansainvälisesti tunnetuimpia suomalaisia tenoreita. Monipuolisen oopperauransa lisäksi hän on toiminut Savonlinnan Oopperajuhlien taiteellisena johtajana, harmonikkataitelijana, opettajana, mentorina, musiikkituottajana ja sovittajana.<br> <br>Cynthia Makris on tehnyt 30 vuotisen uran oopperalaulajana ympäri maailman. Suomalaisyleisön sydämiin hän lauloi itsensä unohtumattomasti Lady Machbethin roolissa Savonlinnan oopperajuhlilla ja useissa nimirooleissa Suomen Kansallisoopperassa.<br> <br>Viihdejousikon perusti legendaarinen kapellimestari-pianisti Arthur Fuhrmann (1930-2013) yhdessä Helsingin kaupunginorkesterin muusikoiden kanssa 1960-luvulla. Nykymuotoinen Filharmooninen Viihdejousikko aloitti toimintansa vuonna 2004. Fuhrmann perehdytti HKO:n uuden polven huippumuusikot viihdemusiikin traditioon. Filharmooninen Viihdejousikko jatkaa vuosisataista eurooppalaisen viihdemusiikin ja virtuoosiorkestereiden perinnettä.<br> <br>Muusikot:<br>Jani Lehtonen, viulu<br>Petri Päivärinne, viulu<br>Ilkka Lehtonen, viulu<br>Tuomas Huttunen, alttoviulu<br>Ilmo Saaristo, sello<br>Pekka Korhonen, kontrabasso<br>Janne Hovi, piano<br>Matti Tähkävuori, kitara<br>Pasi Suomalainen, lyömäsoittimet<br> <br>”On Hetki” -konsertissa esitetään mm. seuraavat sävelmät:<br> <br>Angelique, O sole mio, Palaja Sorrentoon, Muistojen harmonikka, Czardas-kavalieri, Come Prima,<br>Conte Partiro, Habanera, Memory, Meine Lippen, Monti: Csardas, Holiday for strings, Toselli:<br>Serenadi, Itke en lemmen tähden, Bei Dir ja Dobra Dobra.<br> <br>Kesto n. 2 h 15 min, sisältää väliajan</p>" }, "provider": { "fi": "Filharmooninen Viihdejousikko" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60790/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59941", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/stoa/kiiilpaaataaannnsssiii-3410879/", "sv": "https://www.lippu.fi/artist/stoa/kiiilpaaataaannnsssiii-3410879/", "en": "https://www.lippu.fi/artist/stoa/kiiilpaaataaannnsssiii-3410879/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4469, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:25:22.526096Z", "last_modified_time": "2023-09-07T14:25:22.526117Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731724.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4469/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:25:21.668513Z", "last_modified_time": "2023-11-14T06:13:30.461514Z", "date_published": null, "start_time": "2023-10-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kilpatanssin liikekieli ja rakenne nykytanssin kontekstissa: teos venyttää kilpatanssia järjestelemällä uudelleen sen kestoa, käsitteitä ja estetiikkaa.", "sv": "Tävlingsdansens rörelser och struktur i nutidsdansens kontext: verket tänjer på tävlingsdansen genom att arrangera om dess längd, begrepp och estetik.", "en": "The movement language and structure of competitive dance in the context of contemporary dance: the performance stretches competitive dance by rearranging its duration, concepts and aesthetics." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/C5840E5CB402C11092FC8F2C0FEBD1B2/LOPPUUNMYYTY_Ko-kollektiivi_Kiiilpaaataaannnsssiii_ENSI-ILTA", "sv": "http://www.stoa.fi/sv/evenemang/event/C5840E5CB402C11092FC8F2C0FEBD1B2/SLUTSALT_Ko-kollektiivi_Kiiilpaaataaannnsssiii_PREMIAR", "en": "http://www.stoa.fi/en/events/event/C5840E5CB402C11092FC8F2C0FEBD1B2/SOLD_OUT_Ko-kollektiivi_Kiiilpaaataaannnsssiii_PREMIERE" }, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY Ko-kollektiivi: Kiiilpaaataaannnsssiii | ENSI-ILTA", "sv": "SLUTSÅLT Ko-kollektiivi: Kiiilpaaataaannnsssiii | PREMIÄR", "en": "SOLD OUT Ko-kollektiivi: Kiiilpaaataaannnsssiii | PREMIERE" }, "description": { "fi": "<p>Kilpatanssin liikekieli ja rakenne nykytanssin kontekstissa: teos venyttää kilpatanssia järjestelemällä uudelleen sen kestoa, käsitteitä ja estetiikkaa.</p><p>Kilpatanssiaktivismia<br>Entinen Tanssii tähtien kanssa -ohjelman opettaja Sanna Hento haluaa kyseenalaistaa kilpatanssin seksistisen kuvaston ja tekee nyt kilpatanssista taidetta yhdessä nykytanssikoreografi Satu Aavanrannan (ent. Tuomisto) kanssa. Kaksikko nostaa teoksissaan keskiöön kilpatanssin ainutlaatuisen liikekielen ilman kilpatanssille tyypillisiä ennakkoasetelmia. Henton ja Aavanrannan uusi teos Kiiilpaaataaannnsssiii venyttää kilpatanssia järjestelemällä omaperäisellä tavalla uudelleen sen kestoa, käsitteitä ja estetiikkaa.</p><p>Kiiilpaaataaannnsssiii tarjoaa humoristisen lähestymistavan, joka rikkoo kilpatanssiin liittyviä sääntöjä ja leikittelee kilpatanssin pyrkimyksellä täydellisyyteen. <b>Sanna Henton</b> soolo tuo näkyväksi ja kääntää päälaelleen naisen roolin kilpatanssissa. <br> <br>Koreografia: Satu Aavanranta (ent. Tuomisto) ja Sanna Hento <br>Tanssi: Sanna Hento <br>Äänisuunnittelu: Satu Aavanranta ja Sanna Hento<br>Alkutekstit: Satu Aavanranta ja Sanna Hento<br>Alkutekstien lukija: Erik Hento<br>Alkutekstien lähteet: Suomen tanssiurheiluliiton kilpailusäännöt<br>Kesto: noin 55 min <br>Tuotanto: Ko-kollektiivi<br>Teosta tukee: Taiteen edistämiskeskus, Helsingin kaupunki</p>", "sv": "<p>Tävlingsdansens rörelser och struktur i nutidsdansens kontext: verket tänjer på tävlingsdansen genom att arrangera om dess längd, begrepp och estetik.</p><p>Kiiilpaaataaannnsssiii bjuder på ett humoristiskt angreppssätt som bryter tävlingsdansens regler och leker med dess strävan efter perfektion. Sanna Henttos solo synliggör och vänder upp och ner på kvinnans roll i tävlingsdans.</p>", "en": "<p>The movement language and structure of competitive dance in the context of contemporary dance: the performance stretches competitive dance by rearranging its duration, concepts and aesthetics.</p><p>Kiiilpaaataaannnsssiii offers a humorous approach that breaks the rules of competitive dance and plays with its quest for perfection. Sanna Hentto’s solo brings to light and turns on its head the role of women in competitive dance.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59941/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61132", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "price": { "fi": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5448, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-12T13:57:48.686812Z", "last_modified_time": "2023-10-12T13:57:48.686833Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738036.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5448/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-12T13:57:48.551284Z", "last_modified_time": "2023-11-14T06:13:30.383418Z", "date_published": null, "start_time": "2023-10-27T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D7B16CBB0E2C8DDE2ED9C37430B05918/Kuolleet_lehdet_7_" }, "location_extra_info": null, "name": { "fi": "Kuolleet lehdet (7) – Kino Helios" }, "description": { "fi": "<p>Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.</p><p>Heidän tietään kohti tätä kunnioitettavaa päämäärää varjostavat miehen alkoholismi, kadonneet puhelinnumerot, tietämättömyys toistensa nimistä tai osoitteista ja elämän yleinen taipumus asettaa esteitä onneaan etsivien tielle.</p><p>Tämä lempeä tragikomedia on jo kadonneeksi luultu neljäs osa Aki Kaurismäen työläistrilogiaan (Varjoja paratiisissa, Ariel ja Tulitikkutehtaan tyttö).</p><p>Ikäraja 7<br>Kesto 81 min<br>Ensi-ilta 15.9. <br>Tekstitys suomeksi.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61132/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60171", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/arppa-vuotalo-17197478/" }, "price": { "fi": "24,50 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4468, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:25:20.230284Z", "last_modified_time": "2023-09-07T14:25:20.230328Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733556.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4468/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:25:19.670736Z", "last_modified_time": "2023-11-14T06:13:30.310350Z", "date_published": null, "start_time": "2023-10-27T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Aaro ”Arppa” Airolan yhtyeen nousu nopeasti parissa vuodessa Suomi-indien huipulle on tarjonnut hurmaavaa seurattavaa." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C6D4336D057DBC1178A2DB99BB4A2623/Arppa_LOPPUUNMYYTY" }, "location_extra_info": null, "name": { "fi": "Arppa / LOPPUUNMYYTY" }, "description": { "fi": "<p>Aaro ”Arppa” Airolan yhtyeen nousu nopeasti parissa vuodessa Suomi-indien huipulle on tarjonnut hurmaavaa seurattavaa.</p><p>Ennen kaikkea energisistä, improvisaatioon perustuvista keikoistaan tunnettu <b>Arppa</b> yhtyeineen on yksi tämänhetkisen indiemusiikin kärkinimistä.</p><p>Arpan ihastuttava musiikki on ajatonta ja tekstit kuin liikkuvaa kuvaa – oivaltavat, vilpittömät ja tarkkanäköisesti kuvatut tunnelmat liikkuvat Kokkolan Ykspihlajasta aina öisen Helsingin kautta Laila Kinnusen kanssa salakapakkaan heinäkuuhun ’58.</p><p>Arpan suosio perustuu ahkeraan keikkailuun ja tiheään julkaisutahtiin. Arppa on haalinut ympärilleen taitavat ja valovoimaiset muusikot, minkä ansiosta hänen tunnelmallisten tekstiensä ympärille on rakentunut kaunis ja eheä äänimaailma. Luontevan vaivaton olemus ja yhtyeen esiintymisistä huokuva vilpitön riemu ei voi olla tempaamatta läsnäolijoita mukaansa.</p><p>Arpan yhtyeessä vaikuttavat muusikot <b>Ville-Veikko Airaniemi</b>, <b>Eero Seppä</b> ja <b>Okko Saastamoinen</b>.</p><p>Kesto: 80min. ei väliaikaa</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60171/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60515", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/juhlitaan-mokaa-festivaali-kanneltalo-17229071/", "sv": "https://www.lippu.fi/event/juhlitaan-mokaa-festivaali-kanneltalo-17229071/", "en": "https://www.lippu.fi/event/juhlitaan-mokaa-festivaali-kanneltalo-17229071/" }, "price": { "fi": "15 € / 10 €", "sv": "15 € / 10 €", "en": "15 € / 10 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4467, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:25:19.300565Z", "last_modified_time": "2023-09-07T14:25:19.300598Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731042.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4467/?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": "2023-09-07T14:25:19.126909Z", "last_modified_time": "2023-11-14T06:13:30.236376Z", "date_published": null, "start_time": "2023-10-27T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Taina Mäki-Ison klovneriasoolo haMEmo on esitys muistamisesta ja unohtamisesta.", "sv": "Taina Mäki-Isos clownerisolo haMEmo är en föreställning om att minnas och glömma.", "en": "What do we remember? How do we forget things? haMEmo is a performance about forgetting and remembering." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/060DBB4332472C3111E388D34EFB9ED9/haMEmo_nykyklovneriaa_kaikenikaisille", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/060DBB4332472C3111E388D34EFB9ED9/haMEmo_nutidsclowneri_for_publik_i_alla_aldrar", "en": "http://www.kanneltalo.fi/en/events/event/060DBB4332472C3111E388D34EFB9ED9/haMEmo_contemporary_clownery_for_all_ages" }, "location_extra_info": null, "name": { "fi": "haMEmo – nykyklovneriaa kaikenikäisille – Juhlitaan mokaa! -festivaali", "sv": "haMEmo – nutidsclowneri för publik i alla åldrar – Festivalen Juhlitaan mokaa!", "en": "haMEmo – contemporary clownery for all ages – Let's celebrate flop!" }, "description": { "fi": "<p>Taina Mäki-Ison klovneriasoolo haMEmo on esitys muistamisesta ja unohtamisesta.</p><p>Siinä <b>Klovni Tapikka</b> ihmettelee ihmisen eri ikävaiheita ja elämänsä ihanuuksia valmistautuen samalla jättämään niille jäähyväiset. haMEmossa on vähän puhetta, mutta paljon klovnerialle tyypillistä suoraa vuorovaikutusta ja leikkiä yleisön kanssa. Luvassa on myös pilkahdus butotanssia ja hameleikkejä…</p><p>Mäki-Iso palaa tänä vuonna tähän seitsemän vuotta tauolla olleeseen esitykseen, josta hän aikoinaan tuumasi: ”Tätä haluaa esittää loppuelämäni tavalla tai toisella”. Onkin kiinnostavaa, miten ajan kuluminen ja esiintyjän ikääntyminen ovat vaikuttaneet elämän kiertokulkua käsittelevään esitykseen.</p><p><i>”HaMEmo brings Charlie Chaplin to life (--) Taina used all her theatrical talent to bring the transformation Tapikka the Clown alive. She overwhelmed her audience and took control of their feelings.”</i> Fujairah Arts 2016</p><p>Ohjaus, käsikirjoitus ja toteutus: Taina Mäki-Iso<br>Valot, äänet, valokuvat: Mika Haaranen<br>Skenografia: Elina Kolehmainen<br>Liikeilmaisu ja ohjausapu: Norman Taylor<br>Buto: Ken Mai</p><p>Esitys sopii aikuisille, ikäihmisille ja yli 5-vuotiaille lapsille<br>Kesto: n. 52 min<br>Esityskieli: mielikuvituskieli ja muutama sana suomea, kieliriippumaton</p>", "sv": "<p>Taina Mäki-Isos clownerisolo haMEmo är en föreställning om att minnas och glömma.</p><p>Clownen Tapikka förundras över människans olika åldrar och livsfaser och allt det underbara i sitt eget liv, och förbereder sig samtidigt på att ta avsked från dem. haMEmo är fåordigt men i stället finns en mängd direkt interaktion och lek med publiken, som är typisk för clowneri. Det utlovas också en glimt av buto och kjollekar…</p><p>För vuxen och barn 5+<br>Längd ca. 52 min<br>Språk: fantasins språk, några ord finska, språkoberoende</p>", "en": "<p>What do we remember? How do we forget things? haMEmo is a performance about forgetting and remembering.</p><p>Tapikka the Clown is busy contemplating the human life cycle and the wonders of her own existence while preparing for her own inevitable departure from this world. Tapikka bids farewell to everything she knows and loves.</p><p>haMEmo is written, directed, produced and performed by Taina Mäki-Iso. Light, sound and set design and photos: Mika Haaranen. Costume and set design: Elina Kolehmainen. Movement and co direction: Norman Taylor. Consultation of buto & choreography: Ken Mai<br> <br>Duration: c. 52 min<br>Age Group: +5<br>No language limits. (Only some Gibberish and a few words in Finnish)</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60515/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60514", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4466, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:25:18.885533Z", "last_modified_time": "2023-09-07T14:25:18.885555Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731058.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4466/?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": "2023-09-07T14:25:18.699123Z", "last_modified_time": "2023-11-14T06:13:30.163951Z", "date_published": null, "start_time": "2023-10-27T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Ruubenin upea maailmankiertue on takana ja hän on palannut Helsinkiin.", "sv": "Ruubens fantastiska världsturné är slut och han har återvänt till Helsingfors.", "en": "Ruuben’s amazing world tour is over, and it’s time to return to Helsinki." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F3704F6A66DD5ECB3B3A59E435D08695/Hurmaavan_hauska_klovni_Hanna_Terava_mokailee", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F3704F6A66DD5ECB3B3A59E435D08695/Den_fortjusande_lustiga_clownen_Hanna_Terava_gor_bort_sig", "en": "http://www.kanneltalo.fi/en/events/event/F3704F6A66DD5ECB3B3A59E435D08695/Hilariously_funny_clown_Hanna_Terava_screws_up" }, "location_extra_info": null, "name": { "fi": "Hurmaavan hauska klovni Hanna Terävä mokailee – Juhlitaan mokaa! -festivaali", "sv": "Den förtjusande lustiga clownen Hanna Terävä gör bort sig – Festivalen Juhlitaan mokaa!", "en": "Hilariously funny clown Hanna Terävä screws up – Let's celebrate flop!" }, "description": { "fi": "<p>Ruubenin upea maailmankiertue on takana ja hän on palannut Helsinkiin.</p><p>Muistoihin on kiertueelta jäänyt yhtä jos toista, mutta Ruubenin fokus on jo vahvasti seuraavassa teoksessa. Taide asuu Ruubenissa! Tervetuloa iso ja pieni yleisö!</p><p><b>Hanna Terävä</b> on valmistunut Tukholman Teatterikorkeakoulusta klovnerian maisteriksi ja on tehnyt klovneriaesityksiä sekä teatterinäyttämöillä että niiden ulkopuolella. Hanna työskentelee aktiivisesti Klovnit ilman rajoja -järjestössä, valmistaa sooloesityksiä ja on esiintynyt mm. Tanssiteatteri Hurjaruuthin kiitetyissä Talvisirkuksissa vuodesta 2002 alkaen.</p><p>Kahvilan stagella nähdään kolmena peräkkäisenä päivänä vapaapääsyisiä esityksiä osana Juhlitaan mokaa! -festivaalia. Tule virittäytymään klovnitaajuudelle ennen illan saliesitystä tai nauti hauska ja yllättävä välipala muuten vain.</p><p>Kukapa meistä ei joskus mokailisi? Juhlitaan mokaa! -festivaalilla lokakuussa 2023 Kanneltalossa juhlitaan teatteriohjaaja, opettaja ja klovni Taina Mäki-Ison erinäisiä ikä- ja työvuosia.</p><p>Esitys sopii kaikenikäisille<br>Kesto max 30 min<br>Kahvilan stage, vapaa pääsy</p>", "sv": "<p>Ruubens fantastiska världsturné är slut och han har återvänt till Helsingfors.</p><p>Turnén gav många minnen men Ruubens fokus ligger redan stenhårt på nästa verk. Konsten bor i Ruuben! Välkommen stora och små!</p><p>För alla åldrar <br>Längd max 30 min</p>", "en": "<p>Ruuben’s amazing world tour is over, and it’s time to return to Helsinki.</p><p>The tour may have left all sorts of memories, but Ruuben’s focus is already firmly on the next project. Art lives within Ruuben! Welcome everyone, big and small!</p><p>For all ages<br>Duration max 30 min</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60514/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61109", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV" }, "price": { "fi": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5195, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:31:07.972056Z", "last_modified_time": "2023-10-09T13:31:07.972082Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737460.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5195/?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": "2023-10-09T13:31:07.826009Z", "last_modified_time": "2023-11-14T06:13:30.090473Z", "date_published": null, "start_time": "2023-10-27T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Disneyn eeppinen seikkailu seuraa Simbaa, sisukasta leijonanpentua, joka ei malttaisi odottaa kuninkaaksi tulemista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/36160A7F8A347D88E37ABA05D265A238/Leijonakuningas_7_" }, "location_extra_info": null, "name": { "fi": "Leijonakuningas (7) – Kino Helios" }, "description": { "fi": "<p>Disneyn eeppinen seikkailu seuraa Simbaa, sisukasta leijonanpentua, joka ei malttaisi odottaa kuninkaaksi tulemista.</p><p>Hänen kunnianhimoinen setänsä Scar johtaa häntä harhaan, mutta Simba omaksuu hulvattomien seuralaistensa Timonin ja Pumban huolettoman elämäntyylin ja unohtaa kuninkaalliset velvollisuutensa.</p><p>Kohtalo kuitenkin kutsuu, ja hänen täytyy päättää, milloin on oikea aika palata Jylhämaahan ottamaan paikkansa elämän kiertokulussa.<br> <br>Ikäraja: 7<br>Kesto 88 min<br>Puhuttu suomeksi</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia ja klassikoita niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61109/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61018", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": { "fi": "6 €", "en": "6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5194, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:31:07.584859Z", "last_modified_time": "2023-10-09T13:31:07.584877Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735814.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5194/?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": "2023-10-09T13:31:07.440237Z", "last_modified_time": "2023-11-14T06:13:30.015615Z", "date_published": null, "start_time": "2023-10-27T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Leikkisän tiikerin vierailu kääntää kaavoihin kangistuneen perheen elämän ylösalaisin. Playful Tiger on kekseliäs, hauska ja kaoottinen esitys. Se on moniaistinen kuormittamatta kuitenkaan aisteja liikaa.", "en": "Playful Tiger tells the story of a tiger’s visit to a rigid family home where he turns their world upside down. It's chaotic but brilliantly fun, with a focus on sensory engagement." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/B3628B55BAC5BFA38E1BC4BC0E8A2206/Barrowland_Ballet_Playful_Tiger", "en": "http://www.stoa.fi/en/events/event/B3628B55BAC5BFA38E1BC4BC0E8A2206/Barrowland_Ballet_Playful_Tiger" }, "location_extra_info": null, "name": { "fi": "Barrowland Ballet: Playful Tiger – Bravo! POP-UP", "en": "Barrowland Ballet: Playful Tiger – Bravo! POP-UP" }, "description": { "fi": "<p>Leikkisän tiikerin vierailu kääntää kaavoihin kangistuneen perheen elämän ylösalaisin. Playful Tiger on kekseliäs, hauska ja kaoottinen esitys. Se on moniaistinen kuormittamatta kuitenkaan aisteja liikaa.</p><p>Playful Tiger on suunnattu yli 7-vuotiaille autisminkirjon lapsille, erityisesti muulla tavoin kuin sanoin kommunikoiville lapsille. Esityksen leikillisyys luo tiloja yleisön ja esiintyjien keskinäiselle vuorovaikutukselle.<br> <br>Esitystä katsomaan otetaan maksimissaan 8 lasta heidän perheidensä ja avustajiensa kanssa. Esitystilan läheisyydessä on rauhallinen ja rento tila, johon voi milloin vain vetäytyä, myös tarvittaessa kesken esityksen.</p><p>Lippujen rajallisen määrän ja tarkan kohdeyleisön vuoksi liput ja lisätietoa: info@assitejfi.org.</p><p>Kohdeyleisö: 7+ autismikirjon lapset, erityisesti muulla tavoin kuin sanoin kommunikoivat <br>Kesto: 45 min<br>Kieli: Sanaton</p><p>Konsepti: Natasha Gilmore & Robert Alan Evans<br>Koreografia: Natasha Gilmore<br>Toteutettu yhteistyössä Ellie Griffitsin kanssa<br>Esiintyjät: Charlotte Mclean, Jo Pirrie, Vince Virr<br>Sävellys: Kim Moore<br>Lavastus ja valosuunnittelu: Fred Pommerehn<br>Puvustus: Christine Dove<br> <br>Playful Tiger pohjaa Natasha Gilmoren ja Robert Alan Evansin teokseen Tiger Tale.<br> <br><b>Barrowland Ballet</b> on yksi Skotlannin menestynein ja jännittävin nykytanssiryhmä, joka on rakentunut ryhmän taiteellisen johtajan Natasha Gilmoren teosten ympärille. Ryhmän korkealaatuiset ja saavutettavat tanssiteatteriesitykset kiertävät laajalti niin Iso-Britanniassa kuin kansainvälisesti sekä pienissä että isommissa esityspaikoissa. Ryhmän teokset ovat nokkelia ja hauskoja, niiden oivaltavat huomiot ihmisluonteesta juontavat juurensa usein henkilökohtaisista kokemuksista.</p><p><b>Bravo! POP-UP</b><br>Valloittava ja kansainvälistä menestystä saavuttanut skotlantilainen tanssiryhmä Barrowland Ballet saapuu Stoaan osana Bravo! Pop-up-tapahtumaa 27.–28.10.2023. Ryhmän kaksi hienoa teosta Tiger Tale ja Playful Tiger tarjoavat esimakua Bravo! lasten ja nuorten esittävän taiteen festivaalista, joka järjestetään pääkaupunkiseudun kulttuuritaloissa 15.–24.3.2024. Bravo! on lasten- ja nuortenteatterijärjestö Suomen Assitej ry:n yhteistyössä pääkaupunkiseudun kulttuuritoimien kanssa tuottama kansainvälinen festivaali. Bravo! tarjoaa korkealaatuisia esityselämyksiä ja monipuolista, laadukasta ohjelmistoa lapsille, nuorille ja heidän perheilleen. <br> <br>Bravo! Pop-up on Suomen Assitej ry:n ja Stoan yhteistyössä tuottama tapahtuma, jota on tukenut Taiteen edistämiskeskus sekä Jane ja Aatos Erkon säätiö.</p>", "en": "<p>Playful Tiger tells the story of a tiger’s visit to a rigid family home where he turns their world upside down. It's chaotic but brilliantly fun, with a focus on sensory engagement.</p><p>Playful Tiger is for children and young people age 7+ with complex autism who are mainly non- verbal. Playfulness within the work creates space for a two-way response between audience and performers.</p><p>Made in collaboration with Ellie Griffiths Projects, this piece interacts directly with the audience, with a focus on sensory engagement.</p><p>The capacity of the show is 8 young people with their families and carers. Close to the performance venue there will be a relaxed space where the audience members can go before, after and if needed during the performance.<br> <br>Target audience: Children and young people age 7 + with complex autism and who are mainly non- verbal. <br>Duration: 45 minutes <br>Non-verbal</p><p>Choreographer: Natasha Gilmore<br> Collaborator: Ellie Griffiths<br> Performers: Charlotte McLean, Jo Pirrie, Vince Virr Composer: Kim Moore<br> Set and Lighting design: Fred Pommerehn<br>Costumer Designer: Christine Dove<br>Playful Tiger is based on Tiger Tale co-created by Natasha Gilmore and Robert Alan Evans</p><p>Due to the limited edition of tickets and specific target group, tickets and more info info@assitejfi.org</p><p><b>Barrowland Ballet</b> is one of Scotland’s most exciting and successful contemporary dance companies built around the artistic work of choreographer Natasha Gilmore. The company produces high quality, accessible dance theatre performances which tour nationally and internationally to small and mid-scale venues. The work’s themes are delivered with wit and humour, and the insightful observations of human behaviour are rooted in personal stories.</p><p><b>Bravo! POP-UP</b><br>Barrowland Ballet, the charming and internationally acclaimed Scottish dance company, comes to Stoa as part of the Bravo! pop-up event on 27–28 October 2023. The group’s two wonderful works Tiger Tale and Playful Tiger are a preview of the Bravo! festival of performing arts for children and young people, which will take place in the cultural centres of the Helsinki Metropolitan Area between 15 and 24 March 2024.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61018/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60769", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5193, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:31:07.226827Z", "last_modified_time": "2023-10-09T13:31:07.226847Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735813.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5193/?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": "2023-10-09T13:31:07.010787Z", "last_modified_time": "2023-11-14T06:13:29.941066Z", "date_published": null, "start_time": "2023-10-27T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kaoottisessa, vaarallisessa ja kekseliään hauskassa esityksessä tiikeri tuo perheen jäsenet takaisin yhteen ja muistuttaa heitä siitä, mikä oikeasti on tärkeää.", "en": "Something wild is prowling. She can hear it through her bedroom walls, but her mum and dad seem stuck in the dull routines of their everyday lives. Until one day the wild breaks in and everything changes." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/292C058534742A7FD7E4B5D8AD9F2541/Barrowland_Ballet_Tiger_Tale", "en": "http://www.stoa.fi/en/events/event/292C058534742A7FD7E4B5D8AD9F2541/Barrowland_Ballet_Tiger_Tale" }, "location_extra_info": null, "name": { "fi": "Barrowland Ballet: Tiger Tale – Bravo! POP-UP | Esitys kouluryhmille", "en": "Barrowland Ballet: Tiger Tale – Bravo! POP-UP" }, "description": { "fi": "<p>Kaoottisessa, vaarallisessa ja kekseliään hauskassa esityksessä tiikeri tuo perheen jäsenet takaisin yhteen ja muistuttaa heitä siitä, mikä oikeasti on tärkeää.</p><p>Kaavoihin kangistuneen perheen elämä kääntyy ylösalaisin, kun tiikeri tunkeutuu heidän kotiinsa. Esityksen vangitsevat tanssinumerot pitävä yleisön otteessaan ja vetävät tapahtumien keskipisteeseen. Lopussa kaikilla on mahdollisuus tutustua esityksen lavasteisiin.</p><p>Ikäsuositus: 6+<br>Kesto: 55 min<br>Kieli: Sanaton<br>Ilmoittautuminen: www.kultus.fi<br>HUOM! Osallistujat arvotaan ilmoittautuneiden joukosta.<br>Lisätiedot: hanna.westerholm@hel.fi</p><p>Konsepti: Natasha Gilmore & Robert Alan Evans<br>Koreografia: Natasha Gilmore<br>Ohjaus: Robert Alan Evans<br>Esiintyjät: Charlotte Mclean, Jo Pirrie, Vince Virr<br>Sävellys: Kim Moore<br>Lavastus ja valosuunnittelu: Fred Pommerehn<br>Puvustus: Christine Dove</p><p><b>Bravo! POP-UP </b><br>Valloittava ja kansainvälistä menestystä saavuttanut skotlantilainen tanssiryhmä Barrowland Ballet saapuu Stoaan osana Bravo! Pop-up-tapahtumaa 27.–28.10.2023. Ryhmän kaksi hienoa teosta Tiger Tale ja Playful Tiger tarjoavat esimakua Bravo! lasten ja nuorten esittävän taiteen festivaalista, joka järjestetään pääkaupunkiseudun kulttuuritaloissa 15.–24.3.2024. Bravo! on lasten- ja nuortenteatterijärjestö Suomen Assitej ry:n yhteistyössä pääkaupunkiseudun kulttuuritoimien kanssa tuottama kansainvälinen festivaali. Bravo! tarjoaa korkealaatuisia esityselämyksiä ja monipuolista, laadukasta ohjelmistoa lapsille, nuorille ja heidän perheilleen. <br> <br>Bravo! Pop-up on Suomen Assitej ry:n ja Stoan yhteistyössä tuottama tapahtuma, jota on tukenut Taiteen edistämiskeskus sekä Jane ja Aatos Erkon säätiö.</p>", "en": "<p>Something wild is prowling. She can hear it through her bedroom walls, but her mum and dad seem stuck in the dull routines of their everyday lives. Until one day the wild breaks in and everything changes.</p><p>A troubled family’s world turns upside down when a tiger invades. It’s chaotic, it’s dangerous but brilliantly funny as the tiger reignites the family’s love for one another. With captivating dancers enjoy the thrill of sitting right up close to the action and the chance to explore the set at the end.</p><p>Target group: Children from 6 years up and their families<br>Duration: 55 minutes<br>Non-verbal<br> <br>Co-creators: Natasha Gilmore & Robert Alan Evans<br>Choreographer: Natasha Gilmore<br>Director: Robert Alan Evans<br>Performers: Charlotte Mclean, Jo Pirrie, Vince Virr<br>Composer: Kim Moore<br>Set and Lighting design: Fred Pommerehn<br>Costumer Designer: Christine Dove</p><p><b>Bravo! POP-UP</b><br>Barrowland Ballet, the charming and internationally acclaimed Scottish dance company, comes to Stoa as part of the Bravo! pop-up event on 27–28 October 2023. The group’s two wonderful works Tiger Tale and Playful Tiger are a preview of the Bravo! festival of performing arts for children and young people, which will take place in the cultural centres of the Helsinki Metropolitan Area between 15 and 24 March 2024.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60769/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61068", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5192, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:31:03.681172Z", "last_modified_time": "2023-10-09T13:31:03.681189Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727082.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5192/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:31:03.545322Z", "last_modified_time": "2023-11-14T06:13:29.409129Z", "date_published": null, "start_time": "2023-10-26", "end_time": "2023-11-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, "provider_contact_info": null, "short_description": { "fi": "”Olen kiinnostunut metsässä tapahtuvista hitaista ja miltei näkymättömistä muutoksista\", kertoo taidemaalari ja nukketeatteritaiteilija Anna Uschanov." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B2900289B6A78DE3C37E41D024912F4B/Anna_Uschanov_Years_of_plenty_" }, "location_extra_info": null, "name": { "fi": "Anna Uschanov: Years of plenty" }, "description": { "fi": "<p>”Olen kiinnostunut metsässä tapahtuvista hitaista ja miltei näkymättömistä muutoksista\", kertoo taidemaalari ja nukketeatteritaiteilija Anna Uschanov.</p><p>”Lahottajasienet ja bakteerit nakertavat vääjäämättä lahonnutta puun runkoa. Jokin pieni hajottaa jotain suurta palasiksi. Toisaalta olen myös kiinnostunut metsässä näkyvistä nopeista, ihmisen aiheuttamista jäljistä ja muutoksista. Vastakaadetun puun kanto avaa ihmisen silmiltä muuten salatun näkymän puun vuosirenkaisiin. Puu on arkistoinut kesät ja talvet sisälleen siisteiksi vaihtelevan paksuisiksi ympyröiksi. Kannon sileä pinta katoaa vuosien saatossa, muuttuen tunnistamattomaksi möykyksi.<br> <br>\"Teoksiani varten olen havainnoinut puun ja materian lahoamista ja yrittänyt paikantaa tuota hidasta muutosta. Jos painaa kynnen tarpeeksi syvälle lahopuun pintaan, voi löytää kokonaisen uuden pienen mikroskooppisen yhteiskunnan, joka pyörii täysin omilla toimintaperiaatteillaan, linkittyen kuitenkin jollain tavalla ympärillä olevaan metsään. Teokseni ovat yritys hypätä ihmisen ajasta metsän aikaan.”</p><p><b>Anna Uschanov</b> (s. 1985) on Helsingissä asuva taidemaalari ja nukketeatteritaiteilija. Hän on valmistunut Vapaasta Taidekoulusta sekä Turun Taideakatemian nukketeatterilinjalta. Mittakaavalla leikittely, sen venyttäminen tai kutistaminen ovat hänelle olennainen osa työskentelyä. Erilaisten materiaalien tunnustelu, tutkiminen ja yhdistäminen luovat hänelle erilaisia maisemia ja materiaalisia kokonaisuuksia.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61068/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60099", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4460, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:25:14.044617Z", "last_modified_time": "2023-09-07T14:25:14.044650Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732915.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4460/?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": "2023-09-07T14:25:13.056209Z", "last_modified_time": "2023-11-14T06:13:29.269896Z", "date_published": null, "start_time": "2023-10-26", "end_time": "2023-11-26", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Miltä näkymätön reppu näyttää? Miltä se tuntuu? Entä mitä sen sisällä oikein on?", "sv": "Hur ser en osynlig ryggsäck ut? Hur känns den? Och vad finns inuti den? Utställningen Näkymätön reppu bjuder in besökarna att stanna upp och fundera på dessa frågor.", "en": "What does an invisible backpack look like? What does it feel like? And what’s inside? The ‘Invisible Backpack’ exhibition invites visitors to ponder these questions." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6BFE36A73DDC77E101A6AC61CBFAE5A6/Maria_Vilja_Nakymaton_reppu", "sv": "http://www.stoa.fi/sv/evenemang/event/6BFE36A73DDC77E101A6AC61CBFAE5A6/Maria_Vilja_Nakymaton_reppu_", "en": "http://www.stoa.fi/en/events/event/6BFE36A73DDC77E101A6AC61CBFAE5A6/Maria_Vilja_Invisible_Backpack_" }, "location_extra_info": null, "name": { "fi": "Maria Vilja: Näkymätön reppu", "sv": "Maria Vilja: Näkymätön reppu", "en": "Maria Vilja: Invisible Backpack" }, "description": { "fi": "<p>Miltä näkymätön reppu näyttää? Miltä se tuntuu? Entä mitä sen sisällä oikein on?</p><p>Näkymätön reppu -näyttely kutsuu kävijät pysähtymään näiden kysymysten äärellä. Näyttely perustuu kuvittaja <b>Maria Viljan</b> samannimiseen lastenkirjaan (Karisto, 2022). <br> <br>Näyttelyssä päästään sukeltamaan herkän lapsen maailmaan monien aistien kautta. <i>Näkymätön reppu</i> -kirjan päähenkilö on lapsi, joka kantaa selässään näkymätöntä reppua. Repun sisällä on kaikki se mitä hän näkee, tekee, kuulee, kokee ja ajattelee: kummitusjuttu, auringonsäde, kilpajuoksu ja ruttuinen tyyny. Ja paljon, paljon muuta. Reppu tuo elämään paljon yllätyksiä – ja toisinaan myös vähän hankaluuksia. Kirjan jatko-osa <i>Villikissareppu</i> ilmestyy 14.9.2023.</p><p>Vapaa pääsy</p>", "sv": "<p>Hur ser en osynlig ryggsäck ut? Hur känns den? Och vad finns inuti den? Utställningen Näkymätön reppu bjuder in besökarna att stanna upp och fundera på dessa frågor.</p><p>Utställningen är baserad på illustratör Maria Viljas barnbok med samma namn (Karisto, 2022).</p>", "en": "<p>What does an invisible backpack look like? What does it feel like? And what’s inside? The ‘Invisible Backpack’ exhibition invites visitors to ponder these questions.</p><p>The exhibition is based on the children’s book of the same name by illustrator Maria Vilja (Karisto, 2022).</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60099/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60509", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?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:51/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/juhlitaan-mokaa/?affiliate=ADV", "sv": "https://www.lippu.fi/artist/juhlitaan-mokaa/?affiliate=ADV", "en": "https://www.lippu.fi/artist/juhlitaan-mokaa/?affiliate=ADV" }, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4455, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:25:09.128986Z", "last_modified_time": "2023-09-07T14:25:09.129008Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731927.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4455/?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": "2023-09-07T14:25:08.365470Z", "last_modified_time": "2023-11-14T06:13:28.743405Z", "date_published": null, "start_time": "2023-10-25", "end_time": "2023-10-28", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kukapa meistä ei joskus mokailisi? Mokat nolottavat tai naurattavat, toisinaan ne opettavat. Klovneriassa moka on suorastaan välttämätön ponnahduslauta yllätyksiin.", "sv": "Vem gör inte bort sig någon gång? Fadäser känns pinsamma eller får en att skratta, ibland ger de oss lärdomar. Inom clowneri är det näst intill ofrånkomligt att klanta sig för att få fart till överraskningar.", "en": "Who doesn’t flop sometimes? Flops make us embarrassed or laugh and, sometimes, they teach us. In clownery, flops are a necessary springboard to surprises." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E571916C573B935A2D34B6D494FF6DAC/Juhlitaan_mokaa_-festivaali", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E571916C573B935A2D34B6D494FF6DAC/Festivalen_Juhlitaan_mokaa_", "en": "http://www.kanneltalo.fi/en/events/event/E571916C573B935A2D34B6D494FF6DAC/Let_s_Celebrate_Flop_festival" }, "location_extra_info": null, "name": { "fi": "Juhlitaan mokaa! -festivaali – Klovneriataituri Taina Mäki-Ison juhlavuosi", "sv": "Festivalen Juhlitaan mokaa! – Clownerivirtuosen Taina Mäki-Isos jubileumsår", "en": "Let’s Celebrate Flop! festival – Anniversary of clownery artist Taina Mäki-Iso" }, "description": { "fi": "<p>Kukapa meistä ei joskus mokailisi? Mokat nolottavat tai naurattavat, toisinaan ne opettavat. Klovneriassa moka on suorastaan välttämätön ponnahduslauta yllätyksiin.</p><p>Juhlitaan mokaa! -festivaalilla lokakuussa 2023 Kanneltalossa juhlitaan teatteriohjaaja, opettaja ja klovni <b>Taina Mäki-Ison</b> erinäisiä ikä- ja työvuosia. Ohjelmistossa nähdään ensiesitys hänen ohjauksestaan <i>JooEi!</i>, aiempia soolojaan sekä uutta klovnimateriaalia festarin päättävässä gaalaillassa.</p><p>Ennen kaikkea Kanneltalossa juhlitaan klovneriaa kohtaamisen taiteena; vuorovaikutuksellista läsnäoloa, leikkiä ja rakkautta täynnä olevaa taidemuotoa. Eri-ikäisille suunnatut esitykset luovat retrospektiivisen katsauksen Mäki-Ison klovniuteen. Mukana mokailemassa ovat myös mm. <b>Hanna Terävä</b>, <b>Jouni Bäckström</b> ja <b>Anitta Ahonen</b>.</p><p>Taina Mäki-Iso on fyysiseen teatteriin ja klovneriaan erikoistunut ohjaaja ja opettaja. Hän esiintyy myös klovnina ja hän on tehnyt useita sooloesityksiä. Hän on esiintynyt useilla festivaaleilla kotimaan lisäksi myös mm. Tšekissa, Beninissä, Yhdistyneissä Arabiemiraateissa ja Espanjassa. Mäki-Iso on tehnyt ohjauksia eri kaupunginteattereihin sekä vapaille ryhmille. Taina on opettanut kauan ja paljon – klovneriaa tuhansille, teatteria monta kertaa useammille.</p><p>Vuosi 2023 on Tainalle yhtä juhlaa: hän täyttää 60 vuotta, syksyllä 20 vuotta sitten Klovnitohtori Tanttarulla aloitti Sairaalaklovneissa ja 35 vuotta sitten alkoi hänen kolmivuotinen kautensa Lapin läänin näyttämötaiteen ohjaavana läänintaiteilijana.</p><p>Taina on ohjannut ainakin 45 vuotta. Klovnina hän on esiintynyt ensimmäisen kerran 48 vuotta sitten Sirkusperhe-esityksessä.</p><p><i>”Kun työssäni toteutuu keskittynyt läsnäolo, leikillisyys ja toisen ihmisen kohtaaminen, olen onnellinen.”</i></p>", "sv": "<p>Vem gör inte bort sig någon gång? Fadäser känns pinsamma eller får en att skratta, ibland ger de oss lärdomar. Inom clowneri är det näst intill ofrånkomligt att klanta sig för att få fart till överraskningar.</p><p>Festivalen Juhlitaan mokaa! i oktober 2023 i Gamlasgården firar teaterregissören, läraren och clownen Taina Mäki-Isos många år i livet och i yrket. På repertoaren står uruppförandet av verket JooEi! som hon regisserat, tidigare soloverk samt nytt clownmaterial under galakvällen som avslutar festivalen.</p>", "en": "<p>Who doesn’t flop sometimes? Flops make us embarrassed or laugh and, sometimes, they teach us. In clownery, flops are a necessary springboard to surprises.</p><p>In October 2023, the Let’s Celebrate Flop! festival at Kanneltalo will celebrate theatre director, teacher and clown Taina Mäki-Iso’s different years of age and work. The programme includes the premiere of Mäki-Iso’s directorial debut JooEi!, previous solo performances and new clown material on the closing gala night.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60509/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61160", "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:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://holvi.com/shop/cinemaissi/", "en": "https://holvi.com/shop/cinemaissi/" }, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5522, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-18T12:26:27.581684Z", "last_modified_time": "2023-10-18T12:26:27.581711Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737234.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5522/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-18T12:26:27.377956Z", "last_modified_time": "2023-11-14T06:13:28.672508Z", "date_published": null, "start_time": "2023-10-25", "end_time": "2023-10-29", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Cinemaissí on elokuvafestivaali, joka tuo kaikkein ajankohtaisimmat latinalaisamerikkalaiset laatuelokuvat Helsinkiin.", "en": "Cinemaissí brings the most contemporary, high quality Latin American films to Helsinki." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/D9AE9930CBC3828D346B5F037CBE72BD/Cinemaiss_2023", "en": "http://www.caisa.fi/en/events/event/D9AE9930CBC3828D346B5F037CBE72BD/Cinemaiss_2023" }, "location_extra_info": null, "name": { "fi": "Cinemaissí 2023 – Latinalaisamerikkalaisen elokuvan festivaali", "en": "Cinemaissí 2023 – Latin American Film Festival" }, "description": { "fi": "<p>Cinemaissí on elokuvafestivaali, joka tuo kaikkein ajankohtaisimmat latinalaisamerikkalaiset laatuelokuvat Helsinkiin.</p><p>Cinemaissí on edistänyt latinalaisamerikkalaista kulttuuria ja elokuvaa jo vuodesta 2005.</p><p>Tutustu ohjelmistoon: <u><a href=\"https://www.cinemaissi.com\">www.cinemaissi.com</u></a></p>", "en": "<p>Cinemaissí brings the most contemporary, high quality Latin American films to Helsinki.</p><p>Cinemaissí has promoted the Latin American culture and cinema in Helsinki every October since 2005.</p><p>Full program: <u><a href=\"https://www.cinemaissi.com\">www.cinemaissi.com</u></a></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61160/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60964", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5189, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:56.783576Z", "last_modified_time": "2023-10-09T13:30:56.783596Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737232.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5189/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-09T13:30:56.622643Z", "last_modified_time": "2023-11-14T06:13:28.085780Z", "date_published": null, "start_time": "2023-10-25", "end_time": "2024-01-08", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Jussi Hellsten on palkintoja voittanut valokuvaaja ja ohjaaja. Hän vietti toukokuun alussa kaksi viikkoa Abilis-säätiön vapaaehtoisena dokumentoiden vammaisten ihmisten elämää Abiliksen ohjelmamaissa Etiopiassa ja Mosambikissa.", "sv": "Jussi Hellsten är en prisbelönt fotograf och regissör som i början av maj tillbringade två veckor som frivillig för samfundet Abilis.", "en": "Jussi Hellsten is an award-winning photographer and director. He spent two weeks volunteering for Abilis documenting the lives of persons with disabilities in Abilis’ programme countries Ethiopia and Mozambique." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2DC5F75BE3EA2AB0F6D7D86DBF3242C2/Jussi_Hellsten_Haaveita_", "sv": "http://www.annantalo.fi/sv/evenemang/event/2DC5F75BE3EA2AB0F6D7D86DBF3242C2/Jussi_Hellsten_Drommar", "en": "http://www.annantalo.fi/en/events/event/2DC5F75BE3EA2AB0F6D7D86DBF3242C2/Jussi_Helsten_Dreams" }, "location_extra_info": null, "name": { "fi": "Jussi Hellsten: Haaveita – Valokuvanäyttely", "sv": "Jussi Hellsten: Drömmar – Fotoutställning", "en": "Jussi Helsten: Dreams – Photography Exhibition" }, "description": { "fi": "<p>Jussi Hellsten on palkintoja voittanut valokuvaaja ja ohjaaja. Hän vietti toukokuun alussa kaksi viikkoa Abilis-säätiön vapaaehtoisena dokumentoiden vammaisten ihmisten elämää Abiliksen ohjelmamaissa Etiopiassa ja Mosambikissa.</p><p>Yhteistyönä toteutettu valokuvanäyttely <i>”Haaveita”</i> on esillä Annantalon kahvilatilassa.</p><p>Näyttely kertoo globaalin etelän vammaisten ihmisten toiveista ja haaveista.</p><p><i>”Tämä valokuvanäyttely on heistä, ei minusta. Vammaisten ihmisten asema globaalissa etelässä on äärimmäisen haastava. Monet ovat kokeneet syrjintää, heitteillejättöä ja väkivaltaa. Valtiollisilta tahoilta voi olla vaikeaa tai joissain tapauksissa mahdotonta saada tietoa omista oikeuksista.”</i> - Jussi Hellsten</p><p>= = = = = <br>Näyttelyn teokset ovat myynnissä. Tuotto käytetään kokonaisuudessaan globaalin etelän vammaisten ihmisten tukemiseksi. Kiinnostuneet voivat ottaa yhteyttä Annantalon tuottajaan (harri.piispanen@hel.fi) tai suoraan Abilis-säätiöön.</p>", "sv": "<p>Jussi Hellsten är en prisbelönt fotograf och regissör som i början av maj tillbringade två veckor som frivillig för samfundet Abilis.</p><p>Hellsten dokumenterade livet för människor med funktionsnedsättning i programländerna för Abilis, Etiopien och Moçambique.</p><p>Fotoutställningen ”Drömmar” som genomförts i samarbete visas i Annagårdens café.</p><p>Utställningen handlar om önskemålen och drömmarna hos människor med funktionsnedsättning i den globala södern.</p><p><i>”Den här fotoutställningen berättar om dem, inte om mig.<br>Ställningen hos personer med en funktionsnedsättning i den globala södern är oerhört utmanande. Många har upplevt diskriminering, utsatthet och våld. Det kan vara svårt eller i vissa fall omöjligt att få information om sina egna rättigheter från statliga instanser.”</i> - Jussi Hellsten</p><p>= = = = = <br>Fotografierna på utställningen är till salu. Intäkterna används i sin helhet för att stödja människor med funktionsnedsättning i den globala södern. Om du är intresserad av verken kan du kontakta Annegårdens producent (harri.piispanen@hel.fi) eller direkt stiftelsen Abilis.</p>", "en": "<p>Jussi Hellsten is an award-winning photographer and director. He spent two weeks volunteering for Abilis documenting the lives of persons with disabilities in Abilis’ programme countries Ethiopia and Mozambique.</p><p>A collaborative photography exhibition <i>”Dreams”</i> is featured in Annatalo cafeteria space.</p><p>The exhibition presents the hopes and dreams of persons with disabilities in the Global South.</p><p><i>”This exhibition is about them, not about me. The status of persons with disabilities in the Global South is extremely challenging. Many have faced discrimination, negligence or violence. For persons with disabilities it can be hard or even impossible to get information on their own rights from the state actors.”</i> - Jussi Hellsten</p><p>= = = = = <br>All exhibition pieces are for sale. All interested can be in contact with the Abilis Foundation. All proceeds are entirely used to support persons with disabilities in the Global South</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60964/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61144", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5471, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-13T14:41:30.135220Z", "last_modified_time": "2023-10-13T14:41:30.135239Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738049.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5471/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-10-13T14:41:29.990864Z", "last_modified_time": "2023-11-14T06:13:27.718681Z", "date_published": null, "start_time": "2023-10-24", "end_time": "2023-10-29", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Miltä tulevaisuuden Itä-Helsinki näyttää, tuoksuu, kuulostaa, tuntuu tai maistuu. Entä mikä tekisi Itä-Helsingistä vielä rakkaamman?" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/061C8C413DEB60E83FA080C654384E97/Stoan_Tulevaisuuslaboratorio_Tulevaisuus_2030_-aaniteos_" }, "location_extra_info": null, "name": { "fi": "Stoan Tulevaisuuslaboratorio: Tulevaisuus 2030 -ääniteos" }, "description": { "fi": "<p>Miltä tulevaisuuden Itä-Helsinki näyttää, tuoksuu, kuulostaa, tuntuu tai maistuu. Entä mikä tekisi Itä-Helsingistä vielä rakkaamman?</p><p>Nuorten lyriikka- ja sanataidepajassa syntyneitä ajatuksia ja runoja ääniteoksen muodossa Stoan tulevaisuuslaboratoriossa Stoan galleriassa talon aukioloaikoina eli ma-to klo 8-20, pe klo 8-18, la klo 10-16 ja su klo 12-18.</p><p>Stoassa 24.–29.10. järjestettävässä Tulevaisuuslaboratorio-tapahtumakokonaisuudessa kaupunkilaiset rakentavat Stoan yhteistä tulevaisuusnäkymää. Tapahtumakokonaisuuteen kuuluu kaikille kaupunkilaisille avoimen 2030°+-yhteisöteoksen lisäksi eri vierailijaryhmille suunnattuja työpajoja sekä kävijöille jaettavia tehtäväpaketteja. Kertyvää tietoa hyödynnämme Stoan tulevan laajennusosan ja perusparannuksen suunnittelussa.</p><p>Tulevaisuuden Stoa luodaan yhdessä – osallistu suunnitteluun ja tee Stoasta elämäsi keskus!</p><p>Järj. Nuorten toimintatalo Kipinä ja Signaalimedia sekä Stoa/kulttuuripalvelut</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61144/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61093", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5418, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-12T11:00:32.593905Z", "last_modified_time": "2023-10-12T11:00:32.593992Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737888.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5418/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-12T11:00:32.267174Z", "last_modified_time": "2023-11-14T06:13:27.641909Z", "date_published": null, "start_time": "2023-10-24", "end_time": "2023-10-29", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kulttuurikeskus Stoa uudistuu ja laajenee 2030-luvulla. Tavoitteemme on tehdä tila, joka on koko Itä-Helsingin ikioma ylpeyden aihe ja itähelsinkiläisen kulttuurin ja arjen keskus.", "sv": "Kulturcentret Stoa förnyas och utvidgas på 2030-talet. Vårt mål är att skapa ett utrymme som är en stolthet och ett centrum för kultur och vardag i östra Helsingfors.", "en": "Cultural Centre Stoa will be renewing and expanding in the 2030s. Our aim is to create a space that will be a source of pride for all of East Helsinki and the hub for East Helsinki culture and daily life." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E6520998BDB565B73F2F2FBBC7F2AA62/Stoan_Tulevaisuuslaboratorio_2030_", "sv": "http://www.stoa.fi/sv/evenemang/event/E6520998BDB565B73F2F2FBBC7F2AA62/Stoas_Framtidslaboratorium_2030_", "en": "http://www.stoa.fi/en/events/event/E6520998BDB565B73F2F2FBBC7F2AA62/Stoa_Futures_Lab_2030_" }, "location_extra_info": null, "name": { "fi": "Stoan Tulevaisuuslaboratorio: 2030°+ – Itä saa mitä tilaa – suunnitellaan yhdessä elämäsi keskus", "sv": "Stoas Framtidslaboratorium: 2030°+", "en": "Stoa Futures Lab: 2030°+ – Go East! – designing the hub of your life" }, "description": { "fi": "<p>Kulttuurikeskus Stoa uudistuu ja laajenee 2030-luvulla. Tavoitteemme on tehdä tila, joka on koko Itä-Helsingin ikioma ylpeyden aihe ja itähelsinkiläisen kulttuurin ja arjen keskus.</p><p>Tulevaisuuden Stoassa voit luoda, kokea, harrastaa, leikkiä, työskennellä, juhlia, oppia ja opiskella.</p><p>Koska kukaan ei tunne itää paremmin kuin sen asukkaat, kutsumme kaupunkilaiset ideoimaan, millainen yhteinen Stoamme voisi olla 2030-luvulla. Tule mukaan muodostamaan ideoiden ja toiveiden 2030°+-yhteisöteosta Stoan galleriaan 24.–29.10.2023. Osallistua voit talon aukioloaikoina eli ma-to klo 8-20, pe klo 8-18, la klo 10-16 ja su klo 12-18.</p><p>Kolmiulotteisen osallistavan teoksen Stoan galleriaan ovat suunnitelleet tutkija-taiteilijat Lauri Jäntti ja Francisco Trento sekä kuvataiteilija Anniina Lius. Rakennelman on toteuttanut Studio Thomas. Teos rakentuu ja täydentyy Stoan Tulevaisuuslaboratoriossa vierailevien kaupunkilaisten ajatuksista, ideoista, haaveista, toiveista ja niiden kytköksistä.</p><p>Stoassa 24.–29.10. järjestettävässä Tulevaisuuslaboratorio-tapahtumakokonaisuudessa kaupunkilaiset rakentavat Stoan yhteistä tulevaisuusnäkymää. Tapahtumakokonaisuuteen kuuluu kaikille kaupunkilaisille avoimen 2030°+-yhteisöteoksen lisäksi eri vierailijaryhmille suunnattuja työpajoja sekä kävijöille jaettavia tehtäväpaketteja. Kertyvää tietoa hyödynnämme Stoan tulevan laajennusosan ja perusparannuksen suunnittelussa.<br> <br>Tulevaisuuden Stoa luodaan yhdessä – osallistu suunnitteluun ja tee Stoasta elämäsi keskus!<br> <br>Järj. Kaikki Itä-Helsingin kulttuurikeskus Stoan toimijat yhdessä: Itäkeskuksen kirjasto, kulttuuripalvelut, Nuorten toimintatalo Kipinä, Työväenopisto ja Arbis</p>", "sv": "<p>Kulturcentret Stoa förnyas och utvidgas på 2030-talet. Vårt mål är att skapa ett utrymme som är en stolthet och ett centrum för kultur och vardag i östra Helsingfors.</p><p>Kulturcentret Stoa förnyas och utvidgas på 2030-talet. Vårt mål är att skapa ett utrymme som är en stolthet och ett centrum för kultur och vardag i östra Helsingfors.</p><p>I framtidens Stoa kan du skapa, uppleva, leka, arbeta, festa, lära dig nytt och studera.<br> <br>Eftersom ingen känner till öst bättre än invånarna, bjuder vi in er att komma med idéer om hurdan vår gemensamma Stoa kunde vara på 2030-talet. Kom med och forma idéernas och önskemålens 2030°+-gemenskapsverk i Stoas galleri den 24–29 oktober 2023. Du kan delta under husets öppettider, det vill säga må-to kl. 8-20, fre kl. 8-18, lö kl.10-16, och sö kl. 12-18.</p><p>Det tredimensionella engagerande verket i Stoas galleri har planerats av forskare-konstnärerna Lauri Jäntti och Francisco Trento samt bildkonstnären Anniina Lius och Studio Thomas. Verket byggs upp och kompletteras med tankar, idéer, drömmar, önskningar och deras kopplingar från stadsbor som besöker Stoas Framtidslaboratorium. Under evenemanget Framtidslaboratorium som äger rum i Stoa den 24–29 oktober, bygger stadsborna upp en gemensam framtidsvision för Stoa. I evenemanget ingår förutom 2030°+-gemenskapsverket också verkstäder som är riktade till olika besöksgrupper samt uppgiftspaket som delas ut till besökarna. Den insamlade informationen kommer att användas i planeringen av Stoas kommande utvidgningsdel och renovering.<br>Öst e bäst - kom med och planera ditt livs centrum</p><p>Arr. Alla aktörer i Östra Helsingfors kulturcentret Stoa tillsammans: Östra centrum bibliotek, kulturtjänster, Ungdomsverksamhetshuset Kipinä, Arbetarinstitutet och Arbis.</p>", "en": "<p>Cultural Centre Stoa will be renewing and expanding in the 2030s. Our aim is to create a space that will be a source of pride for all of East Helsinki and the hub for East Helsinki culture and daily life.</p><p>In the future Stoa, you can create, experience, play, work, celebrate, learn, and study.</p><p>Because no one knows East Helsinki better than its residents, we invite citizens to brainstorm what our shared Stoa could be like in the 2030s. Join us in shaping the 2030°+ community artwork of ideas and desires in the Stoa Gallery from 24th to 29th October 2023.</p><p>During the Futures Lab event at Stoa from 24th to 29th October, residents will construct a collective vision for the future of Stoa. The event includes the 2030°+ community artwork open to all residents, workshops designed for different visitor groups, and worksheets distributed to visitors. The information accumulated in the process will be used in the planning of Stoa's future expansion and renovation.</p><p>The future Stoa is created together – participate in the planning and make Stoa the hub of your life!</p><p>Opening hours<br>Mon–Thu 9.00–20.00, Fri 8.00–18.00, Sat 10.00–16.00 and <br>Sun 12.00–18.00</p><p>Artists: Lauri Jäntti, Francisco Trento, Anniina Lius and Studio Thomas.</p><p>Organised by all the operators of Cultural Centre Stoa in East Helsinki, including Itäkeskus library, cultural services, Kipinä Youth Activity House, Adult Education Centre, and Arbis.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61093/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:58658", "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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3268243", "sv": "https://www.lippu.fi/eventseries/name-3268243", "en": "https://www.lippu.fi/eventseries/name-3268243" }, "price": { "fi": "65/48,50 €", "sv": "65/48,50 €", "en": "65/48,50 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4445, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:59.528469Z", "last_modified_time": "2023-09-07T14:24:59.528491Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_722936.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4445/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:59.188939Z", "last_modified_time": "2023-11-14T06:13:27.316291Z", "date_published": null, "start_time": "2023-10-22T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Anna Erikssonin uskomaton Tikaritaivas-konsertti yhdistää Erikssonin ja pianisti Mikko Mäkisen vuosien yhteistyön ainutlaatuisella tavalla. Konsertin ohjelmisto perustuu Anna Erikssonin uran tunnetuimpiin lauluihin sekä taiteilijan voimakkaisiin tulkintoihin maailman klassikoista.", "sv": "Anna Erikssons otroliga konsert Tikaritaivas kombinerar Erikssons och pianisten Mikko Mäkinens mångåriga samarbete på ett unikt sätt. Repertoaren grundar sig på de bästa kända styckena från Anna Erikssons karriär och konstnärens kraftfulla tolkningar av klassiker från världen.", "en": "Anna Eriksson’s incredible Tikaritaivas (Dagger Sky) concert brings together the years of cooperation between Eriksson and pianist Mikko Mäkinen in a truly unique way. The set list for the concert features some of the most famous songs of Anna Eriksson’s career and her powerful interpretations of global classics." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B69C27635AF9218523A20F13C5514597/Anna_Eriksson_-_Tikaritaivas-konsertti", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/B69C27635AF9218523A20F13C5514597/Anna_Eriksson_konserten_Tikaritaivas", "en": "http://www.savoyteatteri.fi/en/events/event/B69C27635AF9218523A20F13C5514597/Anna_Eriksson_Tikaritaivas_concert" }, "location_extra_info": null, "name": { "fi": "Anna Eriksson - Tikaritaivas-konsertti", "sv": "Anna Eriksson – konserten Tikaritaivas", "en": "Anna Eriksson – Tikaritaivas concert" }, "description": { "fi": "<p>Anna Erikssonin uskomaton Tikaritaivas-konsertti yhdistää Erikssonin ja pianisti Mikko Mäkisen vuosien yhteistyön ainutlaatuisella tavalla. Konsertin ohjelmisto perustuu Anna Erikssonin uran tunnetuimpiin lauluihin sekä taiteilijan voimakkaisiin tulkintoihin maailman klassikoista.</p><p>https://www.facebook.com/annaerikssonmusic</p><p>Kesto n. 1 h 20 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "sv": "<p>Anna Erikssons otroliga konsert Tikaritaivas kombinerar Erikssons och pianisten Mikko Mäkinens mångåriga samarbete på ett unikt sätt. Repertoaren grundar sig på de bästa kända styckena från Anna Erikssons karriär och konstnärens kraftfulla tolkningar av klassiker från världen.</p><p>https://www.facebook.com/annaerikssonmusic</p><p>Längd ca 1 h 20 min, ingen paus</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>Anna Eriksson’s incredible Tikaritaivas (Dagger Sky) concert brings together the years of cooperation between Eriksson and pianist Mikko Mäkinen in a truly unique way. The set list for the concert features some of the most famous songs of Anna Eriksson’s career and her powerful interpretations of global classics.</p><p>https://www.facebook.com/annaerikssonmusic</p><p>Duration approx. 1 h 20 min, no intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>" }, "provider": { "fi": "Ihode Management Oy", "sv": "Ihode Management Oy", "en": "Ihode Management Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:58658/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59534", "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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3341202", "sv": "https://www.lippu.fi/eventseries/name-3341202", "en": "https://www.lippu.fi/eventseries/name-3341202" }, "price": { "fi": "29,50/17,50 €", "sv": "29,50/17,50 €", "en": "29,50/17,50 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4444, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:58.926671Z", "last_modified_time": "2023-09-07T14:24:58.926692Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728081.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4444/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:58.776416Z", "last_modified_time": "2023-11-14T06:13:27.232110Z", "date_published": null, "start_time": "2023-10-21T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Vanhan kunnon rock & rollin ystäville tästä on luvassa muistojen ilta. Tämän mahtavan rockabilly-show'n myötä palaamme Elviksen, Gene Vincentin ja Little Richardin aikaan, jonka valokeilassa on kaksi genren maineikkainta nimeä: Graham Fenton (Matchbox) ja Darrell Highham.", "sv": "En kväll att minnas för alla vänner av gammal, hederlig rock & roll. Denna magnifika rockabillyshow tar publiken tillbaka till Elvis, Gene Vincents och Little Richards årtionden och allt ljus är på två av tidens främsta ikoner: Graham Fenton (Matchbox) och Darrell Highham.", "en": "This will be a night to remember for lovers of good old-fashioned rock & roll. The raucous rockabilly show will take us back to the time of Elvis, Gene Vincent and Little Richard, with the limelight on two of the most famous names in the genre: Graham Fenton (Matchbox) and Darrell Higham." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5CDC61479C0381446F4C018E3FEFE820/Giants_of_U_K_Rockabilly_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/5CDC61479C0381446F4C018E3FEFE820/Giants_of_U_K_Rockabilly_", "en": "http://www.savoyteatteri.fi/en/events/event/5CDC61479C0381446F4C018E3FEFE820/Giants_of_U_K_Rockabilly_" }, "location_extra_info": null, "name": { "fi": "Giants of U.K. Rockabilly! – Featuring Darrel Higham and Graham Fenton (Matchbox)", "sv": "Giants of U.K. Rockabilly! – Featuring Darrel Higham and Graham Fenton (Matchbox)", "en": "Giants of U.K. Rockabilly! – Featuring Darrel Higham and Graham Fenton (Matchbox)" }, "description": { "fi": "<p>Vanhan kunnon rock & rollin ystäville tästä on luvassa muistojen ilta. Tämän mahtavan rockabilly-show'n myötä palaamme Elviksen, Gene Vincentin ja Little Richardin aikaan, jonka valokeilassa on kaksi genren maineikkainta nimeä: Graham Fenton (Matchbox) ja Darrell Highham.</p><p>Graham Fenton on todella ansainnut kannuksensa rokkarina. Hän oli mukana jopa Gene Vincentin kiertueella 1971. Yhdessä Matchbox-bändinsä kanssa hänellä oli lukuisia hittejä 70-luvun loppupuolella, kuten 'Rockabilly Rebel', 'Buzz Buzz A Diddle It', 'Love's Made A Fool Of You' ja 'Midnight Dynamos'. Fenton on yksi viimeisiä todellisia rock & rollin legendoja. Hän ei ole langennut kaupallisuuden edessä ja huokuu 100 %:sesti alkuperäistä rock & rollia. Hän on ehtaa tavaraa. Olemme ylpeitä voidessamme järjestää hänet ihka ensimmäistä kertaa esiintymään Savoy-teatteriin.</p><p>Darrell Higham on niin ikään nimi, joka ei esittelyjä kaipaa. Hän on perusrokkari, joka on komean ulkonäkönsä, hienon Gretch-soundinsa ja jännitävän raa'an laulutaitonsa myötä määrittänyt genreä 80-luvulta lähtien. Hän on työskennellyt monien artistien kanssa, kuten Jeff Beck ja Imelda May, jonka kanssa hän oli aviossa muutama vuosi sitten. Higham tunnetaan myös edesmenneen, mahtavan Gene Vincentin fanituksesta, ja epäilemättä sellaiset klassikot kuten 'C'mon Everbody' ja 'Summertime Blues' saavat Savoyn yleisön rokkaamaan tulevana spesiaali-iltana.</p><p>Tämä on ihka ensimmäinen kerta, kun nämä rock & roll -suuruudet esiintyvät yhdessä tässä show'ssa, joka tulee olemaan todellista dynamiittia. Sekä Darrell Higham että Graham Fenton haluavat tämän olevan jotain erityistä suomalaisfaneille. He esittävät hittejään kuten myös heihin liitettyjä biisejä, sekä muutaman yllätysnumeron. Tämä on yhden kerran esitys, erityisesti Savoylle suunniteltu, ja me lämpimästi suosittelemme show'ta. Luvassa on unohtumaton ilta, joka sinun pitää nähdä, sillä tässä koetaan kahden vielä voimissaan olevan mahtavan rokkarin valta.</p><p>Kesto n. 2,5 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "sv": "<p>En kväll att minnas för alla vänner av gammal, hederlig rock & roll. Denna magnifika rockabillyshow tar publiken tillbaka till Elvis, Gene Vincents och Little Richards årtionden och allt ljus är på två av tidens främsta ikoner: Graham Fenton (Matchbox) och Darrell Highham.</p><p>Graham Fenton har verkligen tjänat sina sporrar som rockare. Han deltog till och med i Gene Vincents turné 1971. Tillsammans med sitt band Matchbox hade han under sent 70-tal flertalet hitlåtar, till exempel Rockabilly Rebel, Buzz Buzz A Diddle It, Love's Made A Fool Of You och Midnight Dynamos. Fenton är en av de sista sanna rock & roll-legenderna. Han har inte kapitulerat för kommersen och andas till 100 % den äkta och ursprungliga rock & rollen. Han är äkta vara. Vi är stolta över att för allra första gången i historien kunna ordna en spelning med honom på Savoyteatern.</p><p>Också Darrell Higham är en man som inte behöver presenteras. Higham är en stabil rockare som med sitt stiliga utseende, fina Gretchsound och spännande, råa sångtalang definierat genren sedan 80-talet. Han har arbetat med flera artister, såsom Jeff Beck och Imelda May. Med den sistnämnda var han också gift för ett par år sedan. Higham är också känd som ett stort fan av den framlidne giganten Gene Vincent och det råder ingen tvekan om att klassiker som C'mon Everybody och Summertime Blues kommer att få publiken i Savoy att rocka loss under den kommande specialkvällen.</p><p>Det är den allra första gången som dessa två rock & roll-storheter uppträder tillsammans på en show som kommer att vara rena dynamiten. Både Darrell Higham och Graham Fenton vill skapa något speciellt för sina finländska fans. De framför egna hitlåtar, låtar som förknippats med dem och några överraskningsnummer. Detta är en föreställning som bara visas en gång. Den är särskilt sammansatt för Savoy, och vi rekommenderar showen varmt. Det utlovas en oförglömlig kväll som måste ses – ett unikt tillfälle att få uppleva två fantastiska rockare som fortfarande är vid full vigör.</p><p>Längd ca 2,5 h med paus</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>This will be a night to remember for lovers of good old-fashioned rock & roll. The raucous rockabilly show will take us back to the time of Elvis, Gene Vincent and Little Richard, with the limelight on two of the most famous names in the genre: Graham Fenton (Matchbox) and Darrell Higham.</p><p>Graham Fenton has truly earned his stripes as a rocker. He even played a tour with Gene Vincent in 1971. Together with his band Matchbox, he released a number of well-known hits in the late 70s, such as ‘Rockabilly Rebel’, ‘Buzz Buzz A Diddle It’, ‘Love's Made A Fool Of You’ and ‘Midnight Dynamos’. Fenton is one of the last true legends of rock & roll. He has never bowed down to commercialism and is an embodiment of uncompromising rock attitude – the real deal all the way. We are very proud to have him perform at Savoy Theatre for the very first time.</p><p>Darrell Higham is another musician who needs no introduction. A rocker through and through who has been involved in defining the genre since the 80s with his handsome looks, dazzling Gretch sound and thrillingly raw singing chops. He has also worked with many other artists, such as Jeff Beck and Imelda May, who he was married to some years ago. Higham is also known as a fan of the late great Gene Vincent, and classics such as ‘C'mon Everbody’ and ‘Summertime Blues’ will be sure to have the Savoy audience rocking on this special night..</p><p>The show will mark the very first time these members of rock and roll royalty perform together to put on a performance that will blow everyone’s socks off. Both Darrell Higham and Graham Fenton want the experience to be something very special for the Finnish fans. The artists will be performing their own hits and songs often linked to them, along with some surprise numbers. This will be a one-off show specifically designed for Savoy, so we strongly recommend those interested to attend. The unforgettable night will be something to see for yourself to truly experience the power of two legendary rockers who are still at the top of their game.</p><p>Duration approx. 2½ h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>" }, "provider": { "fi": "Deelen Consultancies", "sv": "Deelen Consultancies", "en": "Deelen Consultancies" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59534/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61116", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV", "en": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV" }, "price": { "fi": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5327, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-10T12:02:45.025331Z", "last_modified_time": "2023-10-10T12:02:45.025353Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737928.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5327/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-10T12:02:44.855403Z", "last_modified_time": "2023-11-14T06:13:27.151614Z", "date_published": null, "start_time": "2023-10-21T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Dumb Money perustuu järjettömään tositarinaan tavallisista ihmisistä, jotka käänsivät Wall Streetin päälaelleen ja rikastuivat tekemällä GameStopista, ostoskeskuksen videopelikaupasta, maailman kuumimman yrityksen.", "en": "Dumb Money is the ultimate David vs. Goliath tale, based on the insane true story of everyday people who flipped the script on Wall Street and got rich by turning GameStop (yes, the mall videogame store) into the world’s hottest company." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F198FDB81EDE0EFB2789D5C08A5C7D8B/Dumb_Money_S_", "en": "http://www.malmitalo.fi/en/events/event/F198FDB81EDE0EFB2789D5C08A5C7D8B/Dumb_Money_S_" }, "location_extra_info": null, "name": { "fi": "Dumb Money (S) – Kino Helios", "en": "Dumb Money (S) – Kino Helios" }, "description": { "fi": "<p>Dumb Money perustuu järjettömään tositarinaan tavallisista ihmisistä, jotka käänsivät Wall Streetin päälaelleen ja rikastuivat tekemällä GameStopista, ostoskeskuksen videopelikaupasta, maailman kuumimman yrityksen.</p><p>Elokuva on varsinainen Daavid vastaan Goljat -kertomus. Kaiken keskellä on tavallinen tyyppi Keith Gill (Paul Dano), joka aloittaa koko tapahtumasarjan upottamalla säästönsä osakkeisiin ja julkaisemalla siitä postauksen sosiaalisessa mediassa. Kun hänen postauksensa alkavat räjähtää käsiin, mullistuu myös Keithin ja kaikkien hänen seuraajiensa elämä. Osakevinkistä kasvaa ilmiö ja kaikki rikastuvat – kunnes miljardöörit alkavat taistella vastaan, ja molempien osapuolten maailmat kääntyvät ylösalaisin.</p><p>Dumb Moneyn muissa rooleissa nähdään muun muassa Pete Davidson, Vincent D’Onofrio, America Ferrera, Nick Offerman, Anthony Ramos, Sebastian Stan, Shailene Woodley ja Seth Rogen. Elokuvan on ohjannut Craig Gillespie ja käsikirjoittaneet Lauren Schuker Blum sekä Rebecca Angelo pohjautuen Ben Mezrichin kirjaan The Antisocial Network.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>", "en": "<p>Dumb Money is the ultimate David vs. Goliath tale, based on the insane true story of everyday people who flipped the script on Wall Street and got rich by turning GameStop (yes, the mall videogame store) into the world’s hottest company.</p><p>In the middle of everything is regular guy Keith Gill (Paul Dano), who starts it all by sinking his life savings into the stock and posting about it. When his social posts start blowing up, so does his life and the lives of everyone following him. As a stock tip becomes a movement, everyone gets rich – until the billionaires fight back, and both sides find their worlds turned upside down.</p><p>Dumb Money also stars Pete Davidson, Vincent D’Onofrio, America Ferrera, Nick Offerman, Anthony Ramos, Sebastian Stan, Shailene Woodley and Seth Rogen. Directed by Craig Gillespie, written by Lauren Schuker Blum & Rebecca Angelo, based on the book “The Antisocial Network” by Ben Mezrich.</p><p>The programme at Kino Helios includes the latest premieres for adults and the whole family. As usual, the screenings at Kino Helios will take place in the small hall of Malmitalo on Wednesdays, Fridays and Saturdays at 15:00 and 18:00 (weekly changes possible). The autumn season starts on Saturday, 2 September. Kino Helios’ programme will be finalised in August.</p><p>Tickets from €8, on sale two weeks before the screening at the latest at <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61116/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60540", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4443, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:58.566426Z", "last_modified_time": "2023-09-07T14:24:58.566458Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732132.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4443/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-09-07T14:24:58.408591Z", "last_modified_time": "2023-11-14T06:13:27.079600Z", "date_published": null, "start_time": "2023-10-21T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Helsinkiläinen Madboiali eli Alioune Dia on tulevaisuuden tähti.", "sv": "Madboiali alias Alioune Dia från Helsingfors är framtidens stjärna.", "en": "Madboiali, or Alioune Dia from Helsinki, is a star of the future." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/541431E729538440FF2753C0D1EB6C56/Madboiali_PERUTTU", "sv": "http://www.vuotalo.fi/sv/evenemang/event/541431E729538440FF2753C0D1EB6C56/Madboiali_INSTALLD", "en": "http://www.vuotalo.fi/en/events/event/541431E729538440FF2753C0D1EB6C56/Madboiali_CANCELLED" }, "location_extra_info": null, "name": { "fi": "Madboiali – PERUTTU", "sv": "Madboiali – INSTÄLLD", "en": "Madboiali – CANCELLED" }, "description": { "fi": "<p>Helsinkiläinen Madboiali eli Alioune Dia on tulevaisuuden tähti.</p><p>Hänen musiikissaan yhdistyvät koukuttavat melodiat, ajankohtaisimmat soundit ja tyylikäs toteutus.</p><p><b>Madboiali</b> on karismaattinen ja rento lavaesiintyjä eikä takuulla unohda ottaa yleisöä haltuun. Drilliä, hiphopia, afropoppia ja r&b:tä yhdistelevä Madboiali lukeutuu tämän hetken mielenkiintoisimpiin artistitulokkaisiin.</p><p>Kahdeksan kappaletta sisältävä debyyttialbumi <i>Mielentila</i> julkaistiin itsenäisesti 11. syyskuuta 2020. Albumin tuotannosta vastasi nuori porvoolaistuottaja IGF, jonka kanssa Madboiali on työskennellyt alusta asti. Hän on tuottanut kaikki Madboialin tähänastiset kappaleet.</p><p>Kesto: 50 min (ei väliaikaa)<br>Kieli: englanti</p><p><b>Vapaa pääsy.</b></p>", "sv": "<p>Madboiali alias Alioune Dia från Helsingfors är framtidens stjärna.</p><p>I hans musik kombineras lockande melodier, högaktuella sound och stiligt genomförande.</p><p>Madboiali är karismatisk och avslappnad på scen och glömmer garanterat inte att äga publiken.</p><p>Längd: 50 min<br>Språk: engelska</p><p>Fritt inträde.</p>", "en": "<p>Madboiali, or Alioune Dia from Helsinki, is a star of the future.</p><p>The artist’s music combines addictive melodies, cutting-edge sounds and stylish execution.</p><p>Madboiali is a charismatic and relaxed stage performer and will definitely not forget to capture the audience.</p><p>Duration: 50 min <br>Language: English</p><p>Free entry.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60540/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 4979, "next": "