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/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=1120
https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=1121", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=1119" }, "data": [ { "id": "kulke:60238", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3420923" }, "price": { "fi": "15/77 €, Show & Dinner 127 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4615, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:43.555067Z", "last_modified_time": "2023-09-07T14:27:43.555099Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734177.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4615/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:43.394545Z", "last_modified_time": "2023-11-14T06:13:47.232393Z", "date_published": null, "start_time": "2023-12-01T17: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, "name": { "fi": "Reuben Kaye: The Butch is Back" }, "provider_contact_info": null, "description": { "fi": "<p>Kabareetornado Reuben Kaye palaa Suomeen parhaimpaan pikkujouluaikaan!</p><p>WINNER: Best Cabaret Show Off West End Awards 2023<br>WINNER: Best Cabaret ARTISTE Green Room Awards 2022<br>WINNER: Best Production Green Room Awards 2022<br>WINNER: Best Musical Direction Green Room Awards 2022</p><p>Kabareesensaatio Reuben Kaye palaa Savoy-teatteriin palkitulla uutuusesityksellään The Butch is Back.</p><p>Australialaissyntyinen Reuben Kaye on luonnonvoima, joka verhoaa yhteiskuntakritiikin glitteriin. Häpeämätön huumori on hänen tapansa vastustaa kasvavaa uuskonservatismia ja vähemmistöjen syrjintää.<br>Kayen kaikki aistit räjäyttävä show yhdistää vaivattomasti korkeakulttuuria ja vessahuumoria.</p><p>Kabareen laulut ovat tutumpaakin tutumpia, mutta Kayen käsittelyssä ja upeasti tulkitsemina aivan omanlaisiaan. Illan aikana yleisö pääsee nauttimaan eri vuosikymmenten hiteistä The Rolling Stonesien Sympathy for the Devil -kappaleesta The Curen ja Screamin’ Jay Hawkinsin tuotantoon. Kayea säestää viisihenkinen yhtye.<br>Hyppää Reubenin kyytiin juhlakauden säkenöivimpiin bileisiin!</p><p>“A glorious comedy cabaret that’s by turns funny, poignant and political – and never less than fabulously executed” Chortle</p><p>Esityskieli: Englanti<br>Kesto n. 2 h, sisältää väliajan.</p><p>Permantopaikat ovat K18. Parveke on sallittu kaiken ikäisille.</p><p>Yli 11 hengen ryhmävaraukset Lippu.fin ryhmämyyntipalvelusta, p. 0600 413 141 (2 €/alk. min + mpm/pvm) tai ryhmat@lippu.fi</p><p>***</p><p>Yhdistä konserttielämykseen illallinen – osta Show & Dinner -lippu!</p><p>Show & Dinner -lippu sisältää pääsylipun, vaatenaulakkomaksun sekä pöytiin tarjoillun liha- tai kasvismenun Savoy-teatterin yhteydessä sijaitsevassa ravintolassa kaksi tuntia ennen esitystä.</p><p>MENU LIHA:</p><p>GRILLATTUA SYDÄNSALAATTIA (V,G)<br>Chimichurri-kastiketta ja savustettua majoneesia<br>***<br>MARMOROITUNUTTA HÄRÄN ULKOFILEETÄ (L,G)<br>Parmesaani-rucolaperunaa ja béarnaisekastiketta<br>***<br>SUKLAABROWNIE (L,G)<br>Paahdettua valkosuklaa-namelakaa ja vadelmaa</p><p>MENU KASVIS:</p><p>TOMAATTITARTARIA (L,G)<br>Pikkelöityjä sinapinsiemeniä ja vatkattua fetaa<br>***<br>Grillattua kukkakaalia (V,G)<br>Friteerattua kurpitsan kukkaa, keltaista currya ja tofua<br>***<br>Tummasuklaamoussea (V,G)<br>Mustaherukkaa ja financier-leivosta</p><p>Lisätiedot, erikoisruokavaliot ja juomatilaukset: terhi.grohn@sunbornevents.fi</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/BE6773741D3A907A0E32D96628E6BBB6/Reuben_Kaye_The_Butch_is_Back" }, "location_extra_info": null, "short_description": { "fi": "Kabareetornado Reuben Kaye palaa Suomeen parhaimpaan pikkujouluaikaan!" }, "provider": { "fi": "Savoy-teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60238/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61333", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "price": { "fi": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5977, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-13T12:14:15.146450Z", "last_modified_time": "2023-11-13T12:14:15.146474Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739384.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5977/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-13T12:14:15.124772Z", "last_modified_time": "2023-11-14T06:13:47.086316Z", "date_published": null, "start_time": "2023-12-01T16: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, "name": { "fi": "Poika ja Haikara – Kino Helios" }, "provider_contact_info": null, "description": { "fi": "<p>Nuori Mahito-poika kaipaa äitiään ja päätyy etsimään tätä elävien sekä kuolleiden jakamasta rajamaailmasta.</p><p>Siellä kuolema päättyy ja uusi elämä voi alkaa.</p><p>POIKA JA HAIKARA on <b>Hayao Miyazakin</b> osin omaelämäkerrallinen fantasia elämästä ja kuolemasta, tarina luomisesta sekä ystävyyden merkityksestä.</p><p>POIKA JA HAIKARA on Oscar-palkitun Hayao Miyazakin ensimmäinen pitkä elokuva kymmeneen vuoteen. Sen on tuottanut Studio Ghiblin alkuperäinen perustajajäsen <b>Toshio Suzuki</b>.</p><p>Käsin piirretyn elokuvan musiikin on luonut Miyazakin pitkäaikainen vakiosäveltäjä <b>Joe Hisaishi</b>. Tunnusmelodian esittää J-Pop -supertähti <b>Kenshi Yonezu</b>.</p><p>Ikäraja ei tiedossa<br>Kesto 124 min<br>Ensi-ilta 17.11.2023</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0BD0A458E9C55F88D9A77481AD705926/Poika_ja_Haikara_" }, "location_extra_info": null, "short_description": { "fi": "Nuori Mahito-poika kaipaa äitiään ja päätyy etsimään tätä elävien sekä kuolleiden jakamasta rajamaailmasta." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61333/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60239", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3420923", "en": "https://www.lippu.fi/eventseries/name-3420923" }, "price": { "fi": "15/77 €, Show & Dinner 127 €", "en": "15/77 €, Show & Dinner 127 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4611, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:38.966099Z", "last_modified_time": "2023-09-07T14:27:38.966121Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734176.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4611/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:38.800894Z", "last_modified_time": "2023-11-14T06:13:46.864911Z", "date_published": null, "start_time": "2023-11-30T17: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, "name": { "fi": "Reuben Kaye: The Butch is Back", "en": "Reuben Kaye: The Butch is Back" }, "provider_contact_info": null, "description": { "fi": "<p>Kabareetornado Reuben Kaye palaa Suomeen parhaimpaan pikkujouluaikaan!</p><p>WINNER: Best Cabaret Show Off West End Awards 2023<br>WINNER: Best Cabaret ARTISTE Green Room Awards 2022<br>WINNER: Best Production Green Room Awards 2022<br>WINNER: Best Musical Direction Green Room Awards 2022</p><p>Kabareesensaatio Reuben Kaye palaa Savoy-teatteriin palkitulla uutuusesityksellään The Butch is Back.</p><p>Australialaissyntyinen Reuben Kaye on luonnonvoima, joka verhoaa yhteiskuntakritiikin glitteriin. Häpeämätön huumori on hänen tapansa vastustaa kasvavaa uuskonservatismia ja vähemmistöjen syrjintää.<br>Kayen kaikki aistit räjäyttävä show yhdistää vaivattomasti korkeakulttuuria ja vessahuumoria.</p><p>Kabareen laulut ovat tutumpaakin tutumpia, mutta Kayen käsittelyssä ja upeasti tulkitsemina aivan omanlaisiaan. Illan aikana yleisö pääsee nauttimaan eri vuosikymmenten hiteistä The Rolling Stonesien Sympathy for the Devil -kappaleesta The Curen ja Screamin’ Jay Hawkinsin tuotantoon. Kayea säestää viisihenkinen yhtye.<br>Hyppää Reubenin kyytiin juhlakauden säkenöivimpiin bileisiin!</p><p>“A glorious comedy cabaret that’s by turns funny, poignant and political – and never less than fabulously executed” Chortle</p><p>Esityskieli: Englanti<br>Kesto n. 2 h, sisältää väliajan.</p><p>Permantopaikat ovat K18. Parveke on sallittu kaiken ikäisille.</p><p>Yli 11 hengen ryhmävaraukset Lippu.fin ryhmämyyntipalvelusta, p. 0600 413 141 (2 €/alk. min + mpm/pvm) tai ryhmat@lippu.fi</p><p>***</p><p>Yhdistä konserttielämykseen illallinen – osta Show & Dinner -lippu!</p><p>Show & Dinner -lippu sisältää pääsylipun, vaatenaulakkomaksun sekä pöytiin tarjoillun liha- tai kasvismenun Savoy-teatterin yhteydessä sijaitsevassa ravintolassa kaksi tuntia ennen esitystä.</p><p>MENU LIHA:</p><p>GRILLATTUA SYDÄNSALAATTIA (V,G)<br>Chimichurri-kastiketta ja savustettua majoneesia<br>***<br>MARMOROITUNUTTA HÄRÄN ULKOFILEETÄ (L,G)<br>Parmesaani-rucolaperunaa ja béarnaisekastiketta<br>***<br>SUKLAABROWNIE (L,G)<br>Paahdettua valkosuklaa-namelakaa ja vadelmaa</p><p>MENU KASVIS:</p><p>TOMAATTITARTARIA (L,G)<br>Pikkelöityjä sinapinsiemeniä ja vatkattua fetaa<br>***<br>Grillattua kukkakaalia (V,G)<br>Friteerattua kurpitsan kukkaa, keltaista currya ja tofua<br>***<br>Tummasuklaamoussea (V,G)<br>Mustaherukkaa ja financier-leivosta</p><p>Lisätiedot, erikoisruokavaliot ja juomatilaukset: terhi.grohn@sunbornevents.fi</p>", "en": "<p>Cabaret-tornado Reuben Kaye returns to Savoy Theatre with his new show, The Butch is Back!</p><p>WINNER: Best Cabaret Show Off West End Awards 2023<br>WINNER: Best Cabaret ARTISTE Green Room Awards 2022<br>WINNER: Best Production Green Room Awards 2022<br>WINNER: Best Musical Direction Green Room Awards 2022</p><p>Australian Reuben Kaye is a force of nature, who wraps social criticism into glitter. Impudent humor is his way of resisting neoconservatism and discrimination of minorities.</p><p>The show’s music includes mega hits from the past decades, for example from The Rolling Stones, The Cure and Screamin’ Jay Hawkins.</p><p>Join Reuben and his 5-membered band to blow up Your mind and senses!</p><p>“A glorious comedy cabaret that’s by turns funny, poignant and political – and never less than fabulously executed” Chortle</p><p>Language: English<br>Duration: 2 hrs, including intermission</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/95FFA6BD91438297D745E2E469A83751/Reuben_Kaye_The_Butch_is_Back", "en": "http://www.savoyteatteri.fi/en/events/event/95FFA6BD91438297D745E2E469A83751/Reuben_Kaye_The_Butch_is_Back" }, "location_extra_info": null, "short_description": { "fi": "Kabareetornado Reuben Kaye palaa Suomeen parhaimpaan pikkujouluaikaan!", "en": "Cabaret-tornado Reuben Kaye returns to Savoy Theatre with his new show, The Butch is Back!" }, "provider": { "fi": "Savoy-teatteri", "en": "Savoy Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60239/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60614", "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:596/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/mars-vs-venus-2-uusintaottelu-kanneltalo-17341266/" }, "price": { "fi": "24,50 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4608, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:36.552060Z", "last_modified_time": "2023-09-07T14:27:36.552094Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731909.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4608/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:35.267046Z", "last_modified_time": "2023-11-14T06:13:46.709239Z", "date_published": null, "start_time": "2023-11-30T16: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, "name": { "fi": "PERUTTU | Mars vs Venus? 2 – Uusintaottelu" }, "provider_contact_info": null, "description": { "fi": "<p>Supersuosittu Mars vs Venus? on saanut jatkoa!</p><p>Yli neljä vuotta ja 30 000 katsojaa myöhemmin koomikkopariskunta Riku Suokas ja Johanna Tohni ovat valmiita uusintaotteluun. Kasvaneet lapset ja uudet perheenjäsenet on vedetty mukaan tähän uusperheen arkea ja keski-ikäistyvien koomikoiden parisuhdekiemuroita käsittelevään hulvattomaan stand up -esitykseen. Ja tietysti myös tällä kierroksella kisaillaan siitä, kummalla on vaikeampaa.<br> <br>Näyttelijä, käsikirjoittaja ja ohjaaja <b>Riku Suokas</b> on stand up -komiikan pioneereja Suomessa. Teatterin lisäksi hän on työskennellyt menestyksekkäästi elokuva- ja TV-tuotannoissa, mm. Koskinen-sarjassa. <b>Johanna Tohni</b> on entuudestaan tuttu esityksistä Mars vs Venus? sekä Pop Fiction. Hän on esittänyt stand upia ympäri Suomen sekä esiintynyt Nelosen Stand Up! -ohjelmassa.</p><p>Esitys on kerännyt loppuunmyytyjä katsomoja Tampereen Työväen Teatterin TTT-klubinäyttämöllä. Nyt Mars vs Venus? 2 kiertää tapahtumataloja, teatterisaleja ja kesäteattereita.<br> <br>Lavalla: Riku Suokas ja Johanna Tohni<br>Käsikirjoitus ja ohjaus: Riku Suokas ja Johanna Tohni</p><p>Kesto: n. 1 t 50 min (sis. väliajan)</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/59AFC750E9E4F3AAE94F0806A138103C/PERUTTU_Mars_vs_Venus_2_Uusintaottelu" }, "location_extra_info": null, "short_description": { "fi": "Supersuosittu Mars vs Venus? on saanut jatkoa!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60614/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60477", "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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4607, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:34.628677Z", "last_modified_time": "2023-09-07T14:27:34.628699Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725264.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4607/?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:27:34.296799Z", "last_modified_time": "2023-11-14T06:13:46.554101Z", "date_published": null, "start_time": "2023-11-30T08:00:00Z", "end_time": "2023-11-30T10: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, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "provider_contact_info": null, "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>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/10A94599F81BB2226573B3DBA855626E/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/10A94599F81BB2226573B3DBA855626E/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/10A94599F81BB2226573B3DBA855626E/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "location_extra_info": null, "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." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60477/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61044", "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:351/?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/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3496288", "sv": "https://www.lippu.fi/eventseries/name-3496288" }, "price": { "fi": "48,50 €", "sv": "48,50 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5245, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:32:50.269488Z", "last_modified_time": "2023-10-09T13:32:50.269513Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736890.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5245/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:32:50.116147Z", "last_modified_time": "2023-11-14T06:13:46.396763Z", "date_published": null, "start_time": "2023-11-29T17: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, "name": { "fi": "Julfest med Krista & Mark – En varm julshow i väntan på jul", "sv": "Julfest med Krista & Mark – En varm julshow i väntan på jul" }, "provider_contact_info": null, "description": { "fi": "<p>Av och med Krista Siegfrids och Mark Levengood</p><p>Sluta stressa över julstädningen och häng med på en rolig och stämningsfull kväll med Krista och Mark! Låt årets mörkaste tid lysas upp av musikalisk glädje och humor. Vad hände när Marks pappa på julafton reste sig och sade ”Nej, nu ska jag gå och köpa tidningen”?<br>Och vilka oväntade favoriter kastar Krista in bland de älskade julsångerna? Och kan bara blonda bli valda till Lucia? Varför inte en utan hår?<br>Ackompanjerade av trion ”Mandeln i gröten” rumlar Krista och Mark runt bland minnen av lyckliga och katastrofala jular och guidar publiken genom bjällerklang och sjungande pepparkaksgubbar.</p><p>Från stallet i Betlehem till en teater nära dig - en kväll av musik, gemenskap och värme. <br>Låt kvällen med Krista och Mark öppna upp för en fin och stressfri jul 2023. För, som Marks mamma så riktigt konstaterade: ”Sluta städa. Tänd ett ljus. Då ser ingen att det är skitigt”.</p><p>Under kvällens gång kommer ni att få höra roliga anekdoter samt trevliga och mindre trevliga julminnen från Marks och Kristas liv. Det blir helt enkelt julstämning i sann Mark och Krista anda… Mysigt, roligt och lite smått kaotiskt. Det bjuds även på stämningsfull julmusik med välkända klassikers… men ni kommer även att få höra Marks och Kristas unika och lite smått otippade favoritlåtar. Så strunta i julstressen för en stund och häng med på en rolig kväll med Mark & Krista! Vi garanterar julfeeling!</p><p>Längd ca 2 timmar, inkl. paus.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns.</p>", "sv": "<p>Av och med Krista Siegfrids och Mark Levengood</p><p>Sluta stressa över julstädningen och häng med på en rolig och stämningsfull kväll med Krista och Mark! Låt årets mörkaste tid lysas upp av musikalisk glädje och humor. Vad hände när Marks pappa på julafton reste sig och sade ”Nej, nu ska jag gå och köpa tidningen”?<br>Och vilka oväntade favoriter kastar Krista in bland de älskade julsångerna? Och kan bara blonda bli valda till Lucia? Varför inte en utan hår?<br>Ackompanjerade av trion ”Mandeln i gröten” rumlar Krista och Mark runt bland minnen av lyckliga och katastrofala jular och guidar publiken genom bjällerklang och sjungande pepparkaksgubbar.</p><p>Från stallet i Betlehem till en teater nära dig - en kväll av musik, gemenskap och värme. <br>Låt kvällen med Krista och Mark öppna upp för en fin och stressfri jul 2023. För, som Marks mamma så riktigt konstaterade: ”Sluta städa. Tänd ett ljus. Då ser ingen att det är skitigt”.</p><p>Under kvällens gång kommer ni att få höra roliga anekdoter samt trevliga och mindre trevliga julminnen från Marks och Kristas liv. Det blir helt enkelt julstämning i sann Mark och Krista anda… Mysigt, roligt och lite smått kaotiskt. Det bjuds även på stämningsfull julmusik med välkända klassikers… men ni kommer även att få höra Marks och Kristas unika och lite smått otippade favoritlåtar. Så strunta i julstressen för en stund och häng med på en rolig kväll med Mark & Krista! Vi garanterar julfeeling!</p><p>Längd ca 2 timmar, inkl. paus.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns.</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/DC13CCE81BF5176F9B2B5E5055C4ED0B/Julfest_med_Krista_Mark", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/DC13CCE81BF5176F9B2B5E5055C4ED0B/Julfest_med_Krista_Mark" }, "location_extra_info": null, "short_description": { "fi": "Av och med Krista Siegfrids och Mark Levengood", "sv": "Av och med Krista Siegfrids och Mark Levengood" }, "provider": { "fi": "Eventland Oy", "sv": "Eventland Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61044/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61233", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios" }, "price": { "fi": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5875, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-06T13:14:07.553391Z", "last_modified_time": "2023-11-06T13:14:07.553410Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739379.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5875/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-06T13:14:07.530266Z", "last_modified_time": "2023-11-14T06:13:46.326203Z", "date_published": null, "start_time": "2023-11-29T16: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, "name": { "fi": "Napoleon – Kino Helios" }, "provider_contact_info": null, "description": { "fi": "<p>Napoleon on näyttävä toimintaeepos, joka kertoo yksityiskohtaisesti Ranskan ikonisen keisarin Napoleon Bonaparten (Oscar®-voittaja Joaquin Phoenix) nousun ja tuhon.</p><p>Tässä elämää suuremmassa elokuvassa legendaarinen ohjaaja <b>Ridley Scott</b> kuvaa Bonaparten hellittämätöntä matkaa valtaan ja hänen pakkomielteistä suhdettaan elämänsä rakkauteen Josephineen.</p><p>Elokuva esittelee vauhdikkaiden taistelukohtausten ohella myös Napoleonin uraauurtavia sotilaallisia ja poliittisia manööverejä.</p><p>Ikäraja ei tiedossa<br>Kesto 159 min<br>Ensi-ilta 22.11.2023</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8B75B6E5D3738149A11EBC5CFDB38275/Napoleon" }, "location_extra_info": null, "short_description": { "fi": "Napoleon on näyttävä toimintaeepos, joka kertoo yksityiskohtaisesti Ranskan ikonisen keisarin Napoleon Bonaparten (Oscar®-voittaja Joaquin Phoenix) nousun ja tuhon." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61233/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60613", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/arppa-kanneltalo-17229073/", "sv": "https://www.lippu.fi/event/arppa-kanneltalo-17229073/", "en": "https://www.lippu.fi/event/arppa-kanneltalo-17229073/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4605, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:33.660119Z", "last_modified_time": "2023-09-07T14:27:33.660148Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730530.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4605/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:33.503448Z", "last_modified_time": "2023-11-14T06:13:46.253746Z", "date_published": null, "start_time": "2023-11-29T16: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, "name": { "fi": "Arppa", "sv": "Arppa", "en": "Arppa" }, "provider_contact_info": null, "description": { "fi": "<p>Ennen kaikkea energisistä, improvisaatioon perustuvista keikoistaan tunnettu Arppa yhtyeineen on yksi tämänhetkisen Suomi-indien kärkinimistä.</p><p><b>Arpan</b> ihastuttava musiikki on ajatonta ja tekstit kuin liikkuvaa kuvaa – oivaltavat, vilpittömät ja tarkkanäköisesti kuvatut tunnelmat liikkuvat Kokkolan Ykspihlajasta aina öisen Helsingin kautta Laila Kinnusen kanssa salakapakkaan heinäkuuhun ’58.</p><p>Arpan yhtyeessä vaikuttavat muusikot <b>Ville-Veikko Airaniemi</b>, <b>Eero Seppä</b> ja <b>Okko Saastamoinen</b>.</p><p>Arpan suosio perustuu ahkeraan keikkailuun ja tiheään julkaisutahtiin. Arppa on haalinut ympärilleen taitavat ja valovoimaiset muusikot, minkä ansiosta hänen tunnelmallisten tekstiensä ympärille on rakentunut kaunis ja eheä äänimaailma. Luontevan vaivaton olemus ja yhtyeen esiintymisistä huokuva vilpitön riemu ei voi olla tempaamatta läsnäolijoita mukaansa.</p><p>Omakustanteisen debyyttialbuminsa <i>Laavalamppuja</i> elokuussa 2020 julkaissut artisti on kiivennyt hirmuvauhdilla lupaavan artistilupauksen maineesta suoraan maamme ajankohtaisimpien ja rakastetuimpien nimien joukkoon.</p><p>Arppa julkaisi toisen albuminsa <i>Kinovalon alla</i> syyskuussa 2021 ja kolmannen albuminsa <i>Valerian</i> maaliskuussa 2023.</p>", "sv": "<p>Arppa med sitt band, som framför allt är känd för energiska spelningar som bygger på improvisation, är ett av de främsta namnen inom finnindie just nu.</p><p>Arppas popularitet bygger på flitigt turnerande och frekventa låtsläpp. Arppa har samlat kring sig skickliga och ljusstarka musiker och med deras hjälp byggt en vacker och harmonisk ljudvärld runt sina stämningsfulla texter.</p><p>Det är omöjligt för publiken att stå emot Arppas naturligt okonstlade habitus och den äkta glädjen som bandets uppträdande förmedlar.</p>", "en": "<p>Known above all for his energetic, improvisational gigs, Arppa and his band are one of the top names in the current Finnish indie scene.</p><p>Arppa’s popularity is based on frequent touring and a fast release schedule. Arppa has surrounded himself with skilled and bright musicians, thanks to which a beautiful and complete soundscape has been built around his atmospheric texts.</p><p>Arppa’s easy-going nature and the sincere joy of the band’s performances cannot fail to captivate the audience.</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D1C78DE04DBCD720E4D6224A38BF7EDB/Arppa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D1C78DE04DBCD720E4D6224A38BF7EDB/Arppa", "en": "http://www.kanneltalo.fi/en/events/event/D1C78DE04DBCD720E4D6224A38BF7EDB/Arppa" }, "location_extra_info": null, "short_description": { "fi": "Ennen kaikkea energisistä, improvisaatioon perustuvista keikoistaan tunnettu Arppa yhtyeineen on yksi tämänhetkisen Suomi-indien kärkinimistä.", "sv": "Arppa med sitt band, som framför allt är känd för energiska spelningar som bygger på improvisation, är ett av de främsta namnen inom finnindie just nu.", "en": "Known above all for his energetic, improvisational gigs, Arppa and his band are one of the top names in the current Finnish indie scene." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60613/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61004", "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: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/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5244, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:32:49.897695Z", "last_modified_time": "2023-10-09T13:32:49.897713Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728484.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5244/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:32:49.603508Z", "last_modified_time": "2023-11-14T06:13:46.174832Z", "date_published": null, "start_time": "2023-11-29T16: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, "name": { "fi": "Keskiviikkokino: Hyväveli" }, "provider_contact_info": null, "description": { "fi": "<p>Järjestyspoliisi Loyan yrittää löytää paikkaansa uudella poliisilaitoksella ja pitää samalla vankilasta juuri vapautuneen ystävänsä Warsamen kaidalla tiellä.</p><p>Loyanin (<b>Abdirahman Bile</b>) kunnianhimoinen tavoite on päästä etsiväkoulutukseen, mutta esimies Jokisalon (<b>Sampo Sarkola</b>) mielestä hänen on parempi partioida tutuissa lähiöissä parinsa Johannan (<b>Heli Sutela</b>) kanssa.</p><p>Partio pääsee tositoimiin, kun he alkavat tutkia itsemurhalta vaikuttavaa tapausta. Huumekauppaan sotkeutunut ammattirikollinen ja rotukiihkoilija Antero Päiviö (<b>Riku Kemppinen</b>) on hypännyt parvekkeeltaan. Ensin kuoliaaksi julistettu mies virkoaa yllättäen, ja hänet viedään sairaalaan. Loyanin on vaikeaa uskoa miehen tarinaa, ja hän päättää selvittää totuuden hinnalla millä hyvänsä.</p><p>Vyyhdin alkaessa purkautua on vaikeaa enää tietää, kehen kannattaa luottaa, kun Warsamekin (<b>Kamaludin Ahmed Abdulla</b>) tuntuu puuhaavan jotakin Loyanin selän takana.</p><p>Kesto: 1 t 50 min<br>Ohjaaja: Sami Laitinen<br>Pääosissa: Abdirahman Bile, Kamaludin Ahmed Abdulla, Heli Sutela, Riku Kemppainen, Sampo Sarkola, Kari-Pekka Toivonen, Kari Sorvali, Tommi Korpela</p><p>Vapaa pääsy</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BBCDE8A17146F6061AEA88F9131616CC/Keskiviikkokino_Hyvaveli" }, "location_extra_info": null, "short_description": { "fi": "Järjestyspoliisi Loyan yrittää löytää paikkaansa uudella poliisilaitoksella ja pitää samalla vankilasta juuri vapautuneen ystävänsä Warsamen kaidalla tiellä." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61004/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60126", "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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4604, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:33.141292Z", "last_modified_time": "2023-09-07T14:27:33.141335Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733075.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4604/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:31.953511Z", "last_modified_time": "2023-11-14T06:13:46.024287Z", "date_published": null, "start_time": "2023-11-29T16: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, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "provider_contact_info": 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>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/47169992EA9F3E353F36136281E851C6/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/47169992EA9F3E353F36136281E851C6/Stoas_kor_", "en": "http://www.stoa.fi/en/events/event/47169992EA9F3E353F36136281E851C6/Stoa_Choir_" }, "location_extra_info": null, "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?" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60126/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60051", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4602, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:29.623682Z", "last_modified_time": "2023-09-07T14:27:29.623701Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732382.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4602/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:29.477971Z", "last_modified_time": "2023-11-14T06:13:45.953732Z", "date_published": null, "start_time": "2023-11-29T13: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, "name": { "fi": "HOW-radio | Global Club Nights – Helsinki Open Waves", "sv": "HOW-radio | Global Club Nights – Helsinki Open Waves", "en": "HOW-radio | Global Club Nights – Helsinki Open Waves" }, "provider_contact_info": null, "description": { "fi": "<p>Mehrnoosh Zolfaghari on Suomessa asuva ansioitunut muusikko, säveltäjä ja santoor-soittimen soittaja.</p><p>Hänellä on yli 20 vuoden kokemus perinteisen persialaisen dulcimer-soittimen soittamisesta, ja hän on vakiinnuttanut asemansa arvostettuna musiikintekijänä.</p><p>Kesto 60 min</p>", "sv": "<p>Mehrnoosh Zolfaghari är en ytterst skicklig musiker, kompositör och santoorspelare med bas i Finland.</p><p>Med över 20 års erfarenhet av att spela traditionell persisk dulcimer har Mehrnoosh etablerat sig som respekterad artist inom musikvärlden.</p><p>Längd: 60 min</p>", "en": "<p>Mehrnoosh Zolfaghari is a highly accomplished musician, composer, and santoor player based in Finland.</p><p>With over 20 years of experience playing the traditional Persian dulcimer, she has established herself as a respected figure in the world of music. Currently, she is pursuing her second master's degree in the Global Music department at Sibelius Academy in Finland, with a focus on promoting Iranian music and its unique cultural heritage to a wider audience around the globe. She is deeply passionate about blending traditional sounds with contemporary influences, creating a unique sound that is both authentic and innovative.</p><p>Mehrnoosh received both her bachelor's and master's degrees in music performance from the University of Tehran, College of Fine Arts, where she was recognized as the class valedictorian. Her early musical education and concentration were on Persian traditional music, but in recent years, she has also explored modern contemporary music, leading to numerous projects and compositions that merge electronic sounds into santoor.</p><p>Throughout her career, Mehrnoosh has collaborated with many outstanding professors, including Joachim Heintz, Sergio Castrillón, Adriano Adewale and Bijan Kamkar. She has also won numerous prestigious national and international awards in both contemporary and traditional music, including the Gilgamesh International Composition Competition in the USA, Reza Korourian's Composition Competition and the first round of the Aref National Award in Iran. Furthermore, Mehrnoosh has compiled an extensive list of publications, including albums, singles, and books during her musical journey.</p><p>Mehrnoosh's expertise and passion have led her to work on several exciting projects, including collaborations with other musicians, transcultural approaches to arranging music, and blending traditional Persian sounds with contemporary electronic music. She strives to be a true ambassador for Persian music, dedicating herself to creating and sharing innovative compositions that showcase the beauty and depth of this rich musical tradition with audiences around the world.</p><p>Duration: 60 min</p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/B8AD5BCBBA6F9265E1C04127D829E312/HOW-radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/B8AD5BCBBA6F9265E1C04127D829E312/HOW-radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/B8AD5BCBBA6F9265E1C04127D829E312/HOW-radio_Global_Club_Nights" }, "location_extra_info": null, "short_description": { "fi": "Mehrnoosh Zolfaghari on Suomessa asuva ansioitunut muusikko, säveltäjä ja santoor-soittimen soittaja.", "sv": "Mehrnoosh Zolfaghari är en ytterst skicklig musiker, kompositör och santoorspelare med bas i Finland.", "en": "Mehrnoosh Zolfaghari is a highly accomplished musician, composer, and santoor player based in Finland." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60051/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60231", "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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4601, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:29.249297Z", "last_modified_time": "2023-09-07T14:27:29.249417Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730515.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4601/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:29.097401Z", "last_modified_time": "2023-11-14T06:13:45.885558Z", "date_published": null, "start_time": "2023-11-29T11:30:00Z", "end_time": "2023-11-29T12: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, "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" }, "provider_contact_info": 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>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/87CE008A556A3699FAA3280BE92E05A9/Hyvan_tuulen_hetket", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/87CE008A556A3699FAA3280BE92E05A9/Stunder_med_god_stamning", "en": "http://www.kanneltalo.fi/en/events/event/87CE008A556A3699FAA3280BE92E05A9/Moments_of_happiness" }, "location_extra_info": null, "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." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60231/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60943", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5242, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:32:45.623158Z", "last_modified_time": "2023-10-09T13:32:45.623177Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737180.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5242/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-09T13:32:45.410741Z", "last_modified_time": "2023-11-14T06:13:45.734938Z", "date_published": null, "start_time": "2023-11-29T08:00:00Z", "end_time": "2023-11-29T10: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, "name": { "fi": "Naperokino: Rohkeus ja auttaminen", "sv": "Knattebion: vara modig och hjälpa till.", "en": "Naperokino (toddler cinema): courage and helping!" }, "provider_contact_info": null, "description": { "fi": "<p>Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>0–3-vuotiaiden Naperokino palaa ohjelmistoon syksyllä 2023! Rento, mukava esityspaikka ja -tilanne mahdollistavat vaipanvaihdon, syöttämisen/imettämisen tai vaikkapa pienet päiväunet lyhäreiden lomassa.</p><p>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen ottamaan vastaan ja katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas painottuu pienimmillekin sopiviin sanattomiin animaatioihin, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja.</p><p>Naperokino on suunnattu kotiäideille ja –isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ke 11.10., 22.11. ja 13.12. pääset myös paikan päällä tapaamaan ja halaamaan Naperokinossa vierailevaa Myyrää, jonka seikkailuita voit seurata tänä syksynä Annantalon somessa!</p><p>Näytöksillä on joka viikko vaihtuva teema.</p><p>Kieli: suomi<br>Ikäsuositus: 0-3-vuotiaille vanhempiensa kanssa<br>Tila: 1. kerroksen oleskelutila</p>", "sv": "<p>Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!</p><p>De minsta barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se även för en liten stund i taget. En avslappnad, bekväm plats för filmvisningen gör det möjligt att byta blöjor, mata/amma barnet eller t.ex. ta en liten tupplur under de korta filmerna.</p><p>Syftet är att visa barnet filmer av hög kvalitet och gradvis vänja hen vid att ta emot och titta på långa barnfilmer på biografer. Under den första halvan av visningen som varar två timmar ligger fokusen på animerade filmer utan tal och på den andra halvan visas det favoriter med tal.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Ons 11.10, 22.11. och 13.12 på plats kan du också möta och krama Mullvaden som besöker Knattebion. Mullvadens äventyr kan du följa under hösten också i Annegårdens sociala medier!</p><p>Föreställningarna har ett varierande tema varje vecka. Den här veckan är temat att vara modig och hjälpa till.</p><p>Mer information från kultural producent, tel. +358 40 188 3416</p>", "en": "<p>Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!</p><p>The cinema for toddlers, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while. The relaxed, comfortable venue and setting allow nappy changes, feeding/breastfeeding, or even little naps between short films.</p><p>The goal is to show children high-quality films and gradually get them used to engaging with and watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on wordless animations suitable for even the smallest children, and the second hour will feature favourites with spoken dialogue.</p><p>Naperokino is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>On Wed Oct 11, Nov 22 and Dec 13 you also get to meet and hug Naperokino’s guest Mole, whose adventures you can also follow this autumn on Annantalo’s social media!</p><p>The screenings have a different theme each week. This week, it’s courage and helping!</p><p>For more information please contact cultural produces +358 40 188 3416</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E281693DC808680B261A79F2041FDA19/Naperokino_Rohkeus_ja_auttaminen", "sv": "http://www.annantalo.fi/sv/evenemang/event/E281693DC808680B261A79F2041FDA19/Knattebion_vara_modig_och_hjalpa_till_", "en": "http://www.annantalo.fi/en/events/event/E281693DC808680B261A79F2041FDA19/Naperokino_toddler_cinema_courage_and_helping_" }, "location_extra_info": null, "short_description": { "fi": "Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!", "en": "Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60943/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60464", "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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4599, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:27.432349Z", "last_modified_time": "2023-09-07T14:27:27.432381Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725189.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4599/?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:27:26.255533Z", "last_modified_time": "2023-11-14T06:13:45.262880Z", "date_published": null, "start_time": "2023-11-28T11:30:00Z", "end_time": "2023-11-28T13: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, "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" }, "provider_contact_info": 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>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/AC749E02A1A898434E9B9BD0BA8F7A9F/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/AC749E02A1A898434E9B9BD0BA8F7A9F/Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/AC749E02A1A898434E9B9BD0BA8F7A9F/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "location_extra_info": null, "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." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60464/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60751", "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:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/name-17476032", "en": "https://www.lippu.fi/event/name-17476032" }, "price": { "fi": "38,50/28,50/22,50/11 €", "en": "38,50/28,50/22,50/11 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4598, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:25.329973Z", "last_modified_time": "2023-09-07T14:27:25.329992Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735297.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4598/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:24.983830Z", "last_modified_time": "2023-11-14T06:13:45.178333Z", "date_published": null, "start_time": "2023-11-27T16: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, "name": { "fi": "Ukrainan äänet | Україна звучить | Ukrainian voices – Laulun voimaa Ukrainasta", "en": "Ukrainan äänet | Україна звучить | Ukrainian voices" }, "provider_contact_info": null, "description": { "fi": "<p>Monikulttuurinen Maailma-kuoro ukrainalaisten ystävien ja vierailijoiden kanssa tarjoilee kokoillan kattauksen ukrainalaista ja suomalaista laulumusiikkia. Ukrainan äänet -projekti tuo yhteen ihmisiä eri taustoista ja yhdistää ainutlaatuisella tavalla sykähdyttävää laulumusiikkiamerkitykselliseen yhteisötyöhön. Konsertissa kuultavat laulut nousevat Suomessa asuvan Ukrainalaisen diasporan laulutoiveista. Toiveet heräävät henkiin ainutlaatuisen kokoonpanomme osaavissa käsissä, ja niissä soi yhteisömme koko kirjo ja osaaminen.<br>Ensimmäisellä puoliajalla kuullaan ukrainalaisen kansanmusiikin helmiä voimallisina a cappella -sovituksina. Toisella puoliajalla kuullaan popimpaa saundia kun seuraan liittyy musiikin monitaituri Jiri Kurosen luotsaama bändi sekä solistivieraita kuten Sofiia Yakovyshyna sekä monia muita Suomessa asuvia ukrainalaisia muusikoita ja laulajia. Konsertin johtaa Saara Ruuska. Koneen säätiö on rahoittanut projektia. <br>Konsertti järjestetään yhteistyössä Ukrainalaisten yhdistys Suomessa ry:n kanssa. Konsertin tuotto lahjoitetaan siviiliuhreille Ukrainassa. Varaamme konserttiin 100 kuuden euron lippua turvapaikanhakijoille.</p><p>Muut konsertit<br>Turku ke 6.12.<br>Tampere la 13.1.<br>HUOM. Turun ja Tampereen konserttiliput myydään Holvi-verkkokaupan kautta. Lisätietoa verkkosivuillamme www.maailma-kuoro.fi.</p><p>Maailma-kuoro on värikäs, monikulttuurinen diskanttikuoro, joka on perustettu Helsingissä vuonna 2010. Kuoro yhdistää ainutlaatuisella tavalla lämminhenkisen yhteisöllisyyden korvia hivelevään ja syvästi puhuttelevaan laulumusiikkiin. Ainutlaatuisella ja inspiroivalla tyylillään Maailma-kuoro esittää a cappella -tulkintoja maailmanmusiikista. Vahvat melodiat ja sielukkaat vokaaliharmoniat kertovat tarinoita, jotka heijastelevat kuoron moninaista yhteisöä.<br>Sofiia Yakovyshyna on ukrainalainen pop-muusikko sekä taiteen, musiikin ja laulun opettaja. Hän on asunut Suomessa reilun vuoden paettuaan sotaa Ukrainassa. Hän esiintyy Suomessa, työskentelee ukrainalaisperheiden parissa Espoon kaupungilla ja tarjoaa ilmaista kuoro-opetusta lapsille ukrainalaisten yhdistyksessä.<br>Saara Ruuska on helsinkiläinen kuoronjohtaja (AMK) ja pedagogi (KM). Ruuska on monipuolinen muusikko, ja johtamisen ohella hän sovittaa, säveltää sekä laulaa aktiivisesti välittäen moniäänisiä tarinoita. Hän on loputtoman kiinnostunut musiikin yhteisöllisestä ja yhteen tuovasta voimasta. Parhaillaan hän toimii Koneen säätiön rahoittaman Ukrainan äänet -hankkeen taiteellisena johtajana.<br>Jiri Kuronen on espoolainen muusikko ja säveltäjä. Hän on soittanut monissa eturivin pop-yhtyeissä sekä työskennellyt teattereissa, opetustehtävissä ja studiomuusikkona. Säveltäjänä Kurosen erityisaluetta on runojen säveltäminen.</p><p>Esityksen kesto 2 h 15 min sis. väliaika</p><p>Україна звучить</p><p>Багатокультурний хор Maailma разом з українськими друзями та запрошеними<br>музикантами представляє вечір української та фінської пісенної музики. У першій частині ви почуєте перлини української народної музики в акапельному аранжуванні. Вдругій частині вас чекає сучасніший саунд, який створюватимуть гурт хисткого Йірі Куронен та запрошені солісти, зокрема Софія Яковишина. Керівниця концерту – Саара Рууска.<br>Концерт влаштовується у співпраці з Товариством українців у Фінляндії. Прибуток з концерту буде передано постраждалим серед мирного населення в Україні. Для біженців виділені квитки вартістю шість євро, 100 у Гельсінкі.<br>Концерти влаштовуються також у Турку та Тампере. Читайте детальніше тут www.maailma-kuoro.fi.<br>Зверніть увагу, що квитки концертів у Турку та Тампере продаються у інтернет-магазині Holvi.</p>", "en": "<p>Multicultural Maailma-kuoro together with Ukrainian friends and guest artists will serve you a special evening of Ukrainian and Finnish vocal music. This unique project brings people from different backgrounds together delivering heart-felt and powerful vocal music. The repertoire of the concert arises from the song wishes made by the Ukrainian diaspora in Finland. These wishes come to live in the hands of our musical community. The first half presents pearls of Ukrainian folk music in vibrant vocal arrangements. Second half consists of more popular sounds: Jiri Kuronen with his band and soloists such as Sofiia Yakovyshyna, as well as other Ukrainian musicians and singers living in Finland, will join the choir on stage. The concert is conducted by Saara Ruuska. The project is co-funded by Kone Foundation.<br>The concert is organised in cooperation with Ukrainian association in Finland. The profit of the concerts will be donated to civilian victims in Ukraine. We reserve 100 six euro tickets for refugees.</p><p>Other concerts<br>Turku Wednesday 6.12.2023<br>Tampere Saturday 13.1.2024<br>Please note that tickets to our concerts in Turku and Tampere will be sold through our webshop Holvi. More information on our website www.maailma-kuoro.fi.</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/AECA0449CD698C5DE7B81869B274B89E/Ukrainan_aanet_Ukrainian_voices", "en": "http://www.savoyteatteri.fi/en/events/event/AECA0449CD698C5DE7B81869B274B89E/Ukrainan_aanet_Ukrainian_voices" }, "location_extra_info": null, "short_description": null, "provider": { "fi": "Maailma-kuoro", "en": "Maailma-kuoro" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60751/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60612", "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:104/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4597, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:24.756867Z", "last_modified_time": "2023-09-07T14:27:24.756900Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730680.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4597/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:24.580456Z", "last_modified_time": "2023-11-14T06:13:45.097913Z", "date_published": null, "start_time": "2023-11-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, "name": { "fi": "Kirjailijavieraana Juha Hurme – Maksuttomat maanantait", "sv": "Författargäst Juha Hurme – Kostandsfria måndagar", "en": "Author guest Juha Hurme – Free Mondays" }, "provider_contact_info": null, "description": { "fi": "<p>Tiu tau tilhi (Teos, 2022) on kirja pienen laulun takaa avautuvista suomalaisen kulttuurihistorian ihmeellisistä sokkeloista: virallisista, koristelluista holveista ja unohduksen umpeuttamista väylistä.</p><p>Haastattelijana kirjailija ja toimittaja Esa Mäkijärvi.</p><p>Pikku Inkerin laulusta ponnahtava tutkimusretki kulkee laulukirjantekijä Wilho Siukosen kohutusta väitöstilaisuudesta Fröbelin palikoiden kautta ”Suomen kansakoulun isän” Uno Cygnaeuksen naisseikkailuihin Novo-Arkangelissa Alaskassa.</p><p><b>Juha Hurmeen</b> hilpeän surumielinen tutkielma etenee ja poukkoilee ja naurattaa. Lukija saa halun oppia uutta, nähdä uudella tavalla. Runsas tieto ja mestarillinen ote havainnoida yhteneväisyyksiä näyttää palan maailmaa, joka on ihan pöhkö mutta ihan ihana.</p><p>Juha Hurme on kirjailija, teatteriohjaaja ja -käsikirjoittaja. Melkein unohdetun kirjallisuuden tulisena arvonpalauttajana tunnettu Hurme on julkaissut romaanit Volvo Amazon (Otava, 2007), Puupää (2009), Hullu (2012) Nyljetyt ajatukset (2014) sekä Finlandia-palkinnon voittaneen Niemen (2017), jolle ilmestyi vuonna 2020 jatkoa nimellä Suomi. Vuonna 2021 Hurmeelta julkaistiin Seitsemän veljeksen uusi suomennos.</p><p>Yhteistyössä Kannelmäen kirjaston ja Työväenopiston kanssa.</p><p>Kieli: suomi<br>Vapaa pääsy<br>Kahvilan stage</p>", "sv": "<p>Tiu tau tilhi (Teos, 2022) är en bok om den finländska kulturhistoriens underliga labyrinter som öppnas bakom en liten sång: om de officiella, dekorerade valven och om vägar som spärrats av glömska.</p><p>Intervjuare författaren och journalisten Esa Mäkijärvi.</p>", "en": "<p>Tiu tau tilhi (Teos, 2022) is a book about the astonishing labyrinths of Finnish cultural history that open up from behind a little song: about official, ornate vaults and passageways blocked by oblivion.</p><p>Interviewed by writer and journalist Esa Mäkijärvi.</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3E0CC05EDBE7742F6C0DE8CC9CE0B08F/Kirjailijavieraana_Juha_Hurme", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3E0CC05EDBE7742F6C0DE8CC9CE0B08F/Forfattargast_Juha_Hurme", "en": "http://www.kanneltalo.fi/en/events/event/3E0CC05EDBE7742F6C0DE8CC9CE0B08F/Author_guest_Juha_Hurme" }, "location_extra_info": null, "short_description": { "fi": "Tiu tau tilhi (Teos, 2022) on kirja pienen laulun takaa avautuvista suomalaisen kulttuurihistorian ihmeellisistä sokkeloista: virallisista, koristelluista holveista ja unohduksen umpeuttamista väylistä.", "sv": "Tiu tau tilhi (Teos, 2022) är en bok om den finländska kulturhistoriens underliga labyrinter som öppnas bakom en liten sång: om de officiella, dekorerade valven och om vägar som spärrats av glömska.", "en": "Tiu tau tilhi (Teos, 2022) is a book about the astonishing labyrinths of Finnish cultural history that open up from behind a little song: about official, ornate vaults and passageways blocked by oblivion." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60612/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61332", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "price": { "fi": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5976, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-13T12:14:12.606138Z", "last_modified_time": "2023-11-13T12:14:12.606164Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739381.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5976/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-13T12:14:12.577462Z", "last_modified_time": "2023-11-14T06:13:44.715704Z", "date_published": null, "start_time": "2023-11-25T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Poika ja Haikara – Kino Helios" }, "provider_contact_info": null, "description": { "fi": "<p>Nuori Mahito-poika kaipaa äitiään ja päätyy etsimään tätä elävien sekä kuolleiden jakamasta rajamaailmasta.</p><p>Siellä kuolema päättyy ja uusi elämä voi alkaa.</p><p>POIKA JA HAIKARA on <b>Hayao Miyazakin</b> osin omaelämäkerrallinen fantasia elämästä ja kuolemasta, tarina luomisesta sekä ystävyyden merkityksestä.</p><p>POIKA JA HAIKARA on Oscar-palkitun Hayao Miyazakin ensimmäinen pitkä elokuva kymmeneen vuoteen. Sen on tuottanut Studio Ghiblin alkuperäinen perustajajäsen <b>Toshio Suzuki</b>.</p><p>Käsin piirretyn elokuvan musiikin on luonut Miyazakin pitkäaikainen vakiosäveltäjä <b>Joe Hisaishi</b>. Tunnusmelodian esittää J-Pop -supertähti <b>Kenshi Yonezu</b>.</p><p>Ikäraja ei tiedossa<br>Kesto 124 min<br>Ensi-ilta 17.11.2023</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/787CB8F956F24FD2BB77093F9EBB841D/Poika_ja_Haikara_" }, "location_extra_info": null, "short_description": { "fi": "Nuori Mahito-poika kaipaa äitiään ja päätyy etsimään tätä elävien sekä kuolleiden jakamasta rajamaailmasta." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61332/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61234", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "price": { "fi": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5874, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-06T13:14:05.905060Z", "last_modified_time": "2023-11-06T13:14:05.905076Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739372.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5874/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-06T13:14:05.884955Z", "last_modified_time": "2023-11-14T06:13:44.628387Z", "date_published": null, "start_time": "2023-11-25T13: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, "name": { "fi": "Antero Varovainen ja onnenkivi (S) – Kino Helios" }, "provider_contact_info": null, "description": { "fi": "<p>Antero Varovainen ja Onnenkivi on tarina mielikuvituksen rikkaudesta ja onnen etsimisestä.</p><p>Sarjakuvia ja vampyyrikertomuksia ahmivalla Juliuksella on vilkas mielikuvitus. Julius tapaa kaupungin laitamilla hylätyssä talossa asuvan Antero Varovaisen, joka esittäytyy haalistuneeksi, mansikkamehua juovaksi vampyyriksi. Julius ja Varovainen ystävystyvät.</p><p>Yhdessä he yrittävät valmistaa Onnenkiveä, jonka ohje on Varovaisen isoäidin salaisessa reseptikirjassa. Julius haluaa antaa kiven toisistaan etääntyneille vanhemmilleen, jotta he löytäisivät uudestaan yhteisen onnen. Juliuksen ja Anteron laboratoriokokeet valmistaa Onnenkiveä takkuilevat pahasti kerta toisensa jälkeen, mutta he jatkavat sitkeästi onnen etsintää.</p><p>Ensi-ilta 13.10.2023<br>Kesto 89 min<br>Ikäraja: sallittu</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/46A62AD3F184579B57A83C9D8EB1DFB0/Antero_Varovainen_ja_onnenkivi_S_" }, "location_extra_info": null, "short_description": { "fi": "Antero Varovainen ja Onnenkivi on tarina mielikuvituksen rikkaudesta ja onnen etsimisestä." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61234/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60611", "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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/camille-auer-ruff-knowledge/", "sv": "https://www.lippu.fi/artist/camille-auer-ruff-knowledge/", "en": "https://www.lippu.fi/artist/camille-auer-ruff-knowledge/" }, "price": { "fi": "19,50 €", "sv": "19,50 €", "en": "19,50 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4594, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:27:21.625907Z", "last_modified_time": "2023-09-07T14:27:21.625928Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731919.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4594/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:27:20.659068Z", "last_modified_time": "2023-11-14T06:13:44.553751Z", "date_published": null, "start_time": "2023-11-25T13: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, "name": { "fi": "Camille Auer – Ruff Knowledge – Baltic Circle -festivaali", "sv": "Camille Auer – Ruff Knowledge – Festivalen Baltic Circle", "en": "Camille Auer – Ruff Knowledge – Baltic Circle festival" }, "provider_contact_info": null, "description": { "fi": "<p>Ruff Knowledge on esitys suokukoista sekä sukupuolen ja seksuaalisuuden moninaisuudesta luonnossa.</p><p>Homoseksuaalinen käytös ja sukupuolen moninaisuus ovat luonnossa yleisiä ilmiöitä, jotka eivät saa lainkaan näkyvyyttä luontomedioissa. Suokukko (Calidris Pugnax, engl. Ruff) on lajina kenties moninaisin luonnonvarainen selkärankainen. Soidinaikaan koiraspukuiset linnut ovat kaikki keskenään eri näköisiä. Sen lisäksi osa niin kutsutuista koiraista näyttää niin kutsutuilta naarailta. Kaikki erilaiset suokukot harrastavat seksiä keskenään. Siitä huolimatta linnut yleisesti jaetaan kahteen sukupuoleen, ja niiden käyttäytymisen motiiviksi oletetaan heteroseksuaalinen lisääntyminen.</p><p>Ihmisillä on luontoa havainnoidessa taipumus tehdä kehäpäätelmä: luontohavaintoja tulkitaan oman arvomaailman kautta, ja tätä arvolatautunutta versiota luonnosta taas käytetään omien arvojen perustelemiseen \"luonnollisina\".</p><p>Ruff Knowledge kysyy, miten tiedämme linnuista? Voimmeko tietää jotain siitä, millaista on olla lintu? Muuttaisiko se tieto suhdettamme lintuihin ja maailmaan? Mitä ihmisessä tapahtuu lintuja tarkkaillessa? Entä linnuissa?</p><p>Teksti, video, ääni, esiintyminen: Camille Auer<br>Dramaturgi: Emil Santtu Uuttu<br>Esiintymisasu: Johanna Porola<br>Kuvausassistentti: Nea Alasaari<br>Taiteellinen dialogi: Teo Ala-Ruona<br>Lintudialogi: Elliot Lundegård ja Helinä Ääri<br>Rahoitus: Suomen kulttuurirahasto, Taiteen edistämiskeskus<br>Tuotanto: Baltic Circle, Kanneltalo ja Camille Auer<br>Residenssit: Mad House, Pro Artibus, Ars Bioarctica<br>Kiitos: Turun museokeskus, Minna ja Seppo</p><p>Kesto: 80 min, ei väliaikaa<br>Kieli: englanti</p>", "sv": "<p>Ruff Knowledge är en föreställning om brushanar och om könsmångfalden och den sexuella mångfalden i naturen.</p><p>Homosexuellt beteende och en mångfald av kön är vanliga fenomen i naturen som inte får någon synlighet alls i naturmedia. Brushanen (Calidris Pugnax, eng. Ruff) är den kanske mest mångsidiga arten bland vilda ryggradsdjur. Under parningstiden ser alla hanar i praktdräkt olika ut. Dessutom ser en del av de så kallade hanarna ut som så kallade honor. Alla de olika brushanarna har sex med varandra. Trots det delas fåglarna vanligtvis in i två kön och man utgår från antagandet om att motivet bakom deras beteende är heterosexuell fortplantning.</p><p>När människan observerar naturen är vi benägna att använda cirkelresonemang: vi tolkar naturobservationer genom våra egna värderingar och använder sedan denna värdeladdade version av naturen för att motivera de egna värderingarna som ”naturliga”.</p><p>Ruff Knowledge frågar vad vi vet om fåglar. Kan vi veta något om hur det är att vara fågel? Skulle kunskaper om detta på något sätt ändra vår relation till fåglar och världen? Vad sker hos människan när vi studerar fåglar? Eller hos fåglarna?</p>", "en": "<p>‘Ruff Knowledge’ is a presentation about ruffs and the diversity of gender and sexuality in nature.</p><p>Homosexual behaviour and gender diversity are common phenomena in nature that receive little or no coverage in the natural media. Ruff (Calidris pugnax) is perhaps the most diverse species of wild vertebrate. At mating time, birds in male plumage all look different from each other. In addition, some so-called males look like so-called females. All different kinds of ruffs mate with each other. Despite this, birds are generally divided into two sexes, and their behaviour is thought to be motivated by heterosexual reproduction.</p><p>When observing nature, people tend to make a circular reasoning: they interpret observations of nature through their own value system, and this value-laden version of nature is used to justify their own values as “natural”.</p><p>‘Ruff Knowledge’ poses the question: “What do we know about birds?” Is it possible for us to know something about what it is like to be a bird? Could this knowledge change our relationship with birds and the world? What happens to humans when they observe birds? And what happens to birds?</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F00EDE214D29825EB383D82C0B25CE78/Camille_Auer_Ruff_Knowledge", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F00EDE214D29825EB383D82C0B25CE78/Camille_Auer_Ruff_Knowledge", "en": "http://www.kanneltalo.fi/en/events/event/F00EDE214D29825EB383D82C0B25CE78/Camille_Auer_Ruff_Knowledge" }, "location_extra_info": null, "short_description": { "fi": "Ruff Knowledge on esitys suokukoista sekä sukupuolen ja seksuaalisuuden moninaisuudesta luonnossa.", "sv": "Ruff Knowledge är en föreställning om brushanar och om könsmångfalden och den sexuella mångfalden i naturen.", "en": "‘Ruff Knowledge’ is a presentation about ruffs and the diversity of gender and sexuality in nature." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60611/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60212", "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: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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5853, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-03T14:13:32.737553Z", "last_modified_time": "2023-11-03T14:13:32.737571Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734217.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5853/?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-11-03T14:13:32.725353Z", "last_modified_time": "2023-11-14T06:13:44.482829Z", "date_published": null, "start_time": "2023-11-25T12: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, "name": { "fi": "Tulevaisuuskoulu: Telin kanssa tutkimusmatkalle tulevaisuuksiin – Tulevaisuuksiin!-perhepäivä" }, "provider_contact_info": null, "description": { "fi": "<p>Tulevaisuutta ei voi ennustaa, mutta sitä voi tutkia. Mutta miten?</p><p>Lapsille suunnatun Telin tutkimusmatka tulevaisuuksiin -kirjan kirjoittaja, tulevaisuudentutkija ja Tulevaisuuskoulun perustaja Otto Tähkäpää vie osallistujat yhteiselle tutkimusmatkalle tulevaisuusajattelun ja vaihtoehtoisten tulevaisuuksien maailmaan. Keskustelevassa ja vuorovaikutteisessa tilaisuudessa lapset ja aikuiset pääsevät jakamaan omia ajatuksiaan ja kysymyksiään mahdollisista ja toivottavista tulevaisuuksista. <br> <br>Tutkimusmatkaa on mahdollista jatkaa tilaisuuden jälkeen Tulevaisuuskoulun walk in -työpajassa, jossa pääset kuvittelemaan ja kuvittamaan lisää vaihtoehtoisia tulevaisuuksia. <br> <br>Tulevaisuus ei tule, se tehdään. Millaista tulevaisuutta sinä haluat tehdä?</p><p>Tapahtuma on osa Stoan Tulevaisuuksiin! -perhepäivää.</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/64ECA55966E11CA851D95533BA82DEFC/Tulevaisuuskoulu_Telin_kanssa_tutkimusmatkalle_tulevaisuuksiin_" }, "location_extra_info": null, "short_description": { "fi": "Tulevaisuutta ei voi ennustaa, mutta sitä voi tutkia. Mutta miten?" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60212/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26512, "next": "