Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=312
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=313", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=311" }, "data": [ { "id": "espoo_le:agmk23ewje", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ewxi/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-30T11:43:35.305084Z", "last_modified_time": "2024-12-30T11:43:35.305107Z", "date_published": null, "start_time": "2025-05-25T13:00:00Z", "end_time": "2025-05-25T14: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, "provider_contact_info": null, "short_description": { "fi": "Tule & nauti lastenkirjoista ja lauluista vietnamiksi lastesi kanssa. ", "sv": "Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn. ", "en": "Come & enjoy children books and songs in Vietnamese with your kids. \n" }, "info_url": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "name": { "fi": "Vietnaminkielinen luku- ja laulupiiri", "sv": "Läs- och sångcirkel på vietnamesiska ", "en": "Vietnamese Read & Sing Circle" }, "description": { "fi": "<p>Tule & nauti lastenkirjoista ja lauluista vietnamiksi lastesi kanssa.</p><p>Valituissa tilaisuuksissa lukutuokion jälkeen on kausiteemaista askartelua ja piirtämistä.</p><p>Valmistelemme joitakin vietnamilaisia lastenkirjoja ja -lauluja, mutta voit vapaasti tuoda oman suosikkisi jaettavaksi muiden kanssa.</p><p>Kuukausittain sunnuntaina klo 16-17.30 Stagella</p><p><br></p><p>Järjestäjänä: VPF Parenting Club</p>", "sv": "<p>Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn.</p><p>Utvalda sessioner kommer att följas av säsongsbetonat tema hantverk och teckning efter läsecirkeln.</p><p>Vi kommer att förbereda några vietnamesiska barnböcker och sånger, men ta gärna med dina egna favoriter för att dela med dig till andra.</p><p>månadsvis söndag kl. 16:00 - 17:30, Stage</p><p><br></p><p>VPF Parenting Club</p>", "en": "<p>Come & enjoy children books and songs in Vietnamese with your kids.</p><p>In selected events, there will be seasonal themed craft and drawing activities after the reading session.</p><p>We will prepare some Vietnamese children books and songs but feel free to bring your own favorite to share with others. </p><p>Monthly on Sundays 16:00 - 17:30, Stage</p><p><br></p><p>Organized by VPF Parenting Club</p>" }, "provider": { "fi": "VPF Parenting Club", "sv": "VPF Parenting Club", "en": "VPF Parenting Club" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ewje/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23ewxi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ewje/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-30T11:43:33.467636Z", "last_modified_time": "2024-12-30T11:43:33.467657Z", "date_published": null, "start_time": "2025-01-26T14:00:00Z", "end_time": "2025-05-25T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tule & nauti lastenkirjoista ja lauluista vietnamiksi lastesi kanssa. ", "sv": "Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn. ", "en": "Come & enjoy children books and songs in Vietnamese with your kids. \n" }, "info_url": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "name": { "fi": "Vietnaminkielinen luku- ja laulupiiri", "sv": "Läs- och sångcirkel på vietnamesiska ", "en": "Vietnamese Read & Sing Circle" }, "description": { "fi": "<p>Tule & nauti lastenkirjoista ja lauluista vietnamiksi lastesi kanssa.</p><p>Valituissa tilaisuuksissa lukutuokion jälkeen on kausiteemaista askartelua ja piirtämistä.</p><p>Valmistelemme joitakin vietnamilaisia lastenkirjoja ja -lauluja, mutta voit vapaasti tuoda oman suosikkisi jaettavaksi muiden kanssa.</p><p>Kuukausittain sunnuntaina klo 16-17.30 Stagella</p><p><br></p><p>Järjestäjänä: VPF Parenting Club</p>", "sv": "<p>Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn.</p><p>Utvalda sessioner kommer att följas av säsongsbetonat tema hantverk och teckning efter läsecirkeln.</p><p>Vi kommer att förbereda några vietnamesiska barnböcker och sånger, men ta gärna med dina egna favoriter för att dela med dig till andra.</p><p>månadsvis söndag kl. 16:00 - 17:30, Stage</p><p><br></p><p>VPF Parenting Club</p>", "en": "<p>Come & enjoy children books and songs in Vietnamese with your kids.</p><p>In selected events, there will be seasonal themed craft and drawing activities after the reading session.</p><p>We will prepare some Vietnamese children books and songs but feel free to bring your own favorite to share with others. </p><p>Monthly on Sundays 16:00 - 17:30, Stage</p><p><br></p><p>Organized by VPF Parenting Club</p>" }, "provider": { "fi": "VPF Parenting Club", "sv": "VPF Parenting Club", "en": "VPF Parenting Club" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ewxi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65038", "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: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: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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153561, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T10:14:25.161651Z", "last_modified_time": "2024-12-30T10:14:25.161677Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763675.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153561/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-30T10:14:25.119916Z", "last_modified_time": "2024-12-30T10:14:25.269990Z", "date_published": null, "start_time": "2025-03-10T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tänä keväänä Kanneltalon Kino Kuutamon elokuvissa tutkitaan luontoa rakkauden vertauskuvana.", "sv": "Denna vår undersöker vi naturen som symbol för kärleken i Gamlasgårdens Kino Kuutamo-filmer.", "en": "This spring, Kanneltalo’s Kino Kuutamo will showcase films that explore nature as a metaphor for love." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/94D63C4180436F4CCBB8FC996DB1A307/Kino_Kuutamo_Piano", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/94D63C4180436F4CCBB8FC996DB1A307/Kino_Kuutamo_Pianot", "en": "http://www.kanneltalo.fi/en/events/event/94D63C4180436F4CCBB8FC996DB1A307/Kino_Kuutamo_The_Piano" }, "location_extra_info": null, "name": { "fi": "Kino Kuutamo: Piano – Maksuttomat maanantait", "sv": "Kino Kuutamo: Pianot – Kostnadsfria måndagar", "en": "Kino Kuutamo: The Piano – Free Mondays" }, "description": { "fi": "<p>Tänä keväänä Kanneltalon Kino Kuutamon elokuvissa tutkitaan luontoa rakkauden vertauskuvana.</p><p>Elokuvahistorian asiantuntija FT Harri Kilpi johdattaa illan elokuvaan klo 17–17.45.</p><p>Luennon jälkeen klo 18 alkaa elokuvan ilmaisnäytös.</p><p><b>Piano</b><br>Jane Campionin aistillinen kolmiodraama intohimosta, vallasta ja petoksesta sijoittuu 1850-luvun Uuteen Seelantiin. Mykkä Ada on myyty vaimoksi uudisasukas Alistairille. Hän saapuu uuteen kotimaahansa yhdessä tyttärensä ja rakkaan pianonsa kanssa. Piano on hänen ainoa ilmaisukeinonsa, mutta Alastairin mielestä sen kuljettaminen kotiin on liian vaikeaa, joten hän pakottaa Adan jättämään sen rannalle. Heidän naapurinsa Baines ostaa pianon, ja Ada saa soittaa kaipaamaansa instrumenttia antaessaan tälle pianotunteja. Heidän välilleen kehittyy erikoislaatuinen eroottinen suhde, jolla on arvaamattomia seurauksia.</p><p>Piano voitti kolme Oscaria oltuaan ehdolla kahdeksassa kategoriassa: Holly Hunter parhaasta naispääosasta, ensi kertaa näytellyt Anna Paquin parhaasta naissivuosasta ja Jane Campion parhaasta alkuperäisestä käsikirjoituksesta. Hunter voitti roolisuorituksestaan myös BAFTAn ja Golden Globen. Australian filmi-instituutin AFI-palkintoja elokuva voitti 11.</p><p>The New York Timesin kriitikot valitsivat Pianon vuonna 2004 yhdeksi kaikkien aikojen tuhannesta parhaasta elokuvasta maailmassa.</p><p>Uusi Seelanti, Australia, Ranska, 1993<br>Ikäraja: K16<br>Kesto: 2 tuntia<br>Kieli: englanti</p><p>Tekstitys: suomi<br>Vapaa pääsy</p>", "sv": "<p>Denna vår undersöker vi naturen som symbol för kärleken i Gamlasgårdens Kino Kuutamo-filmer.</p><p>Filmhistorikern fil.dr. Harri Kilpi introducerar kvällens film kl. 17–17.45.</p><p>Efter föreläsningen inleds den avgiftsfria visningen av filmen kl. 18.</p><p><b>Pianot</b><br>Jane Campions sensuella triangeldrama om passion, makt och bedrägeri utspelas i 1850-talets Nya Zeeland. Den stumma Ada har sålts som hustru till nybyggaren Alistair. Hon ankommer till sitt nya hemland tillsammans med sin dotter och sitt älskade piano. Pianot är hennes enda sätt att uttrycka sig, men enligt Alastair är det för svårt att transportera hem det, så han tvingar Ada att lämna det på stranden. Deras granne Baines köper pianot, och Ada får spela sitt älskade instrument mot att hon ger denne pianolektioner. Ett säreget erotiskt förhållande utvecklas mellan dem, med oväntade följder.</p><p>Piano vann tre Oscarspris och nominerades i åtta kategorier: Holly Hunter för den bästa kvinnliga huvudrollen, Anna Paquin, som uppträdde för första gången, för bästa kvinnliga biroll och Jane Campion för bästa originalmanus. Hunter vann också en BAFTA och en Golden Globe för sin rollprestation. Filmen vann 11 av det australiska filminstitutets AFI-priser.</p><p>År 2004 utsåg kritikerna vid The New York Times Pianot till en av de tusen bästa filmerna genom alla tider i hela världen.<br>Nya Zeeland, Australien, Frankrike, 1993</p><p>Åldersgräns: F16<br>Längd: 2 timmar<br>Språk: engelska</p><p>Textning: finska<br>Fritt inträde</p>", "en": "<p>This spring, Kanneltalo’s Kino Kuutamo will showcase films that explore nature as a metaphor for love.</p><p>Film history expert, PhD Harri Kilpi will introduce the film of the evening from 17:00 to 17:45.</p><p>After the introduction, the free screening of the film begins at 18:00.</p><p><b>The Piano</b><br>Jane Campion’s sensual drama of passion, power and betrayal, centred around a love triangle, is set in 1850s New Zealand. Ada, who is mute, has been sold into marriage to Alistair, a settler. She arrives in her new country with her daughter and her beloved piano. The piano is her only means of expression, but Alastair finds it too difficult to carry home, so he forces Ada to leave it on the beach. Their neighbour Baines buys a piano, and Ada gets to play the instrument she misses while giving him piano lessons. An extraordinary erotic relationship develops between them, with unpredictable consequences.</p><p>The Piano won three Oscars after being nominated in eight categories: Holly Hunter for Best Actress in a Leading role, first-time actress Anna Paquin for Best Supporting Actress, and Jane Campion for Best Original Screenplay. Hunter also won a BAFTA and a Golden Globe for her performance. The film won 11 AFI awards from the Australian Film Institute.</p><p>In 2004, The Piano was selected by The New York Times critics as one of the world’s 1,000 best films of all time.<br>New Zealand, Australia, France, 1993</p><p>Age limit: 16+<br>Duration: 2 hours<br>Language: English</p><p>Subtitles: Finnish<br>Free admission</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65038/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64915", "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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/la-strada-konsertti-kanneltalo-19482468/", "sv": "https://www.lippu.fi/event/la-strada-konsertti-kanneltalo-19482468/", "en": "https://www.lippu.fi/event/la-strada-konsertti-kanneltalo-19482468/" }, "price": { "fi": "38,50 € / 31 €", "sv": "38,50 € / 31 €", "en": "38,50 € / 31 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153394, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-12T09:14:30.590777Z", "last_modified_time": "2024-12-12T09:14:30.590795Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761634.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153394/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T09:14:30.552923Z", "last_modified_time": "2024-12-30T09:13:59.036294Z", "date_published": null, "start_time": "2025-04-05T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "La Strada-konserttiin on koottu rakkaimmat laulut Italiasta viihteestä oopperaan.", "sv": "La Strada-konserten samlar de mest älskade sångerna från Italien, från underhållning till opera.", "en": "The La Strada concert brings together some of Italy’s most beloved songs, from popular music to opera." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/19C7B16ADF91FE1C1E1428189C28BE4B/La_Strada_rakkaudella_Italiasta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/19C7B16ADF91FE1C1E1428189C28BE4B/La_Strada_med_karlek_fran_Italien", "en": "http://www.kanneltalo.fi/en/events/event/19C7B16ADF91FE1C1E1428189C28BE4B/La_Strada_with_love_from_Italy" }, "location_extra_info": null, "name": { "fi": "La Strada: rakkaudella Italiasta", "sv": "La Strada: med kärlek från Italien", "en": "La Strada: with love from Italy" }, "description": { "fi": "<p>La Strada-konserttiin on koottu rakkaimmat laulut Italiasta viihteestä oopperaan.</p><p>Konsertissa kuullaan mm. La donna e mobile, Poika varjoisilta kujilta, Puhu hiljaa rakkaudesta, La Strada, Bella notte, Mamma, Nessun dorma ja Hopeinen kuu.</p><p>Jyrki Anttilaa säestävät pianisti Anu Kosonen ja harmonikkataiteilija Petri Ikkelä.</p><p>Konsertti on saanut ylistävää palautetta ympäri Suomen ja nyt se on mahdollista päästä nauttimaan myös Kanneltalossa!</p><p>Kesto: 1 tunti 50 min (sisältäen 20 min väliajan)</p>", "sv": "<p>La Strada-konserten samlar de mest älskade sångerna från Italien, från underhållning till opera.</p><p>På konserten får vi höra bland annat La donna e mobile, Guaglione, Speak Softly Love, La Strada, Bella notte, Mamma, Nessun dorma och Guarda che luna.</p><p>Jyrki Anttila ackompanjeras av pianisten Anu Kosonen och dragspelskonstnären Petri Ikkelä.</p><p>Konserten har fått lysande respons runt om i Finland, och nu kan man också njuta av den på Gamlasgården!</p><p>Längd: 1 h 50 min. (inklusive en paus på 20 minuter)</p>", "en": "<p>The La Strada concert brings together some of Italy’s most beloved songs, from popular music to opera.</p><p>The concert will feature music such as “La donna e mobile\", “Poika varjoisilta kujilta”, “Puhu hiljaa rakkaudesta”, “La Strada”, “Bella Notte”, “Mamma”, “Nessun Dorma” and “Hopeinen kuu”.</p><p>Jyrki Anttila will be accompanied by pianist Anu Kosonen and accordionist Petri Ikkelä.</p><p>The concert has received rave reviews all over Finland, and now you can enjoy it at Kanneltalo, too!</p><p>Duration: 1 hour 50 min (including a 20-minute intermission)</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64915/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65022", "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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3555406", "sv": "https://www.lippu.fi/eventseries/name-3555406", "en": "https://www.lippu.fi/eventseries/name-3555406" }, "price": { "fi": "22 € / 19 € / 17 €", "sv": "22 € / 19 € / 17 €", "en": "22 € / 19 € / 17 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153560, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T09:13:56.153358Z", "last_modified_time": "2024-12-30T09:13:56.153373Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763525.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153560/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-30T09:13:56.124659Z", "last_modified_time": "2024-12-30T09:13:56.217152Z", "date_published": null, "start_time": "2025-03-08T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Nättinassut on kuudesta muusikosta koostuva yhtye, jonka tyylilajina on konemausteinen rock-pop!", "sv": "Nättinassut är ett band som består av sex musiker, och vars stilart är rock-pop med maskinkrydda!", "en": "Nättinassut is a band of six musicians who play pop-rock with a touch of electronic music!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4137EB4260D0CA76D945FCD7D865B80F/Nattinassut", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4137EB4260D0CA76D945FCD7D865B80F/Nattinassut", "en": "http://www.kanneltalo.fi/en/events/event/4137EB4260D0CA76D945FCD7D865B80F/Nattinassut" }, "location_extra_info": null, "name": { "fi": "Nättinassut", "sv": "Nättinassut", "en": "Nättinassut" }, "description": { "fi": "<p>Nättinassut on kuudesta muusikosta koostuva yhtye, jonka tyylilajina on konemausteinen rock-pop!</p><p>Yhtyeen elämänmakuisissa kappaleissa kuuluu ihmisyyden koko kirjo. Helsingistä lähtöisin oleva bändi on kerännyt kiitosta voimakkaista live-esiintymisistään ja musiikistaan, joka rikkoo genrerajoja. Tarjolla on asennetta, taitoa ja sielua eli Nättinassuja kaikilla herkuilla!</p>", "sv": "<p>Nättinassut är ett band som består av sex musiker, och vars stilart är rock-pop med maskinkrydda!</p><p>Bandets låtar smakar av livet och mänsklighetens brokiga mångfald. Bandet som är hemma från Helsingfors har fått uppskattning för sina starka liveframträdanden och sin musik som går över genregränserna. Attityd, skicklighet och själfullhet utlovas, det vill säga Nättinassut med alla kryddor!</p>", "en": "<p>Nättinassut is a band of six musicians who play pop-rock with a touch of electronic music!</p><p>The band’s vibrant songs embrace the full spectrum of humanity. Hailing from Helsinki, the band has garnered praise for their powerful live performances and genre-breaking music. There’s attitude, skill and soul being served up here – in other words, Nättinassut with all the trimmings!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65022/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65021", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://nukketeatterisampo.fi/__/sirkus-sampo-2/#tribe-tickets", "sv": "https://nukketeatterisampo.fi/__/sirkus-sampo-2/#tribe-tickets", "en": "https://nukketeatterisampo.fi/__/sirkus-sampo-2/#tribe-tickets" }, "price": { "fi": "9 € / 20 €", "sv": "9 € / 20 €", "en": "9 € / 20 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153559, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T09:13:55.428839Z", "last_modified_time": "2024-12-30T09:13:55.428854Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763523.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153559/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-12-30T09:13:55.392701Z", "last_modified_time": "2024-12-30T09:13:55.519879Z", "date_published": null, "start_time": "2025-03-05T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Nukketeatteri Sampon sirkuksessa marionetit heräävät eloon ja täyttävät estradin musiikilla, laululla ja nukketeatterin taialla.", "sv": "I dockteatern Sampos cirkus vaknar marionetterna till liv och fyller estraden med musik, sång och dockteaterns magi.", "en": "In the Sampo Puppet Theatre Circus, marionettes come to life and fill the stage with music, singing and the magic of puppet theatre." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/C704F1E5EB3E6C03FB7028986649B452/Sirkus_Sampo", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/C704F1E5EB3E6C03FB7028986649B452/Sirkus_Sampo", "en": "http://www.kanneltalo.fi/en/events/event/C704F1E5EB3E6C03FB7028986649B452/Sirkus_Sampo" }, "location_extra_info": null, "name": { "fi": "Sirkus Sampo", "sv": "Sirkus Sampo", "en": "Sirkus Sampo" }, "description": { "fi": "<p>Nukketeatteri Sampon sirkuksessa marionetit heräävät eloon ja täyttävät estradin musiikilla, laululla ja nukketeatterin taialla.</p><p>Esiintyjäkaartissa nähdään taitavia veitsenheittäjiä, huimia pyörätaitureita, uskomattoman akrobaattisia koiria ja ehkä siellä häivähtää haamukin… Tervetuloa lumoutumaan Sampon satumaisesta maailmasta! Esitys esittelee erilaisia marionetteja, Sampon tapaan elävän musiikin säestyksellä.</p><p>Suunnittelu, ohjaus: Iivo Barić</p><p>Valosuunnittelu: Immanuel Pax<br>Puvustus: Kristiina Jokinen<br>Kuvat & video: Nikke Puskala</p><p>Sanaton esitys sopii kaikenikäisille<br>Kesto 30 min</p>", "sv": "<p>I dockteatern Sampos cirkus vaknar marionetterna till liv och fyller estraden med musik, sång och dockteaterns magi.</p><p>I artistuppställningen får vi se skickliga knivkastare, hisnande cykelkonstnärer, otroligt akrobatiska hundar och kanske även skymtar av ett spöke... Välkommen att förtrollas av Sampos sagolika värld! Föreställningen presenterar olika marionetter till ackompanjemang av levande musik i Sampos stil.</p><p>Design, regi: Iivo Barić</p><p>Ljusdesign: Immanuel Pax<br>Kostymdesign: Kristiina Jokinen<br>Bilder & video: Nikke Puskala</p><p>Den ordlösa föreställningen lämpar sig för alla åldrar<br>Längd 30 min.</p>", "en": "<p>In the Sampo Puppet Theatre Circus, marionettes come to life and fill the stage with music, singing and the magic of puppet theatre.</p><p>The list of performers includes skilled knife throwers, amazing cyclists, incredibly acrobatic dogs and maybe even a ghost... Come and be enchanted by Sampo’s fairytale world! The show features a variety of marionettes, accompanied by live music, just like Sampo. <br>Designed, directed by: Iivo Barić</p><p>Lighting design: Immanuel Pax<br>Costumes: Kristiina Jokinen<br>Images & video: Nikke Puskala</p><p>This silent performance is suitable for all ages!<br>Duration: 30 min</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65021/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64881", "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:105/?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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p5088/?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:u48040010", "sub_events": [], "images": [ { "id": 152938, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-04T10:14:52.079675Z", "last_modified_time": "2024-11-04T10:14:52.079691Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759425.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152938/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-11-04T10:14:52.002512Z", "last_modified_time": "2024-12-30T09:13:49.293308Z", "date_published": null, "start_time": "2025-01-25", "end_time": "2025-03-29", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Sinä päivänä -näyttely perustuu Eppu Nuotion kirjoittamaan ja Sanna Pelliccionin kuvittamaan samannimiseen kuvakirjaan, joka kertoo vapaudesta ja yhteisöllisyydestä.", "sv": "Utställningen Sinä päivänä grundar sig på bilderboken med samma namn, som är skriven av Eppu Nuotio och illustrerad av Sanna Peliccioni. Boken berättar om frihet och gemenskap.", "en": "The Sinä päivänä exhibition is based on the picture book of the same name, written by Eppu Nuotio and illustrated by Sanna Pelliccioni, which is about freedom and community." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/02195ACE29B37204955148C19A4746B0/Sanna_Pelliccioni_Eppu_Nuotio_Sina_paivana_nayttely_vapaudesta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/02195ACE29B37204955148C19A4746B0/Sanna_Pelliccioni_Eppu_Nuotio_Sina_paivana_Den_dagen_en_utstallning_om_frihet", "en": "http://www.kanneltalo.fi/en/events/event/02195ACE29B37204955148C19A4746B0/Sanna_Pelliccioni_Eppu_Nuotio_Sina_paivana_nayttely_vapaudesta_" }, "location_extra_info": null, "name": { "fi": "Sanna Pelliccioni & Eppu Nuotio: Sinä päivänä – näyttely vapaudesta", "sv": "Sanna Pelliccioni & Eppu Nuotio: Sinä päivänä (Den dagen) – en utställning om frihet", "en": "Sanna Pelliccioni & Eppu Nuotio: Sinä päivänä – näyttely vapaudesta – (On that day – an exhibition about freedom)" }, "description": { "fi": "<p>Sinä päivänä -näyttely perustuu Eppu Nuotion kirjoittamaan ja Sanna Pelliccionin kuvittamaan samannimiseen kuvakirjaan, joka kertoo vapaudesta ja yhteisöllisyydestä.</p><p>Kirjan ja näyttelyn esikuva on Vapauden ketju: 1989 yli kaksi miljoonaa ihmistä otti toisiaan kädestä ja muodosti ketjun läpi Viron, Latvian ja Liettuan vaatiakseen vapautta – ja saivat sen.</p><p>Toiminnallisessa näyttelyssä maataan vapauden niityllä suuren keltaisen auringon alla, etsitään avaimia, tutkaillaan kuvituksia ja vanhoja valokuvia. Näyttelyssä myös askarrellaan paperinukkeketjuja ja mietitään mitä kaikkea voi tehdä yhdessä, vaan ei yksin.</p><p>Kuvitukset: Sanna Pelliccioni<br>Tekstit: Eppu Nuotio<br>Käännökset: Peep Ihasalu<br>Äänimaailma: Suunnittelu Eppu Nuotio, Marju Lauristinin puhe Mariann Nagatsu,<br>laulun sävellys ja piano Timo Klemettinen, Laulu Henri Piispanen, Ulla Piispanen<br>Tuotanto: Sanna Pelliccioni ja Eppu Nuotio<br>Kiitokset Suomen Viron-instituutti, FOT, Silvi Puvi, Anne Pikkov, Kerttu Sillaste,<br>Haapsalun lastenkirjasto</p>", "sv": "<p>Utställningen Sinä päivänä grundar sig på bilderboken med samma namn, som är skriven av Eppu Nuotio och illustrerad av Sanna Peliccioni. Boken berättar om frihet och gemenskap.</p><p>Förebilden för boken och utställningen är den Baltiska kedjan: år 1989 tog över två miljoner människor varandra i handen och skapade en kedja genom Estland, Lettland och Litauen för att kräva frihet – och fick den. I den funktionella utställningen ligger vi på frihetens ängar under en stor gul sol, söker nycklar, undersöker illustrationer och gamla fotografier. På utställningen pysslar vi även kedjor av pappersdockor och funderar på allt det vi kan göra tillsammans, men inte ensamma.</p><p>Illustrationer: Sanna Pelliccioni<br>Texter: Eppu Nuotio<br>Översättningar: Peep Ihasalu<br>Ljudlandskap: Design Eppu Nuotio, Marju Lauristins tal Mariann Nagatsu, komposition av sången och piano Timo Klemettinen, Sång Henri Piispanen, Ulla Piispanen</p><p>Produktion: Sanna Pelliccioni ja Eppu Nuotio<br>Tack till Suomen Viron-instituutti, FOT, Silvi Puvi, Anne Pikkov, Kerttu Sillaste, barnbiblioteket i Haapsalu</p>", "en": "<p>The Sinä päivänä exhibition is based on the picture book of the same name, written by Eppu Nuotio and illustrated by Sanna Pelliccioni, which is about freedom and community.</p><p>The book and the exhibition are inspired by the Baltic Chain: In 1989, more than two million people joined hands and formed a chain through Estonia, Latvia and Lithuania to demand their freedom – and they got it. In this functional exhibition, you’ll lie down in the meadow of freedom under a big yellow sun, look for keys, and examine illustrations and old photographs. The exhibition also includes making chains of paper dolls and thinking about all the things you can do together, but not alone..</p><p>Illustrations: Sanna Pelliccioni<br>Texts: Eppu Nuotio<br>Translations: Peep Ihasalu<br>Audio: Design by Eppu Nuotio, speech by Marju Lauristin, Mariann Nagatsu,<br>song composition and piano by Timo Klemettinen, vocals by Henri Piispanen and Ulla Piispanen<br>Production: Sanna Pelliccioni and Eppu Nuotio<br>Thanks to the Finnish Institute in Tallinn, FOT, Silvi Puvi, Anne Pikkov, Kerttu Sillaste,<br>Haapsalu Children’s Library</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64881/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65033", "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/kulke:755/?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:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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:u48040010", "sub_events": [], "images": [ { "id": 153556, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T08:15:16.455150Z", "last_modified_time": "2024-12-30T08:15:16.455180Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759431.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153556/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-30T08:15:16.422261Z", "last_modified_time": "2024-12-30T08:15:16.574970Z", "date_published": null, "start_time": "2025-03-03T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tutkija, kääntäjä, kuvittaja ja kirjailija Virpi Hämeen-Anttila saapuu Kanneltalon kahvilan stagelle puhumaan uusimmasta teoksestaan ja yleisesti tuotannostaan.", "sv": "Forskaren, översättaren, illustratören och författaren Virpi Hämeen-Anttila kommer till kaféets stage i Gamlasgården för att berätta om sitt nyaste verk och om sin produktion i allmänhet.", "en": "Researcher, translator, illustrator and writer Virpi Hämeen-Anttila comes to the Kanneltalo café stage to discuss her latest work and her body of work in general." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3A807277970069E86850A2019343B82B/Kirjailijavieraana_Virpi_Hameen-Anttila", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3A807277970069E86850A2019343B82B/Forfattarbesok_Virpi_Hameen-Anttila", "en": "http://www.kanneltalo.fi/en/events/event/3A807277970069E86850A2019343B82B/Guest_author_Virpi_Hameen-Anttila" }, "location_extra_info": null, "name": { "fi": "Kirjailijavieraana Virpi Hämeen-Anttila – Maksuttomat maanantait", "sv": "Författarbesök: Virpi Hämeen-Anttila – Kostnadsfria måndagar", "en": "Guest author: Virpi Hämeen-Anttila – Free Mondays" }, "description": { "fi": "<p>Tutkija, kääntäjä, kuvittaja ja kirjailija Virpi Hämeen-Anttila saapuu Kanneltalon kahvilan stagelle puhumaan uusimmasta teoksestaan ja yleisesti tuotannostaan.</p><p>Virpi Hämeen-Anttila valmistui Helsingin yliopistosta filosofian maisteriksi vuonna 1996. Hän teki väitöskirjan vanhan intialaisen kertomakirjallisuuden teoriasta. Hämeen-Anttila on toiminut opettajana Helsingin yliopistossa vuodesta 1987 opetusaloinaan sanskritin kieli sekä Intian kirjallisuus, historia, filosofia ja kulttuurihistoria.</p><p>Hämeen-Anttilaa haastattelee FM Katri Sola.</p><p>Yhteistyössä Kannelmäen kirjaston ja Helsingin työväenopiston kanssa.</p><p>Kesto: 60 min.</p>", "sv": "<p>Forskaren, översättaren, illustratören och författaren Virpi Hämeen-Anttila kommer till kaféets stage i Gamlasgården för att berätta om sitt nyaste verk och om sin produktion i allmänhet.</p><p>Virpi Hämeen-Anttila utexaminerades som filosofie magister från Helsingfors universitet år 1996. Hon skrev sin avhandling om den indiska berättande litteraturens teori. Hämeen-Anttila har fungerat som lärare i sanskrit och indisk litteratur, historia, filosofi och kulturhistoria vid Helsingfors universitet sedan år 1987.</p><p>Hämeen-Anttila intervjuas av fil.mag. Katri Sola.</p><p>I samarbete med Gamlas bibliotek och Helsingfors finska arbetarinstitut.</p><p>Längd: 60 min.<br>Språk: finska</p>", "en": "<p>Researcher, translator, illustrator and writer Virpi Hämeen-Anttila comes to the Kanneltalo café stage to discuss her latest work and her body of work in general.</p><p>Virpi Hämeen-Anttila graduated from the University of Helsinki with a Master’s Degree in Philosophy in 1996. She wrote her thesis on the theory of ancient Indian narrative literature. Hämeen-Anttila has been a lecturer at the University of Helsinki since 1987, teaching Sanskrit and Indian literature, history, philosophy and cultural history.</p><p>Hämeen-Anttila is interviewed by Katri Sola, MA.</p><p>In cooperation with the Kannelmäki Library and the Helsinki Adult Education Centre.</p><p>Duration: 60 min<br>Language: Finnish</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65033/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65020", "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/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153555, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T08:15:16.078846Z", "last_modified_time": "2024-12-30T08:15:16.078872Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763521.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153555/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-30T08:15:16.038772Z", "last_modified_time": "2024-12-30T08:15:16.181328Z", "date_published": null, "start_time": "2025-03-01T10:00:00Z", "end_time": "2025-03-01T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "HELsign tulee taas! Koko perheen viittomakielinen kulttuuritapahtuma Kanneltalossa.", "sv": "HELsign återvänder! Ett kulturevenemang på teckenspråk för hela familjen i Gamlasgården.", "en": "HELsign is back! A sign language cultural event for the whole family at Cultural Centre Kanneltalo." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1C43755CEFA805D665C9CEE6778C1C95/HELsign_2025_Viittomakielinen_kulttuuritapahtuma_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1C43755CEFA805D665C9CEE6778C1C95/HELsign_2025_Kulturevenemang_pa_teckensprak_", "en": "http://www.kanneltalo.fi/en/events/event/1C43755CEFA805D665C9CEE6778C1C95/HELsign_2025_A_sign_language_cultural_event" }, "location_extra_info": null, "name": { "fi": "HELsign 2025 – Viittomakielinen kulttuuritapahtuma", "sv": "HELsign 2025 – Kulturevenemang på teckenspråk", "en": "HELsign 2025 – A sign language cultural event" }, "description": { "fi": "<p>HELsign tulee taas! Koko perheen viittomakielinen kulttuuritapahtuma Kanneltalossa.</p><p>Ohjelmassa on kivoja viittomakielisiä esityksiä Kanneltalon teatterisalissa, sekä askartelua ja muuta mukavaa puuhailua talon aulassa. HELsign-tapahtumaan ovat tervetulleita kaikenikäiset lapsista vanhuksiin! <br> <br>Koko HELsign 2025-tapahtumaan on ilmainen pääsy.</p><p>Yhteistyössä Kuurojen Liitto, Humak ja Kanneltalo</p>", "sv": "<p>HELsign återvänder! Ett kulturevenemang på teckenspråk för hela familjen i Gamlasgården.</p><p>I programmet ingår skojiga föreställningar på teckenspråk i Gamlasgårdens teatersal samt pyssel och andra trevliga aktiviteter i husets lobby. Alla åldrar är välkomna till HELsign-evenemanget, från barn till åldringar! <br> <br>Inträdet är gratis till hela HELsign 2025-evenemanget.</p><p>I samarbete Finlands dövas förbund, Humak och Gamlasgården</p>", "en": "<p>HELsign is back! A sign language cultural event for the whole family at Cultural Centre Kanneltalo.</p><p>The programme will include fun sign language performances in Kanneltalo’s theatre hall, as well as crafts and other fun activities in the lobby. HELsign is open to all ages, from children to older people! <br> <br>The entire HELsign 2025 event is free of charge.</p><p>In cooperation with Kuurojen Liitto (The Finnish Association of the Deaf), University of Applied Sciences and Cultural Centre Kanneltalo</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65020/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65037", "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: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: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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153545, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-27T15:13:50.454822Z", "last_modified_time": "2024-12-27T15:13:50.454838Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763669.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153545/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-27T15:13:50.416706Z", "last_modified_time": "2024-12-30T08:15:10.786714Z", "date_published": null, "start_time": "2025-02-03T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tänä keväänä Kanneltalon Kino Kuutamon elokuvissa tutkitaan luontoa rakkauden vertauskuvana.", "sv": "Denna vår undersöker vi naturen som symbol för kärleken i Gamlasgårdens Kino Kuutamo-filmer.", "en": "This spring, Kanneltalo’s Kino Kuutamo will showcase films that explore nature as a metaphor for love." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CF58C6B7294FC01252A2559982BD005F/Kino_Kuutamo_Kapy_selan_alla_12_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CF58C6B7294FC01252A2559982BD005F/Kino_Kuutamo_En_kotte_under_ryggen_12_", "en": "http://www.kanneltalo.fi/en/events/event/CF58C6B7294FC01252A2559982BD005F/Kino_Kuutamo_Skin_skin_Kapy_selan_alla_" }, "location_extra_info": null, "name": { "fi": "Kino Kuutamo: Käpy selän alla (12) – Maksuttomat maanantait", "sv": "Kino Kuutamo: En kotte under ryggen (12) – Kostnadsfria måndagar", "en": "Kino Kuutamo: Skin, skin (Käpy selän alla) – Free Mondays" }, "description": { "fi": "<p>Tänä keväänä Kanneltalon Kino Kuutamon elokuvissa tutkitaan luontoa rakkauden vertauskuvana.</p><p>Elokuvahistorian asiantuntija FT Harri Kilpi johdattaa illan elokuvaan klo 17–17.45. Luennon jälkeen klo 18 alkaa elokuvan ilmaisnäytös.<br><b>Käpy selän alla</b> <br>Neljän kaupunkilaisnuoren telttaretkestä kertova Käpy selän alla nosti pintaan 1960-luvun puolivälin opiskelijanuorison asenteet ja tuntemukset ja muotoili ne tavalla, josta nuoriso saattoi tunnistaa itsensä.<br>Elokuva on yksi suomalaisen elokuvahistorian merkkipaaluista. Se valmistui studiojärjestelmän romahtamisen jälkeen suomalaisen elokuvan kriisin ollessa pahimmillaan. Se merkitsi käännekohtaa ja toi uusia tuulia ummehtuneeseen elokuvakulttuuriin ja kotimaiseen filmituotantoon.</p><p>Ikäraja: K12<br>Julkaisuvuosi: 1966<br>Kesto: 89 min.<br>Ikäraja: 12<br>Genre(t): draama<br>Kielet: suomi<br>Ohjaus: Mikko Niskanen<br>Käsikirjoitus: Marja-Leena Mikkola<br>Näyttelijät: Kristiina Halkola, Kirsti Wallasvaara, Pekka Autiovuori ja Eero Melasniemi</p><p>Vapaa pääsy</p>", "sv": "<p>Denna vår undersöker vi naturen som symbol för kärleken i Gamlasgårdens Kino Kuutamo-filmer.</p><p>Filmhistorikern fil.dr. Harri Kilpi introducerar kvällens film kl. 17–17.45. Efter föreläsningen inleds den avgiftsfria visningen av filmen kl. 18.</p><p><b>En kotte under ryggen</b> <br>En kotte under ryggen berättar om en tältutfärd för fyra unga från staden, och lyfte fram attityderna och känslorna hos unga studerande i mitten av 1960-talet samt formulerade dem på ett sätt som hjälpte de unga att känna igen sig själva.</p><p>Filmen är en av milstolparna i den finländska filmhistorien. Den blev färdig efter att studiosystemet hade kollapsat och den finländska filmen befann sig i sin värsta kris. Den blev en vändpunkt och hämtade nya vindar till den unkna filmkulturen och den inhemska filmproduktionen.</p><p>Åldersgräns: F 12<br>Publikationsår: 1966<br>Längd: 89 min.<br>Åldersgräns: 12<br>Genre(r): drama<br>Språk: finska<br>Regi: Mikko Niskanen<br>Manus: Marja-Leena Mikkola<br>I rollerna: Kristiina Halkola, Kirsti Wallasvaara, Pekka Autiovuori och Eero Melasniemi</p>", "en": "<p>This spring, Kanneltalo’s Kino Kuutamo will showcase films that explore nature as a metaphor for love.</p><p>Film history expert, PhD Harri Kilpi will introduce the film of the evening from 17:00 to 17:45. After the introduction, the free screening of the film begins at 18:00.</p><p><b>Skin, skin (Käpy selän alla)</b> <br>Skin, Skin tells a story about four young people from the city who take a camping trip. The film highlighted the attitudes and feelings of the student youth of the mid-1960s, framing them in a way that young people could identify with.</p><p>The film is one of the milestones in Finnish film history. It was made after the collapse of the studio system at the height of the Finnish film crisis. It marked a turning point and brought new ideas to the stagnating film culture and domestic film production.</p><p>Age limit: 12+<br>Release year: 1966<br>Duration: 89 min<br>Age limit: 12<br>Genre(s): drama<br>Languages: Finnish<br>Director: Mikko Niskanen<br>Screenplay: Marja-Leena Mikkola<br>Cast: Kristiina Halkola, Kirsti Wallasvaara, Pekka Autiovuori ja Eero Melasniemi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65037/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64731", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/mimmit-2/mimmit-tyttoesankarit-helsinki-3787540/", "sv": "https://www.lippu.fi/artist/mimmit-2/mimmit-tyttoesankarit-helsinki-3787540/", "en": "https://www.lippu.fi/artist/mimmit-2/mimmit-tyttoesankarit-helsinki-3787540/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152939, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-04T10:14:52.276931Z", "last_modified_time": "2024-11-04T10:14:52.276948Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759391.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152939/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-11-04T10:14:52.252701Z", "last_modified_time": "2024-12-30T08:15:08.734554Z", "date_published": null, "start_time": "2025-01-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, "provider_contact_info": null, "short_description": { "fi": "Tyttösankarit-konsertissa on tyttöenergiaa vaikka muille jakaa! Konsertissa tavataan monenlaisia tyttöjä ja kuullaan tarinoita naisista, jotka muuttivat teoillaan maailmaa.", "sv": "På konserten Tyttösankarit (Flickhjältar) finns det flickenergi så att det förslår! På konserten träffar vi många olika flickor och får höra historier om kvinnor som förändrade världen genom sina handlingar.", "en": "The Tyttösankarit (Girl Heroes) concert has girl energy to spare! The concert will introduce you to a wide range of girls and hear stories about women who changed the world through their actions." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D0BCE963FCA6C6BA01366271CCE272E6/MIMMIT_Tyttosankarit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D0BCE963FCA6C6BA01366271CCE272E6/MIMMIT_Tyttosankarit", "en": "http://www.kanneltalo.fi/en/events/event/D0BCE963FCA6C6BA01366271CCE272E6/MIMMIT_Tyttosankarit" }, "location_extra_info": null, "name": { "fi": "MIMMIT: Tyttösankarit", "sv": "MIMMIT: Tyttösankarit", "en": "MIMMIT: Tyttösankarit" }, "description": { "fi": "<p>Tyttösankarit-konsertissa on tyttöenergiaa vaikka muille jakaa! Konsertissa tavataan monenlaisia tyttöjä ja kuullaan tarinoita naisista, jotka muuttivat teoillaan maailmaa.</p><p>Moni varmaan tuntee maailman vahvimman tytön, mutta kuka oli ensimmäinen nainen, joka voitti Nobelin palkinnon? Entä kuka katosi uhkarohkealla maailmanympärilennollaan?<br> <br>Myös ihan tavalliset tytöt voivat olla sankareita. Millaista onkaan Anjun elämä Intiassa, ja mitä puuhailee korokotiilivirran Marama? Tyttösankarit-konsertissa juhlistetaan tyttöjen elämää ympäri maailmaa!<br> <br>Värikkäät tausta-animaatiot kuljettavat katsojaa ympäri maailmaa ja myös yleisö pääsee mukaan laulamaan, tanssimaan, viittomaan ja nauttimaan mukaansatempaavasta musiikista. Konsertissa on mukana myös tukiviittoja Siina, joten konsertti on viestinnällisesti esteetön. <br> <br>Mimmit on yksi Suomen tunnetuimmista lastenmusiikkiyhtyeistä. Mimmit ovat tehneet 1000 konserttia Suomessa ja ulkomailla ja julkaisseet kahdeksan levyä suomeksi ja kaksi ruotsiksi. Ystävyys-levy valittiin vuoden lastenlevyksi 2017. Yhteensä Mimmien levyt ovat saavuttaneet kolme Emma-ehdokkuutta. Mimmit-musiikkivideoita on katsottu Youtubessa yli 16 miljoonaa kertaa ja Mimmit-lauluja on striimattu yli 6 miljoonaa kertaa.</p><p>Kesto: 1 tunti<br>Kieli: suomi</p>", "sv": "<p>På konserten Tyttösankarit (Flickhjältar) finns det flickenergi så att det förslår! På konserten träffar vi många olika flickor och får höra historier om kvinnor som förändrade världen genom sina handlingar.</p><p>Många känner säkert till världens starkaste flicka, men vem var den första kvinnan som vann Nobelpriset? Och vem var det som försvann på sin våghalsiga världenruntflygning?<br> <br>Även alldeles vanliga flickor kan vara hjältar. Hurudant är Anjus liv i Indien, och vad sysslar krokodilflodens Marama med? På konserten Tyttösankarit firar vi flickors liv på olika håll i världen!<br> <br>De färggranna bakgrundsanimationerna tar tittaren med sig kring världen, och även publiken får sjunga med, dansa, stödteckna och njuta av den medryckande musiken. Stödtecknaren Siina deltar också i konserten, så den är kommunikationsmässigt tillgänglig. <br> <br>Mimmit är ett av Finlands mest kända barnmusikband. Mimmit har gett över 1 000 konserter i Finland och utomlands, och släppt åtta album på finska och två på svenska. Albumet Ystävyys valdes till årets barnalbum år 2017. Mimmits album har fått totalt tre Emma-nomineringar. Mimmits musikvideor har över 16 miljoner visningar på YourTube, och Mimmit-sångerna har streamats över 6 miljoner gånger.</p><p>Längd: 1 timme<br>Språk: finska</p>", "en": "<p>The Tyttösankarit (Girl Heroes) concert has girl energy to spare! The concert will introduce you to a wide range of girls and hear stories about women who changed the world through their actions.</p><p>Many of you probably know the strongest girl in the world, but who was the first woman to win the Nobel Prize? And who disappeared on their daredevil round-the-world flight?<br> <br>Ordinary girls can be heroes, too. What’s life like for Anju in India, and what’s Marama from the Crocodile River up to? The Tyttösankarit concerts celebrate the lives of girls around the world!<br> <br>Colourful background animations transport viewers around the world, and the audience can join in the singing, dancing, signing and enjoying the engaging music. The concert will also include Siina, a supportive interpreter, so the concert will have accessible communication. <br> <br>Mimmit is one of the most famous children’s music groups in Finland. Mimmit have performed 1000 concerts in Finland and abroad and have released eight albums in Finnish and two in Swedish. Their Ystävyys album was chosen as the children’s album of the year in 2017. In total, Mimmit’s albums have received three Emma nominations. Mimmit’s music videos have been viewed over 16 million times on YouTube, and their songs have been streamed over 6 million times.</p><p>Duration: 1 hour<br>Language: Finnish</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64731/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64741", "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/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153366, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T13:14:07.734124Z", "last_modified_time": "2024-12-10T13:14:07.734142Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759422.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153366/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-10T13:14:07.708614Z", "last_modified_time": "2024-12-30T08:15:06.853616Z", "date_published": null, "start_time": "2025-01-20T11:00:00Z", "end_time": "2025-01-20T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa mukaan tutustumaan ja keskustelemaan mahdollisuuksista edistää omaa hyvinvointia ja terveyttä!", "sv": "Välkommen med att ta del av och diskutera om möjligheter att främja sitt välbefinnande och sin hälsa!", "en": "Join us to learn more and discuss ways to promote your well-being and health!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/AE2736DDA19DB6651C4C198F7E2BE368/Hyvinvoinnin_ja_terveyden_edistamisen_messupaiva_senioreille", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/AE2736DDA19DB6651C4C198F7E2BE368/Massdag_for_seniorer_om_framjande_av_valbefinnande_och_halsa", "en": "http://www.kanneltalo.fi/en/events/event/AE2736DDA19DB6651C4C198F7E2BE368/Exhibition_day_promoting_health_and_well-being_for_seniors" }, "location_extra_info": null, "name": { "fi": "Hyvinvoinnin ja terveyden edistämisen messupäivä senioreille", "sv": "Mässdag för seniorer om främjande av välbefinnande och hälsa", "en": "Exhibition day promoting health and well-being for seniors" }, "description": { "fi": "<p>Tervetuloa mukaan tutustumaan ja keskustelemaan mahdollisuuksista edistää omaa hyvinvointia ja terveyttä!</p><p>Tapahtuma on suunnattu yli 65-vuotiaille helsinkiläisille. Mukana on monipuolisesti eri toimijoita ja palveluntarjoajia.</p><p>Tapahtuma itsessään on maksuton, mutta näytteilleasettajilla on myynnissä heidän omia tuotteitaan ja palveluitaan. Messupäivän tarkemman ohjelman voit katsoa: https://www.kannelmaenvoimistelijat.fi/seniorit/</p><p>Vapaa pääsy</p><p>Yhteistyössä Kanneltalo ja Kannelmäen Voimistelijat ry<br>Paikat: Galleria ja kahvilan stage</p>", "sv": "<p>Välkommen med att ta del av och diskutera om möjligheter att främja sitt välbefinnande och sin hälsa!</p><p>Evenemanget är riktat till över 65-åriga helsingforsare. Ett mångsidigt utbud av aktörer och tjänsteproducenter deltar. Själva evenemanget är avgiftsfritt, men utställarna säljer sina egna produkter och tjänster.</p><p>Du hittar ett mer exakt program för mässdagen på: https://www.kannelmaenvoimistelijat.fi/seniorit/</p><p>Fritt inträde</p>", "en": "<p>Join us to learn more and discuss ways to promote your well-being and health!</p><p>The event is aimed at Helsinki residents over 65 years old. A wide range of different operators and service providers are involved. The event itself is free of charge, but exhibition vendors will have their own products and services for sale.</p><p>For a more detailed programme for the exhibition day, please see: https://www.kannelmaenvoimistelijat.fi/seniorit/</p><p>Free admission</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64741/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64947", "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/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/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153356, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T12:14:38.300814Z", "last_modified_time": "2024-12-10T12:14:38.300840Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761801.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153356/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-10T12:14:38.269676Z", "last_modified_time": "2024-12-30T08:15:05.630830Z", "date_published": null, "start_time": "2025-01-15", "end_time": "2025-01-17", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!", "sv": "Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!", "en": "We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5E32130FFE86AB5D972D49E08DE4F21A/Suojelevat_symbolit_-taidepaja", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5E32130FFE86AB5D972D49E08DE4F21A/Skyddande_symboler_konstworkshop", "en": "http://www.kanneltalo.fi/en/events/event/5E32130FFE86AB5D972D49E08DE4F21A/Protective_Symbols_art_workshop" }, "location_extra_info": null, "name": { "fi": "Suojelevat symbolit -taidepaja", "sv": "Skyddande symboler – konstworkshop", "en": "Protective Symbols art workshop" }, "description": { "fi": "<p>Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!</p><p>Teoskokonaisuus on taidepajoissa tehtyjen osasten summa, joten jokaisen osallistujan panos ja kädenjälki on merkittävä sen syntymisen kannalta.</p><p>Filippiiniläisen taiteilijan Geraldine Javierin ideoima Earth, Water, Air, Fire, Void (Maa, Ilma, Vesi, Tuli, Tyhjiö) käsittelee ihmisen suhdetta luontoon ja sitä, miten voimme elää vastavuoroisessa suhteessa ympäristömme kanssa. Teoksen yhtenä osana ovat suojelevat talismaanit, joita teemme taidepajoissa. Ne ovat eri symboleihin taivutettua rautalankaa, joka on kääritty kierrätyskankaisiin.</p><p>Talismaanien symbolit ammentavat luonnosta ja ne ovat sekä suomalaisesta että filippiiniläisestä kulttuurista poimittuja. Kesäkuussa ne ripustetaan kuuteen vaahteraan Esplanadilla, missä ne muodostavat yhden suuren kokonaisuuden. Talismaanien tehtävänä on suojella puita, joihin ne on ripustettu.</p><p>Taidepajat ovat ilmaisia ja kaikki materiaalit löytyvät paikan päältä. Tule siis Kanneltalon galleriaan ja anna kättenjälkesi loistaa Helsinki Biennaalin tulevassa taideteoksessa!</p><p><b>Taidepaja on avoinna keskiviikosta perjantaihin 15.–17.1. klo 15.30–16.30.</b></p><p>Vapaa pääsy.</p><p>Helsinki Biennaalia vietetään 8.6.-21.9.2025 ja tapahtumapaikkoina ovat HAM Helsingin taidemuseo, Vallisaari sekä Esplanadi.</p>", "sv": "<p>Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!</p><p>Verket som helhet är summan av de delar som görs under konstworkshopparna, och därför är varje deltagares insats och avtryck betydelsefullt för verkets uppkomst.</p><p>Earth, Water, Air, Fire, Void (Jord, Lyft, Vatten, Eld, Tomrum) grundar sig på en idé av den filippinska konstnären Geraldine Javier, och behandlar människans förhållande till naturen och hur vi kan leva interaktivt i förhållande till vår miljö. En del av verket är de skyddande talismaner, som vi gör i workshopparna. De består av ståltråd som har böjts till olika symboler och svepts in i återvinningstyger.</p><p>Talismanernas symboler inhämtar inspiration ur naturen, och har plockats från både den finländska och den filippinska kulturen. I juni hängs de upp i sex lönnar på Esplanaden, där de bildar en enda stor helhet. Talismanernas uppgift är att skydda de träd i vilka de hängts upp.</p><p>Konstworkshopparna är avgiftsfria och allt material finns på plats. Kom till Gamlasgårdens galleri och låt ditt handarbete stråla i det kommande konstverket för Helsingforsbiennalen! Konstworkshoppen är öppen onsdag till fredag 15–17.1. kl. 15.30–16.30.</p><p>Fritt inträde.</p><p>Helsingforsbiennalen firas 8.6.–21.9.2025 och evenemangsplatserna är HAM Helsingfors konstmuseum, Skanslandet och Esplanaden.</p>", "en": "<p>We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!</p><p>The collection of artwork will be the sum of the pieces made in the workshops, so each participant’s contribution and handprint will be important to creating it.</p><p>Earth, Water, Air, Fire, Void, the work conceived by Filipino artist Geraldine Javier, explores the human relationship with nature and how we can live in a reciprocal relationship with our environment. One part of the work will be the protective talismans that we will make in art workshops. They are made with wire bent into different symbols and wrapped in recycled fabric.</p><p>The symbols of the talismans are drawn from nature and inspired by both Finnish and Filipino culture. In June, they will be hung on six maples on the Esplanade, where they will form one large collection. The talismans are meant to protect the trees on which they are hung.</p><p>The workshops are free of charge, and all materials will be available on-site. Come visit the Kanneltalo gallery, and let your handiwork shine in the upcoming Helsinki Biennial artwork! The art workshop is open from Wednesday to Friday, 15–17 January, from 15:30 to 16:30.</p><p>Free admission.</p><p>The Helsinki Biennial will take place from 8 June to 21 September 2025, and the event venues will be HAM Helsinki Art Museum, Vallisaari and the Esplanade.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64947/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65110", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/" }, "price": { "fi": "5 €", "sv": "5 €", "en": "5 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153379, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-11T08:15:34.459827Z", "last_modified_time": "2024-12-11T08:15:34.459859Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745830.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153379/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-11T08:15:34.431818Z", "last_modified_time": "2024-12-30T07:14:03.491846Z", "date_published": null, "start_time": "2024-12-21T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Wicked on odotettu elokuvaversio näyttämöillä jo kahden vuosikymmenen ajan lumonneesta, rakastetusta musikaalista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7D2618F6B75DF64AFA7DFBC6B68297EB/Wicked_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7D2618F6B75DF64AFA7DFBC6B68297EB/Wicked_7_", "en": "http://www.malmitalo.fi/en/events/event/7D2618F6B75DF64AFA7DFBC6B68297EB/Wicked_7_" }, "location_extra_info": null, "name": { "fi": "Wicked (7) – Kino Helios", "sv": "Wicked (7) – Kino Helios", "en": "Wicked (7) – Kino Helios" }, "description": { "fi": "<p>Wicked on odotettu elokuvaversio näyttämöillä jo kahden vuosikymmenen ajan lumonneesta, rakastetusta musikaalista.</p><p>Ihmemaa Ozin noitien tarinan kertovassa elokuvassa päärooleissa nähdään Emmy-, Grammy- ja Tony-palkittu valovoimainen Cynthia Erivo (Harriet, Broadwayn Häivähdys purppuraa) vihreän ihonsa vuoksi väärinymmärrettynä ja todellisia voimiaan etsivänä Elphabana sekä Grammy-voittaja ja kansainvälinen supertähti Ariana Grande Glindana, suosittuna, etuoikeutettuna ja kunnianhimoisena nuorena naisena, joka etsii vielä sydämensä todellista ääntä.</p><p>Kaksikko tapaa aloittaessaan taikuuden opinnot Shizin maagisessa yliopistossa ja heidän välilleen muodostuu odottamaton, mutta syvä ystävyys. Kun he kohtaavat Ozin Velhon, heidän ystävyytensä joutuu koetukselle ja elämänsä erkanevat eri poluille. Suosion jano saa Glindan viehättyämään vallasta, kun taas Elphaban päätöksellä pysyä rehellisenä itselleen ja muille on odottamattomia ja järkyttäviä vaikutuksia hänen kohtaloonsa. Heidät tullaan myöhemmin tuntemaan Ozin ihmemaassa Glinda Hyvänä ja Lännen ilkeänä noitana.</p><p>Oscar®-voittaja Michelle Yeoh nähdään elokuvassa Shiz-yliopiston loisteliaana rehtorina Madame Morriblena, Jonathan Bayley (Bridgerton, Fellow Travelers) Fiyerona, veitikkamaisena ja huolettomana prinssinä, Tony-ehdokas Ethan Slater (Broadwayn Paavo Pesusieni, Fosse/Verdon) Bogina, avuliaana munskottioppilaana, Marisa Bode elokuvadebyytissään Nessarosena, Elphaban suositumpana siskona, sekä popkulttuuri-ikoni Jeff Goldblum Ozin ihmeellisenä Velhona.</p><p>Elokuvassa nähdään myös Pfannee ja ShenShen, Glindan ystävät, joita näyttelevät Emmy-ehdokas Bowen Yang (Saturday Night Live) ja Bronwyn James (Harlots), sekä Tony-ehdokas Keala Settlen (The Greatest Showman) näyttelemä elokuvaan luotu uusi hahmo, Neiti Coddle.</p><p>Jon M. Chun (Crazy Rich Asians, In the Heights) ohjaama Wicked on kaksiosaisen kulttuurielämyksen ensimmäinen osa. Wicked Osa II tulee elokuvateattereihin loppuvuodesta 2025.</p><p>Ikäraja: 7<br>Kesto: 160 min.<br>Ensi-ilta: 22.11.2024<br>Elokuva on tekstitetty suomeksi ja ruotsiksi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65110/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65109", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/" }, "price": { "fi": "5 €", "sv": "5 €", "en": "5 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153378, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-11T08:15:33.891943Z", "last_modified_time": "2024-12-11T08:15:33.891965Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745827.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153378/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-11T08:15:33.855335Z", "last_modified_time": "2024-12-30T07:14:03.075236Z", "date_published": null, "start_time": "2024-12-20T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Wicked on odotettu elokuvaversio näyttämöillä jo kahden vuosikymmenen ajan lumonneesta, rakastetusta musikaalista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/183FB3457C225B1C50F0386FA5D62A7A/Wicked_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/183FB3457C225B1C50F0386FA5D62A7A/Wicked_7_", "en": "http://www.malmitalo.fi/en/events/event/183FB3457C225B1C50F0386FA5D62A7A/Wicked_7_" }, "location_extra_info": null, "name": { "fi": "Wicked (7) – Kino Helios", "sv": "Wicked (7) – Kino Helios", "en": "Wicked (7) – Kino Helios" }, "description": { "fi": "<p>Wicked on odotettu elokuvaversio näyttämöillä jo kahden vuosikymmenen ajan lumonneesta, rakastetusta musikaalista.</p><p>Ihmemaa Ozin noitien tarinan kertovassa elokuvassa päärooleissa nähdään Emmy-, Grammy- ja Tony-palkittu valovoimainen Cynthia Erivo (Harriet, Broadwayn Häivähdys purppuraa) vihreän ihonsa vuoksi väärinymmärrettynä ja todellisia voimiaan etsivänä Elphabana sekä Grammy-voittaja ja kansainvälinen supertähti Ariana Grande Glindana, suosittuna, etuoikeutettuna ja kunnianhimoisena nuorena naisena, joka etsii vielä sydämensä todellista ääntä.</p><p>Kaksikko tapaa aloittaessaan taikuuden opinnot Shizin maagisessa yliopistossa ja heidän välilleen muodostuu odottamaton, mutta syvä ystävyys. Kun he kohtaavat Ozin Velhon, heidän ystävyytensä joutuu koetukselle ja elämänsä erkanevat eri poluille. Suosion jano saa Glindan viehättyämään vallasta, kun taas Elphaban päätöksellä pysyä rehellisenä itselleen ja muille on odottamattomia ja järkyttäviä vaikutuksia hänen kohtaloonsa. Heidät tullaan myöhemmin tuntemaan Ozin ihmemaassa Glinda Hyvänä ja Lännen ilkeänä noitana.</p><p>Oscar®-voittaja Michelle Yeoh nähdään elokuvassa Shiz-yliopiston loisteliaana rehtorina Madame Morriblena, Jonathan Bayley (Bridgerton, Fellow Travelers) Fiyerona, veitikkamaisena ja huolettomana prinssinä, Tony-ehdokas Ethan Slater (Broadwayn Paavo Pesusieni, Fosse/Verdon) Bogina, avuliaana munskottioppilaana, Marisa Bode elokuvadebyytissään Nessarosena, Elphaban suositumpana siskona, sekä popkulttuuri-ikoni Jeff Goldblum Ozin ihmeellisenä Velhona.</p><p>Elokuvassa nähdään myös Pfannee ja ShenShen, Glindan ystävät, joita näyttelevät Emmy-ehdokas Bowen Yang (Saturday Night Live) ja Bronwyn James (Harlots), sekä Tony-ehdokas Keala Settlen (The Greatest Showman) näyttelemä elokuvaan luotu uusi hahmo, Neiti Coddle.</p><p>Jon M. Chun (Crazy Rich Asians, In the Heights) ohjaama Wicked on kaksiosaisen kulttuurielämyksen ensimmäinen osa. Wicked Osa II tulee elokuvateattereihin loppuvuodesta 2025.</p><p>Ikäraja: 7<br>Kesto: 160 min.<br>Ensi-ilta: 22.11.2024<br>Elokuva on tekstitetty suomeksi ja ruotsiksi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65109/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65108", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-wicked-3780611/" }, "price": { "fi": "5 €", "sv": "5 €", "en": "5 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153094, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-27T11:14:30.738550Z", "last_modified_time": "2024-11-27T11:14:30.738577Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745821.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153094/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-27T11:14:30.710520Z", "last_modified_time": "2024-12-30T07:14:01.868326Z", "date_published": null, "start_time": "2024-12-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Wicked on odotettu elokuvaversio näyttämöillä jo kahden vuosikymmenen ajan lumonneesta, rakastetusta musikaalista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/707A0E79295B12A0A3E44E84881C0813/Wicked_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/707A0E79295B12A0A3E44E84881C0813/Wicked_7_", "en": "http://www.malmitalo.fi/en/events/event/707A0E79295B12A0A3E44E84881C0813/Wicked_7_" }, "location_extra_info": null, "name": { "fi": "Wicked (7) – Kino Helios", "sv": "Wicked (7) – Kino Helios", "en": "Wicked (7) – Kino Helios" }, "description": { "fi": "<p>Wicked on odotettu elokuvaversio näyttämöillä jo kahden vuosikymmenen ajan lumonneesta, rakastetusta musikaalista.</p><p>Ihmemaa Ozin noitien tarinan kertovassa elokuvassa päärooleissa nähdään Emmy-, Grammy- ja Tony-palkittu valovoimainen Cynthia Erivo (Harriet, Broadwayn Häivähdys purppuraa) vihreän ihonsa vuoksi väärinymmärrettynä ja todellisia voimiaan etsivänä Elphabana sekä Grammy-voittaja ja kansainvälinen supertähti Ariana Grande Glindana, suosittuna, etuoikeutettuna ja kunnianhimoisena nuorena naisena, joka etsii vielä sydämensä todellista ääntä.</p><p>Kaksikko tapaa aloittaessaan taikuuden opinnot Shizin maagisessa yliopistossa ja heidän välilleen muodostuu odottamaton, mutta syvä ystävyys. Kun he kohtaavat Ozin Velhon, heidän ystävyytensä joutuu koetukselle ja elämänsä erkanevat eri poluille. Suosion jano saa Glindan viehättyämään vallasta, kun taas Elphaban päätöksellä pysyä rehellisenä itselleen ja muille on odottamattomia ja järkyttäviä vaikutuksia hänen kohtaloonsa. Heidät tullaan myöhemmin tuntemaan Ozin ihmemaassa Glinda Hyvänä ja Lännen ilkeänä noitana.</p><p>Oscar®-voittaja Michelle Yeoh nähdään elokuvassa Shiz-yliopiston loisteliaana rehtorina Madame Morriblena, Jonathan Bayley (Bridgerton, Fellow Travelers) Fiyerona, veitikkamaisena ja huolettomana prinssinä, Tony-ehdokas Ethan Slater (Broadwayn Paavo Pesusieni, Fosse/Verdon) Bogina, avuliaana munskottioppilaana, Marisa Bode elokuvadebyytissään Nessarosena, Elphaban suositumpana siskona, sekä popkulttuuri-ikoni Jeff Goldblum Ozin ihmeellisenä Velhona.</p><p>Elokuvassa nähdään myös Pfannee ja ShenShen, Glindan ystävät, joita näyttelevät Emmy-ehdokas Bowen Yang (Saturday Night Live) ja Bronwyn James (Harlots), sekä Tony-ehdokas Keala Settlen (The Greatest Showman) näyttelemä elokuvaan luotu uusi hahmo, Neiti Coddle.</p><p>Jon M. Chun (Crazy Rich Asians, In the Heights) ohjaama Wicked on kaksiosaisen kulttuurielämyksen ensimmäinen osa. Wicked Osa II tulee elokuvateattereihin loppuvuodesta 2025.</p><p>Ikäraja: 7<br>Kesto: 160 min.<br>Ensi-ilta: 22.11.2024<br>Elokuva on tekstitetty suomeksi ja ruotsiksi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65108/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23exfa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ey7q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490234, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-29T11:04:17.046656Z", "last_modified_time": "2024-12-29T11:04:17.046676Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/cf9fc4bb-3edd-4954-961e-d7bb3ba2ad8a.jpg", "cropping": "426,0,2981,2556", "photographer_name": "", "alt_text": "Askarteluhetki, erilaisia tarvikkeita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490234/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-29T11:09:00.967128Z", "last_modified_time": "2024-12-29T11:09:00.967149Z", "date_published": null, "start_time": "2025-06-18T13:00:00Z", "end_time": "2025-06-18T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. ", "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.", "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits. " }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askartelua_Sellon_kirjaston_Pajassa(277976)" }, "location_extra_info": null, "name": { "fi": "Askartelua Sellon kirjaston Pajassa", "sv": "Hantverk i Sellobibliotekets verkstad", "en": "Crafting in Sello Library's Makerspace" }, "description": { "fi": "<p>Joka keskiviikko Sellon kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina ja ideoijina toimivat kirjastolaiset. Toimintaan ei tarvitse ilmoittauta etukäteen. Askartelu on maksutonta. Ei ikärajoja. </p>", "sv": "<p>Varje onsdag bjuder Sello biblioteks verkstad Paja in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p>", "en": "<p>Every Wednesday, Sello library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23exfa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23exqq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ey7q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490234, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-29T11:04:17.046656Z", "last_modified_time": "2024-12-29T11:04:17.046676Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/cf9fc4bb-3edd-4954-961e-d7bb3ba2ad8a.jpg", "cropping": "426,0,2981,2556", "photographer_name": "", "alt_text": "Askarteluhetki, erilaisia tarvikkeita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490234/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-29T11:09:00.810781Z", "last_modified_time": "2024-12-29T11:09:00.810805Z", "date_published": null, "start_time": "2025-06-11T13:00:00Z", "end_time": "2025-06-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. ", "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.", "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits. " }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askartelua_Sellon_kirjaston_Pajassa(277976)" }, "location_extra_info": null, "name": { "fi": "Askartelua Sellon kirjaston Pajassa", "sv": "Hantverk i Sellobibliotekets verkstad", "en": "Crafting in Sello Library's Makerspace" }, "description": { "fi": "<p>Joka keskiviikko Sellon kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina ja ideoijina toimivat kirjastolaiset. Toimintaan ei tarvitse ilmoittauta etukäteen. Askartelu on maksutonta. Ei ikärajoja. </p>", "sv": "<p>Varje onsdag bjuder Sello biblioteks verkstad Paja in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p>", "en": "<p>Every Wednesday, Sello library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23exqq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23ex3y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ey7q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490234, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-29T11:04:17.046656Z", "last_modified_time": "2024-12-29T11:04:17.046676Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/cf9fc4bb-3edd-4954-961e-d7bb3ba2ad8a.jpg", "cropping": "426,0,2981,2556", "photographer_name": "", "alt_text": "Askarteluhetki, erilaisia tarvikkeita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490234/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-29T11:09:00.678545Z", "last_modified_time": "2024-12-29T11:09:00.678567Z", "date_published": null, "start_time": "2025-06-04T13:00:00Z", "end_time": "2025-06-04T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. ", "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.", "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits. " }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askartelua_Sellon_kirjaston_Pajassa(277976)" }, "location_extra_info": null, "name": { "fi": "Askartelua Sellon kirjaston Pajassa", "sv": "Hantverk i Sellobibliotekets verkstad", "en": "Crafting in Sello Library's Makerspace" }, "description": { "fi": "<p>Joka keskiviikko Sellon kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina ja ideoijina toimivat kirjastolaiset. Toimintaan ei tarvitse ilmoittauta etukäteen. Askartelu on maksutonta. Ei ikärajoja. </p>", "sv": "<p>Varje onsdag bjuder Sello biblioteks verkstad Paja in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p>", "en": "<p>Every Wednesday, Sello library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ex3y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23eyhe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ey7q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490234, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-29T11:04:17.046656Z", "last_modified_time": "2024-12-29T11:04:17.046676Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/cf9fc4bb-3edd-4954-961e-d7bb3ba2ad8a.jpg", "cropping": "426,0,2981,2556", "photographer_name": "", "alt_text": "Askarteluhetki, erilaisia tarvikkeita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490234/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-29T11:09:00.528987Z", "last_modified_time": "2024-12-29T11:09:00.529012Z", "date_published": null, "start_time": "2025-05-28T13:00:00Z", "end_time": "2025-05-28T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. ", "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.", "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits. " }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askartelua_Sellon_kirjaston_Pajassa(277976)" }, "location_extra_info": null, "name": { "fi": "Askartelua Sellon kirjaston Pajassa", "sv": "Hantverk i Sellobibliotekets verkstad", "en": "Crafting in Sello Library's Makerspace" }, "description": { "fi": "<p>Joka keskiviikko Sellon kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina ja ideoijina toimivat kirjastolaiset. Toimintaan ei tarvitse ilmoittauta etukäteen. Askartelu on maksutonta. Ei ikärajoja. </p>", "sv": "<p>Varje onsdag bjuder Sello biblioteks verkstad Paja in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p>", "en": "<p>Every Wednesday, Sello library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eyhe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27581, "next": "