Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_super_event=true&page=1126
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=1127", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=1125" }, "data": [ { "id": "kulke:60139", "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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4317, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:10.689390Z", "last_modified_time": "2023-09-07T14:23:10.689422Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733177.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4317/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:10.536690Z", "last_modified_time": "2023-11-14T06:13:14.216418Z", "date_published": null, "start_time": "2023-09-28T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F595315634B81F464C9DFA598ED93D02/Flyygelikuu_Terhi_Dostal", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F595315634B81F464C9DFA598ED93D02/Flygelmanen_Terhi_Dostal", "en": "http://www.vuotalo.fi/en/events/event/F595315634B81F464C9DFA598ED93D02/Flyygelikuu_Terhi_Dostal" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Pianisti Terhi Dostal esittää suomalaista pianomusiikkia syksyn ensimmäisessä Flyygelikuu-konsertissa.</p><p>Konsertin ohjelmassa on romanttis-impressionistisia teoksia Jean Sibeliukselta ja Ilmari Hannikaiselta. Terhi Dostal esittää myös oman sävellyksensä Sonatiini.</p><p>Mikkelistä kotoisin oleva Terhi Dostal on esiintynyt lukuisten orkesterien solistina, kamarimuusikkona, liedpianistina ja soolokonsertein useissa Euroopan maissa ja Yhdysvalloissa. Terhi Dostal valmistui Sibelius-Akatemiasta musiikin tohtoriksi vuonna 2010. Hänellä on myös diplomi Imolan kansainvälisestä pianoakatemiasta (2005).</p><p>Terhi Dostal tunnetaan suomalaisen musiikin tulkkina. Hän on tuonut useita maansa unohdettuja romanttisia mestariteoksia jälleen julkisuuteen ja nauhoittanut suomalaista musiikkia eri radioyhtiöille (YLE1, Bayerischer Rundfunk, Deutschlandradio Kultur, Kulturradio RBB, Norddeutsche Rundfunk).</p><p>Kaudella 2009–2010 Terhi Dostal suunnitteli NordNote-konserttisarjan, joka sisälsi kymmenen suomalaisen musiikin konserttia Berliinin arvostetussa Konzerthausissa. Saksalainen Telos-levy-yhtiö julkaisi 2016 CD-levyn, jossa Terhi Dostal ja hänen yhtyeensä soittivat kolme suomalaista pianokvartettoharvinaisuutta. Terhi Dostalin uusin soololevy sisältää Sibeliuksen, Hannikaisen ja Leiviskän musiikkia sekä hänen omia sävellyksiään, ja sen julkaisi suomalainen Alba Records 2021.</p><p>Pianonsoiton ohella Terhi Dostal on säveltänyt piano- ja kamarimusiikkia, lauluja sekä orkesterimessun, joka kantaesitettiin Turun tuomiokirkossa elokuussa 2022.</p><p>Kesto 45 min.<br>Vapaa pääsy</p>", "sv": "<p>Pianisten Terhi Dostal framför finsk painomusik under höstens första konsert Flygelmånen.</p><p>Konsertens program omfattar romantisk-impressionistiska verk av Jean Sibelius och Ilmari Hannikainen. Terhi Dostal framför även sin egen komposition Sonatiini.</p><p>Terhi Dostal kommer från S:t Michel och är känd som tolk av den finska musiken. Hon har uppträtt som solist med många orkestrar, som kammarmusiker, Lied-pianist och på solokonserter i flera europeiska länder och i USA.</p>", "en": "<p>Pianist Terhi Dostal performs Finnish piano music in the first Grand Piano Moon concert of the autumn.</p><p>The concert programme includes romantic-impressionist works by Jean Sibelius and Ilmari Hannikainen. Terhi Dostal will also perform an original composition called Sonatina.</p><p>Originally from Mikkeli, Terhi Dostal is known as an interpreter of Finnish music. Dostal has performed as a soloist, chamber musician, liedpianist and solo concert pianist with numerous orchestras in several European countries and the United States.</p>" }, "name": { "fi": "Flyygelikuu: Terhi Dostal", "sv": "Flygelmånen: Terhi Dostal", "en": "Flyygelikuu: Terhi Dostal" }, "short_description": { "fi": "Pianisti Terhi Dostal esittää suomalaista pianomusiikkia syksyn ensimmäisessä Flyygelikuu-konsertissa.", "sv": "Pianisten Terhi Dostal framför finsk painomusik under höstens första konsert Flygelmånen.", "en": "Pianist Terhi Dostal performs Finnish piano music in the first Grand Piano Moon concert of the autumn." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60139/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60446", "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": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4316, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:10.281631Z", "last_modified_time": "2023-09-07T14:23:10.281665Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731291.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4316/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:09.553866Z", "last_modified_time": "2023-11-14T06:13:14.143226Z", "date_published": null, "start_time": "2023-09-28T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/92F3EF9698D9698C57CBFF162152EE1C/Kuukauden_klassikkoelokuva_Leijat_Helsingin_ylla_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/92F3EF9698D9698C57CBFF162152EE1C/Manadens_klassiska_film_Drakarna_over_Helsingfors_12_", "en": "http://www.malmitalo.fi/en/events/event/92F3EF9698D9698C57CBFF162152EE1C/Classic_film_of_the_month_Kites_over_Helsinki_12_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tarina suomenruotsalaisen Bexarin kolmilapsisen perheen elämästä 1960-luvulta 1990-luvulle.</p><p>Perheenjäsenten kohtalot ja keskinäiset erimielisyydet kietoutuvat samalla yhteen ajan yhteiskunnan kehityksen ja murrosten kanssa.</p><p>Kesto: 90 min<br>Ikäraja: 12</p><p>Vapaa pääsy!</p>", "sv": "<p>En berättelse om den finlandssvenska trebarnsfamiljen Bexars liv från 1960-talet till 1990-talet.</p><p>Familjemedlemmarnas öden och ömsesidiga meningsskiljaktigheter sammanflätas med tidens utveckling och brytpunkterna i samhället.</p><p>Längd: 90 min<br>Åldersgräns: 12</p>", "en": "<p>The story of the life of the Finnish-Swedish Bexar family with three children from the 1960s to the 1990s.</p><p>The fates of the family members and their mutual disagreements are intertwined with the social developments and upheavals of the time.</p><p>Duration 90 min<br>Age rating: 12</p>" }, "name": { "fi": "Kuukauden klassikkoelokuva: Leijat Helsingin yllä (12) – Kino Helios", "sv": "Månadens klassiska film: Drakarna över Helsingfors (12)", "en": "Classic film of the month: Kites over Helsinki (12)" }, "short_description": { "fi": "Tarina suomenruotsalaisen Bexarin kolmilapsisen perheen elämästä 1960-luvulta 1990-luvulle.", "sv": "En berättelse om den finlandssvenska trebarnsfamiljen Bexars liv från 1960-talet till 1990-talet.", "en": "The story of the life of the Finnish-Swedish Bexar family with three children from the 1960s to the 1990s." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60446/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60400", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4315, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:08.831061Z", "last_modified_time": "2023-09-07T14:23:08.831093Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734842.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4315/?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:08.173761Z", "last_modified_time": "2023-11-14T06:13:14.057163Z", "date_published": null, "start_time": "2023-09-28T14:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B9B0CE720371B374BC45E7F1FA21FA0E/Lintuja_ja_liskoja_keramiikan_perhekurssi" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule tekemään savesta lintuja, liskoja ja muita mielenkiintoisia eläimiä.</p><p>Kurssin ensimmäisellä kerralla syvennymme eläimen rakenteeseen ja valmistamme eläinveistokset kivitavarasavesta. Toisella kerralla jatkamme raakapoltettujen esineiden pintakäsittelyllä käyttäen erilaisia keramiikan värejä ja lasitteita. Työt jäävät vielä toiseen polttoon, jonka jälkeen ne voi noutaa Malmitalosta.</p><p>Kurssipäivät ja -ajat ovat seuraavat (ilmoittautuneet sitoutuvat osallistumaan molemmille kerroille):<br>14.9. 17.30–19.45<br>28.9. 17.30–19.45</p><p>Ilmoittautumiset sähköpostitse: anni.hiekkala@hel.fi<br>Huom! Paikkoja on rajattu määrä. Kurssi on tarkoitettu vanhempi-lapsi-pareille.</p><p>Ohjauskieli on suomi.<br>Kurssi on maksuton ja se soveltuu yli 3-vuotiaille lapsille aikuisen kanssa.</p>" }, "name": { "fi": "Lintuja ja liskoja – keramiikan perhekurssi" }, "short_description": { "fi": "Tule tekemään savesta lintuja, liskoja ja muita mielenkiintoisia eläimiä." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60400/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60438", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/artist/ulla-tapaninen/ulla-tapaninen-lava-ammuntaa-vii-helsinki-3424156/?affiliate=ADV", "sv": "https://www.lippu.fi/artist/ulla-tapaninen/ulla-tapaninen-lava-ammuntaa-vii-helsinki-3424156/?affiliate=ADV", "en": "https://www.lippu.fi/artist/ulla-tapaninen/ulla-tapaninen-lava-ammuntaa-vii-helsinki-3424156/?affiliate=ADV" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4314, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:07.756356Z", "last_modified_time": "2023-09-07T14:23:07.756385Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731312.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4314/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:07.596432Z", "last_modified_time": "2023-11-14T06:13:13.984437Z", "date_published": null, "start_time": "2023-09-28T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2D196EFFE86914CB188425C1BC4446C5/Ulla_Tapaninen_Lava-ammuntaa_VII_Seven_up_-komiikkaa_LOPPUUNMYYTY", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2D196EFFE86914CB188425C1BC4446C5/Ulla_Tapaninen_Lava-ammuntaa_VII_Seven_up-komedi_UTSALD", "en": "http://www.kanneltalo.fi/en/events/event/2D196EFFE86914CB188425C1BC4446C5/Ulla_Tapaninen_Lava-ammuntaa_VII_Seven_up_comedy_SOLD_OUT" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>”Valehteleminen on nykyään muotia ja olen valehtelemisen ammattilainen. Koko ikäni olen lavalla valehdellut sujuvasti!”</p><p>Ulla Tapanisen Lava-ammuntaa VII on rakastetun näyttelijän esityssarjan seitsemäs itsenäinen jatko-osa. Luvassa on seven up -komiikkaa ja huikeita huomioita suomalaisesta todellisuudesta ja valheista.<br> <br>Käsikirjoitus: Raila Leppäkoski ja Ulla Tapaninen<br>Ohjaus: Raila Leppäkoski<br>Lavalla: Ulla Tapaninen</p><p>Kesto n. 1 t 45 min, sis. väliajan<br>Liput päivänäytökseen 28.9. 10 € ja iltanäytökseen 27.9. 20/15 €.</p>", "sv": "<p>”Nuförtiden är det på modet att ljuga och jag är expert på att ljuga. Hela mitt liv har jag ljugit flytande på scenen!”</p><p>Ulla Tapaninens Scenskytte VII är den sjunde fristående fortsättningen på denna älskade skådespelares föreställningsserie. Seven up-komedi och hisnande observationer om den finländska verkligheten och lögner utlovas.</p><p>Längd: ca. 1 t. 45 min., med paus.<br>Språk: finska<br>Biljetter: 27.9 kl. 18 – 20 € / 15 €; 28.9 kl. 14 – 10 €</p>", "en": "<p>“Lying is all the rage these days and I am a professional liar. I have lied fluently on stage all my life!”</p><p>Ulla Tapaninen’s Stage Shooting VII is the seventh independent sequel to the beloved actor’s performance series. It features seven-up comedy and hilarious observations on Finnish reality and lies.</p><p>Duration: approx. 1 h 45 min incl. intermission<br>Language: Finnish<br>Tickets to the 27 Sep 18 o' clock evening show at 20€ / 15 €, to the 28 Sep 14 o' clock matiné at 10 €.</p>" }, "name": { "fi": "Ulla Tapaninen: Lava-ammuntaa VII – Seven up -komiikkaa | LOPPUUNMYYTY", "sv": "Ulla Tapaninen: Lava-ammuntaa VII – Seven up-komedi | UTSÅLD", "en": "Ulla Tapaninen: Lava-ammuntaa VII – Seven up comedy | SOLD OUT" }, "short_description": { "fi": "”Valehteleminen on nykyään muotia ja olen valehtelemisen ammattilainen. Koko ikäni olen lavalla valehdellut sujuvasti!”", "sv": "”Nuförtiden är det på modet att ljuga och jag är expert på att ljuga. Hela mitt liv har jag ljugit flytande på scenen!”", "en": "“Lying is all the rage these days and I am a professional liar. I have lied fluently on stage all my life!”" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60438/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60469", "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": 4313, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:07.349254Z", "last_modified_time": "2023-09-07T14:23:07.349286Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725256.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4313/?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:07.195927Z", "last_modified_time": "2023-11-14T06:13:13.911408Z", "date_published": null, "start_time": "2023-09-28T07:00:00Z", "end_time": "2023-09-28T09: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/3B48923187A449E82FCECA84249453BA/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/3B48923187A449E82FCECA84249453BA/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/3B48923187A449E82FCECA84249453BA/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "provider_contact_info": null, "provider": null, "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>" }, "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" }, "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." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60469/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60739", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4312, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:06.965810Z", "last_modified_time": "2023-09-07T14:23:06.965845Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_724386.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4312/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:06.789256Z", "last_modified_time": "2023-11-14T06:13:13.832674Z", "date_published": null, "start_time": "2023-09-28", "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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4FC4460F98867B968B9364DA4A109D27/Kahden_taivaan_alla" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Näyttely esittelee viiden Suomessa asuvan chileläistaiteilijan teoksia.</p><p><b>Claudia Lincopán</b> maalaa maisemia ja ihmisten jokapäiväistä elämää. Inspiraationsa hän saa Chilen maisemista ja kulttuurista. Herkkä ja harmoninen värimaailma korostuvat hänen teoksissaan. Etelä-Chilessä syntynyt Lincopán saapui Suomeen 18 vuotta sitten ja työskentelee nykyisin päiväkodissa Helsingissä.</p><p><b>Carolina Mac-Iverin</b> tulkitsee teoksissaan hienovaraisesti Chilen mytologisia aiheita. Maalaukset ovat koristeellisia ja herkkiä katseenvangitsijoita. Vuonna 1982 syntynyt Mac-Iver saapui Suomeen 10 vuotta sitten ja on opiskellut sisustusarkkitehtuuria ja huonekalusuunnittelua Lahden ammattikorkeakoulussa (nyk. LAB-ammattikorkeakoulu).</p><p><b>Miguel Vera</b> on valokuvannut sekä maisemia että ihmisiä päivittäisissä askareissaan. Näyttelyssä on esillä myös kollaasi Chilessä vuonna 2019 kuvatuista mielenosoituksista. Vuonna 1954 syntynyt Vera saapui Suomeen perheensä kanssa Chilen vallankaappauksen jälkeen vuonna 1973. Hän on työskennellyt Suomessa mm. lehti- ja dokumenttivalokuvauksen parissa.</p><p><b>Ivan Wistuba</b> esittelee herkkiä luontokuvia. Hänen suosikkiaiheitaan ovat lintu- ja hyönteiskuvat sekä luonnon mysteerit. Wistuba on asunut Suomessa vuodesta 1977 lähtien. Hän on opiskellut graafista suunnittelua Taideteollisessa korkeakoulussa (nyk. Aalto-yliopisto) ja tehnyt uraa erilaisissa <br>suunnittelutoimistoissa.</p><p><b>Maria Fernanda Rodríguez</b> saa inspiraationsa luonnosta. Hän hyödyntää teoksissaan luonnosta keräämiään materiaaleja, mm. luonnonvaraisia kukkia, pudonneita lehtiä ja ruohoja. Maria Fernanda Rodríguez on asunut Suomessa vuodesta 1977 lähtien.</p>" }, "name": { "fi": "Kahden taivaan alla" }, "short_description": { "fi": "Näyttely esittelee viiden Suomessa asuvan chileläistaiteilijan teoksia." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60739/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59722", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "29,50 €", "sv": "29,50 €", "en": "29,50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3367501", "sv": "https://www.lippu.fi/eventseries/name-3367501", "en": "https://www.lippu.fi/eventseries/name-3367501" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4311, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:05.938804Z", "last_modified_time": "2023-09-07T14:23:05.938836Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728574.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4311/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:05.254850Z", "last_modified_time": "2023-11-14T06:13:13.750902Z", "date_published": null, "start_time": "2023-09-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D9C15CBE49B220070BA8A67A2A5264D5/Oneviolin", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/D9C15CBE49B220070BA8A67A2A5264D5/Oneviolin", "en": "http://www.savoyteatteri.fi/en/events/event/D9C15CBE49B220070BA8A67A2A5264D5/Oneviolin" }, "provider_contact_info": null, "provider": { "fi": "Tmi Poniemi Productions", "sv": "Tmi Poniemi Productions", "en": "Tmi Poniemi Productions" }, "description": { "fi": "<p>ONEVIOLIN on artisti, joka venyttää musiikkityylien rajoja ja sitä, mitä viulumusiikista ajattelemme.</p><p>ONEVIOLIN tekee uniikilla konseptillaan cover-versioita tunnetuista hittikappaleista käyttäen vain yhdellä viululla tuotettuja ääniä. Kaikki rummuista melodiaan on tehty ainoastaan artistin viululla, ja kappaleet voivat koostua parhaimmillaan jopa 1500 viuluraidasta. Hänen julkaisemat videot ovat nousseet sosiaalisessa mediassa valtavaan suosioon ja keränneet kymmeniä miljoonia katselukertoja. ONEVIOLINin vuonna 2022 julkaistu debyyttialbumi ONE on kerännyt yli 200 000 kuuntelua Spotifyssa.</p><p>Kevään menestyksekäs minikiertue saa nyt jatkoa. Puolet kiertueen konserteista myytiin nopeasti ennakkoon loppuun, eli hanki lippusi ajoissa syksyn kiertueelle!</p><p>ONEVIOLIN, oik. Pekka Niemi, on vaasalaislähtöinen viulisti ja tuottaja. Pekka on opiskellut viulunsoittoa yhdessä maailman arvostetuimmista yliopistoista, Lontoon Royal College of Musicissa. ONEVIOLIN-projektillaan hän on mm. esiintynyt JVG:n kanssa Ruisrockissa ja eteni vuonna 2020 Talent Suomi -formaatissa finaaliin.</p><p>Kesto n. 1 h, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "sv": "<p>ONEVIOLIN är en artist som tänjer gränserna för musikaliska stilar och utmanar våra uppfattningar om violinmusik.</p><p>ONEVIOLIN skapar med sitt unika koncept coverversioner av kända hitlåtar genom att bara använda ljud som framställs med en violin. Allt från trummor till melodier har skapats endast med artistens violin och i bästa fall kan låtarna bestå av upp till 1 500 ljudspår med violin. Artistens videor har blivit otroligt populära på sociala medier och visats tiotals miljoner gånger. ONEVIOLINs debutalbum ONE från 2022 har samlat över 200 000 lyssningar på Spotify.</p><p>Vårens framgångsrika miniturné får nu fortsättning. I våras sålde hälften av konserterna snabbt slut, så vänta inte med att köpa din biljett till höstens turné!</p><p>ONEVIOLIN (artistnamn för Pekka Niemi är en violinist och producent från Vasa. Pekka har studerat violin vid en av världens högst ansedda universitet, Royal College of Music i London. Med sitt projekt ONEVIOLIN har han uppträtt bland annat med JVG i Ruisrock och år 2020 gick han till final i programmet Talent Suomi.</p><p>Längd ca 1 h, ingen paus</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>ONEVIOLIN is an artist who challenges the boundaries of musical styles and our conceptions of violin music.</p><p>ONEVIOLIN leverages his unique concept to make cover versions of well-known hits with nothing more than the sounds of a single violin. The artist uses his violin to produce every element from the drums to the melody, and the songs can feature up to 1,500 violin tracks. The videos he has released have been extremely popular on social media, gaining tens of millions of views. ONEVIOLIN’s debut album ONE, released in 2022, already has more than 200,000 listens on Spotify.</p><p>The new show is a continuation of his successful mini tour during the past spring. Half of the shows included in the tour were sold out quickly in advance, so be sure to secure your ticket while they still last!</p><p>ONEVIOLIN, a.k.a. Pekka Niemi, is a violinist and producer who is originally from Vaasa. Pekka studied violin in one of the most prestigious conservatoires, the Royal College of Music in London. With his ONEVIOLIN project, he has performed with JVG in Ruisrock and reached the final in the 2020 Talent Suomi show.</p><p>Duration approx. 1 h, no intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>" }, "name": { "fi": "Oneviolin", "sv": "Oneviolin", "en": "Oneviolin" }, "short_description": { "fi": "ONEVIOLIN on artisti, joka venyttää musiikkityylien rajoja ja sitä, mitä viulumusiikista ajattelemme.", "sv": "ONEVIOLIN är en artist som tänjer gränserna för musikaliska stilar och utmanar våra uppfattningar om violinmusik.", "en": "ONEVIOLIN is an artist who challenges the boundaries of musical styles and our conceptions of violin music." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59722/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60120", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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": 4309, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:03.925298Z", "last_modified_time": "2023-09-07T14:23:03.925378Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733061.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4309/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:03.776595Z", "last_modified_time": "2023-11-14T06:13:13.667769Z", "date_published": null, "start_time": "2023-09-27T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/1E3EDD0FBF100B17A91D25AF14075D0C/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/1E3EDD0FBF100B17A91D25AF14075D0C/Stoas_kor_", "en": "http://www.stoa.fi/en/events/event/1E3EDD0FBF100B17A91D25AF14075D0C/Stoa_Choir_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea! Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18-19.30.</p><p>Lämpimästi tervetuloa!</p><p>Lisätiedot ja Ilmoittautuminen: sanna.nuutinen@hel.fi</p><p>Kuorokerrat: <br>6.9.<br>13.9.<br>20.9.<br>27.9.<br>11.10.<br>25.10.<br>1.11.<br>15.11.<br>22.11.<br>29.11.</p>", "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel. <br>Varmt välkommen!</p><p>På onsdagar kl. 18-19.30.<br>Datum: <br>6.9.<br>13.9.<br>20.9.<br>27.9.<br>11.10.<br>25.10.<br>1.11.<br>15.11.<br>22.11.<br>29.11.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>", "en": "<p>Would you like to learn Finnish by singing in Finnish?</p><p>If so, please join us! <br>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.<br>Rehearsals on Wednesdays 6-7.30pm at Stoa music hall.</p><p>Autumn season: <br>6 Sept <br>13 Sept<br>20 Sept<br>27 Sept<br>11 Oct<br>25 Oct<br>1 Nov<br>15 Nov<br>22 Nov<br>29 Nov</p>" }, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "short_description": { "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?", "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?", "en": "Would you like to learn Finnish by singing in Finnish?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60120/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60838", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €", "en": "8 €" }, "info_url": { "fi": "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": 4308, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:03.535883Z", "last_modified_time": "2023-09-07T14:23:03.535916Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735146.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4308/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:03.381457Z", "last_modified_time": "2023-11-14T06:13:13.589774Z", "date_published": null, "start_time": "2023-09-27T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/720B1C73D78358532546281071D2255F/Venetsian_aaveet_12_", "en": "http://www.malmitalo.fi/en/events/event/720B1C73D78358532546281071D2255F/A_Haunting_in_Venice_12_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Venetsian aaveet sijoittuu toisen maailmansodan jälkeiseen Venetsiaan pahaenteisesti pyhäinpäivän aattona, jolloin tapahtuvan karmivan mysteerin myötä valkokankaalle palaa maineikas etsivä Hercule Poirot.</p><p>Eläkkeelle jäätyään Poirot vetäytynyt viettämään hiljaiseloa maailman kiehtovimmassa kaupungissa, missä hän hyvin vastahakoisesti suostuu osallistumaan spiritistiseen istuntoon rapistuvassa palazzossa, jossa kummittelee. Kun yksi vieraista joutuu murhan uhriksi, etsivämme tempautuu pahuuden pyörteisiin tuossa varjojen ja salaisuuksien maailmassa.</p><p>Ikäraja: 12<br>Kesto: 96 min<br>Ensi-ilta 15.9.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>", "en": "<p>“A Haunting in Venice” is set in eerie, post-World War II Venice on All Hallows’ Eve and is a terrifying mystery featuring the return of the celebrated sleuth, Hercule Poirot.</p><p>Now retired and living in self-imposed exile in the world’s most glamorous city, Poirot reluctantly attends a séance at a decaying, haunted palazzo. When one of the guests is murdered, the detective is thrust into a sinister world of shadows and secrets.</p><p>Age rating: 12<br>Duration: 96 minutes</p>" }, "name": { "fi": "Venetsian aaveet (12) – Kino Helios", "en": "A Haunting in Venice (12) – Kino Helios" }, "short_description": { "fi": "Venetsian aaveet sijoittuu toisen maailmansodan jälkeiseen Venetsiaan pahaenteisesti pyhäinpäivän aattona, jolloin tapahtuvan karmivan mysteerin myötä valkokankaalle palaa maineikas etsivä Hercule Poirot.", "en": "“A Haunting in Venice” is set in eerie, post-World War II Venice on All Hallows’ Eve and is a terrifying mystery featuring the return of the celebrated sleuth, Hercule Poirot." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60838/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60748", "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:613/?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": false, "offer_price_groups": [], "price": { "fi": "10 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/vuotalo/rakas-aeitini-3487105/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5139, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:19.977960Z", "last_modified_time": "2023-10-09T13:29:19.977979Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735852.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5139/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:18.102508Z", "last_modified_time": "2023-11-14T06:13:13.512715Z", "date_published": null, "start_time": "2023-09-27T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6CC1831B6A32A75BAF44404DBD3B5A44/Rakas_aitini_12_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Huolimatta siitä, kuinka kaunis asunto ja upeat näkymät heidän ylimmän kerroksen huoneistostaan on, Borghettin perheen asiat eivät ole niin kuin ennen.</p><p>1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa. Borghettin perhe on muuttanut yhteen kaupungin monista vastarakennetuista kerrostaloista.</p><p>Clara (<b>Penelope Cruz</b>) ja Felice (<b>Vincenzo Amato</b>) ovat menettäneet rakkautensa, mutta he eivät pysty eroamaan. Clara pakenee yksinäisyyttään ja turvautuu lähinnä kolmeen lapseensa, joka vie hänet vielä pidemmälle miehestään. Kun perheen poika ystävystyy tuntemattoman alempaan yhteiskuntaluokkaan kuuluvan tytön kanssa ja kokee ensisuudelmansa, ristiriidat repivät perhettä erilleen kohti murtumispistettä.</p><p><i>”Cruzin karismaattista voimaa – hän on kuin Sophia Lorenin ja auringonpurkauksen risteys.”</i> (Screen Daily)</p><p>Liput: 10 € / Lippu.fi<br>Kesto: 99 min <br>K12<br>Ohjaus: Emanuele Crialese<br>Käsikirjoitus: Emanuele Crialese, Francesca Manieri, Vittorio Moroni<br>Näyttelijät: Penelope Cruz, Vincenzo Amato, Luana Giuliani</p>" }, "name": { "fi": "Rakas äitini (12) – Ensi-iltaviikon elokuva" }, "short_description": { "fi": "Huolimatta siitä, kuinka kaunis asunto ja upeat näkymät heidän ylimmän kerroksen huoneistostaan on, Borghettin perheen asiat eivät ole niin kuin ennen." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60748/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60437", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/artist/ulla-tapaninen/ulla-tapaninen-lava-ammuntaa-vii-helsinki-3424156/?affiliate=ADV", "sv": "https://www.lippu.fi/artist/ulla-tapaninen/ulla-tapaninen-lava-ammuntaa-vii-helsinki-3424156/?affiliate=ADV", "en": "https://www.lippu.fi/artist/ulla-tapaninen/ulla-tapaninen-lava-ammuntaa-vii-helsinki-3424156/?affiliate=ADV" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4310, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:04.538132Z", "last_modified_time": "2023-09-07T14:23:04.538155Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731311.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4310/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:04.170528Z", "last_modified_time": "2023-11-14T06:13:13.441197Z", "date_published": null, "start_time": "2023-09-27T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/53ED6B3C23A97B90FE7015F2B56CF5BE/Ulla_Tapaninen_Lava-ammuntaa_VII_Seven_up_-komiikkaa_LOPPUUNMYYTY", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/53ED6B3C23A97B90FE7015F2B56CF5BE/Ulla_Tapaninen_Lava-ammuntaa_VII_Seven_up-komedi_UTSALD", "en": "http://www.kanneltalo.fi/en/events/event/53ED6B3C23A97B90FE7015F2B56CF5BE/Ulla_Tapaninen_Lava-ammuntaa_VII_Seven_up_comedy_SOLD_OUT" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>”Valehteleminen on nykyään muotia ja olen valehtelemisen ammattilainen. Koko ikäni olen lavalla valehdellut sujuvasti!”</p><p>Ulla Tapanisen Lava-ammuntaa VII on rakastetun näyttelijän esityssarjan seitsemäs itsenäinen jatko-osa. Luvassa on seven up -komiikkaa ja huikeita huomioita suomalaisesta todellisuudesta ja valheista.<br> <br>Käsikirjoitus: Raila Leppäkoski ja Ulla Tapaninen<br>Ohjaus: Raila Leppäkoski<br>Lavalla: Ulla Tapaninen</p><p>Kesto n. 1 t 45 min, sis. väliajan<br>Liput päivänäytökseen 28.9. 10 € ja iltanäytökseen 27.9. 20/15 €.</p>", "sv": "<p>”Nuförtiden är det på modet att ljuga och jag är expert på att ljuga. Hela mitt liv har jag ljugit flytande på scenen!”</p><p>Ulla Tapaninens Scenskytte VII är den sjunde fristående fortsättningen på denna älskade skådespelares föreställningsserie. Seven up-komedi och hisnande observationer om den finländska verkligheten och lögner utlovas.</p><p>Längd: ca. 1 t. 45 min., med paus.<br>Språk: finska<br>Biljetter: 27.9 kl. 18 – 20 € / 15 €; 28.9 kl. 14 – 10 €</p>", "en": "<p>“Lying is all the rage these days and I am a professional liar. I have lied fluently on stage all my life!”</p><p>Ulla Tapaninen’s Stage Shooting VII is the seventh independent sequel to the beloved actor’s performance series. It features seven-up comedy and hilarious observations on Finnish reality and lies.</p><p>Duration: approx. 1 h 45 min incl. intermission<br>Language: Finnish<br>Tickets to the 27 Sep 18 o' clock evening show at 20€ / 15 €, to the 28 Sep 14 o' clock matiné at 10 €.</p>" }, "name": { "fi": "Ulla Tapaninen: Lava-ammuntaa VII – Seven up -komiikkaa | LOPPUUNMYYTY", "sv": "Ulla Tapaninen: Lava-ammuntaa VII – Seven up-komedi | UTSÅLD", "en": "Ulla Tapaninen: Lava-ammuntaa VII – Seven up comedy | SOLD OUT" }, "short_description": { "fi": "”Valehteleminen on nykyään muotia ja olen valehtelemisen ammattilainen. Koko ikäni olen lavalla valehdellut sujuvasti!”", "sv": "”Nuförtiden är det på modet att ljuga och jag är expert på att ljuga. Hela mitt liv har jag ljugit flytande på scenen!”", "en": "“Lying is all the rage these days and I am a professional liar. I have lied fluently on stage all my life!”" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60437/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60675", "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": 4307, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:03.127250Z", "last_modified_time": "2023-09-07T14:23:03.127273Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735263.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4307/?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:02.544914Z", "last_modified_time": "2023-11-14T06:13:13.364752Z", "date_published": null, "start_time": "2023-09-27T14:00:00Z", "end_time": "2023-09-27T16: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CC05D349B4179D2F30351E56626DFF68/Sanapaja_Wordshop_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CC05D349B4179D2F30351E56626DFF68/Sanapaja_Wordshop_", "en": "http://www.vuotalo.fi/en/events/event/CC05D349B4179D2F30351E56626DFF68/Sanapaja_Wordshop_" }, "provider_contact_info": null, "provider": null, "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>" }, "name": { "fi": "Sanapaja / Wordshop", "sv": "Sanapaja / Wordshop", "en": "Sanapaja / Wordshop" }, "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?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60675/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60832", "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": 4306, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:01.636158Z", "last_modified_time": "2023-09-07T14:23:01.636179Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735154.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4306/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:01.066504Z", "last_modified_time": "2023-11-14T06:13:13.291432Z", "date_published": null, "start_time": "2023-09-27T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8AE19E1D7ABE2D07B6E2A2C178CE602B/Rikos_on_minun_12_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Ranskassa reilusti yli miljoona katsojaa teattereihin koonnut kesähitti on samaan aikaan ovela bulevardikomedia ja feministinen parodia sekä originellin epäkorrekti farssi.</p><p>Pariisi, 1935. Naisilla ei ole vielä edes äänioikeutta. Mahakkaat tuottajat ja lipevät lakimiehet pyörittävät seurapiirejä ja liiketoimia. Aloitteleva näyttelijätär Madeleine (Nadia Terezkiewicz) ja työtön asianajaja Pauline (Rebecca Marder) jakavat halvan ullakkohuoneen – vaikka rahat eivät oikein riitä edes moisen murjun vuokraan.</p><p>Madeleine joutuu syytteeseen tahmatassuisen tuottajan murhasta. Pauline ryhtyy hänen asianajajakseen. Se oli itsepuolustusta! Madeleine vapautetaan. Seuraa valtava seurapiirisirkus. Maine ja menestys näyttävät olevan käden ulottuvilla. Mutta kuka oikeasti murhasi tuottajan?</p><p>Isabelle Huppert kruunaa Francois Ozonin ohjaaman elokuvan valtavan tähtikaartin.</p><p>Kesto 102 min<br>Ikäraja: 12<br>Ensi-ilta 25.8.2023</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>" }, "name": { "fi": "Rikos on minun (12) – Kino Helios" }, "short_description": { "fi": "Ranskassa reilusti yli miljoona katsojaa teattereihin koonnut kesähitti on samaan aikaan ovela bulevardikomedia ja feministinen parodia sekä originellin epäkorrekti farssi." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60832/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60229", "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:348/?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": 4305, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:00.499409Z", "last_modified_time": "2023-09-07T14:23:00.499442Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730511.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4305/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:00.341399Z", "last_modified_time": "2023-11-14T06:13:13.220805Z", "date_published": null, "start_time": "2023-09-27T10:30:00Z", "end_time": "2023-09-27T11: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, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CC2E91F0399440B549F4BF4D0F28854F/Hyvan_tuulen_hetket", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CC2E91F0399440B549F4BF4D0F28854F/Stunder_med_god_stamning", "en": "http://www.kanneltalo.fi/en/events/event/CC2E91F0399440B549F4BF4D0F28854F/Moments_of_happiness" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Muusikko Mari Kätkä laulattaa ja kuvittaja Sari Airola kuvittaa rakastetuimpia yhteislauluja tarinallisiksi kuviksi.</p><p>Rakkaimpien yhteislaulujen soidessa, laulamisen lomassa myös laulajat saavat piirtää tai kirjoittaa mukana omia kuviaan ja vaikka omia musiikkimuistojaan. Kokonaisuudesta syntyy monitaiteellinen elämys, johon saa osallistua laulaen, piirtäen tai kuunnellen ja katsellen. Hetket rakennetaan joka kerta eri teeman ympärille lauluvalikoiman ja piirrosten aiheiden avulla.</p><p>Esitystä voi seurata maksutta kulttuuripalvelu Lämpiön kanavalla www.lampio.fi ja tallenne esityksestä on katsottavissa kaksi viikkoa esityksen jälkeen.</p><p>30.8. klo 13.30 Oi, elämä! <br>27.9. klo 13.30 Järjen veit!<br>11.10. klo 13.30 Syksyn värinää<br>29.11. klo 13.30 Unelmat<br>13.12. klo 13.30 Joulupuu</p><p>Kesto n. 30 min<br>Vapaa pääsy<br>Kahvilan stage / www.lampio.fi</p>", "sv": "<p>Musikern Mari Kätkä lockar till sång medan illustratören Sari Airola gör bildberättelser av våra mest älskade allsångslåtar.</p><p>Medan de mest älskade allsångslåtarna spelas kan även deltagarna rita sina egna bilder eller kanske skriva ner sina egna musikminnen. Av helheten uppstår en mångkonstnärlig upplevelse som man kan delta i genom att sjunga, rita eller lyssna och titta. Med hjälp av sångurvalet och bilderna byggs stunderna varje gång upp runt ett visst tema.</p>", "en": "<p>Musician Mari Kätkä leads the most beloved sing-along songs while illustrator Sari Airola illustrates them into narrative images.</p><p>While the most beloved sing-along songs are playing, even the singers can draw or write down their own pictures and musical memories. The performance creates a multi-artistic experience which you can take part in by singing, drawing, or listening and watching. Each moment is built around a different theme with the help of a selection of songs and drawing themes.</p>" }, "name": { "fi": "Hyvän tuulen hetket – Mari Kätkä ja Sari Airola", "sv": "Stunder med god stämning – Mari Kätkä och Sari Airola", "en": "Moments of happiness – Mari Kätkä and Sari Airola" }, "short_description": { "fi": "Muusikko Mari Kätkä laulattaa ja kuvittaja Sari Airola kuvittaa rakastetuimpia yhteislauluja tarinallisiksi kuviksi.", "sv": "Musikern Mari Kätkä lockar till sång medan illustratören Sari Airola gör bildberättelser av våra mest älskade allsångslåtar.", "en": "Musician Mari Kätkä leads the most beloved sing-along songs while illustrator Sari Airola illustrates them into narrative images." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60229/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60392", "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: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:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "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": 4302, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:58.830266Z", "last_modified_time": "2023-09-07T14:22:58.830288Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734661.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4302/?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:22:58.174516Z", "last_modified_time": "2023-11-14T06:13:13.147451Z", "date_published": null, "start_time": "2023-09-27T06:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E57C67700B33FDD7E170EC2D5EA1720A/Kanteleen_kielilla", "sv": "http://www.stoa.fi/sv/evenemang/event/E57C67700B33FDD7E170EC2D5EA1720A/Pa_kantelestrangarna", "en": "http://www.stoa.fi/en/events/event/E57C67700B33FDD7E170EC2D5EA1720A/On_the_Strings_of_a_Kantele" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Uulun liikkuva lastenkulttuurikeskus vierailee Itä-Helsingissä ja tuo mukanaan sävellystyöpajoja päiväkotiryhmille.</p><p>Kanteleen kielillä -työpajan teemana on kanteleihin tutustuminen ja oman sävellyksen tekeminen. Työpajassa tutkitaan, mitä säveliä 5-kielisestä kanteleesta löytyy ja miten eri tavoin kanteleen kielet saadaan soimaan. Lisäksi työpajassa tehdään kanteleiden kanssa jokaisen ryhmän kanssa oma pieni sävellys, johon mahdollisesti tehdään myös lyhyet laulettavat sanat.</p><p>Oma laulu opetellaan laulamaan ja se yhdistetään kanteleen soittoon ja tämä lyhyt teos nauhoitetaan. Jokainen ryhmä saa oman sävellyksensä työpajan jälkeen kuunneltavaksi.<br>Opettajana kantelisti, MuM Hanna Ryynänen.</p><p>Ikäsuositus: päiväkotiryhmille, 4-6-vuotiaille <br>Kesto: 45 min<br>Muuta: Työpajaan mahtuu 10-14 lasta (ja aikuiset)<br>Kieli: suomi <br>Vapaa pääsy. Pakolliset ennakkoilmoittautumiset 15.8. alkaen osoitteessa kultus.fi<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Uulus mobila barnkulturcentrum besöker Östra Helsingfors och tar med sig kompositionsverkstäder till daghemsgrupper.</p><p>Temat för verkstaden På kantelesträngarna är att bekanta sig med kantelen och skapa en egen komposition. I verkstaden undersöker vi vilka toner vi kan hitta i en femsträngad kantele och hur man på olika sätt får kantelens strängar att låta. Dessutom gör vi med varje grupp i verkstäderna med kantelen en egen liten komposition. Eventuellt skriver vi även en kort sångtext till den.</p>", "en": "<p>Uulu’s mobile children’s cultural centre visits eastern Helsinki and brings with it composition workshops for daycare groups.</p><p>On the Strings of a Kantele workshop focuses on getting to know the kantele and making your own composition. We will explore which notes can be found in a 5-string kantele and examine the different ways to make the strings of the kantele sound. In addition, each group will make a small composition with the kantele, possibly with short lyrics to sing.</p>" }, "name": { "fi": "Kanteleen kielillä", "sv": "På kantelesträngarna", "en": "On the Strings of a Kantele" }, "short_description": { "fi": "Uulun liikkuva lastenkulttuurikeskus vierailee Itä-Helsingissä ja tuo mukanaan sävellystyöpajoja päiväkotiryhmille.", "sv": "Uulus mobila barnkulturcentrum besöker Östra Helsingfors och tar med sig kompositionsverkstäder till daghemsgrupper.", "en": "Uulu’s mobile children’s cultural centre visits eastern Helsinki and brings with it composition workshops for daycare groups." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60392/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60129", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4301, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:57.439396Z", "last_modified_time": "2023-09-07T14:22:57.439429Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733087.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4301/?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:22:57.142646Z", "last_modified_time": "2023-11-14T06:13:13.065139Z", "date_published": null, "start_time": "2023-09-27", "end_time": "2023-09-28", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3E58CF441B1E02BB4A833B53F571DF8E/E1T1_Each_One_Teach_One" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Each One Teach One on nuorille suunnattu, monitaiteellinen hiphop-projekti, jossa pohditaan mm. tanssin, graffitin ja musiikin keinoin, miten kommunikoimme ja jaamme tunteitamme.</p><p>Kaksipäiväisen Each One Teach One -projektin ensimmäisenä päivänä osallistutaan työpajoihin ja toisena rakennetaan esitys. <br> <br>ma-ti 25.–26.9. tai ke–to 27.–28.9. <br> <br>Ensimmäinen päivä <br>9.00–10.30 Työpajat <br>10.30–12.00 Työpajat <br>Lounas <br>13.00–14.30 Työpajat <br> <br> Toinen päivä <br> 10.00–12.00 Rakennetaan esitys yhdessä <br> 12.00–14.00 Tauko & esityksen valmistelu <br> 14.00–14.30 Esitys <br> <br>Työpajat sisältävät tanssia, musisointia ja graffitia. Työpajoilla tutustutaan taidemuotoihin ja tehtäviin, joista esitys rakentuu. Tanssityöpajoilla harjoitellaan esityksessä käytettäviä tanssitehtäviä, graffitityöpajoilla päästään suunnittelemaan esityksessä toteutuvaa teosta, ja työpajalaiset voivat mahdollisesti olla mukana sitä tekemässä. Työpajoihin osallistuneet pääsevät siis halutessaan esittämään tuotoksiaan osana esitystä. Työpajoihin saa osallistua myös vaikkei näyttämölle halua itse mukaan. <br> <br>Each One Teach One -esitys on paikkakohtainen teos. Esitys rakentuu useasta kohtauksesta, jotka sijoittuvat tilassa eri paikkoihin. Yleisö seuraa esiintyjiä ja liikuteltavaa äänilähdettä sen mukaan, kuin paikka vaihtuu. <br> <br>Työryhmä: <br>Julian Owusu, Jon Gredmark, Sebastian Kurtén, Liana Vahtiala, Pontus Linder, Sanna Hoang ja Sami Elovaara. <br> <br> E1T1 – Each One Teach One on osa Nomads Festival 2023 -ohjelmistoa. <br> <br>Tiedustelut ja ilmoittautumiset: sanna.nuutinen@hel.fi</p>" }, "name": { "fi": "E1T1: Each One Teach One – Työpaja- ja esityskokonaisuus 4.–6.-luokkalaisille" }, "short_description": { "fi": "Each One Teach One on nuorille suunnattu, monitaiteellinen hiphop-projekti, jossa pohditaan mm. tanssin, graffitin ja musiikin keinoin, miten kommunikoimme ja jaamme tunteitamme." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60129/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59686", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "48,50 €", "sv": "48,50 €", "en": "48,50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3363901", "sv": "https://www.lippu.fi/eventseries/name-3363901", "en": "https://www.lippu.fi/eventseries/name-3363901" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4300, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:56.894078Z", "last_modified_time": "2023-09-07T14:22:56.894099Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729005.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4300/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:56.742113Z", "last_modified_time": "2023-11-14T06:13:12.983861Z", "date_published": null, "start_time": "2023-09-26T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/28AF1AA4F93EEA2BA507D533CF207FEE/Cristina_Branco", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/28AF1AA4F93EEA2BA507D533CF207FEE/Cristina_Branco", "en": "http://www.savoyteatteri.fi/en/events/event/28AF1AA4F93EEA2BA507D533CF207FEE/Cristina_Branco" }, "provider_contact_info": null, "provider": { "fi": "Loud'n Live Promotion Oy", "sv": "Loud'n Live Promotion Oy", "en": "Loud'n Live Promotion Oy" }, "description": { "fi": "<p>Cristina Branco, yksi portugalilaisen musiikin kauneimmista lauluäänistä, saapuu konsertoimaan Suomeen syksyllä!</p><p>Cristina Branco on yksi viime vuosikymmenien tärkeimmistä portugalilaisista artisteista.</p><p>Hän aloitti uransa Hollannissa, Cristina Branco in Holland (1997), josta tuli menestys kyseisessä maassa. Seuraavina vuosina Cristinan nimi räjähti ja artisti myi loppuun konsertteja lukemattomissa kaupungeissa. Hänen seuraavat teoksensa, Murmúrios (1998) ja Post-Scriptum (2000), vahvistivat artistin nousukiitoa.</p><p>Kuitenkin vasta Sensus (2003) kaltaisten albumien myötä portugalilainen yleisö löysi Brancon. Tästä seurasi Abril (2007) -albumi, joka sisältää cover-versioita José Afonson kappaleista sekä Fado Tango (2011), joka tehtiin yhteistyötä tunnettujen portugalilaisten kirjailijoiden kanssa. Fado Tango ennakoi Cristinan taiteellista uudestisyntymistä, joka koettiin Menina -albumin myötä.</p><p>Portugalin kirjailijayhdistyksen vuoden parhaana albumina pitämä Menina (2016) on osa trilogiaa, johon kuuluvat myös Branco (2018) ja Eva (2020). Näissä Cristina yhdistää epätavallisia yhteistyömuotoja, jotka johtavat innovatiiviseen tulkintaan Fado -musiikista. Eva:n julkaisusta lähtien Brancolla on ollut loppuunmyytyjä esityksiä eri puolilla Eurooppaa.</p><p>Vuonna 2022 juhlittiin Christina Brancon 25-vuotista uraa. Juhlintaan kuului jälleen uusi albumi Amoras numa Tarde de Outono, joka toteutettiin yhteistyössä pianisti João Paulo Esteves da Silvan kanssa.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "sv": "<p>Cristina Branco, en av den portugisiska musikens skönaste röster, på konsert i Finland i höst!</p><p>Cristina Branco är en av de senaste årtiondenas viktigaste portugisiska artister.</p><p>Hon inledde sin karriär i Nederländerna med Cristina Branco in Holland (1997) som tog landet med storm. De följande åren exploderade Cristinas namn och artisten spelade inför slutsålda läktare i otaliga städer. De följande verken, Murmúrios (1998) och Post-Scriptum (2000), gav artisten ett ytterligare lyft i karriären.</p><p>Det var dock först album som Sensus (2003) som gjorde att den portugisiska publiken fick upp ögonen för Branco. Detta följdes åt av Abril (2007) med coverversioner av José Afonsos låtar samt Fado Tango (2011) som gjordes i ett samarbete med portugisiska författare. Fado Tango förutspådde Cristinas konstnärliga pånyttfödelse som publiken fick uppleva med albumet Menina.</p><p>Menina (2016), som den portugisiska författarföreningen titulerat som årets bästa album ingår i en trilogi. De andra delarna är Branco (2018) och Eva (2020). I dessa kombinerar Cristina ovanliga samarbetsformer som leder till en innovativ tolkning av fadomusiken. Sedan Eva släpptes har Brancos konserter sålt ut i hela Europa.</p><p>År 2022 firade Christina Branco sitt 25-årsjubileum som artist. Till firandet hörde åter ett nytt album, Amoras numa Tarde de Outono, som genomfördes i samarbete med pianisten João Paulo Esteves da Silva.</p><p>Längd ca 2 h med paus</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>Cristina Branco, the singer with one of the most beautiful voices in Portuguese music, will perform in Finland in the autumn!</p><p>Cristina Branco is one of the most important Portuguese artists of recent decades.</p><p>She kicked off her career in the Netherlands with Cristina Branco in Holland (1997), which became a hit in the country. In the coming years, Cristina exploded onto the music scene and sold out concerts in countless cities. Her rocket-like rise to fame was solidified by the following releases Murmúrios (1998) and Post-Scriptum (2000).</p><p>However, it took until later albums, such as Sensus (2003), for Portuguese audiences to find Branco. This led to the album Abril (2007), which features covers of José Afonso’s songs, and Fado Tango (2011), which was made in collaboration with famous Portuguese authors. Fado Tango foreshadowed Cristina’s artistic rebirth, which came in the form of the album Menina.</p><p>Menina (2016), which was deemed the album of the year by the Portuguese Society of Authors, is part of a trilogy, which also includes Branco (2018) and Eva (2020). These works involved Cristina combining a variety of unconventional forms of collaboration, which led to innovative interpretations of Fado music. Since the release of Eva, Cristina has sold out concerts throughout Europe.</p><p>In 2022, she celebrated her 25-year career. To commemorate this momentous occasion, she also released a new album Amoras numa Tarde de Outono, which she made in cooperation with the pianist João Paulo Esteves da Silva.</p><p>Duration approx. 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>" }, "name": { "fi": "Cristina Branco", "sv": "Cristina Branco", "en": "Cristina Branco" }, "short_description": { "fi": "Cristina Branco, yksi portugalilaisen musiikin kauneimmista lauluäänistä, saapuu konsertoimaan Suomeen syksyllä!", "sv": "Cristina Branco, en av den portugisiska musikens skönaste röster, på konsert i Finland i höst!", "en": "Cristina Branco, the singer with one of the most beautiful voices in Portuguese music, will perform in Finland in the autumn!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59686/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60445", "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": "24,50 € / 29,50 €", "sv": "24,50 € / 29,50 €", "en": "24,50 € / 29,50 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/jason-ringenberg/", "sv": "https://www.lippu.fi/artist/jason-ringenberg/", "en": "https://www.lippu.fi/artist/jason-ringenberg/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4299, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:56.516149Z", "last_modified_time": "2023-09-07T14:22:56.516170Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728997.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4299/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:56.366084Z", "last_modified_time": "2023-11-14T06:13:12.905942Z", "date_published": null, "start_time": "2023-09-26T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6C60349D016F0C4FF890D3E8FAEE6185/Jason_Ringenberg_USA_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6C60349D016F0C4FF890D3E8FAEE6185/Jason_Ringenberg_USA_", "en": "http://www.malmitalo.fi/en/events/event/6C60349D016F0C4FF890D3E8FAEE6185/Jason_Ringenberg_USA_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Älä tule konserttiin odottaen näkeväsi jonkun tuolilla istuvan herkän laulaja-lauluntekijän. Kun Ringenberg tuo lavalle akustisen kitaransa ja energisen karismansa, silloin pannaan haisemaan!</p><p>Jason Ringenberg syntyi ja kasvoi sikafarmilla Illinoisissa. Hän muutti Nashvilleen 4. Heinäkuuta toteuttaakseen unelmansa ”yhtyeestä, joka potkaisee amerikkalaisen juurimusiikin nykyaikaan” ilman aavistustakaan siitä kuinka pitkälle tuo potku tulisi kantamaan. Siltä seisomalta hän perusti Jason and the Scorchersin eikä sittemmin katsonut taakseen. 1980- ja 1990-luvuilla kokoonpano keikkaili ympäri maailmaa ja sai maineen yhtenä mielenkiintoisimmista live-kokoonpanoista musiikin saralla. He ”yksinkertaisesti kirjoittivat uudelleen rock’n’rollin historiaa etelässä” (Rolling Stone). Tapa, jolla bändi vaistonvaraisesti yhdisti perinteisen kantrimusiikin energiseen punkrockiin on edelleenkin voittamaton.</p><p>Ringenbergin tarina ei kuitenkaan lopu tähän. Vuonna 1992 ”Americanan kummisetä” päätti lähteä soolouralle. Hän on sittemmin julkaissut seitsemän levyä ja tullut ylistetyksi laulunkirjoitustaidoistaan BBC:tä ja USA Today - ohjelmaa myöten. Villiten yleisöjä ympäri maailmaa hän on tullut noteeratuksi The Times -lehden taholta ”yhtenä sukupolvensa mielenkiintoisimmista esiintyjistä”.</p>", "sv": "<p>Kom inte till konserten med förväntningen att se en känslig singer/songwriter som sitter på en stol. När Ringenberg tar sin akustiska gitarr och energiska karisma till scenen, då svänger det ordentligt!</p><p>”Americanas gudfader” inledde sin solokarriär 1992 och har gett ut sju skivor, och har lovordats för sin låtskrivarförmåga av både BBC och programmet USA Today. Han har underhållit publiker runtom i världen och noterats av tidningen The Times som ”en av sin generations mest intressanta artister”.</p>", "en": "<p>Don’t come to the concert expecting to see a sensitive singer-songwriter sitting in a chair. When Ringenberg brings an acoustic guitar and his energetic charisma to the stage, it’s time to rock and roll!</p><p>Praised by the BBC and USA Today for his songwriting skills, the “Godfather of Americana” has released seven albums since going solo in 1992. Ringenberg has roused the masses around the world and been hailed by The Times as “one of the most exciting performers of the generation.”</p>" }, "name": { "fi": "Jason Ringenberg (USA)", "sv": "Jason Ringenberg (USA)", "en": "Jason Ringenberg (USA)" }, "short_description": { "fi": "Älä tule konserttiin odottaen näkeväsi jonkun tuolilla istuvan herkän laulaja-lauluntekijän. Kun Ringenberg tuo lavalle akustisen kitaransa ja energisen karismansa, silloin pannaan haisemaan!", "sv": "Kom inte till konserten med förväntningen att se en känslig singer/songwriter som sitter på en stol. När Ringenberg tar sin akustiska gitarr och energiska karisma till scenen, då svänger det ordentligt!", "en": "Don’t come to the concert expecting to see a sensitive singer-songwriter sitting in a chair. When Ringenberg brings an acoustic guitar and his energetic charisma to the stage, it’s time to rock and roll!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60445/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60137", "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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "15 €", "sv": "15 €", "en": "15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/umo-helsinki-jazz-orchestra-focus-tero-saarti-3405076/?affiliate=ADV", "sv": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/umo-helsinki-jazz-orchestra-focus-tero-saarti-3405076/?affiliate=ADV", "en": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/umo-helsinki-jazz-orchestra-focus-tero-saarti-3405076/?affiliate=ADV" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4296, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:53.486171Z", "last_modified_time": "2023-09-07T14:22:53.486195Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733173.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4296/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:53.330666Z", "last_modified_time": "2023-11-14T06:13:12.824415Z", "date_published": null, "start_time": "2023-09-26T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8B5A72C6048E43012FEF2244D0369662/UMO_Helsinki_Jazz_Orchestra_Focus_Tero_Saarti_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8B5A72C6048E43012FEF2244D0369662/UMO_Helsinki_Jazz_Orchestra_Focus_Tero_Saarti_", "en": "http://www.vuotalo.fi/en/events/event/8B5A72C6048E43012FEF2244D0369662/UMO_Helsinki_Jazz_Orchestra_Focus_Tero_Saarti_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Konsertin fokuksessa on UMO Helsinki Jazz Orchestran pitkäaikainen trumpetisti Tero Saarti. Kapellimestarina Mikko Hassinen.</p><p>UMOn riveissä tasan 30 vuoden ajan soittanut trumpetisti <b>Tero Saarti</b> saa jazzin todella elämään ja sykkimään ilman keinotekoista, teknistä suorittamista. Saarti on UMOn tärkeä solistinen voima, jonka trumpetti ja flyygelitorvi yksinkertaisesti groovaavat.</p><p>Saarti on valinnut konsertin ohjelmistoon suosikkejaan säveltäjä-trumpetisti Kenny Wheelerin (1930–2014) laajasta tuotannosta yhteistyössä kapellimestari <b>Mikko Hassisen</b> kanssa.</p><p>Albumi Music For Large & Small Ensembles vuodelta 1990 tutustutti minut Wheelerin jazzorkesterin sävelkieleen. Olen aina ihastellut hänen tapaansa säveltää myös pienyhtyeelle, Saarti kertoo. Kyseiseltä levyltä poimittujen osien lisäksi konsertissa kuullaan Wheeleriltä mm. Mark Time, Gentle Piece ja For Jan.</p><p>Konsertissa kantaesityksensä saavat myös Tero Saartin tätä konserttia varten säveltämät uudet teokset. UMOn ja oman kvartettinsa lisäksi trumpetisti, säveltäjä ja sovittaja Tero Saarti (s. 1971) on vaikuttanut mm. Riku Niemi Orchestrassa, Ricky-Tick Big Bandissa, Espoo Big Bandissa ja Tampereen Työväen Teatterin orkesterissa. Hän toimii Hietalahti Soi -festivaalin taiteellisena johtajana. Saarti tekee opetustöitä Sibelius-Akatemiassa ja Metropolia Ammattikorkeakoulussa, ja on kysytty luennoitsija ja työpajojen pitäjä niin ulkomailla kuin Suomessakin. Opintonsa Saarti on suorittanut Pop & Jazz Konservatoriossa ja Sibelius-Akatemiassa.</p><p><b>Enemmän irti esityksestä</b> -keskustelutilaisuus Vuotalon kahvila Pokkarissa klo 13.15. Keskustelutilaisuus on maksuton konserttilipun ostaneille ja siinä taustoitetaan ohjelmistoa kapellimestari Mikko Hassisen ja solisti Tero Saartin johdolla.</p><p>Konsertin kesto n. 75 min, ei väliaikaa<br>Lippu.fi 15 €</p>", "sv": "<p>Fokus i den här konserten är UMO Helsinki Jazz Orchestras långvariga trumpetist Tero Saarti. Kapellmästare är Mikko Hassinen.</p><p>Trumpetisten Tero Saarti, som har spelat med UMO i exakt 30 år, får verkligen jazzen att leva och pulsera utan konstgjorda, tekniska prestationer. Saarti är en viktig solistkraft i UMO vars trumpet och flygelhorn helt enkelt svänger.</p>", "en": "<p>The focal point of this concert is Tero Saarti, UMO Helsinki Jazz Orchestra’s longstanding trumpet player. The consert is conducted by Mikko Hassinen.</p><p>Trumpet player Tero Saarti, who has been with UMO for exactly 30 years, really makes jazz come alive and pulsate without ever being artificial or technical. Saarti is a major solo force in UMO, and his trumpet and flugelhorn are simply groovy.</p>" }, "name": { "fi": "UMO Helsinki Jazz Orchestra – Focus Tero Saarti", "sv": "UMO Helsinki Jazz Orchestra – Focus Tero Saarti", "en": "UMO Helsinki Jazz Orchestra – Focus Tero Saarti" }, "short_description": { "fi": "Konsertin fokuksessa on UMO Helsinki Jazz Orchestran pitkäaikainen trumpetisti Tero Saarti. Kapellimestarina Mikko Hassinen.", "sv": "Fokus i den här konserten är UMO Helsinki Jazz Orchestras långvariga trumpetist Tero Saarti. Kapellmästare är Mikko Hassinen.", "en": "The focal point of this concert is Tero Saarti, UMO Helsinki Jazz Orchestra’s longstanding trumpet player. The consert is conducted by Mikko Hassinen." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60137/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60456", "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-2/?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": 4295, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:53.080702Z", "last_modified_time": "2023-09-07T14:22:53.080727Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725181.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4295/?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:22:52.916350Z", "last_modified_time": "2023-11-14T06:13:12.746998Z", "date_published": null, "start_time": "2023-09-26T10:30:00Z", "end_time": "2023-09-26T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/18C555027C8BBFDE9212BBFA648D557B/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/18C555027C8BBFDE9212BBFA648D557B/Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/18C555027C8BBFDE9212BBFA648D557B/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "provider_contact_info": null, "provider": null, "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>" }, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Open Art Studio for Toddlers-verkstäder", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "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." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60456/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26231, "next": "