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=1155®istration__remaining_attendee_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1156®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1154®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "kulke:60520", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/event/pekka-laine-the-enchanted-tinyhawk-bizzarro-malmitalo-17544823/", "sv": "https://www.lippu.fi/event/pekka-laine-the-enchanted-tinyhawk-bizzarro-malmitalo-17544823/", "en": "https://www.lippu.fi/event/pekka-laine-the-enchanted-tinyhawk-bizzarro-malmitalo-17544823/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4358, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:44.263173Z", "last_modified_time": "2023-09-07T14:23:44.263195Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730914.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4358/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:44.085271Z", "last_modified_time": "2023-11-14T06:13:17.754466Z", "date_published": null, "start_time": "2023-10-06T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BE8686E96A792221A88656064040F107/Pekka_Laine_The_Enchanted_Tinyhawk_Bizzarro", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BE8686E96A792221A88656064040F107/Pekka_Laine_The_Enchanted_Tinyhawk_Bizzarro", "en": "http://www.malmitalo.fi/en/events/event/BE8686E96A792221A88656064040F107/Pekka_Laine_The_Enchanted_Tinyhawk_Bizzarro" }, "description": { "fi": "<p>Illan aikana luvassa on psykedeelisiä rantalomakokemuksia ja kokeellista rock-musiikkia.</p><p></b>Pekka Laine</b> elää kaksoiselämää.</p><p>Päivisin hän on arvostettu Yleisradion musiikkitoimittaja, joka suosituissa radio-ohjelmissaan ja televisiodokumenteissa myllää populaarikulttuurin syövereissä. Sitten on se hämärämpi puoli eli kitaristi ja musiikintekijä Pekka Laine.</p><p>Kulttimainetta nauttivan <i>The Hypnomen</i> -yhtyeen primus motorina Laine on 1990-luvulta asti tehnyt villisti kuplivaa instrumentaalimusiikkia. Kitaralegenda <b>Esa Pulliaisen</b> rohkaisemana ja yllyttämänä syntyi soolodebyytti <i>The Enchanted Guitar of Pekka Laine</i> vuonna 2021. Levy on rakkaudentunnustus lumotulle soittimelle, sähkökitaralle ja sen kosmisille kaiuille.</p><p>Seuraava askel oli vääjäämätön. Maaginen mielikuvitusmatka on vietävä live-yleisön eteen ja syntyi <i>Pekka Laine & The Enchanted</i>. Kuusimiehisessä unelmayhtyeessä kokemus ja näkemys kohtaavat nuoruuden vimman, kun indie-konkarit ja uuden polven tyyliniekat hyppäävät saman raketin kyytiin.</p><p>Livesovituksina Laineen instrumentaalisävellykset tarjoavat mielikuvitusmatkailua koko rahalla. Luvassa on psykedeelisiä rantalomakokemuksia, jännittäviä hetkiä länkkärimaisemissa, pikapyrähdyksiä avaruuteen ja surrealistisia seikkailuita.</p><p><b>Pekka Laine & The Enchanted</b><br>Pekka Laine – kitara <br>Tommi Pietiläinen – kitara<br>Topias Tiheäsalo – kitara<br>Toni Liimatta – koskettimet<br>Väinö Karjalainen – basso <br>Mooses Kuloniemi – rummut</p><p>Illan avaa kokeellista rock-musiikkia esittävä <b>Tinyhawk & Bizzarro</b>, joka julkaisi debyyttialbuminsa elokuussa 2023. Yhtyeen ensimmäinen single <i>Yorokobi</i> ilmestyi 16.12.2022, toinen single <i>Nekorok</i> 3.3.2023 ja tulevan albumin kolmas ja viimeinen single <i>Uji</i> 26.5.2023.</p><p>Kokoonpanon biisintekijä ja kitaristi <b>Jenni Kinnunen</b> tunnetaan esimerkiksi Rosita Luu -yhtyeestä.<br> <br><b>Tinyhawk & Bizzarro</b><br>Jenni Kinnunen – kitara<br>Markus Väisänen –kitara<br>Teemu Aho – basso<br>Jaakko Pöyhönen – rummut</p>", "sv": "<p>Under kvällen blir det psykedeliska badsemesterupplevelser och experimentell rockmusik.</p><p>Pekka Laine lever ett dubbelliv. På dagtid är han en uppskattad musikreporter vid Rundradion som gräver djupt i populärmusikens värld i sina populära radioprogram och tv-dokumentärer.</p><p>Sedan finns det en mörkare sida, gitarristen och musikskrivaren <b>Pekka Laine</b>. Laine har, i egenskap av primus motor för det kultförklarade bandet <b>The Hypnomen</b>, sedan 1990-talet skapat vilt bubblande instrumentalmusik.</p><p><b>Pekka Laine & The Enchanted</b><br>Pekka Laine <br>Tommi Pietiläinen <br>Topias Tiheäsalo <br>Toni Liimatta <br>Väinö Karjalainen <br>Mooses Kuloniemi</p><p>Kvällen öppnas av <b>Tinyhawk & Bizzarro</b> som spelar experimentell rockmusik och som släppte sitt debutalbum i augusti 2023. Bandets låtskrivare och gitarrist <b>Jenni Kinnunen</b> är känd till exempel från bandet Rosita Luu.</p><p><b>Tinyhawk & Bizzarro</b><br>Jenni Kinnunen <br>Markus Väisänen<br>Teemu Aho <br>Jaakko Pöyhönen</p>", "en": "<p>During the evening, there will be psychedelic beach holiday experiences and experimental rock music.</p><p><b>Pekka Laine</b> leads a double life. By day, Laine is a respected music journalist at Yle, who roams the depths of popular culture in popular radio programmes and TV documentaries.</p><p>And then there’s the darker side – guitarist and musician Pekka Laine. Laine has been making wildly effervescent instrumental music since the 1990s as the primus motor of the cult band <b>The Hypnomen</b>.</p><p><b>Pekka Laine & The Enchanted</b><br>Pekka Laine <br>Tommi Pietiläinen <br>Topias Tiheäsalo <br>Toni Liimatta <br>Väinö Karjalainen <br>Mooses Kuloniemi</p><p>The evening will be kicked off by experimental rock band <b>Tinyhawk & Bizzarro</b>, who are releasing their debut album in August 2023. The band’s songwriter and guitarist <b>Jenni Kinnunen</b> is known for bands such as Rosita Luu.</p><p><b>Tinyhawk & Bizzarro</b><br>Jenni Kinnunen <br>Markus Väisänen<br>Teemu Aho <br>Jaakko Pöyhönen</p>" }, "short_description": { "fi": "Illan aikana luvassa on psykedeelisiä rantalomakokemuksia ja kokeellista rock-musiikkia.", "sv": "Under kvällen blir det psykedeliska badsemesterupplevelser och experimentell rockmusik.", "en": "During the evening, there will be psychedelic beach holiday experiences and experimental rock music." }, "name": { "fi": "Pekka Laine & The Enchanted | Tinyhawk & Bizzarro", "sv": "Pekka Laine & The Enchanted | Tinyhawk & Bizzarro", "en": "Pekka Laine & The Enchanted | Tinyhawk & Bizzarro" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60520/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61049", "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": [], "price": { "fi": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5148, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:46.282165Z", "last_modified_time": "2023-10-09T13:29:46.282184Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737381.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5148/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:46.062987Z", "last_modified_time": "2023-11-14T06:13:17.677908Z", "date_published": null, "start_time": "2023-10-06T15: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5A0B3173E0CBC350A266E1DEA1114F49/Spede_7_" }, "description": { "fi": "<p>Pertti ’Spede’ Pasasen elämästä ja urasta kertova elokuva käy läpi ikonisen viihteentekijän innovatiivisinta elokuvatuotantovaihetta.</p><p>Elokuva valottaa kulissien takaisia tapahtumia 1960-luvun lopulta Uuno Turhapuron syntytarinaan ja kansansuosioon, sekä Speden väsymätöntä taistelua viihteen puolesta ajan elokuvataidepiirejä vastaan. Millainen Spede Pasanen oli persoonana, työkaverina, viihdetaiteilijana - ja puolisona?</p><p>Ikäraja 7<br>Ensi-ilta 29.9.2023<br>Kesto 95 min<br>Tekstitetty suomeksi</p>" }, "short_description": { "fi": "Pertti ’Spede’ Pasasen elämästä ja urasta kertova elokuva käy läpi ikonisen viihteentekijän innovatiivisinta elokuvatuotantovaihetta." }, "name": { "fi": "Spede (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61049/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60987", "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": [], "price": { "fi": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5147, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:45.870162Z", "last_modified_time": "2023-10-09T13:29:45.870181Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737357.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5147/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:45.737886Z", "last_modified_time": "2023-11-14T06:13:17.600846Z", "date_published": null, "start_time": "2023-10-06T12: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2757A2CE1B0421E81CE577D24850A751/Kuolleet_lehdet_7_" }, "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>" }, "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." }, "name": { "fi": "Kuolleet lehdet (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60987/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60931", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "price": { "fi": "10 € / 8 €", "sv": "10 € / 8 €", "en": "10 € / 8 €" }, "info_url": { "fi": "https://www.lippu.fi/event/retro-disco-vuotalo-17526366/", "sv": "https://www.lippu.fi/event/retro-disco-vuotalo-17526366/", "en": "https://www.lippu.fi/event/retro-disco-vuotalo-17526366/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4712, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-11T21:21:13.164359Z", "last_modified_time": "2023-09-11T21:21:13.164376Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733536.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4712/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-11T21:21:12.649253Z", "last_modified_time": "2023-11-14T06:13:17.526852Z", "date_published": null, "start_time": "2023-10-06T11:00:00Z", "end_time": "2023-10-06T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F229BFF746A9ACDFF197164CA2242220/Retro-Disco_med_Dj_Borje", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F229BFF746A9ACDFF197164CA2242220/Retro-Disco_med_Dj_Borje", "en": "http://www.vuotalo.fi/en/events/event/F229BFF746A9ACDFF197164CA2242220/Retro-Disco_med_Dj_Borje" }, "description": { "fi": "<p>Legendaarinen DJ Börje soittaa retroa diskomusiikkia 60-80-luvuilta iltapäivädiskossa.</p><p>Kesto: 2 t<br>Kieli: ruotsi</p>", "sv": "<p>Eftermiddags-disco med legendariska Dj Börje som spelar retro-disco-musik från 1960-80-talet.</p><p>Längd: 2 t<br>Språk: svenska</p>", "en": "<p>The legendary DJ Börje plays retro disco music from the 1960s-80's in this afternoon disco.</p><p>Duration: 2 h <br>Language: Swedish</p>" }, "short_description": { "fi": "Legendaarinen DJ Börje soittaa retroa diskomusiikkia 60-80-luvuilta iltapäivädiskossa.", "sv": "Eftermiddags-disco med legendariska Dj Börje som spelar retro-disco-musik från 1960-80-talet.", "en": "The legendary DJ Börje plays retro disco music from the 1960s-80's in this afternoon disco." }, "name": { "fi": "Retro-Disco med Dj Börje – ARMAS festivaali", "sv": "Retro-Disco med Dj Börje – ARMAS-festivalen", "en": "Retro-Disco med Dj Börje – ARMAS festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60931/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60219", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4357, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:43.829043Z", "last_modified_time": "2023-09-07T14:23:43.829072Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734227.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4357/?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:23:43.668665Z", "last_modified_time": "2023-11-14T06:13:17.444444Z", "date_published": null, "start_time": "2023-10-06T07:15: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A7D276D6504C965BA936C903B54DC2DC/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/A7D276D6504C965BA936C903B54DC2DC/Skidikino", "en": "http://www.stoa.fi/en/events/event/A7D276D6504C965BA936C903B54DC2DC/Skidikino" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Muut Skidikinot pe 17.11.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>" }, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60219/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60220", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4356, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:42.728742Z", "last_modified_time": "2023-09-07T14:23:42.728762Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734226.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4356/?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:23:42.066764Z", "last_modified_time": "2023-11-14T06:13:17.364651Z", "date_published": null, "start_time": "2023-10-06T06:15: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino", "en": "http://www.stoa.fi/en/events/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Muut Skidikinot pe 17.11.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>" }, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60220/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60505", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4355, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:41.327663Z", "last_modified_time": "2023-09-07T14:23:41.327683Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730506.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4355/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:40.959467Z", "last_modified_time": "2023-11-14T06:13:17.280850Z", "date_published": null, "start_time": "2023-10-06", "end_time": "2023-10-21", "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": null, "location_extra_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Suomalaisen_barokkiorkesterin_muusikot_Jeremy_Barrois_X_TUNNE", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Musiker_fran_Suomalainen_barokkiorkesteri_Jeremy_Barrois_X_TUNNE", "en": "http://www.kanneltalo.fi/en/events/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Musicians_of_the_Finnish_Baroque_Orchestra_Jeremy_Barrois_X_TUNNE" }, "description": { "fi": "<p>Varaa itsellesi maksuton henkilökohtainen esitys 6.–7.10.2023.</p><p>Kuulijalle rakennetaan Kanneltalon galleriaan oma tila, jossa ympäröivä elämä ja muut kuulijat jäävät hetkeksi taka-alalle, vain musiikki ja muusikko ovat tärkeitä. Varaa itsellesi maksuton henkilökohtainen esitys, tule seuraamaan live-kohtaamisia taustalta tai tule katsomaan videokooste.</p><p>X.TUNNE. on Helsinki Early Music Festivalin versio <b>Suomalaisen barokkiorkesterin</b> <i>Tule.Tunne.</i> <br>-barokkiperformanssilaboratoriosta.</p><p>Perjantaina 6.10. klo 15–18 ja lauantaina 7.10. klo 13–16 tarjolla on yhteensä 12 puolen tunnin mittaista kohtaamista, jossa yksi muusikko esiintyy kerrallaan yhteen kuulijaan keskittyen.</p><p><b>Varattavissa olevat ajat:</b><br>Perjantai 6.10. klo 15, 15.30, 16, 16.30, 17 ja 17.30<br>Lauantai 7.10. klo 13, 13.30, 14, 14.30, 15 ja 15.30</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Maksuttomat lippuvaraukset: Lippu.fi</a></u></p><p>Videokuvaaja <b>Jeremy Barrois</b> tallentaa esitykset ja editoi valikoiduista hetkistä kokonaisuuden, joka on katsottavissa Kanneltalon galleriassa osana <i>Helsinki Early Music Festivalia</i>. Tallenne on nähtävissä Kanneltalon galleriassa 11.–21.10.2023.</p><p>Yhteistyössä Kanneltalo, Suomalainen barokkiorkesteri, Helsinki Early Music Festival</p><p>Galleria, vapaa pääsy</p>", "sv": "<p>Boka en kostnadsfri privatföreställning.</p><p>För lyssnaren byggs ett eget utrymme i Gamlasgårdens galleri där livet omkring och den övriga publiken hamnar i bakgrunden för en stund och bara musiken och musikern har betydelse. Boka en kostnadsfri privatföreställning, följ live-mötena från kulisserna eller sätt dig och titta på videocollaget.</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Kostnadsfria biljettbokning: Lippu.fi</a></u></p>", "en": "<p>Book yourself a free personal performance.</p><p>The listener is built their own space at the Kanneltalo gallery, where the surrounding life and other listeners take a back seat for a moment and only the music and the musician are important. Book yourself a free personal performance, come and follow the live encounters in the background or watch the video compilation.</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Free ticket bookings: Lippu.fi</a></u></p>" }, "short_description": { "fi": "Varaa itsellesi maksuton henkilökohtainen esitys 6.–7.10.2023.", "sv": "Boka en kostnadsfri privatföreställning.", "en": "Book yourself a free personal performance." }, "name": { "fi": "Suomalaisen barokkiorkesterin muusikot & Jeremy Barrois: X.TUNNE – Musiikillinen kohtaamislaboratorio ja videokooste", "sv": "Musiker från Suomalainen barokkiorkesteri & Jeremy Barrois: X.TUNNE – Ett musikaliskt möteslaboratorium och videocollage", "en": "Musicians of the Finnish Baroque Orchestra & Jeremy Barrois: X.TUNNE – Musical encounter laboratory and video compilation" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60505/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60990", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p1235/?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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5146, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:43.791522Z", "last_modified_time": "2023-10-09T13:29:43.791542Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737111.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5146/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:42.804303Z", "last_modified_time": "2023-11-14T06:13:17.195474Z", "date_published": null, "start_time": "2023-10-05T15: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/FCF05BFDCD33291F1CF131B379F6F28B/Kulttuuria_taynna_muistoja_Sortavalasta_-dokumenttinaytos" }, "description": { "fi": "<p>Haastatteludokumentin ”Kulttuuria täynnä ¬ muistoja Sortavalasta” -näytös on osa Stoan gallerian Aikamatka Sortavalaan -näyttelyn oheisohjelmaa.</p><p>Sortavala oli sotia edeltävällä ajalla monin tavoin poikkeuksellinen kaupunki. Sen sijainti Laatokan pohjoisrannalla tuolloisten Karjalan laulumaiden äärellä sekä kaupungin vireä ja yritteliäs ilmapiiri loivat hyvät edellytykset monipuoliselle kulttuurielämälle. Voidaan sanoa, että Sortavalan yhteiskunnallinen ja kulttuurinen merkitys oli huomattavasti sen kokoa suurempi.<br> <br>Nyt valmistunut haastatteludokumentti valottaa eri näkökulmista Sortavalan ja sen ympäristön kulttuuri- ja sivistyselämää, sen vaikuttajia ja ihmisten arkea siellä. Kertojina on Sortavala-asiantuntijoita sekä siellä nuoruutensa viettäneitä alkuperäisiä sortavalalaisia. Kaupungista kehittyi 1800-luvun lopulta alkaen sota-aikaan asti kulttuurinen, taloudellinen sekä henkinen ja hengellinen keskus. <br> <br>Elokuva on samalla surullisella tavalla ajankohtainen. Kuulemme aikalaisten tunnelmia, kun sodan alkaessa lapsuus loppui ja joutui näkemään kasvuympäristön tuhoutumisen. Vuosikymmenienkään aikana rakkaus kotiseutuun ei ole unohtunut. <br> <br>Dokumentin on käsikirjoittanut ja ohjannut Sortavala-seuran puheenjohtaja Marja Lampi ja se on toteutettu yhteistyössä Metropolia Ammattikorkeakoulun elokuva- ja televisioalanopiskelijoiden kanssa. <br>Elokuva käynnistää Helsingissä toimivan Sortavala-seuran 70-vuotisjuhlavuoden.</p><p>Dokumentin kesto n. 1 tunti.</p>" }, "short_description": { "fi": "Haastatteludokumentin ”Kulttuuria täynnä ¬ muistoja Sortavalasta” -näytös on osa Stoan gallerian Aikamatka Sortavalaan -näyttelyn oheisohjelmaa." }, "name": { "fi": "Kulttuuria täynnä – muistoja Sortavalasta -dokumenttinäytös" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60990/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60142", "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: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": [], "price": { "fi": "29 €", "sv": "29 €", "en": "29 €" }, "info_url": { "fi": "https://www.lippu.fi/event/the-mystery-wires-markku-veijalainen-vuotalo-17474773/", "sv": "https://www.lippu.fi/event/the-mystery-wires-markku-veijalainen-vuotalo-17474773/", "en": "https://www.lippu.fi/event/the-mystery-wires-markku-veijalainen-vuotalo-17474773/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4353, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:40.219074Z", "last_modified_time": "2023-09-07T14:23:40.219096Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733182.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4353/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:40.074496Z", "last_modified_time": "2023-11-14T06:13:17.123269Z", "date_published": null, "start_time": "2023-10-05T15: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F70C4C14F7DBC6BE67B58047E732EFB2/The_Mystery_Wires_Markku_Mape_Veijalainen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F70C4C14F7DBC6BE67B58047E732EFB2/The_Mystery_Wires_Markku_Mape_Veijalainen", "en": "http://www.vuotalo.fi/en/events/event/F70C4C14F7DBC6BE67B58047E732EFB2/The_Mystery_Wires_Markku_Mape_Veijalainen" }, "description": { "fi": "<p>Illan juontaja Mape vie yleisön 1960-luvun nuorisomusiikin tunnelmiin yhdessä Back To The Sixties -legendojen kanssa.</p><p>Luvassa rautalankaklassikoita ja nuorisoelokuvamusiikkia Cliff & The Shadows -tyyliin.</p><p>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa. <br>Sali avautuu klo 17.30.<br>Kesto: 2 t <br>Liput lippu.fi tai ovelta.</p>", "sv": "<p>Kvällens programledare Mape tar publiken till 1960-talets ungdomsmusik tillsammans med Back To The Sixties-legenderna.</p><p>Det utlovas klassiska ståltrådshits och musik från ungdomsfilmer i Cliff & The Shadows stil.</p><p>Klubb-kväll, A-rättigheter, Café Pokkari svarar för serveringen. Barn under 18 år endast i sällskap av en vuxen.<br>Dörrarna öppnas kl. 17.30.<br>Längd ca 2 h. Bilj. á 29 € via Lippu.fi eller vid dörren.</p>", "en": "<p>The evening’s host Mape takes the audience on a journey through 1960s youth music with the legends of Back To The Sixties.</p><p>The programme includes ironclad classics and youth film music in the style of Cliff Richard & The Shadows.</p><p>Club night, fully licensed bar, Café Pokkari. Children under 18 yrs only with an adult. <br>Doors open at 5.30 PM. <br>Duration approx. 2 hours. <br>Tickets € 29 from lippu.fi or from the door.</p>" }, "short_description": { "fi": "Illan juontaja Mape vie yleisön 1960-luvun nuorisomusiikin tunnelmiin yhdessä Back To The Sixties -legendojen kanssa.", "sv": "Kvällens programledare Mape tar publiken till 1960-talets ungdomsmusik tillsammans med Back To The Sixties-legenderna.", "en": "The evening’s host Mape takes the audience on a journey through 1960s youth music with the legends of Back To The Sixties." }, "name": { "fi": "The Mystery Wires & Markku \"Mape\" Veijalainen – Ilta Cliff & The Shadowsin tyyliin", "sv": "The Mystery Wires & Markku \"Mape\" Veijalainen", "en": "The Mystery Wires & Markku \"Mape\" Veijalainen" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60142/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60519", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "15 € / 10 €", "sv": "15 € / 10 €", "en": "15 € / 10 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/helsinki-international-big-band-composing-contest-3296830/?affiliate=ADV", "sv": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/helsinki-international-big-band-composing-contest-3296830/?affiliate=ADV", "en": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/helsinki-international-big-band-composing-contest-3296830/?affiliate=ADV" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4354, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:40.639097Z", "last_modified_time": "2023-09-07T14:23:40.639153Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_726140.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4354/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:40.463579Z", "last_modified_time": "2023-11-14T06:13:17.041699Z", "date_published": null, "start_time": "2023-10-05T15: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1EC88AAC79C491C14A8D175CD3BCDBB9/Helsinki_International_Big_Band_Composing_Contest", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1EC88AAC79C491C14A8D175CD3BCDBB9/Helsinki_International_Big_Band_Composing_Contest", "en": "http://www.malmitalo.fi/en/events/event/1EC88AAC79C491C14A8D175CD3BCDBB9/Helsinki_International_Big_Band_Composing_Contest" }, "description": { "fi": "<p>Euroopan laajuisen Big Band -sävellyskilpailun finaalikonsertti kuullaan Malmitalossa!</p><p>Joka toinen vuosi pidettävä <b>Helsinki International Big Band Composing Contest</b> järjestetään jälleen <b>UMO Helsinki Jazz Orchestran</b> ja <b>Suomen Big Band -yhdistys ry:n</b> toteuttamana.</p><p>Kilpailu on suunnattu kaikille eurooppalaisille tai Euroopassa asuville musiikintekijöille ilman ikärajaa ja kilpaa käydään yhdellä ennalta tallentamattomalla ja julkaisemattomalla, 4–7-minuuttisella, big bandin vakiokokoonpanolle sävelletyllä teoksella per säveltäjä.</p><p>Finaaliin valitaan kahden anonyymin esikarsintakierroksen jälkeen enintään 10 teosta, jotka UMO Helsinki Jazz Orchestra soittaa kapellimestari <b>Antti Rissasen</b> johtamana.</p><p>Tuomaristoa johtaa UMOn taiteellinen johtaja ja pääkapellimestari <b>Ed Partyka</b>. Kilpailun voittajalle on luvassa 3000 euron palkinto, toiseksi tulleelle 2000 euroa ja kolmannelle 1000 euroa.</p><p>Kilpailun lisätiedot ja säännöt www.umohelsinki.fi</p><p>Konsertin kesto: n. 2,5–3 tuntia.</p>", "sv": "<p>Finalkonserten för Big Band-kompositionstävlingen går av stapeln i Malms kulturhus!</p><p>Till finalen utses efter två anonyma omgångar högst tio verk som UMO Helsinki Jazz Orchestra spelar under ledning av dirigent Antti Rissanen.</p><p>Längd cirka 2,5–3 t.</p>", "en": "<p>The final concert of the pan-European Big Band Composing Contest will take place at Malmitalo!</p><p>After two anonymous opening rounds, a maximum of 10 works will be selected for the final, to be performed by the UMO Helsinki Jazz Orchestra under the direction of conductor Antti Rissanen.</p><p>Duration: approx. 2,5–3 hours</p>" }, "short_description": { "fi": "Euroopan laajuisen Big Band -sävellyskilpailun finaalikonsertti kuullaan Malmitalossa!", "sv": "Finalkonserten för Big Band-kompositionstävlingen går av stapeln i Malms kulturhus!", "en": "The final concert of the pan-European Big Band Composing Contest will take place at Malmitalo!" }, "name": { "fi": "Helsinki International Big Band Composing Contest", "sv": "Helsinki International Big Band Composing Contest", "en": "Helsinki International Big Band Composing Contest" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60519/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60112", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4352, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:39.861108Z", "last_modified_time": "2023-09-07T14:23:39.861129Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733046.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4352/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:39.262046Z", "last_modified_time": "2023-11-14T06:13:16.970554Z", "date_published": null, "start_time": "2023-10-05T08:45: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/731519EF0687905212B9A9DE68FCD27D/Opi_suomea_laulaen_" }, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua. <br> <br>Kesto n. 80 min <br>Ryhmään mukaan on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi <br> <br>Syksyn laulupajakerrat: <br>to 7.9. klo 10 & 11.45 <br>to 5.10. klo 10 ja 11.45 <br>to 16.11. klo 10 & 11.45 <br>torstai joulukuussa</p>" }, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista." }, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60112/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60111", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4351, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:38.430270Z", "last_modified_time": "2023-09-07T14:23:38.430291Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733045.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4351/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:37.658582Z", "last_modified_time": "2023-11-14T06:13:16.899918Z", "date_published": null, "start_time": "2023-10-05T07: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F72256EABB7D356BC94F79AB68A77732/Opi_suomea_laulaen_" }, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua. <br> <br>Kesto n. 80 min <br>Ryhmään mukaan on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi <br> <br>Syksyn laulupajakerrat: <br>to 7.9. klo 10 & 11.45 <br>to 5.10. klo 10 ja 11.45 <br>to 16.11. klo 10 & 11.45 <br>torstai joulukuussa</p>" }, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista." }, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60111/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60470", "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:105/?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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-3/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4350, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:37.240620Z", "last_modified_time": "2023-09-07T14:23:37.240643Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725257.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4350/?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:23:37.092517Z", "last_modified_time": "2023-11-14T06:13:16.829559Z", "date_published": null, "start_time": "2023-10-05T07:00:00Z", "end_time": "2023-10-05T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/020D3ED95A10794040808FD02E3B94A7/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/020D3ED95A10794040808FD02E3B94A7/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/020D3ED95A10794040808FD02E3B94A7/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "description": { "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "short_description": { "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60470/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60518", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "29,50 € / 22,50 €", "sv": "29,50 € / 22,50 €", "en": "29,50 € / 22,50 €" }, "info_url": { "fi": "https://www.lippu.fi/event/georg-joijje-wadenius-jazz-trio-malmitalo-17268542/", "sv": "https://www.lippu.fi/event/georg-joijje-wadenius-jazz-trio-malmitalo-17268542/", "en": "https://www.lippu.fi/event/georg-joijje-wadenius-jazz-trio-malmitalo-17268542/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4349, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:36.873850Z", "last_modified_time": "2023-09-07T14:23:36.873877Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728592.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4349/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:36.722617Z", "last_modified_time": "2023-11-14T06:13:16.754145Z", "date_published": null, "start_time": "2023-10-04T16: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CFCC513A2AB349CF2F1658A6C792408B/Georg_Joijje_Wadenius", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CFCC513A2AB349CF2F1658A6C792408B/Georg_Joijje_Wadenius", "en": "http://www.malmitalo.fi/en/events/event/CFCC513A2AB349CF2F1658A6C792408B/Georg_Joijje_Wadenius" }, "description": { "fi": "<p>Georg Wadenius aloitti uransa jazz-kitaristina, joka oli saanut vahvoja vaikutteita Wes Montgomeryltä ja Jim Hallilta.</p><p>Soitettuaan kolme vuotta tunnetussa <i>Made in Sweden</i> -fuusiokooonpanossa hän sai kutsun liittyä <i>Blood, Sweat and Tears</i> -yhtyeeseen. Hän esiintyi ja levytti kokoonpanon kanssa neljän vuoden ajan.</p><p>Samaan aikaan hän levytti ja esiintyi livenä myös <b>Joe Hendersonin</b> ja <b>Ronnie Cuberin</b> kanssa. Myöhemmin hänestä tuli <i>Saturday Night Live Bandin</i> vakiojäsen kuuden vuoden ajaksi ja hän sekä levytti että teki kiertueita <b>Roberta Flackin</b>, <b>Luther Vandrossin</b>, <b>Simon & Garfunkelin</b>, <b>Steely Danin</b> sekä lukuisten muiden kanssa.</p><p>Nyt hän palaa juurilleen trio <i>Gejoman</i> kanssa, yhdessä kahden Ruotsin suurimman jazz-muusikon, <b>Jonas Holgerssonin</b> (rummut) sekä <b>Mattias Svenssonin</b> (basso) kanssa.</p>", "sv": "<p>Jazzgitarristen Georg Wadenius har spelat med Roberta Flack, Luther Vandross, Simon & Garfunkel och Steely Dan – och många fler.</p><p>Nu återvänder han till sina rötter med trio Gejoma – tillsammans med två av Sveriges största jazzmusiker, Jonas Holgersson (trummor) och Mattias Svensson (bas).</p>", "en": "<p>Georg Wadenius started as a jazz guitar player, heavily influenced by Wes Montgomery and Jim Hall.</p><p>After 3 years with the renowned fusion group Made in Sweden he was asked to join Blood, Sweat & Tears. He played and recorded with them for 4 years.</p><p>During this time he also recorded and played live with Joe Henderson and Ronnie CuberLater on he was a permanent member of the Saturday Night Live Band for 6 years and recorded and toured with Roberta Flack, Luther Vandross, Simon & Garfunkel and Steely Dan – among countless others.</p><p>He now returns to his roots with the trio Gejoma – joined by two of Swedens greatest jazz players, Jonas Holgersson, drums and Mattias Svensson, bass.</p>" }, "short_description": { "fi": "Georg Wadenius aloitti uransa jazz-kitaristina, joka oli saanut vahvoja vaikutteita Wes Montgomeryltä ja Jim Hallilta.", "sv": "Jazzgitarristen Georg Wadenius har spelat med Roberta Flack, Luther Vandross, Simon & Garfunkel och Steely Dan – och många fler.", "en": "Georg Wadenius started as a jazz guitar player, heavily influenced by Wes Montgomery and Jim Hall." }, "name": { "fi": "Georg \"Joijje\" Wadenius", "sv": "Georg \"Joijje\" Wadenius", "en": "Georg \"Joijje\" Wadenius" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60518/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61061", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5144, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:39.179357Z", "last_modified_time": "2023-10-09T13:29:39.179378Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733538.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5144/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:38.926239Z", "last_modified_time": "2023-11-14T06:13:16.661997Z", "date_published": null, "start_time": "2023-10-04T15: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6B5107C03FC1EA6B4B930CE6F0829061/Onsdagsbio_Dogborn", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6B5107C03FC1EA6B4B930CE6F0829061/Onsdagsbio_Dogborn", "en": "http://www.vuotalo.fi/en/events/event/6B5107C03FC1EA6B4B930CE6F0829061/Onsdagsbio_Dogborn" }, "description": { "fi": "<p>Rap-tähti Silvana Imam tekee pääosassa elokuvadebyyttinsä. Isabella Carbonell palkittiin parhaana alle 40-vuotiaana ohjaajana Venetsian elokuvajuhlilla.</p><p>Kodittomina ja yhteiskunnalle näkymättöminä elävistä kaksosista sisar on tikittävä pommi. Veli ei ole sanonut sanaakaan sen jälkeen, kun he pakenivat kotimaastaan. Odottamaton työtarjous näyttää tuovan heidät askeleen lähemmäksi unelmaa oikeasta kodista. Heidän tarvitsee vain kuljettaa tavaroita paikasta A paikkaan B. Mutta kun tavarat saapuvat kahden nuoren tytön muodossa, sisarusten välille syntyy konflikti. Kahden intensiivisen päivän aikana he kohtaavat elämää muuttavan dilemman – kuinka pitkälle he ovat valmiita menemään selviytymistaistelussaan?</p><p>Ruotsi 2022\t<br>Ohjaaja:\t Isabella Carbonell<br>Käsikirjoitus:\tIsabella Carbonell<br>Näyttelijät:\tSilvana Imam, Philip Oros, Emma Lu, Mia Liu, <br> Henrik Norlén, Lukas Malinauskas<br>Genre:\t Draama, Rikostarina, 2020-luku<br>Kesto: 84 min. <br>Kielet: Ruotsi, litvia, arabia, mandariini-kiinaa, englanti, tekstitys: Suomi <br>ikäraja: K16</p><p>Järj. Finlandssvenkst filmcentrum yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Huvudrollen var rap-stjärnan Silvana Imams filmdebut. Isabella Carbonell belönades som bästa regissör under 40 år vid filmfestivalen i Venedig</p><p>Ett hemlöst tvillingpar rör sig under radarn, bortom samhällets regler och system för hjälpande händer. Tillsammans kämpar de för sin överlevnad och tvingas söka sig till kriminella kretsar där de får i uppdrag att sköta okategoriserade leveranser genom ett vinterkyligt Stockholm. När leveransernas innehåll avslöjas sätts tvillingarnas mänsklighet på prov.</p><p>Sverige 2022\t<br>Regissör:\t Isabella Carbonell<br>Manus:\t Isabella Carbonell<br>Genre:\t Drama, Thriller, 2020-talet<br>Skådespelare:\tSilvana Imam, Philip Oros, Emma Lu, Mia Liu, <br> Henrik Norlén, Lukas Malinauskas<br>Längd: 84 min. <br>Språk: Svenska, litauiska, arabiska, mandarin-kinesiska, <br> engelska, <br>Textning: Fnska. <br>Åldersgräns: F16<br>. <br>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset.</p>", "en": "<p>The headpart is the rapstar Silvana Imams first appearance on film. Isabella Carbonell was rewarded as the best director under 40 years at the Film Festival in Venice.</p><p>Homeless and invisible – the Twins are constantly struggling to survive. Sister is a ticking time bomb; her screams are loud. Brother, on the other hand, doesn’t speak, but rather screams inwards. Their dream of a real home leads to an unexpected job opportunity that sounds simple enough: transport goods from point A to point B. But when the goods appear in the form of two young girls, the unspeakable happens: a rift suddenly occurs between Brother and Sister. Over the course of two intense days the twins are forced to make a life-altering decision: how far are they willing to go in their quest for a better future?</p><p>Sweden 2022\t<br>Director:\t Isabella Carbonell<br>Script:\t Isabella Carbonell<br>Genre:\t Drama, Thriller, 2020-ies<br>Actors:\t Silvana Imam, Philip Oros, Emma Lu, Mia Liu, <br> Henrik Norlén, Lukas Malinauskas<br>Duration: 84 min. <br>Languages: Swedish, lithuanian, arabic, mandarin-chinese, <br> english<br>Subtitles: Finnish<br>Age limit : 16</p><p>Org. Finlandssvenskt filmcentrum in cooperation with Vuotalo.<br>.</p>" }, "short_description": { "fi": "Rap-tähti Silvana Imam tekee pääosassa elokuvadebyyttinsä. Isabella Carbonell palkittiin parhaana alle 40-vuotiaana ohjaajana Venetsian elokuvajuhlilla.", "sv": "Huvudrollen var rap-stjärnan Silvana Imams filmdebut. Isabella Carbonell belönades som bästa regissör under 40 år vid filmfestivalen i Venedig", "en": "The headpart is the rapstar Silvana Imams first appearance on film. Isabella Carbonell was rewarded as the best director under 40 years at the Film Festival in Venice." }, "name": { "fi": "Onsdagsbio: Dogborn", "sv": "Onsdagsbio: Dogborn", "en": "Onsdagsbio: Dogborn" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61061/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61047", "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: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:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/", "en": "https://www.lippu.fi/artist/kino-helios/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5145, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:41.086199Z", "last_modified_time": "2023-10-09T13:29:41.086218Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737377.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5145/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:40.401936Z", "last_modified_time": "2023-11-14T06:13:16.577770Z", "date_published": null, "start_time": "2023-10-04T15: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_", "en": "http://www.malmitalo.fi/en/events/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_" }, "description": { "fi": "<p>1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa.</p><p>Borghettin perhe on juuri muuttanut uuteen upeilla näkymillä varustettuun kerrostaloasuntoon, joita kiireessä rakennetaan kaupungin vaurastuvalle keskiluokalle. Vaikka perheessä näyttää ulospäin olevan kaikki kunnossa, niin asiat eivät ole niin kuin ennen.<br> <br>Clara (<b>Penélope Cruz</b>) ja Felice (<b>Vincenzo Amato</b>) ovat menettäneet rakkautensa. Kotiäiti Clara on<br>autoritääriselle miehelleen ensimmäiseksi vaimo ja vasta toiseksi lapsilleen äiti. Claralla ei juurikaan ole sosiaalista elämää ydinperheen ulkopuolella ja siksi hän alkaa elää elämäänsä lastensa kautta.</p><p>Kotona oleva stressaantunut tunnelma sekä kotiväkivallan peittely suvun silmissä vie hänet entistä kauemmaksi aviomiehestään. Perheen tytär Adri (<b>Luana Giuliani</b>) kamppailee oman identiteettinsä kanssa ja isänsä harmiksi ystävystyy alempaan yhteiskuntaluokkaan kuuluvan tytön kanssa. Sisäiset ristiriidat repivät perhettä erilleen kohti murtumispistettä, jota suvun taustalla aiheuttama paine ei yhtään helpota.</p><p><i>Terraferma</i> ja <i>Kultainen portti</i> -elokuvien ohjauksistaan tunnettu <b>Emanuele Crialese</b> on Rakas äitini<br>elokuvassa tarttunut osittain omaelämänkerralliseen aiheeseen. Sen autenttinen 1970-lukulainen värimaailma on värikylläinen ja näyttävä. Elokuva toimii monessa tasossa ja sen perheidylliä rikkovat ongelmat ovat hyvin samaistuttavia myös nykyaikana.<br> <br>Ensi-ilta 22.9.2023<br>Kesto 99 min<br>Ikäraja 12</p>" }, "short_description": { "fi": "1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa." }, "name": { "fi": "Rakas äitini (12) – Kino Helios", "sv": "Rakas äitini (12) – Kino Helios", "en": "Rakas äitini (12) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61047/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60676", "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: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:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4348, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:36.497907Z", "last_modified_time": "2023-09-07T14:23:36.497939Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735264.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4348/?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:23:36.349214Z", "last_modified_time": "2023-11-14T06:13:16.492768Z", "date_published": null, "start_time": "2023-10-04T14:00:00Z", "end_time": "2023-10-04T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A3111113D200CD6948A8EC8F079E4A77/Sanapaja_Wordshop_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A3111113D200CD6948A8EC8F079E4A77/Sanapaja_Wordshop_", "en": "http://www.vuotalo.fi/en/events/event/A3111113D200CD6948A8EC8F079E4A77/Sanapaja_Wordshop_" }, "description": { "fi": "<p>Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?</p><p>Haluatko harrastaa kirjoittamista mukavassa seurassa? Tervetuloa Sanapaja / Wordshop -kirjoittajatyöpajoihin!<br> <br>Voit kirjoittaa millä kielellä haluat. Kieliopilla ei ole väliä, vaan sillä mitä haluat sanoa! <br>Pajoissa puhutaan suomea ja englantia.</p><p>Voit osallistua pajoihin vaikka joka kerta, tai silloin kuin sinulle sopii. <br>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Ole ylpeä kaikista kielistä, joita osaat!<br> <br>Järjestäjät: Vuotalo, Nuoren Voiman Liitto ja Operaatio Pulssi <br>Ikäsuositus: 13-19v (mutta ei tarkkaa ikärajaa) <br>Paikka: Kirjaston kokoushuone 2</p>", "sv": "<p>Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?</p><p>Vill du skriva i ett härligt gäng? Välkommen till skrivarverkstäderna Sanapaja / Wordshop!</p><p>Du kan skriva på vilket språk som helst. Det viktigaste är inte grammatiken utan det du vill säga!</p><p>I verkstäderna talas finska och engelska. <br>Du kan delta i verkstäderna varje gång eller då det passar dig. <br>Fritt inträde, ingen förhandsanmälan.</p><p>Var stolt över alla språk du kan!</p><p>Arrangörer: Nordhuset, Nuoren Voiman Liitto ry och Operaatio Pulssi <br>Åldersrekommendation: 13–19 (ingen specifik åldersgräns) <br>Plats: Bibliotekets mötesrum 2</p>", "en": "<p>Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?</p><p>Do you want to do some writing in good company? Welcome to the Wordshop writers’ workshops! <br> <br>You can write in any language you want. It's not the grammar that counts. It's what you want to say. The workshops are conducted in Finnish and English.</p><p>You can participate in the workshops every time or whenever it suits you.</p><p>Free admission, no pre-registration required.</p><p>Be proud of all the languages you know!</p><p>Organisers: Vuosaari House, Nuoren Voiman Liitto and Operation Pulse <br>Age recommendation: 13–19 (no specific age limit)<br>Location: Meeting room 2 in Vuosaari Library</p>" }, "short_description": { "fi": "Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?", "sv": "Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?", "en": "Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?" }, "name": { "fi": "Sanapaja / Wordshop", "sv": "Sanapaja / Wordshop", "en": "Sanapaja / Wordshop" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60676/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60535", "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: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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4347, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:35.333562Z", "last_modified_time": "2023-09-07T14:23:35.333584Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730662.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4347/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:34.660288Z", "last_modified_time": "2023-11-14T06:13:16.414441Z", "date_published": null, "start_time": "2023-10-04T13:00:00Z", "end_time": "2023-10-04T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/71CB8ED3A51AC9A7B369047D62317BBF/Keskiviikon_taidepaja_Tulkoon_valo_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/71CB8ED3A51AC9A7B369047D62317BBF/Onsdagens_konstverkstad_Tulkoon_valo_", "en": "http://www.vuotalo.fi/en/events/event/71CB8ED3A51AC9A7B369047D62317BBF/Wednesday_art_workshop_Let_there_be_light_" }, "description": { "fi": "<p>Alussa on pikimusta alusta.</p><p>Raaputtamalla raapekartonkia tuomme valoa pikkuhiljaa piirustukseen.</p><p>Työpajan ikäsuositus: sopii sekä lapsille että aikuisille<br>Työpajaa ohjaa: Chloé Mahy-Hulkko<br>Tapahtuman kieli: suomi, ranska, englanti<br>Vapaa pääsy</p>", "sv": "<p>I början finns ett becksvart underlag.</p><p>En linje i taget skrapar vi fram ljuset i teckningen som görs på skrappapper.</p><p>För barn och vuxna. <br>Verkstadsinstruktör: Chloé Mahy-Hulkko<br>Språk: finska, franska, engelska</p><p>Fritt inträde</p>", "en": "<p>At the beginning, there is a pitch-black surface.</p><p>By scraping scraper board, we gradually bring light into the drawing.</p><p>For children and adults<br>Workshop instructor: Chloé Mahy-Hulkko<br>Languages: Finnish, French, English</p><p>Free entry</p>" }, "short_description": { "fi": "Alussa on pikimusta alusta.", "sv": "I början finns ett becksvart underlag.", "en": "At the beginning, there is a pitch-black surface." }, "name": { "fi": "Keskiviikon taidepaja: Tulkoon valo!", "sv": "Onsdagens konstverkstad: Tulkoon valo!", "en": "Wednesday art workshop: Let there be light!" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60535/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61045", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios", "sv": "https://www.lippu.fi/artist/kino-helios", "en": "https://www.lippu.fi/artist/kino-helios" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5143, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:38.313568Z", "last_modified_time": "2023-10-09T13:29:38.313594Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737373.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5143/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:38.175668Z", "last_modified_time": "2023-11-14T06:13:16.330254Z", "date_published": null, "start_time": "2023-10-04T12: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0CA566A3BAD089DA8A709153DDE1F5C/Peluri_kuolema_on_elavien_ongelma_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D0CA566A3BAD089DA8A709153DDE1F5C/Peluri_kuolema_on_elavien_ongelma_16_", "en": "http://www.malmitalo.fi/en/events/event/D0CA566A3BAD089DA8A709153DDE1F5C/Peluri_kuolema_on_elavien_ongelma_16_" }, "description": { "fi": "<p>Ruumisautobisneksen halvimmat kuskit, Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat joutuneet tilanteeseen, jossa kaikki on mennyt pieleen ja uusi alku olisi tarpeen.</p><p>Risto on pelannut kotinsa ja perheensä ja Arto on saanut niskakipuja hoidattaessaan kuulla, ettei hänellä ole käytännössä juurikaan aivoja.</p><p>Voi siis kaikella syyllä todeta, että paremminkin on mennyt. Ystävyksillä ei käytännössä ole jäljellä muuta kuin työnsä. Sen parissa he hoitavat kaikkein likaisimmatkin keikat. Hakevat junan alle murskautuneet ja koteihinsa mädäntyneet niiden viimeiseen lepopaikkaan. Kuten Risto osuvasti toteaa – kuolema on elävien ongelma. Sitä miesten elämässä riittää, mutta tästä huolimatta he pyrkivät uskomaan elämään.</p><p>Vaikka toisella ei ole aivoja, eikä toisella sydäntä, yhdessä tilanne ei ole toivoton. Asiat ottavat kuitenkin yllättävän suunnan ja Risto ja Arto joutuvat pelaamaan uhkapeliä omalla hengellään. Sen jälkeen mikään ei ole ennallaan.</p><p><i>Peluri – Kuolema on elävien ongelma</i> on kuolemanvakava komedia ystävyydestä, heikkouksista ja anteeksiannosta. Se koskettaa, naurattaa ja satuttaa - sekä auttaa ymmärtämään elämää sen eri sävyissä.</p><p>Ikäraja: 16<br>Kesto 98 min<br>Ensi-ilta 22.9.2023<br>Tekstitys suomeksi</p>", "sv": "<p>Allt har gått åt skogen för likbilsbranschens lågprischaufförer Risto Kivi (Pekka Strang) och Arto Niska (Jari Virman) och de måste börja om från början.</p><p>Risto har spelat bort hem och familj och Arto har i samband med en behandling av sin nacksmärta fått veta att han praktiskt taget knappt har någon hjärna.</p><p>Läget har alltså varit bättre. I praktiken har de två polarna inget annat än sitt arbete, där de tar emot också de värsta uppdragen och transporterar personer som krossats under tåg och personer som förmultnat i hemmet till den sista viloplatsen. Som Risto mycket träffande konstaterar – döden är de levandes problem. Och problem finns det gott om i männens liv, men trots det här gör de sitt bästa för att tro på livet.</p><p>Den ena må sakna hjärna och den andra må sakna hjärta, men när de är tillsammans är situationen i alla fall inte helt hopplös. Saker och ting tar ändå en oväntad vändning och Risto och Arto tvingas spela ett högt spel med sina liv som insats. Efter det är ingenting mera som förut.<br>Spelaren – Döden är de levandes problem är en gravallvarlig komedi om vänskap, svagheter och förlåtelse. Den berör, den roar och den gör ont – samt hjälper oss att förstå livet i alla dess olika nyanser.</p><p>Åldersgräns: 16<br>Längd 98 min<br>Premier 22.9.2023</p>", "en": "<p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start.</p><p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start.</p><p>Age limit: 16<br>Duration 98 min<br>Premier 22.9.2023</p>" }, "short_description": { "fi": "Ruumisautobisneksen halvimmat kuskit, Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat joutuneet tilanteeseen, jossa kaikki on mennyt pieleen ja uusi alku olisi tarpeen.", "sv": "Allt har gått åt skogen för likbilsbranschens lågprischaufförer Risto Kivi (Pekka Strang) och Arto Niska (Jari Virman) och de måste börja om från början.", "en": "The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start." }, "name": { "fi": "Peluri – kuolema on elävien ongelma (16) – Kino Helios", "sv": "Peluri – kuolema on elävien ongelma (16) – Kino Helios", "en": "Peluri – kuolema on elävien ongelma (16) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61045/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60048", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4346, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:33.839510Z", "last_modified_time": "2023-09-07T14:23:33.839532Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732380.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4346/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:33.572137Z", "last_modified_time": "2023-11-14T06:13:16.259915Z", "date_published": null, "start_time": "2023-10-04T12: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": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/BAE8D3DC6EF0F15B33C102DCB37A5E06/HOW-radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/BAE8D3DC6EF0F15B33C102DCB37A5E06/HOW-radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/BAE8D3DC6EF0F15B33C102DCB37A5E06/HOW-radio_Global_Club_Nights" }, "description": { "fi": "<p>Muusikot Cinta Hermo ja Maarikka Autio kertovat musiikkiurastaan ja kokemuksistaan ja samalla myös heidän tulevasta Magas-projektistaan.</p><p>Kesto: 60 min</p>", "sv": "<p>Musikerna Cinta Hermo och Maarikka Autio berättar om sin musikaliska karriär och sina musikaliska erfarenheter och samtidigt också om sitt kommande projekt Magas.</p><p>Längd: 60 min</p>", "en": "<p>Musikerna Cinta Hermo och Maarikka Autio berättar om sin musikaliska karriär och sina musikaliska erfarenheter och samtidigt också om sitt kommande projekt Magas.</p><p>Duration: 60 min</p>" }, "short_description": { "fi": "Muusikot Cinta Hermo ja Maarikka Autio kertovat musiikkiurastaan ja kokemuksistaan ja samalla myös heidän tulevasta Magas-projektistaan.", "sv": "Musikerna Cinta Hermo och Maarikka Autio berättar om sin musikaliska karriär och sina musikaliska erfarenheter och samtidigt också om sitt kommande projekt Magas.", "en": "Musikerna Cinta Hermo och Maarikka Autio berättar om sin musikaliska karriär och sina musikaliska erfarenheter och samtidigt också om sitt kommande projekt Magas." }, "name": { "fi": "HOW-radio | Global Club Nights – Helsinki Open Waves", "sv": "HOW-radio | Global Club Nights", "en": "HOW-radio | Global Club Nights" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60048/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26871, "next": "