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=178®istration__remaining_waiting_list_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=179®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=177®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "id": "espoo_le:agmk22656i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?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:agmk2266vu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490336, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-12T09:18:40.100772Z", "last_modified_time": "2025-05-12T09:18:40.100793Z", "name": "Värikkäitä käsikoruja", "url": "https://tapahtumasyotto.espoo.fi/media/images/06837d05-9d09-45fa-864d-47b3e28bc7ae.jpg", "cropping": "198,0,1082,883", "photographer_name": "", "alt_text": "Värikkäitä käsikoruja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490336/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T09:36:36.378699Z", "last_modified_time": "2025-05-12T09:36:36.378716Z", "date_published": null, "start_time": "2025-06-13T10:00:00Z", "end_time": "2025-06-13T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lankakäsikoruja ja helmistä käsikoruja", "sv": "Trådarmband och pärlarmband", "en": "Wire bracelets and beaded bracelets" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tule luomaan yhdessä langasta käsikoruja ja pujottelemaan helmikäsikoruja. ", "sv": "Kom och skapa armband av garn och pärlarmband tillsammans.", "en": "Come and create bracelets from yarn and string beaded bracelets together." }, "info_url": null, "description": { "fi": "<p>Tehdään yhdessä langasta käsikoruja ja pujotellaan helmikäsikoruja. Helppoja ja kauniita koruja tehdään yhdessä kirjastolaisen kanssa.</p><p>Paja on maksuton ja kaikille avoin.</p><p>Kielinä Suomi ja Englanti.</p><p><br></p><p>#HelloEspoo</p><p><br></p><p><br></p><p><br></p>", "sv": "<p>Låt oss göra armband av garn och trä pärlarmband tillsammans. Enkla och vackra smycken tillverkas tillsammans med en bibliotekarie.</p><p><br></p><p>Workshopen är gratis och öppen för alla.</p><p><br></p><p>Språk finska och engelska.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Let's make bracelets from yarn and string beaded bracelets together. Easy and beautiful jewelry is made together with a librarian.</p><p><br></p><p>The workshop is free and open to everyone.</p><p><br></p><p>Languages are Finnish and English.</p><p><br></p><p>#HelloEspoo</p><p><br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22656i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2266ju", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?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:agmk2266vu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490336, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-12T09:18:40.100772Z", "last_modified_time": "2025-05-12T09:18:40.100793Z", "name": "Värikkäitä käsikoruja", "url": "https://tapahtumasyotto.espoo.fi/media/images/06837d05-9d09-45fa-864d-47b3e28bc7ae.jpg", "cropping": "198,0,1082,883", "photographer_name": "", "alt_text": "Värikkäitä käsikoruja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490336/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T09:36:36.242040Z", "last_modified_time": "2025-05-12T09:36:36.242058Z", "date_published": null, "start_time": "2025-06-06T10:00:00Z", "end_time": "2025-06-06T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lankakäsikoruja ja helmistä käsikoruja", "sv": "Trådarmband och pärlarmband", "en": "Wire bracelets and beaded bracelets" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tule luomaan yhdessä langasta käsikoruja ja pujottelemaan helmikäsikoruja. ", "sv": "Kom och skapa armband av garn och pärlarmband tillsammans.", "en": "Come and create bracelets from yarn and string beaded bracelets together." }, "info_url": null, "description": { "fi": "<p>Tehdään yhdessä langasta käsikoruja ja pujotellaan helmikäsikoruja. Helppoja ja kauniita koruja tehdään yhdessä kirjastolaisen kanssa.</p><p>Paja on maksuton ja kaikille avoin.</p><p>Kielinä Suomi ja Englanti.</p><p><br></p><p>#HelloEspoo</p><p><br></p><p><br></p><p><br></p>", "sv": "<p>Låt oss göra armband av garn och trä pärlarmband tillsammans. Enkla och vackra smycken tillverkas tillsammans med en bibliotekarie.</p><p><br></p><p>Workshopen är gratis och öppen för alla.</p><p><br></p><p>Språk finska och engelska.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Let's make bracelets from yarn and string beaded bracelets together. Easy and beautiful jewelry is made together with a librarian.</p><p><br></p><p>The workshop is free and open to everyone.</p><p><br></p><p>Languages are Finnish and English.</p><p><br></p><p>#HelloEspoo</p><p><br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2266ju/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2266vu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2265sm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22656i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2266ju/?format=api" } ], "images": [ { "id": 1490336, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-12T09:18:40.100772Z", "last_modified_time": "2025-05-12T09:18:40.100793Z", "name": "Värikkäitä käsikoruja", "url": "https://tapahtumasyotto.espoo.fi/media/images/06837d05-9d09-45fa-864d-47b3e28bc7ae.jpg", "cropping": "198,0,1082,883", "photographer_name": "", "alt_text": "Värikkäitä käsikoruja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490336/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T09:36:35.650917Z", "last_modified_time": "2025-05-12T09:36:35.650935Z", "date_published": null, "start_time": "2025-06-06T10:00:00Z", "end_time": "2025-06-27T12:00: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, "name": { "fi": "Lankakäsikoruja ja helmistä käsikoruja", "sv": "Trådarmband och pärlarmband", "en": "Wire bracelets and beaded bracelets" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tule luomaan yhdessä langasta käsikoruja ja pujottelemaan helmikäsikoruja. ", "sv": "Kom och skapa armband av garn och pärlarmband tillsammans.", "en": "Come and create bracelets from yarn and string beaded bracelets together." }, "info_url": null, "description": { "fi": "<p>Tehdään yhdessä langasta käsikoruja ja pujotellaan helmikäsikoruja. Helppoja ja kauniita koruja tehdään yhdessä kirjastolaisen kanssa.</p><p>Paja on maksuton ja kaikille avoin.</p><p>Kielinä Suomi ja Englanti.</p><p><br></p><p>#HelloEspoo</p><p><br></p><p><br></p><p><br></p>", "sv": "<p>Låt oss göra armband av garn och trä pärlarmband tillsammans. Enkla och vackra smycken tillverkas tillsammans med en bibliotekarie.</p><p><br></p><p>Workshopen är gratis och öppen för alla.</p><p><br></p><p>Språk finska och engelska.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Let's make bracelets from yarn and string beaded bracelets together. Easy and beautiful jewelry is made together with a librarian.</p><p><br></p><p>The workshop is free and open to everyone.</p><p><br></p><p>Languages are Finnish and English.</p><p><br></p><p>#HelloEspoo</p><p><br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2266vu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65850", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 612869, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T11:13:18.130773Z", "last_modified_time": "2025-04-25T11:13:18.130796Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767661.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/612869/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-25T11:13:18.065946Z", "last_modified_time": "2025-05-12T09:14:08.978759Z", "date_published": null, "start_time": "2025-06-02T14:30:00Z", "end_time": "2025-08-04T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kaupunkitanssit Malminkartanon Puustellinaukiolla", "sv": "Stadsdans på Malmgårds Boställplats", "en": "Dancing in the City on Puustellinaukio square in Malminkartano" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Foxista fuskuun, jenkasta sambaan, valssista tangoon. Kesällä 2025 opetellaan jälleen paritansseja!", "sv": "Från foxtrot till fusku, från jenkka till samba, från vals till tango. Sommaren 2025 lär vi oss pardans igen!", "en": "From foxtrot to fusku, from jenkka to samba, from waltz to tango. In summer 2025, we’re learning partner dances again!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/DB554C549416D86BD9A234E1F121711E/Kaupunkitanssit_Malminkartanon_Puustellinaukiolla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/DB554C549416D86BD9A234E1F121711E/Stadsdans_pa_Malmgards_Bostallplats", "en": "http://www.kanneltalo.fi/en/events/event/DB554C549416D86BD9A234E1F121711E/Dancing_in_the_City_on_Puustellinaukio_square_in_Malminkartano" }, "description": { "fi": "<p>Foxista fuskuun, jenkasta sambaan, valssista tangoon. Kesällä 2025 opetellaan jälleen paritansseja!</p><p>Kaupunkitansseissa pääset erilaisten paritanssien pyörteisiin ohjatusti ja täysin maksutta. Et tarvitse ennakkotaitoja, ilmoittautumista tai edes tanssiparia – paikan päältä löytyy! Mukaan tanssimaan voi tulla milloin vain. Opetuksesta vastaavat koulutetut tanssinopettajat.</p><p><b>Ohjelma:</b><br>ma 2.6. klo 17.30–18.15 cha cha <br>ma 9.6. klo 17.30–18.15 valssi <br>ma 16.6. klo 17.30–18.15 humppa <br>ma 23.6 klo 17.30–18.15 fusku<br>ma 30.6 klo 17.30–18.15 foksi <br>ma 7.7. klo 17.30–18.15 tango<br>ma 14.7. klo 17.30–18.15 masurkka<br>ma 21.7. klo 17.30–18.15 samba<br>ma 28.7. klo 17.30–18.15 jenkka<br>ma 4.8. klo 17.30–18.15 bachata</p><p>Opetuskieli: suomi</p><p><b>HUOM! Tanssipaikkana Malminkartanon Puustellinaukio</b></p><p>Vapaa pääsy</p>", "sv": "<p>Från foxtrot till fusku, från jenkka till samba, från vals till tango. Sommaren 2025 lär vi oss pardans igen!</p><p>Gratis undervisning i pardanser på finska på Malmgårds Boställplats genom hela sommaren, sammanlagt 10 gånger.</p><p>På Stadstans får du prova olika pardanser – med handledning och helt gratis. Du behöver inga förkunskaper, ingen anmälan och inte ens en danspartner – du hittar en på plats! Du kan hoppa med och börja dansa när som helst. Undervisningen leds av utbildade danslärare.</p><p><b>Program:</b><br>mån 2.6 kl. 17.30–18.15 cha cha<br>mån 9.6 kl. 17.30–18.15 vals<br>mån 16.6 kl. 17.30–18.15 humppa<br>mån 23.6 kl. 17.30–18.15 fusku<br>mån 30.6 kl. 17.30–18.15 foxtrot<br>mån 7.7 kl. 17.30–18.15 tango<br>mån 14.7 kl. 17.30–18.15 mazurka<br>mån 21.7 kl. 17.30–18.15 samba<br>mån 28.7 kl. 17.30–18.15 jenka<br>mån 4.8 kl. 17.30–18.15 bachata</p><p>Undervisningsspråk: finska</p>", "en": "<p>From foxtrot to fusku, from jenkka to samba, from waltz to tango. In summer 2025, we’re learning partner dances again!</p><p>At City Dances, you’ll get to try out a variety of partner dances – with guidance and completely free of charge.</p><p>No prior experience, registration, or even a dance partner is needed – you'll find one on the spot! You can join the dancing at any time. The lessons are led by qualified dance instructors.</p><p>The teaching happens in Finnish, but it’s possible to join without speaking the language.</p><p><b>Schedule:</b><br>Mon 2 June, 5:30–6:15 pm – cha cha<br>Mon 9 June, 5:30–6:15 pm – waltz<br>Mon 16 June, 5:30–6:15 pm – humppa<br>Mon 23 June, 5:30–6:15 pm – fusku<br>Mon 30 June, 5:30–6:15 pm – foxtrot<br>Mon 7 July, 5:30–6:15 pm – tango<br>Mon 14 July, 5:30–6:15 pm – mazurka<br>Mon 21 July, 5:30–6:15 pm – samba<br>Mon 28 July, 5:30–6:15 pm – jenka<br>Mon 4 August, 5:30–6:15 pm – bachata</p><p>Language of instruction: Finnish</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65850/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65854", "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: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: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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 612868, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T11:13:17.879423Z", "last_modified_time": "2025-04-25T11:13:17.879447Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767682.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/612868/?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": "2025-04-25T11:13:17.785383Z", "last_modified_time": "2025-05-12T09:14:08.737007Z", "date_published": null, "start_time": "2025-06-02T08:00:00Z", "end_time": "2025-06-06T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kanneltalon maksuton kesätaidekerho lapsille", "sv": "Gamlasgårdens avgiftsfria sommarkonstklubb för barn", "en": "Free-of-charge summer art club for children at Kanneltalo" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Kaipaatko luovaa tekemistä kesälomalle? Tule Kanneltalon kesätaidekerhoon 2.–6.6.2025 klo 11–15!", "sv": "Önskar du kreativ verksamhet under sommarlovet? Kom till Gamlasgårdens sommarkonstklubb!", "en": "Do you need something creative to do during your summer break? Come to the summer art club at Kanneltalo!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/212C7163229ADC95961431531F45E43D/Kanneltalon_maksuton_kesataidekerho_lapsille_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/212C7163229ADC95961431531F45E43D/Gamlasgardens_avgiftsfria_sommarkonstklubb_for_barn_", "en": "http://www.kanneltalo.fi/en/events/event/212C7163229ADC95961431531F45E43D/Free-of-charge_summer_art_club_for_children_at_Kanneltalo_" }, "description": { "fi": "<p>Kaipaatko luovaa tekemistä kesälomalle? Tule Kanneltalon kesätaidekerhoon 2.–6.6.2025 klo 11–15!</p><p>Teemat ja tekniikat vaihtelevat kerrasta toiseen. Tarjolla on myös pientä välipalaa kaikille taidekerhoon osallistuville.<br> <br>Taidekerhon non-stop-toiminta on suunniteltu kesälomalla oleville alakouluikäisille, nuoremmat lapset ovat tervetulleita yhdessä aikuisen kanssa.</p><p><b>KESÄTAIDEKERHON VIIKKO-OHJELMA:</p><p>ma 2.6. klo 11–15 Pikimustan ja vitivalkoisen kohtaaminen</b><br>Pikimusta tussi ja vesi kohtaavat paperilla! Hengähdä hetki ja nauti, miten kauniisti tussi elää ja liikkuu paperilla.</p><p><b>ti 3.6. klo 11–15 Värjätty suola, katoava kuva</b><br>Värjäämme yhdessä suolaa liiduilla. Värisuolasta jokainen saa luoda omia herkkiä kuvioita, jotka ovat olemassa vain hetken. Mukaan sen saa vain valokuvaamalla!</p><p><b>ke 4.6. klo 11–15 Rei´itetty kuva </b><br>Rei’ittämällä kartonkikorttia nuppineulalla luomme herkän kuvan tai kuvion. Pistävä menetelmä!</p><p><b>to 5.6. klo 11–15 Kukan muotokuva</b><br>Tällä kerralla luonnostelemme kukkia piirtäen ja maalaten.</p><p><b>pe 6.6. klo 11–15 -- --- .. ..--. (MOI!)</b><br>Tehdään salainen viesti korulla! Morsetusaakkosten avulla saat kääntää vaikkapa oman nimesi sähkötyskielelle ja sitten tehdä sen helmillä koruun!</p><p>Ohjaajana kuvataiteilija Chloé Mahy-Hulkko <br>Opetuskielet: suomi, englanti, ranska</p><p>Vapaa pääsy</p>", "sv": "<p>Önskar du kreativ verksamhet under sommarlovet? Kom till Gamlasgårdens sommarkonstklubb!</p><p>Temana och teknikerna varierar från gång till gång. Det bjuds även på lite mellanmål för alla som deltar i konstklubben.<br> <br>Konstklubbens non-stop-verksamhet har planerats för elever i årskurs 1–6 som är på sommarlov, yngre barn är välkomna tillsammans med en vuxen.</p><p><b>VECKOPROGRAMMET FÖR SOMMARKONSTKLUBBEN<br>må 2.6 kl.11–15 Becksvart och kritvitt möts</b><br>Becksvart tusch och vatten möts på pappret! Andas en stund och njut av hur vackert tuschen lever och rör sig på pappret.</p><p>tis 3.6 kl.11–15 Färgat salt, flyktig bild</b><br>Tillsammans färgar vi salt med kritor. Av färgsaltet får vi skapa våra egna känsliga figurer som endast existerar en stund. Du kan ta med den endast på ett foto.</p><p><b>on 4.6 kl.11–15 Bild med hål</b> <br>Genom att sticka hål på ett kartongkort med en knappnål skapar vi en fin bild eller figur. En stickande metod!</p><p><b>to 5.6 kl.11–15 Porträtt av en blomma</b><br>Den här gången skissar vi blommor genom att teckna och måla.</p><p><b>fr 6.6 kl.11–15 -- --- .. ..--. (MOI!)</b><br>Vi gör ett hemligt meddelande med ett smycket. Med hjälp av morsealfabetet kan du översätta till exempel ditt namn till morsekod och använda pärlor för att göra ett smycke av det.</p><p>Instruktör bildkonstnär Chloé Mahy-Hulkko. <br>Undervisningsspråk: finska, engelska, franska <br> <br>Plats: Bibliotekets allaktivitetsrum Tempo/Galleriet <br>Fritt inträde</p>", "en": "<p>Do you need something creative to do during your summer break? Come to the summer art club at Kanneltalo!</p><p>We will explore different themes and techniques each time. Small snacks will be served to participants.<br> <br>The non-stop art club activities are intended for primary school children who are on summer break; younger children are welcome when accompanied by an adult.</p><p><b>SUMMER ART CLUB WEEKLY PROGRAMME</p><p>2.6. at 11–15 Pitch black and chalk white meet </b><br>Pitch black ink and water meet on paper! Take a moment to marvel at how gracefully the ink lives and moves on the paper.</p><p><b>3.6. at 11–15 Dyed Salt, Vanishing Image</b><br>We will learn how to colour salt with chalks. We will then use the tinted salts to create delicate patterns. Those ephemeral art pieces can´t be brought home, except by taking a picture.</p><p><b>4.6. at 11–15 Perforated Image</b><br>By perforating a card, we will create a beautiful pattern or a drawing. This is a sharp technique!</p><p><b>5.6. at 11–15 Portrait of a Flower</b><br>This time we will sketch flowers by drawing and painting.</p><p><b>6.6. at 11–15 -- --- .. ..--. (MOI!)</b><br>Write a secret message on your necklace! Using Morse code, you can translate, for example, the letters of your name, and write it with beads on a string!</p><p>Instructor: visual artist Chloé Mahy-Hulkko <br>Teaching languages: Finnish, English, French <br> <br>Location: Library multi-purpose room Tempo/Galleria <br>Free entry</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65854/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66238", "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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 744619, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-12T07:13:05.106050Z", "last_modified_time": "2025-05-12T07:13:05.106066Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772931.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/744619/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-12T07:13:04.985662Z", "last_modified_time": "2025-05-12T07:13:05.229298Z", "date_published": null, "start_time": "2025-05-22T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ni Jui Hsin (Zuiko) | Arabic Ensemble – Sibelius-Akatemian Global Music esittää", "sv": "Ni Jui Hsin (Zuiko) | Arabic Ensemble", "en": "Ni Jui Hsin (Zuiko) | Arabic Ensemble – Presented by Global Music students of the Sibelius Academy" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tervetuloa viettämään yhdessä iltaa, jossa mantereet yhdistyvät sielukkain jousisoittimin.", "en": "Welcome for an evening that bridges continents through string and soul." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/60B598E077F01147B8C5778D16926E5B/Ni_Jui_Hsin_Zuiko_Arabic_Ensemble", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/60B598E077F01147B8C5778D16926E5B/Ni_Jui_Hsin_Zuiko_Arabic_Ensemble", "en": "http://www.kanneltalo.fi/en/events/event/60B598E077F01147B8C5778D16926E5B/Ni_Jui_Hsin_Zuiko_Arabic_Ensemble" }, "description": { "fi": "<p>Tervetuloa viettämään yhdessä iltaa, jossa mantereet yhdistyvät sielukkain jousisoittimin.</p><p>Life & Strings ja Arabic Ensemble tarjoilevat elämää pulppuavia esityksiä artisteilta, jotka sekoittavat musiikissaan syviä perinteitä maailmanlaajuisiin nykyvaikutteisiin.</p><p><b>Life & Strings</b><br>Ni Jui Hsin (Zuiko) on tsugarushamisenin soittaja Taiwanista. Hän aloitti shamisenin soiton 2015, erikoistuen japanilaiseen tsugarushamiseniin. Musiikissaan hän yhdistää elementtejä japanilaisesta folkista, popista, rockista sekä omista sävellyksistään.</p><p>Tällä hetkellä Zuiko opiskelee Suomessa Sibelius-Akatemian Global Music -osastolla, tavoitteenaan yhdistää musiikin elementtejä ympäri maailmaa ja kehittää uutta musiikkityyliä shamisen-instrumentin ympärille.</p><p><b>Arabic Ensemble</b><br>Arabic music enseble on yhtye, jota vetää Global Musicin lehtori Nemat Battah. Tässä yhtyeessä yhdistyvät opiskelijat eri musikaalisista sekä kulttuurillisista taustoista, tullen yhteen soittamaan pääasiassa 1800- ja 1900-luvuilla sävellettyä arabimusiikkia Välimeren alueelta.</p><p>Tämä maksuton konsertti on osa vuosittaista Global Spring -festivaalia. Kyseisessä festivaalissa esiintyvät Sibelius-Akatemian Global Music -koulutusohjelman opiskelijat, opettajat, alumnit sekä ohjelmaa edustavat erikoisvieraat. Global Music vaalii moniarvoista sekä joustavaa lähestymistapaa soundiin, kulttuuriin ja identiteettiin, luoden uudenlaista musiikkia monikulttuurisen dialogin ja yhteistyön kautta.</p><p>Kesto: 2,5 tuntia<br>Vapaa pääsy</p>", "en": "<p>Welcome for an evening that bridges continents through string and soul.</p><p>Life & Strings and Arabic Ensemble are showcasing vibrant performances from artists who blend deep-rooted traditions with contemporary global influences.</p><p><b>Life & Strings<br>Ni Jui Hsin (Zuiko) </b><br>Tsugarushamisen Player from Taiwan. Began studying Shamisen in 2015, specializing in the use of Japan's Tsugaru Shamisen. Combines elements of Japanese traditional folk, pop, rock, and original compositions.</p><p>Currently enrolled in the Global Music department at the Sibelius Academy in Finland, aiming to integrate musical elements from around the world and develop a new style of Shamisen music.</p><p><b>Arabic Ensemble</b><br>Arabic music ensemble is a Global Music Ensemble led by Lecturer Nemat Battah. In this ensemble, students from different musical and cultural backgrounds learn to play Arabic music from the eastern Mediterranean region that was mostly composed in 19th & 20th century.</p><p>This concert is part of Global Spring.<br>Global Spring is an annual festival featuring students, teachers, alumni and special guests representing Sibelius Academy’s Global music programme. The global music studies embraces pluralistic, fluid approaches to sound, culture and identity, creating new hybrid musical spaces through intercultural dialogue and collaboration.</p><p>Duration: 2,5 hours<br>Free entry</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66238/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19036784", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036784/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036784/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036784/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.124713Z", "last_modified_time": "2025-02-17T11:16:42.124728Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:18.521317Z", "last_modified_time": "2025-05-10T23:16:11.603412Z", "date_published": null, "start_time": "2025-05-10T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Moulin Rouge! Musikaali" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "short_description": { "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin," }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en" }, "description": { "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Wilhelm Blomberg, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>", "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036784/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19036785", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036785/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036785/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036785/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.124713Z", "last_modified_time": "2025-02-17T11:16:42.124728Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:17.945621Z", "last_modified_time": "2025-05-10T23:16:11.478409Z", "date_published": null, "start_time": "2025-05-10T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Moulin Rouge! Musikaali" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "short_description": { "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin," }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en" }, "description": { "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Wilhelm Blomberg, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>", "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036785/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19569267", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3790487/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569267/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569267/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569267/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235448, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:17:13.489586Z", "last_modified_time": "2025-02-17T11:17:13.489604Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/agora_hkt_222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235448/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:18.625710Z", "last_modified_time": "2025-05-10T21:17:06.790564Z", "date_published": null, "start_time": "2025-05-10T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Agora - Kaksi Merenneitoa Tyhjässä Altaassa" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Studio Pasila" }, "short_description": { "fi": "Minna Lund & työryhmä AGORA - KAKSI MERENNEITOA TYHJÄSSÄ ALTAASSA Agora – kaksi merenneitoa tyhjässä altaassa on kuriton esitys, jossa lahjoituksena saadun pats" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=en" }, "description": { "fi": "<p> Minna Lund & työryhmä<br><strong>AGORA - KAKSI MERENNEITOA TYHJÄSSÄ ALTAASSA</strong></p><p> <br> Agora – kaksi merenneitoa tyhjässä altaassa on kuriton esitys, jossa lahjoituksena saadun patsaan julkistustilaisuus eskaloituu yleisön mukaansa tempaavaksi kyltymättömäksi vesileikiksi.</p><p> <br> Helsingin Kaupunginteatterin eteen on ilmestynyt tuntemattoman taiteilijan arvoituksellinen taidelahjoitus. Lahjoituksen myötä teatteriin on perustettu kiireen vilkkaa patsastoimikunta, jonka jäsenet ovat päättäneet pitää veistoksen ja pystyttää sen väliaikaisesti studio Pasilan näyttämölle. Veistoksen mielleyhtymät radikaalista ystävyydestä ovat kuitenkin uineet toimikunnan sydämiin, ja nyt toimikunta haluaa omistaa veistoksen Helsingin Kaupunginteatterin uskolliselle yleisölle</p><p> <br> <br> Kutsu: Lämpimästi tervetuloa Agora – kaksi merenneitoa tyhjässä altaassa -patsaan julkistustilaisuuteen</p><p> Pyydämme kunnioittaen Teitä, Helsingin Kaupunginteatterin arvovaltainen katsoja, läsnä olemaan julkistustilaisuudessa studio Pasilassa keväällä 2025. Luvassa on puheita, musiikkia, ja muita juhlallisuuksia.</p><p> Astukaa Agoralle ja tulkaa kohottamaan kanssamme taiteen ylitsevuotava malja!</p><p> Kyltymättöminä odotamme Teitä,</p><p> Patsastoimikunta:<br>Kari Arffman (teatterinjohtaja),<br>Leenamari Unho (kiinnitetty näyttelijä),<br>Riikka Thitz (Nykyesityksen näyttämön kuraattori)</p><p>*Agora (m.kreik. ἀγορά)<br>subst. kauppa-aukio tai kokoontumispaikka vars. kaupungeissa tm. asutuskeskuksissa; yl. aukio.</p><p> </p><p> Esiintyjät: Emelie Zilliacus, Salla Loper, Leenamari Unho</p><p> Ohjaaja: Minna Lund<br>Lavastaja: Riku Suvitie<br>Pukusuunnittelija: Ella Snellman<br>Valosuunnittelija: Tuomas Honkanen<br>Äänisuunnittelija: Axel Ridberg<br>Naamioinnin suunnittelu: Noora Laukkanen<br>Dramaturgi: Martta Jylhä</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19569267/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:serie-3790487", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "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/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569267/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569267/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569267/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19569259/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19569261/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19569260/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19569265/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19569264/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19569262/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19569263/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19569267/?format=api" } ], "images": [ { "id": 235448, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:17:13.489586Z", "last_modified_time": "2025-02-17T11:17:13.489604Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/agora_hkt_222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235448/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:18.415295Z", "last_modified_time": "2025-05-10T20:17:17.492361Z", "date_published": null, "start_time": "2025-04-29T15:30:00Z", "end_time": "2025-05-10", "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, "name": { "fi": "Agora - Kaksi Merenneitoa Tyhjässä Altaassa" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Studio Pasila" }, "short_description": { "fi": "Minna Lund & työryhmä AGORA - KAKSI MERENNEITOA TYHJÄSSÄ ALTAASSA Agora – kaksi merenneitoa tyhjässä altaassa on kuriton esitys, jossa lahjoituksena saadun pats" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=en" }, "description": { "fi": "<p> Minna Lund & työryhmä<br><strong>AGORA - KAKSI MERENNEITOA TYHJÄSSÄ ALTAASSA</strong></p><p> <br> Agora – kaksi merenneitoa tyhjässä altaassa on kuriton esitys, jossa lahjoituksena saadun patsaan julkistustilaisuus eskaloituu yleisön mukaansa tempaavaksi kyltymättömäksi vesileikiksi.</p><p> <br> Helsingin Kaupunginteatterin eteen on ilmestynyt tuntemattoman taiteilijan arvoituksellinen taidelahjoitus. Lahjoituksen myötä teatteriin on perustettu kiireen vilkkaa patsastoimikunta, jonka jäsenet ovat päättäneet pitää veistoksen ja pystyttää sen väliaikaisesti studio Pasilan näyttämölle. Veistoksen mielleyhtymät radikaalista ystävyydestä ovat kuitenkin uineet toimikunnan sydämiin, ja nyt toimikunta haluaa omistaa veistoksen Helsingin Kaupunginteatterin uskolliselle yleisölle</p><p> <br> <br> Kutsu: Lämpimästi tervetuloa Agora – kaksi merenneitoa tyhjässä altaassa -patsaan julkistustilaisuuteen</p><p> Pyydämme kunnioittaen Teitä, Helsingin Kaupunginteatterin arvovaltainen katsoja, läsnä olemaan julkistustilaisuudessa studio Pasilassa keväällä 2025. Luvassa on puheita, musiikkia, ja muita juhlallisuuksia.</p><p> Astukaa Agoralle ja tulkaa kohottamaan kanssamme taiteen ylitsevuotava malja!</p><p> Kyltymättöminä odotamme Teitä,</p><p> Patsastoimikunta:<br>Kari Arffman (teatterinjohtaja),<br>Leenamari Unho (kiinnitetty näyttelijä),<br>Riikka Thitz (Nykyesityksen näyttämön kuraattori)</p><p>*Agora (m.kreik. ἀγορά)<br>subst. kauppa-aukio tai kokoontumispaikka vars. kaupungeissa tm. asutuskeskuksissa; yl. aukio.</p><p> </p><p> Esiintyjät: Emelie Zilliacus, Salla Loper, Leenamari Unho</p><p> Ohjaaja: Minna Lund<br>Lavastaja: Riku Suvitie<br>Pukusuunnittelija: Ella Snellman<br>Valosuunnittelija: Tuomas Honkanen<br>Äänisuunnittelija: Axel Ridberg<br>Naamioinnin suunnittelu: Noora Laukkanen<br>Dramaturgi: Martta Jylhä</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3790487/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:serie-3748841", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19777517/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19777517/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19777517/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350653/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350676/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350678/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350677/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350655/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350679/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350680/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350656/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350681/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350683/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350682/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19567118/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350658/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350659/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350660/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350684/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350661/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350685/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350662/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350688/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350663/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350664/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350665/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350666/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350693/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350695/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350694/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350667/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350696/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350697/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19720684/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19720685/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19777513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19777514/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19777515/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19777517/?format=api" } ], "images": [ { "id": 235431, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:41.456387Z", "last_modified_time": "2025-02-17T11:16:41.456408Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/eyp-lp-222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235431/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:18.281181Z", "last_modified_time": "2025-05-10T20:17:17.387619Z", "date_published": null, "start_time": "2025-02-20T16:30:00Z", "end_time": "2025-05-10", "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, "name": { "fi": "Eikä Yksikään Pelastunut" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "short_description": { "fi": "Agatha Christie Eikä yksikään pelastunut Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Agatha Christie<br><strong>Eikä yksikään pelastunut</strong></p><p>Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri. Tehokas, hyvin rakennettu ja perinteinen jännitysnäytelmä on Agatha Christietä parhaimmillaan.</p><p>Agatha Christien klassikkodekkari Eikä yksikään pelastunut vie Devonin rannikolle Soldier Islandille, jonne kymmenen ihmistä on saanut kutsun. Kun seurue saapuu paikalle, ilmenee, että isäntäpari ei ole vielä saapunut. Takan reunalta löytyy vanha loru kymmenestä sotilaspojasta sekä kymmenen sotilaspatsasta.</p><p>Lorussa jokainen sotilaspoika kuolee, yksi kerrallaan. Pian käynnistyy äänilevy, jossa jokaista vierasta ja talon palvelijoita syytetään murhista.</p><p>Sitten seurueen jäseniä alkaa kuolla.</p><p>Jokaisen kuolemantapauksen yhteydessä häviää yksi kymmenestä posliinisesta sotilaspoikapatsaasta.</p><p>Kunnes jäljellä ei ole yhtäkään.</p><p>Karmivan kiehtova dekkari tarjoaa intensiivisen parituntisen Arena-näyttämöllä, joka on todistanut paikkansa jännitysnäytelmien ykkösnäyttämönä. Arena-näyttämön intiimissä tunnelmassa nautittiin supersuosittu Agatha Christien Hiirenloukku syksyllä 2023.</p><p>Rooleissa: Anna Ackerman, Jesse Gyllenbögel, Heidi Herala, Arttu Kapulainen, Juha Jokela, Santeri Kinnunen, Jouko Klemettilä, Pertti Koivula, Jari Pehkonen Kaisa Torkkel, Mikko Virtanen</p><p>Kirjailija: Agatha Christie<br>Suomentaja: Aino Piirola<br>Ohjaus: Sakari Hokkanen<br>Lavastus: Katariina Kirjavainen<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Jaana Nykänen<br>Dramaturgi: Sanna Niemeläinen</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br>Lipunvälittäjä: Lippupiste Oy<br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748841/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19777517", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748841/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19777517/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19777517/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19777517/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235431, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:41.456387Z", "last_modified_time": "2025-02-17T11:16:41.456408Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/eyp-lp-222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235431/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:18.731673Z", "last_modified_time": "2025-05-10T20:16:29.686474Z", "date_published": null, "start_time": "2025-05-10T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Eikä Yksikään Pelastunut" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "short_description": { "fi": "Agatha Christie Eikä yksikään pelastunut Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Agatha Christie<br><strong>Eikä yksikään pelastunut</strong></p><p>Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri. Tehokas, hyvin rakennettu ja perinteinen jännitysnäytelmä on Agatha Christietä parhaimmillaan.</p><p>Agatha Christien klassikkodekkari Eikä yksikään pelastunut vie Devonin rannikolle Soldier Islandille, jonne kymmenen ihmistä on saanut kutsun. Kun seurue saapuu paikalle, ilmenee, että isäntäpari ei ole vielä saapunut. Takan reunalta löytyy vanha loru kymmenestä sotilaspojasta sekä kymmenen sotilaspatsasta.</p><p>Lorussa jokainen sotilaspoika kuolee, yksi kerrallaan. Pian käynnistyy äänilevy, jossa jokaista vierasta ja talon palvelijoita syytetään murhista.</p><p>Sitten seurueen jäseniä alkaa kuolla.</p><p>Jokaisen kuolemantapauksen yhteydessä häviää yksi kymmenestä posliinisesta sotilaspoikapatsaasta.</p><p>Kunnes jäljellä ei ole yhtäkään.</p><p>Karmivan kiehtova dekkari tarjoaa intensiivisen parituntisen Arena-näyttämöllä, joka on todistanut paikkansa jännitysnäytelmien ykkösnäyttämönä. Arena-näyttämön intiimissä tunnelmassa nautittiin supersuosittu Agatha Christien Hiirenloukku syksyllä 2023.</p><p>Rooleissa: Anna Ackerman, Jesse Gyllenbögel, Heidi Herala, Arttu Kapulainen, Juha Jokela, Santeri Kinnunen, Jouko Klemettilä, Pertti Koivula, Jari Pehkonen Kaisa Torkkel, Mikko Virtanen</p><p>Kirjailija: Agatha Christie<br>Suomentaja: Aino Piirola<br>Ohjaus: Sakari Hokkanen<br>Lavastus: Katariina Kirjavainen<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Jaana Nykänen<br>Dramaturgi: Sanna Niemeläinen</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br>Lipunvälittäjä: Lippupiste Oy<br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19777517/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19036783", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036783/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036783/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036783/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.124713Z", "last_modified_time": "2025-02-17T11:16:42.124728Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:17.713576Z", "last_modified_time": "2025-05-09T23:16:32.293028Z", "date_published": null, "start_time": "2025-05-09T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Moulin Rouge! Musikaali" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "short_description": { "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin," }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en" }, "description": { "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Wilhelm Blomberg, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>", "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036783/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66213", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/artist/resonaari-soi/resonaari-soi-konsertti-2025-3894134/" }, "description": null, "price": { "fi": "15-28 €, kannatuslippu 55 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721916, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:54:18.031082Z", "last_modified_time": "2025-05-09T13:54:18.031100Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772837.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721916/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-09T13:54:17.918459Z", "last_modified_time": "2025-05-09T13:54:18.167693Z", "date_published": null, "start_time": "2025-09-16T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Resonaari soi -konsertti 2025" }, "provider_contact_info": null, "provider": { "fi": "Resonaari / HelsinkiMissio" }, "location_extra_info": null, "short_description": { "fi": "Resonaari soi -konsertti 2025 – Innostavaa soittamisen iloa!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/BC52AC69E36DE30A0C5DA71CCC6E3AEE/Resonaari_soi_-konsertti_2025_" }, "description": { "fi": "<p>Resonaari soi -konsertti 2025 – Innostavaa soittamisen iloa!</p><p>Resonaari soi –konsertissa esiintyy yhteensä yli 70 Resonaarin musiikkiopiston oppilasta, jotka tekevät musiikkia omalla tinkimättömällä tyylillään. <br> <br>Resonaari on Suomen kiinnostavin ja inspiroivin musiikkiopisto. Helsingin Kulosaaressa treenaa viikoittain lähes 300 erityisryhmiin kuuluvaa muusikkoa. Resonaaria eivät kahlitse säännöt siitä, mitä voi, saa tai pitää tehdä. Määrätietoisella työllä Resonaari on todistanut, että oppimisen potentiaalia löytyy meistä jokaisesta. <br> <br>Tänä vuonna Resonaari täyttää 30-vuotta ja konsertissa luonnollisesti juhlistetaan myös synttäreitä! <br> <br>Resonaarissa kaikki soittaa!</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66213/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66282", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721913, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:54:15.194729Z", "last_modified_time": "2025-05-09T13:54:15.194746Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765936.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721913/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-09T13:54:15.038091Z", "last_modified_time": "2025-05-09T13:54:15.366328Z", "date_published": null, "start_time": "2025-06-26T16:00:00Z", "end_time": "2025-08-07T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kaupunkitanssit", "sv": "Stadsdans", "en": "Dancing in the City" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tervetuloa tanssimaan paritansseja Stoan aukiolle! Kaupunkitanssit tarjoaa maksutonta paritanssiopetusta kesäaikaan eri puolilla pääkaupunkiseutua.", "sv": "Gratis undervisning i pardanser på finska på Stoa genom hela sommaren, sammanlagt 7 gånger. Vid regn i Stoa entréhall.", "en": "Free-of-charge and Finnish-language partner dance teaching on Stoa Yard throughout the summer." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/BE395B03FF238D9AD99CAB9186EB684D/Kaupunkitanssit", "sv": "http://www.stoa.fi/sv/evenemang/event/BE395B03FF238D9AD99CAB9186EB684D/Stadsdans", "en": "http://www.stoa.fi/en/events/event/BE395B03FF238D9AD99CAB9186EB684D/Dancing_in_the_City" }, "description": { "fi": "<p>Tervetuloa tanssimaan paritansseja Stoan aukiolle! Kaupunkitanssit tarjoaa maksutonta paritanssiopetusta kesäaikaan eri puolilla pääkaupunkiseutua.</p><p>Kaupunkitanssit sopivat niin aloittelijoille kuin kokeneimmillekin tanssijoille, opetus mukautetaan aina osallistujien taitotasoon. Tanssimaan voi tulla yksin tai parin kanssa, eikä ennakkoilmoittautumista tarvita. Opetuksesta vastaavat koulutetut tanssinopettajat.</p><p><b>Tanssilajit:</b><br>to 26.6. klo 19.00–19.45 fusku <br>to 3.7. klo 19.00–19.45 humppa<br>to 10.7. klo 19.00–19.45 foksi <br>to 17.7. klo 19.00–19.45 valssi<br>to 24.7. klo 19.00–19.45 cha cha <br>to 31.7. klo 19.00–19.45 jenkka <br>to 7.8. klo 19.00–19.45 tango</p><p>\"Kaupunkitanssien kaltaiset matalan kynnyksen tapahtumat tuovat tanssin ilon kaikkien ulottuville!\"<br>– Kävijäpalaute<br> <br>Sadesäällä tanssitaan Stoan aulassa.</p><p>Kaupunkitanssit järjestää Tanssiteatteri Tsuumi yhteistyössä Stoan kanssa.</p>", "sv": "<p>Gratis undervisning i pardanser på finska på Stoa genom hela sommaren, sammanlagt 7 gånger. Vid regn i Stoa entréhall.</p><p>Stadsdanserna passar både nybörjare och erfarna dansare, undervisningen anpassas alltid till deltagarnas färdighetsnivå. Du kan komma för att dansa ensam eller med din partner, och det behövs ingen förhandsanmälan.</p><p>”Lågtröskelevenemang som stadsdanserna gör att alla får ta del av dansglädjen!”</p><p>Utbildade danslärare svarar för undervisningen. Vid regnväder dansar vi i entréhallen i Stoa.</p><p>Dansteatern Tsuumi arrangerar stadsdanserna i samarbete med Stoa.</p><p><b>UNDERVISNINGSPROGRAM</b><br>tors 26.6 kl. 19.00–19.45 bugg<br>tors 3.7 kl. 19.00–19.45 humppa<br>tors 10.7 kl. 19.00–19.45 foxtrot<br>tors 17.7 kl. 19.00–19.45 vals<br>tors 24.7 kl. 19.00–19.45 cha-cha<br>tors 31.7 kl. 19.00–19.45 jenka<br>tors 7.8 kl. 19.00–19.45 tango</p>", "en": "<p>Free-of-charge and Finnish-language partner dance teaching on Stoa Yard throughout the summer.</p><p>The teaching happens in Finnish, but it’s possible to join without speaking the language.<br> <br>If it rains, lessons will be held in Stoa lobby.</p><p><b>SCHEDULE</b><br>Thu 26 June, 7:00–7:45 PM – bugg<br>Thu 3 July, 7:00–7:45 PM – humppa<br>Thu 10 July, 7:00–7:45 PM – foxtrot<br>Thu 17 July, 7:00–7:45 PM – waltz<br>Thu 24 July, 7:00–7:45 PM – cha-cha<br>Thu 31 July, 7:00–7:45 PM – schottische<br>Thu 7 August, 7:00–7:45 PM – tango</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66282/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66185", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 690738, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T10:13:17.829462Z", "last_modified_time": "2025-05-05T10:13:17.829481Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771199.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/690738/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-05T10:13:17.755600Z", "last_modified_time": "2025-05-09T13:54:03.737847Z", "date_published": null, "start_time": "2025-05-22T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Sweet Fork – Open Stage", "sv": "Sweet Fork – Open Stage", "en": "Sweet Fork – Open Stage" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Ahoi! Sweet Fork on neljän maakravun meriaiheista folk-musiikkia esittävä yhtye.", "sv": "Ohoi! Sweet Fork är en grupp med fyra landkrabbor som spelar maritim folkmusik.", "en": "Ahoy! Sweet Fork is a sea themed folk band of four landlubbers." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C4ACC60615FCCD9DFBE4C6F99CE1BCB9/Sweet_Fork", "sv": "http://www.espanlava.fi/sv/evenemang/event/C4ACC60615FCCD9DFBE4C6F99CE1BCB9/Sweet_Fork", "en": "http://www.espanlava.fi/en/events/event/C4ACC60615FCCD9DFBE4C6F99CE1BCB9/Sweet_Fork" }, "description": { "fi": "<p>Ahoi! Sweet Fork on neljän maakravun meriaiheista folk-musiikkia esittävä yhtye.</p><p>Ohjelmistomme koostuu pääosin originaaleista sävellyksistä, jotka ottavat vaikutteita perinteisistä merimieslauluista ja kansanmusiikista. Luvassa on taattua meritunnelmaa myrskyisistä aalloista seesteiseen tyveneen unohtamatta rommin huuruisia yhteislauluja.</p><p>Viulun, kitaran, buzukin sekä concertinan harmonia menee takuulla jalan alle! Liity purjehduksellemme halki seitsemän meren!</p>", "sv": "<p>Ohoi! Sweet Fork är en grupp med fyra landkrabbor som spelar maritim folkmusik.</p><p>Vårt programutbud består huvudsakligen av originella kompositioner som tar intryck av traditionella sjömanssånger och folkmusik. Garanterad maritim stämning från stormvågor till stiltje utan att glömma allsång med en nypa romånga utlovas.</p><p>Harmonin av fiol, gitarr, buzuk och concertina får garanterat foten att vippa! Kom med på vår seglats genom de sju haven!</p>", "en": "<p>Ahoy! Sweet Fork is a sea themed folk band of four landlubbers.</p><p>Our repertoire consists of mostly original songs that take inspiration from the sea shanties and maritime songs of old. Let the folky vibes take you from stormy waves to the calm seas.</p><p>The combined harmonies of violin, guitar, bouzouki and concertina will guarantee to make you stomp your feet! Join us on our journey through the seven seas!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66185/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66289", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721905, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:54:01.600312Z", "last_modified_time": "2025-05-09T13:54:01.600330Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768378.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721905/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2025-05-09T13:54:01.486387Z", "last_modified_time": "2025-05-09T13:54:01.765280Z", "date_published": null, "start_time": "2025-05-18T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ääntä kohti – Lastenkulttuurin juhlaviikko", "sv": "Ääntä kohti – Barnkulturveckan", "en": "Ääntä kohti – Children's Culture Week" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Otava-teatterikurssin 13-15-vuotiaat oppilaat ovat tehneet tämän esityksen.", "sv": "Det här uppträdandet har gjorts av 13–15-åriga elever från teaterkursen Otava.", "en": "This performance was created by the 13–15-year-old students of the Otava theatre course." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/588C5CCD1C7EA4CF20FCBF793578181C/Aanta_kohti", "sv": "http://www.annantalo.fi/sv/evenemang/event/588C5CCD1C7EA4CF20FCBF793578181C/Aanta_kohti", "en": "http://www.annantalo.fi/en/events/event/588C5CCD1C7EA4CF20FCBF793578181C/Aanta_kohti" }, "description": { "fi": "<p>Otava-teatterikurssin 13-15-vuotiaat oppilaat ovat tehneet tämän esityksen.</p><p>Miltä tuntuu, kun kadottaa kyvyn kuunnella itseään? Mitä tapahtuu, jos päätökset perustuvat toisten mielipiteisiin? Entä miten löytää oma äänensä uudelleen? Ääntä kohti on ryhmälähtöisesti työstetty esitys itsensä kadottamisesta, ystävyydestä ja uusista aluista.</p><p>Esitykset ke 14.5. klo 18.30 ja su 18.5. klo 14</p><p>Ohjaaja: Karoliina Helminen</p><p>Esityksiin on vapaa pääsy. Varaa paikat tällä lomakkeella:</p><p>https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Voit varata kerralla paikan useampaan esitykseen ja useammalle henkilölle.</p>", "sv": "<p>Det här uppträdandet har gjorts av 13–15-åriga elever från teaterkursen Otava.</p><p>Hur känns det att förlora förmågan att lyssna på sig själv? Vad händer när dina beslut baseras på andras åsikter? Och hur hittar man sin röst igen? Towards a voice är en gruppbaserad föreställning om att förlora sig själv, vänskap och nystart.</p><p>Föreställningar ons 14.5. kl. 18.30 och sön 18.5. kl. 14.00</p><p>Regi: Karoliina Helminen</p><p>Det är fritt inträde till föreställningarna. Boka dina platser med detta formulär: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Du kan boka platser för flera föreställningar och för flera personer åt gången.</p>", "en": "<p>This performance was created by the 13–15-year-old students of the Otava theatre course.</p><p>How does it feel to lose the ability to listen to yourself? What happens when your decisions are based on the opinions of others? And how do you find your voice again? Towards a voice is a group-based presentation about losing yourself, friendship and new beginnings.</p><p>Performances on Wed 14.5. at 18.30 and Sun 18.5. at 14.00</p><p>Directed by Karoliina Helminen</p><p>Admission to the performances is free. Book your seats using this form: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>You can book seats for more than one performance and for more than one person at a time.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66289/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66287", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721904, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:54:01.162923Z", "last_modified_time": "2025-05-09T13:54:01.162941Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768376.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721904/?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": "2025-05-09T13:54:01.052203Z", "last_modified_time": "2025-05-09T13:54:01.328204Z", "date_published": null, "start_time": "2025-05-18T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kulkijat – Lastenkulttuurin juhlaviikko", "sv": "Kulkijat (Resenärer) – Barnkulturveckan", "en": "Kulkijat (Travellers) – Children's Culture Week" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Värisevät varpaat-tanssikurssin 7-17-vuotiaat oppilaat ovat tehneet tämän esityksen.", "sv": "Det här uppträdandet har gjorts av 7–17-åriga elever från danskursen Värisevät varpaat.", "en": "This performance was created by the 7–17-year-old students of the Värisevät varpaat dance course." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/947EC1B670C2D42DA87BDF6D87C3D865/Kulkijat", "sv": "http://www.annantalo.fi/sv/evenemang/event/947EC1B670C2D42DA87BDF6D87C3D865/Kulkijat_Resenarer_", "en": "http://www.annantalo.fi/en/events/event/947EC1B670C2D42DA87BDF6D87C3D865/Kulkijat_Travellers_" }, "description": { "fi": "<p>Värisevät varpaat-tanssikurssin 7-17-vuotiaat oppilaat ovat tehneet tämän esityksen.</p><p>Koko vuoden kuljimme eri paikoissa, kuljimme ajassa. Nyt kuljemme näyttämöllä. Ja kohta kuljemme taas eteenpäin. Näyttämöteoksen rinnalla syntyi kuvateos ”Kaiut ja kulkijat”. Se on nähtävissä Annantalon Gallerian näyttelyssä ”Huudetaanko?”.</p><p>Esitykset ke 14.5. klo 17.30 ja su 18.5. klo 13</p><p>Ohjaajat: Sanna Kuusisto ja Miila Vainio</p><p>Esityksiin on vapaa pääsy. Varaa paikat tällä lomakkeella:</p><p>https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Voit varata kerralla paikan useampaan esitykseen ja useammalle henkilölle.</p>", "sv": "<p>Det här uppträdandet har gjorts av 7–17-åriga elever från danskursen Värisevät varpaat.</p><p>Nu går vi på scenen. Och snart kommer vi att röra oss framåt igen. Parallellt med scenarbetet skapades det illustrerade verket ”Kaiut ja kulkijat”. Det kan ses i Annegårdens galleris utställning ”Huudetaanko?”.</p><p>Föreställningar ons 14.5 kl. 17.30 och sön 18.5 kl. 13.00</p><p>Regi: Sanna Kuusisto och Miila Vainio</p><p>Det är fritt inträde till föreställningarna. Boka dina platser med detta formulär: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Du kan boka platser för flera föreställningar och för flera personer åt gången.</p>", "en": "<p>This performance was created by the 7–17-year-old students of the Värisevät varpaat dance course.</p><p>Now we walk on stage. And soon we'll be moving forward again. Alongside the stage work, the illustrated work ‘Echoes and Travellers’ was created. It can be seen in the Annantalo Gallery's exhibition ‘Huudetaanko?’.</p><p>Performances Wed 14.5. at 17.30 and Sun 18.5. at 13</p><p>Directed by Sanna Kuusisto and Miila Vainio</p><p>Admission to the performances is free. Book your seats using this form: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>You can book seats for more than one performance and for more than one person at a time.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66287/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66291", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721903, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:54:00.181444Z", "last_modified_time": "2025-05-09T13:54:00.181466Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768377.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721903/?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": "2025-05-09T13:54:00.059821Z", "last_modified_time": "2025-05-09T13:54:00.358446Z", "date_published": null, "start_time": "2025-05-18T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Sateen ropinaa, äänihäiriköitä ja omantunnon kolkutusta – Lastenkulttuurin juhlaviikko", "sv": "Sateen ropinaa, äänihäiriköitä ja omantunnon kolkutusta – Barnkulturveckan", "en": "Sateen ropinaa, äänihäiriköitä ja omantunnon kolkutusta – Children's Culture Week" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Andromeda-teatterikurssin 10-12-vuotiaat oppilaat ovat tehneet tämän esityksen.", "sv": "Det här uppträdandet har gjorts av 10–12-åriga elever från teaterkursen Andromeda.", "en": "This performance was created by the 10–12-year-old students of the Andromeda theatre course." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C4B826D4D49BB5BA6D8ED9FFF29724FF/Sateen_ropinaa_aanihairikoita_ja_omantunnon_kolkutusta", "sv": "http://www.annantalo.fi/sv/evenemang/event/C4B826D4D49BB5BA6D8ED9FFF29724FF/Sateen_ropinaa_aanihairikoita_ja_omantunnon_kolkutusta", "en": "http://www.annantalo.fi/en/events/event/C4B826D4D49BB5BA6D8ED9FFF29724FF/Sateen_ropinaa_aanihairikoita_ja_omantunnon_kolkutusta" }, "description": { "fi": "<p>Andromeda-teatterikurssin 10-12-vuotiaat oppilaat ovat tehneet tämän esityksen.</p><p>Mikä on lempiäänesi? Entä millainen ääni ärsyttää sinua? Millaisia ääneen liittyviä muistoja sinulla on? Esitys on syntynyt ääneen liittyvistä ajatuksista, muistoista ja keksityistä tilanteista.</p><p>Esitykset to 15.5. klo 17.30 ja su 18.5. klo 12</p><p>Ohjaaja: Karoliina Helminen</p><p>Esityksiin on vapaa pääsy. Varaa paikat tällä lomakkeella:</p><p>https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Voit varata kerralla paikan useampaan esitykseen ja useammalle henkilölle.</p>", "sv": "<p>Det här uppträdandet har gjorts av 10–12-åriga elever från teaterkursen Andromeda.</p><p>Vilken typ av ljud irriterar dig? Vad har du för ljudrelaterade minnen? Föreställningen föds ur tankar, minnen och fiktiva situationer som har med ljud att göra.</p><p>Föreställningar tors 15.5. kl. 17.30 och sön 18.5. kl. 12.00</p><p>Regi: Karoliina Helminen</p><p>Det är fritt inträde till föreställningarna. Boka dina platser med detta formulär: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Du kan boka platser för flera föreställningar och för flera personer åt gången.</p>", "en": "<p>This performance was created by the 10–12-year-old students of the Andromeda theatre course.</p><p>What kind of sound annoys you? What kind of sound-related memories do you have? The performance is born out of thoughts, memories and fictional situations related to sound.</p><p>Performances on Thu 15.5. at 17.30 and Sun 18.5. at 12.</p><p>Directed by Karoliina Helminen</p><p>Admission to the performances is free. Book your seats using this form: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>You can book seats for more than one performance and for more than one person at a time.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66291/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66293", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 721902, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-09T13:53:59.492412Z", "last_modified_time": "2025-05-09T13:53:59.492431Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768374.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721902/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2025-05-09T13:53:59.378547Z", "last_modified_time": "2025-05-09T13:53:59.652014Z", "date_published": null, "start_time": "2025-05-17T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Meistä, kärpäsistä – Lastenkulttuurin juhlaviikko", "sv": "Meistä, kärpäsistä – Barnkulturveckan", "en": "Meistä, kärpäsistä – Children's Culture Week" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Komeetta-teatterikurssin 16-18-vuotiaat oppilaat ovat tehneet tämän esityksen.", "sv": "Det här uppträdandet har gjorts av 16–18-åriga elever från teaterkursen Komeetta.", "en": "This performance was created by the 16–18-year-old students of the Komeetta theatre course." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/AF52C70E0D0C7FAAEE9F5B21395419BA/Meista_karpasista", "sv": "http://www.annantalo.fi/sv/evenemang/event/AF52C70E0D0C7FAAEE9F5B21395419BA/Meista_karpasista", "en": "http://www.annantalo.fi/en/events/event/AF52C70E0D0C7FAAEE9F5B21395419BA/Meista_karpasista" }, "description": { "fi": "<p>Komeetta-teatterikurssin 16-18-vuotiaat oppilaat ovat tehneet tämän esityksen.</p><p>Komeetan tulkinnassa näytelmä Meistä kärpäsistä on kertomus nuoresta potilaasta, joka muistojensa ja uniensa kautta löytää luottamuksen elämään. Näytelmä saa pohtimaan, mistä saamme voimaa nousta silloin, kun muutokset elämäntilanteissa lyövät meidät maahan.</p><p>Esitykset to 15.5. klo 18.30 ja la 17.5. klo 14</p><p>Ohjaus ja sovitus: Sari Tupamäki<br>Näytelmän kirjoittaja: Arda Salaniemi<br>Näytelmän oikeuksia valvoo Nordic Drama Corner</p><p>Esityksiin on vapaa pääsy. Varaa paikat tällä lomakkeella:</p><p>https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Voit varata kerralla paikan useampaan esitykseen ja useammalle henkilölle.</p>", "sv": "<p>Det här uppträdandet har gjorts av 16–18-åriga elever från teaterkursen Komeetta.</p><p>Enligt Komets tolkning är pjäsen Om oss, om flugor berättelsen om en ung patient som hittar självförtroende i livet genom sina minnen och drömmar. Pjäsen får oss att reflektera över var vi hittar styrkan att resa oss när förändringar i våra liv slår ner oss.</p><p>Föreställningar tors 15.5. kl. 18.30 och lör 17.5. kl. 14.00</p><p>Regi och bearbetning av Sari Tupamäki<br>Manus av Arda Salaniemi<br>Rättigheterna till pjäsen kontrolleras av Nordic Drama Corner</p><p>Det är fritt inträde till föreställningarna. Boka dina platser med detta formulär: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Du kan boka platser för flera föreställningar och för flera personer åt gången.</p>", "en": "<p>This performance was created by the 16–18-year-old students of the Komeetta theatre course.</p><p>In Comet's interpretation, the play About us, about flies is the story of a young patient who finds confidence in life through his memories and dreams. The play makes us reflect on where we find the strength to rise up when changes in our lives knock us down.</p><p>Performances Thu 15.5. at 18.30 and Sat 17.5. at 14</p><p>Directed and adapted by Sari Tupamäki<br>Written by Arda Salaniemi<br>The rights to the play are controlled by Nordic Drama Corner</p><p>Admission to the performances is free. Book your seats using this form: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>You can book seats for more than one performance and for more than one person at a time.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66293/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26806, "next": "