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
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
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 normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_super_event=true&page=83
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=84", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=82" }, "data": [ { "id": "kulke:69407", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385163, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-15T11:13:43.709845Z", "last_modified_time": "2026-06-15T11:13:43.709865Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789858.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385163/?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": "2026-06-15T11:13:43.549797Z", "last_modified_time": "2026-08-24T10:22:58.405168Z", "date_published": null, "start_time": "2026-09-25T07:00:00Z", "end_time": "2026-09-25T09: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, "location_extra_info": null, "provider": null, "name": { "fi": "Vauvan päivä", "sv": "Babydagen", "en": "Baby’s Day" }, "description": { "fi": "<p>Valtakunnallinen Vauvan päivä -tapahtuma valtaa Vuotalon pe 25.9. aamupäivällä – hyvissä ajoin ennen päiväuniaikaa.</p><p>Aamupäivän aikana ohjelmaa järjestetään vauvoille ja heidän aikuisilleen Vuotalossa klo 10–12. Vauvan päivä toteutetaan yhteistyössä mm. neuvolan, seurakunnan, lapsiperheiden sosiaaliohjauksen, varhaiskasvatuksen, Vuosaaren kirjaston ja alueen Perhetalo Kajuutan kanssa.<br>Esitys on maksuton.</p><p>Kieli: suomi<br>Ikäsuositus: vauvat ja vauvaperheet<br>Vapaa pääsy</p>", "sv": "<p>Det nationella evenemanget Babydagen erövrar Nordhuset fredagen 25.9 på förmiddagen innan det är dags att sova middag.</p><p>Babydagen genomförs i samarbete med bland annat barnrådgivningen, församlingen, socialhandledningen för barnfamiljer, dagvården, lekparkerna, Nordsjö bilblioteket och områdets familjehus Kajutan. Program i Nordhusets aula kl. 10–12.</p>", "en": "<p>The national Baby’s Day event takes over Vuotalo on Frida y 25 September in the morning – well before naptime.</p><p>The Baby’s Day event is organised in cooperation with the child health clinic, the parish, social counselling for families with children, daycare, the local family house Kajuutta and play parks, among others. The programme takes place in the lobby of Vuotalo from 10.00 to 12.00.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Valtakunnallinen Vauvan päivä -tapahtuma valtaa Vuotalon pe 25.9. aamupäivällä – hyvissä ajoin ennen päiväuniaikaa.", "sv": "Det nationella evenemanget Babydagen erövrar Nordhuset fredagen 25.9 på förmiddagen innan det är dags att sova middag.", "en": "The national Baby’s Day event takes over Vuotalo on Frida y 25 September in the morning – well before naptime." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B9E88E6EE70EBCD3DFF3E928064EA216/Vauvan_paiva", "sv": "http://www.vuotalo.fi/sv/evenemang/event/B9E88E6EE70EBCD3DFF3E928064EA216/Babydagen", "en": "http://www.vuotalo.fi/en/events/event/B9E88E6EE70EBCD3DFF3E928064EA216/Baby_s_Day" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69407/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp7cnxelm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385753, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-11T12:24:32.830150Z", "last_modified_time": "2026-08-11T12:24:32.830164Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/41b7d945-fdf6-49be-a4ad-c286b9b0ffb5.jpg", "name": "", "cropping": "222,0,1079,856", "photographer_name": "", "alt_text": "Rumpukuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385753/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-11T13:37:45.605314Z", "last_modified_time": "2026-08-24T07:38:24.323975Z", "date_published": "2026-08-11T13:31:52.163000Z", "start_time": "2026-12-04T15:00:00Z", "end_time": "2026-12-04T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jamhörna", "en": "Jam Corner" }, "provider": null, "name": { "fi": "Rumpujamit", "sv": "Trumjam", "en": "Drum Jam" }, "description": { "fi": "<p>Tervetuloa rumpujameihin, jossa rentouttavat rytmit saavat unohtamaan arjen ja kiireen. Kaikki ovat tervetulleita, aikaisempaa soittokokemusta ei tarvita. Kirjastolla on djembejä joita voi lainata jamien ajaksi. Myös oman rummun voi tuoda mukaan.</p><p>Tapahtuma sopii kaikille rummuttamisesta ja rytmeistä kiinnostuneille.</p><p>Opetus suomeksi ja englanniksi.</p><p>Jameja vetää musiikkipedagogi Sakari Heikka.</p><p>#Djembe #rumpu #rentoutus</p>", "sv": "<p>Välkommen till trumjam, där avslappnande rytmer hjälper dig att glömma vardagen och stressen. Alla är välkomna och du behöver ingen tidigare erfarenhet av att spela. Biblioteket har djembe-trummor som du kan låna under jammet. Du kan också ta med din egen trumma.</p><p>Evenemanget passar alla som är intresserade av trummor och rytmer.</p><p>Undervisning på finska och engelska</p><p>Jammet leds av musikpedagog Sakari Heikka.</p><p>#Djembe #trumma #avkoppling</p>", "en": "<p>Welcome to a drum jam, where relaxing rhythms help you forget about everyday life and the hustle and bustle. Everyone is welcome, and no previous playing experience is required. The library has djembes that you can borrow for the duration of the jam. You are also welcome to bring your own drum.</p><p>The event is suitable for anyone interested in drumming and rhythm.</p><p>Instruction in Finnish and English</p><p>The jam is led by music pedagogue Sakari Heikka.</p><p>#Djembe #drumming #relaxation</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa rumpujameihin!", "sv": "Välkommen till trumjam!", "en": "Welcome to the drum jam!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp7cnxelm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqbtrtu2q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqbtrtvp4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385952, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-24T06:31:19.857040Z", "last_modified_time": "2026-08-24T06:31:19.857054Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/405bcffd-ea62-44be-94e9-12fa9bd1c413.png", "name": "Elmuska harjoittelee lauluiltaa varten.", "cropping": "164,0,959,794", "photographer_name": "", "alt_text": "Eläkeläisten kuoro laulaa yhdessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385952/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-08-19T11:00:58.965945Z", "last_modified_time": "2026-08-24T06:31:39.636946Z", "date_published": null, "start_time": "2026-09-02T14:30:00Z", "end_time": "2026-09-02T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": { "fi": "Elmuska ry", "sv": "Elmuska ry", "en": "Elmuska ry" }, "name": { "fi": "Matinkylän lauluilta", "sv": "Sångkväll i Mattby (på Finska)", "en": "Singing Together in Matinkylä (in Finnish)" }, "description": { "fi": "<p>Elmuska järjestää suositun yhteislaulutapahtuman kerran kuussa keskiviikkona Ison Omenan kirjastossa. 17:30-19:30</p><p>Joka kerta on vaihtuvat esilaulajat, mutta tunnelma on aina ihana ja laulut ikivihreitä.</p><p>Palkeet pitää vetreänä myös pieni juoma- ja herkuttelutauko kun Elmuska tarjoaa tilaisuudessa osallistujille aina väliaikaherkkuja.</p><p><br></p><p>Syksyn päivät ovat:</p><p>4.9. Karaoke</p><p>7.10. Sakari ja Lauri - kirjaston musiikkipedagogit</p><p>4.11.</p><p>9.12 Elmuskan joululauluja</p>", "sv": "<p>Elmuksen ordnar ett populärt allsångsevenemang en gång i månaden på onsdagar i Iso Omenas bibliotek kl. 17.30–19.30.</p><p>Varje gång leds allsången av olika försångare, men stämningen är alltid härlig och sångerna är välkända klassiker.</p><p>För att hålla sångrösten i form ordnas också en liten paus med dryck och tilltugg. Elmuska bjuder alltid deltagarna på något gott under evenemanget.</p><p>Höstens datum:</p><p>4.9 Karaoke</p><p>7.10 Sakari och Lauri, bibliotekets musikpedagoger</p><p>4.11</p><p>9.12 Elmuskas julsånger</p>", "en": "<p>Elmuska organizes a popular community sing-along event once a month on Wednesdays at Iso Omena Library from 5:30 pm to 7:30 pm.</p><p>Each event features different lead singers, but the atmosphere is always wonderful and the songs are timeless favorites.</p><p>To keep everyone's voice in good shape, there is also a short refreshment break. Elmuska always provides participants with treats during the event.</p><p>Autumn dates:</p><p>September 4: Karaoke</p><p>October 7: Sakari and Lauri, the library's music educators</p><p>November 4</p><p>December 9: Elmuska's Christmas Songs</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa laulamaan yhteislaulua Stagelle!", "sv": "Välkommen och sjunga allsång på stage! (på finska)", "en": "Welcome to sing together! (in Finnsih) " }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqbtrtu2q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqbtrtuha", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqbtrtvp4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385952, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-24T06:31:19.857040Z", "last_modified_time": "2026-08-24T06:31:19.857054Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/405bcffd-ea62-44be-94e9-12fa9bd1c413.png", "name": "Elmuska harjoittelee lauluiltaa varten.", "cropping": "164,0,959,794", "photographer_name": "", "alt_text": "Eläkeläisten kuoro laulaa yhdessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385952/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-08-19T11:00:59.111466Z", "last_modified_time": "2026-08-24T06:31:39.551615Z", "date_published": null, "start_time": "2026-10-07T14:30:00Z", "end_time": "2026-10-07T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": { "fi": "Elmuska ry", "sv": "Elmuska ry", "en": "Elmuska ry" }, "name": { "fi": "Matinkylän lauluilta", "sv": "Sångkväll i Mattby (på Finska)", "en": "Singing Together in Matinkylä (in Finnish)" }, "description": { "fi": "<p>Elmuska järjestää suositun yhteislaulutapahtuman kerran kuussa keskiviikkona Ison Omenan kirjastossa. 17:30-19:30</p><p>Joka kerta on vaihtuvat esilaulajat, mutta tunnelma on aina ihana ja laulut ikivihreitä.</p><p>Palkeet pitää vetreänä myös pieni juoma- ja herkuttelutauko kun Elmuska tarjoaa tilaisuudessa osallistujille aina väliaikaherkkuja.</p><p><br></p><p>Syksyn päivät ovat:</p><p>4.9. Karaoke</p><p>7.10. Sakari ja Lauri - kirjaston musiikkipedagogit</p><p>4.11.</p><p>9.12 Elmuskan joululauluja</p>", "sv": "<p>Elmuksen ordnar ett populärt allsångsevenemang en gång i månaden på onsdagar i Iso Omenas bibliotek kl. 17.30–19.30.</p><p>Varje gång leds allsången av olika försångare, men stämningen är alltid härlig och sångerna är välkända klassiker.</p><p>För att hålla sångrösten i form ordnas också en liten paus med dryck och tilltugg. Elmuska bjuder alltid deltagarna på något gott under evenemanget.</p><p>Höstens datum:</p><p>4.9 Karaoke</p><p>7.10 Sakari och Lauri, bibliotekets musikpedagoger</p><p>4.11</p><p>9.12 Elmuskas julsånger</p>", "en": "<p>Elmuska organizes a popular community sing-along event once a month on Wednesdays at Iso Omena Library from 5:30 pm to 7:30 pm.</p><p>Each event features different lead singers, but the atmosphere is always wonderful and the songs are timeless favorites.</p><p>To keep everyone's voice in good shape, there is also a short refreshment break. Elmuska always provides participants with treats during the event.</p><p>Autumn dates:</p><p>September 4: Karaoke</p><p>October 7: Sakari and Lauri, the library's music educators</p><p>November 4</p><p>December 9: Elmuska's Christmas Songs</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa laulamaan yhteislaulua Stagelle!", "sv": "Välkommen och sjunga allsång på stage! (på finska)", "en": "Welcome to sing together! (in Finnsih) " }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqbtrtuha/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqbtrttte", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqbtrtvp4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385952, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-24T06:31:19.857040Z", "last_modified_time": "2026-08-24T06:31:19.857054Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/405bcffd-ea62-44be-94e9-12fa9bd1c413.png", "name": "Elmuska harjoittelee lauluiltaa varten.", "cropping": "164,0,959,794", "photographer_name": "", "alt_text": "Eläkeläisten kuoro laulaa yhdessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385952/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-08-19T11:00:59.252248Z", "last_modified_time": "2026-08-24T06:31:39.341761Z", "date_published": null, "start_time": "2026-11-04T15:30:00Z", "end_time": "2026-11-04T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": { "fi": "Elmuska ry", "sv": "Elmuska ry", "en": "Elmuska ry" }, "name": { "fi": "Matinkylän lauluilta", "sv": "Sångkväll i Mattby (på Finska)", "en": "Singing Together in Matinkylä (in Finnish)" }, "description": { "fi": "<p>Elmuska järjestää suositun yhteislaulutapahtuman kerran kuussa keskiviikkona Ison Omenan kirjastossa. 17:30-19:30</p><p>Joka kerta on vaihtuvat esilaulajat, mutta tunnelma on aina ihana ja laulut ikivihreitä.</p><p>Palkeet pitää vetreänä myös pieni juoma- ja herkuttelutauko kun Elmuska tarjoaa tilaisuudessa osallistujille aina väliaikaherkkuja.</p><p><br></p><p>Syksyn päivät ovat:</p><p>4.9. Karaoke</p><p>7.10. Sakari ja Lauri - kirjaston musiikkipedagogit</p><p>4.11.</p><p>9.12 Elmuskan joululauluja</p>", "sv": "<p>Elmuksen ordnar ett populärt allsångsevenemang en gång i månaden på onsdagar i Iso Omenas bibliotek kl. 17.30–19.30.</p><p>Varje gång leds allsången av olika försångare, men stämningen är alltid härlig och sångerna är välkända klassiker.</p><p>För att hålla sångrösten i form ordnas också en liten paus med dryck och tilltugg. Elmuska bjuder alltid deltagarna på något gott under evenemanget.</p><p>Höstens datum:</p><p>4.9 Karaoke</p><p>7.10 Sakari och Lauri, bibliotekets musikpedagoger</p><p>4.11</p><p>9.12 Elmuskas julsånger</p>", "en": "<p>Elmuska organizes a popular community sing-along event once a month on Wednesdays at Iso Omena Library from 5:30 pm to 7:30 pm.</p><p>Each event features different lead singers, but the atmosphere is always wonderful and the songs are timeless favorites.</p><p>To keep everyone's voice in good shape, there is also a short refreshment break. Elmuska always provides participants with treats during the event.</p><p>Autumn dates:</p><p>September 4: Karaoke</p><p>October 7: Sakari and Lauri, the library's music educators</p><p>November 4</p><p>December 9: Elmuska's Christmas Songs</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa laulamaan yhteislaulua Stagelle!", "sv": "Välkommen och sjunga allsång på stage! (på finska)", "en": "Welcome to sing together! (in Finnsih) " }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqbtrttte/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqbtrtssm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqbtrtvp4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385952, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-24T06:31:19.857040Z", "last_modified_time": "2026-08-24T06:31:19.857054Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/405bcffd-ea62-44be-94e9-12fa9bd1c413.png", "name": "Elmuska harjoittelee lauluiltaa varten.", "cropping": "164,0,959,794", "photographer_name": "", "alt_text": "Eläkeläisten kuoro laulaa yhdessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385952/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-08-19T11:00:59.392613Z", "last_modified_time": "2026-08-24T06:31:39.247145Z", "date_published": null, "start_time": "2026-12-09T15:30:00Z", "end_time": "2026-12-09T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": { "fi": "Elmuska ry", "sv": "Elmuska ry", "en": "Elmuska ry" }, "name": { "fi": "Matinkylän lauluilta", "sv": "Sångkväll i Mattby (på Finska)", "en": "Singing Together in Matinkylä (in Finnish)" }, "description": { "fi": "<p>Elmuska järjestää suositun yhteislaulutapahtuman kerran kuussa keskiviikkona Ison Omenan kirjastossa. 17:30-19:30</p><p>Joka kerta on vaihtuvat esilaulajat, mutta tunnelma on aina ihana ja laulut ikivihreitä.</p><p>Palkeet pitää vetreänä myös pieni juoma- ja herkuttelutauko kun Elmuska tarjoaa tilaisuudessa osallistujille aina väliaikaherkkuja.</p><p><br></p><p>Syksyn päivät ovat:</p><p>4.9. Karaoke</p><p>7.10. Sakari ja Lauri - kirjaston musiikkipedagogit</p><p>4.11.</p><p>9.12 Elmuskan joululauluja</p>", "sv": "<p>Elmuksen ordnar ett populärt allsångsevenemang en gång i månaden på onsdagar i Iso Omenas bibliotek kl. 17.30–19.30.</p><p>Varje gång leds allsången av olika försångare, men stämningen är alltid härlig och sångerna är välkända klassiker.</p><p>För att hålla sångrösten i form ordnas också en liten paus med dryck och tilltugg. Elmuska bjuder alltid deltagarna på något gott under evenemanget.</p><p>Höstens datum:</p><p>4.9 Karaoke</p><p>7.10 Sakari och Lauri, bibliotekets musikpedagoger</p><p>4.11</p><p>9.12 Elmuskas julsånger</p>", "en": "<p>Elmuska organizes a popular community sing-along event once a month on Wednesdays at Iso Omena Library from 5:30 pm to 7:30 pm.</p><p>Each event features different lead singers, but the atmosphere is always wonderful and the songs are timeless favorites.</p><p>To keep everyone's voice in good shape, there is also a short refreshment break. Elmuska always provides participants with treats during the event.</p><p>Autumn dates:</p><p>September 4: Karaoke</p><p>October 7: Sakari and Lauri, the library's music educators</p><p>November 4</p><p>December 9: Elmuska's Christmas Songs</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa laulamaan yhteislaulua Stagelle!", "sv": "Välkommen och sjunga allsång på stage! (på finska)", "en": "Welcome to sing together! (in Finnsih) " }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqbtrtssm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqdfmc6ue", "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:p2739/?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:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385953, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-02T10:35:52.255232Z", "last_modified_time": "2026-07-02T10:35:52.255246Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/7e106c04-49f8-42eb-b396-f72774a6c13a.png", "name": "", "cropping": "0,1,600,601", "photographer_name": "Espoon Pohjola-Norden", "alt_text": "askarteluvälineitä pöydällä, lastenkirjoja pöydällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385953/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-07-02T10:50:29.582597Z", "last_modified_time": "2026-08-24T06:27:57.760733Z", "date_published": null, "start_time": "2026-08-28T10:00:00Z", "end_time": "2026-08-28T13: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, "location_extra_info": { "fi": "Sininen huone", "en": "Blue room " }, "provider": { "fi": "Espoon Pohjola-Norden yhdistys", "en": "Pohjola-Norden association in Espoo" }, "name": { "fi": "Espoo-päivä: Luetaan ja askarrellaan yhdessä ", "en": "Espoo Day: Let's read and do crafts together " }, "description": { "fi": "Luetaan ja askarrellaan yhdessä -tapahtuma<p><strong>Entressen kirjastossa perjantaina 28.8. kello 13-16. </strong></p><p>Espoon Pohjola-Norden yhdessä Espoon monikulttuuriset lapset ja nuoret ry:n kanssa järjestää tapahtuman, jossa on esillä pohjoismaisia lastenkirjoja käännettynä eri kielille. Askartelemme pohjoismaiden lippujen parissa ja kouluikäisille lapsille on tarjolla pohjoismainen tietovisa.</p>", "en": "Let's read and do crafts together event<p><strong>At Entresse Library on Friday, August 28th from 1 to 4 p.m. </strong></p><p>Pohjola-Norden association in Espoo together with the association for multicultural children and youth in Espoo is organizing an event where Nordic children's books translated into different languages are on display. We will do crafts with Nordic flags with children and there will be a Nordic quiz for school-age children. </p>" }, "provider_contact_info": null, "short_description": { "fi": "Luetaan ja askarrellaan yhdessä -tapahtuma Entressen kirjastossa perjantaina 28.8. kello 13-16. ", "en": "Let's read and do crafts together event at Entresse Library on Friday, August 28th from 1 to 4 p.m. " }, "info_url": { "fi": "https://pohjola-norden.fi/fi/etusivu/", "en": "https://pohjola-norden.fi/fi/etusivu/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqdfmc6ue/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69094", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "19 / 15 €", "sv": "19 / 15 €", "en": "19 / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/duocasten/laulun-virta-inkeristae-karjalaan-4170920/", "sv": "https://www.lippu.fi/artist/duocasten/laulun-virta-inkeristae-karjalaan-4170920/", "en": "https://www.lippu.fi/artist/duocasten/laulun-virta-inkeristae-karjalaan-4170920/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385207, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T07:14:21.337411Z", "last_modified_time": "2026-06-17T07:14:21.337426Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793203.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385207/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T07:14:21.223595Z", "last_modified_time": "2026-08-24T06:23:12.140838Z", "date_published": null, "start_time": "2026-09-19T14:00:00Z", "end_time": "2026-09-19T16:10: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, "location_extra_info": null, "provider": null, "name": { "fi": "Laulun virta – Inkeristä Karjalaan – DuoCasten & Rinne feat. Artemius | Sattuma Duo | Anne-Mari Kivimäki", "sv": "Sången flödar: Från Ingermanland till Karelen – DuoCasten & Rinne feat. Artemius | Sattuma Duo | Anne-Mari Kivimäki", "en": "The Flow of Song: From Ingria to Karelia – DuoCasten & Rinne feat. Artemius | Sattuma Duo | Anne-Mari Kivimäki" }, "description": { "fi": "<p>Laulun virta – Inkeristä Karjalaan kutsuu kuulijat itäisen rajaseudun harvinaisten sävelten äärelle. Lavalla nähdään kolme eri artistikokoonpanoa sekä tanssijoita.</p><p>Osassa ohjelmaa esiintyjät yhdistävät voimansa, joten konsertista ei tunnelmaa puutu!</p><p>Illan musiikki liikkuu perinteen ja nykyajan rajapinnassa, antaen mahdollisuuden kokea yhteyttä juuriin, tarinoihin ja toisiin ihmisiin – sekä tutustua elävään ja dynaamiseen karjalaiseen & inkeriläiseen kulttuuriperintöön.</p><p>Muusikko, säveltäjä Anne-Mari Kivimäki on mainittu yhdeksi tämän hetken kiinnostavimmaksi kansanmusiikin tekijäksi. Emma-ehdokkuuden saanut Kivimäki vie kuulijat tunnistettavaan haitaritranceensa, jossa perinne ja hypnoottinen rytmi yhdistyvät ainutlaatuiseksi kokemukseksi.</p><p>Konsertissa kahdessa eri kokoonpanossa esiintyvä folk-rock-muusikkona tunnettu Arto Rinne on levittänyt karjalaismusiikin ilosanomaa jo yli 40 vuoden ajan. Sattuma Duo (Arto ja Eila Rinne) tuo lavalle sukupolvien yli kulkevaa kansanmusiikkia karjalan murteilla ja suomeksi. Duo on osa jo v. 2003 Petroskoissa perustettua Sattuma-yhtyettä, ja sen ohjelmistossa on poimintoja yhtyeen laajasta repertuaarista.</p><p>Duo Casten & Rinne feat. Artemius puolestaan esittää karjalaista, inkeriläistä ja suomenkielistä kansanmusiikkia, jonka juuret ulottuvat Itä-Karjalaan. Nina Castén tunnetaan tummaäänisestä ja vivahteikkaasta tulkinnastaan, viulisti Artemiuksen tuodessa kokonaisuuteen virtuoottista energiaa.</p><p>Esiintyjät:<br>Sattuma Duo (Arto & Eila Rinne)<br>Anne-Mari Kivimäki<br>Duo Casten & Rinne feat. Artemius<br>Tanssijat Minna Karttunen ja Jyrki Haapala</p><p>Kesto 2 h 10 min (sis. väliajan)<br>Ikäsuositus 7+</p><p>Konserttia ovat tukeneet Karjalan sivistysseura ja Inkeriläisten sivistyssäätiö.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Laulun virta – Inkeristä Karjalaan kutsuu kuulijat itäisen rajaseudun harvinaisten sävelten äärelle. Lavalla nähdään kolme eri artistikokoonpanoa sekä tanssijoita." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CA710C9D59613A3BC342BB8253912A2D/Laulun_virta_Inkerista_Karjalaan", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CA710C9D59613A3BC342BB8253912A2D/Sangen_flodar_Fran_Ingermanland_till_Karelen", "en": "http://www.kanneltalo.fi/en/events/event/CA710C9D59613A3BC342BB8253912A2D/The_Flow_of_Song_From_Ingria_to_Karelia" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69094/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69714", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385845, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-19T06:14:16.194375Z", "last_modified_time": "2026-08-19T06:14:16.194392Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796544.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385845/?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": "2026-08-19T06:14:15.971810Z", "last_modified_time": "2026-08-24T06:23:04.548955Z", "date_published": null, "start_time": "2026-09-03T15:00:00Z", "end_time": "2026-09-03T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Naapurimme Eskelmus ja luontokadon kesyttäjät -kirjan julkistusjuhla", "sv": "Naapurimme Eskelmus ja luontokadon kesyttäjät -kirjan julkistusjuhla", "en": "Naapurimme Eskelmus ja luontokadon kesyttäjät -kirjan julkistusjuhla" }, "description": { "fi": "<p>Juhlistamme Naapurimme Eskelmus ja luontokadon kesyttäjät -lastenkirjan ilmestymistä Annantalon toisessa kerroksessa.</p><p>Luvassa on taianomaisen hauskoja puuhia koko perheelle:<br> <br>🎭 musiikillinen lukuteatteriesitys <br>🐝 kesytä luontokato hauskoilla tehtävärasteilla<br>🍬 herkkupalkintoja rastin suorittaneille<br> 📷 kaverikuva Hörmeliinin kanssa<br>🎤 kirjailijan haastattelu<br>📚 kirjamyyntiä julkkarihintaan 20 €/kpl<br> <br>Ohjelma:<br>18.00 Tervetuliaissanat ja tehtävärastien esittely<br>18.10 Musiikillinen lukuteatteriesitys <br>18.30 Luontokadon kesyttäminen tehtävärastiradalla jatkuu<br>19.00 Kirjailija Meri-Maaria Kivekkään haastattelu<br>19.10 Vapaata puuhastelua, kaverikuvia, kirjojen hankkimista ja signeerauksia<br> <br>Naapurimme Eskelmus ja luontokadon kesyttäjät on helsinkiläisen kirjailija, opettaja ja laulaja-lauluntekijä Meri-Maaria Kivekkään toinen lastenromaani. Mielikuvituksen iloa ja sanaleikkejä <br>pulppuavan romaanin taianomaisen kuvituksen on luonut Leea Simola. Kirja sopii kaikenikäisille seikkailijoille. Kirjan kustantajana on Hertta Kustannus. <br> <br>Lukuteatterissa esiintyvät Jesse Gyllenbögel, Iiris Kankkunen ja Jukka Tarvainen sekä viulisti Tuike Suomalainen.<br> <br>Ei ennakkoilmoittautumista, vapaa pääsy. <br> <br>Lämpimästi tervetuloa hykerryttävän satumaiseen lastenjuhlaan!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Juhlistamme Naapurimme Eskelmus ja luontokadon kesyttäjät -lastenkirjan ilmestymistä Annantalon toisessa kerroksessa." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/90E60C87CF7C141D6583F387C55C6FEA/Naapurimme_Eskelmus_ja_luontokadon_kesyttajat_-kirjan_julkistusjuhla", "sv": "http://www.annantalo.fi/sv/evenemang/event/90E60C87CF7C141D6583F387C55C6FEA/Naapurimme_Eskelmus_ja_luontokadon_kesyttajat_-kirjan_julkistusjuhla", "en": "http://www.annantalo.fi/en/events/event/90E60C87CF7C141D6583F387C55C6FEA/Naapurimme_Eskelmus_ja_luontokadon_kesyttajat_-kirjan_julkistusjuhla" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69714/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69707", "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: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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "15 €", "en": "15 €" }, "info_url": { "fi": "https://nukketeatterisampo.fi/performances/sampo-festival-workshop-puppeteer/", "en": "https://nukketeatterisampo.fi/performances/sampo-festival-workshop-puppeteer/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385843, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-18T12:12:03.401355Z", "last_modified_time": "2026-08-18T12:12:03.401371Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796514.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385843/?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": "2026-08-18T12:12:03.300169Z", "last_modified_time": "2026-08-24T06:23:03.115734Z", "date_published": null, "start_time": "2026-08-30T10:00:00Z", "end_time": "2026-08-30T12: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, "location_extra_info": null, "provider": null, "name": { "fi": "How to puppeteer anything? – SAMPO Festivaali", "en": "How to puppeteer anything? – SAMPO Festival" }, "description": { "fi": "<p>Käytännönläheisessä nukketeatterityöpajassa ei rakenneta tai askarrella mitään, vaan tartutaan suoraan asiaan!</p><p>Herätämme yhdessä eloon juuri keksittyjä nukkehahmoja: vaikkapa kaksipäisen laulavan etana-yksisarvisen, ystävällisen nukkekissan tai minkä tahansa olion tai hirviön, jonka keksimme! Työpajassa keskitytään rohkeuteen, hengitykseen, yhteistyöhön ja omiin luoviin vaistoihin luottamiseen.</p><p>Kaiken tasoiset osallistujat ovat tervetulleita. Sopii yli 5-vuotiaille.</p><p>Kesto 2 t – voit tulla mukaan myös vain osaksi aikaa <br>Ohjauskieli: englanti<br>Lisätietoja: https://sampofestival.fi</p><p>Suosituksia:</p><p>\"Ingrid Hansen on dynaaminen ja innostava kouluttaja. Oppilaat ja opettajat olivat vaikuttuneita hänen energisyydestään ja pelottomuudestaan, ja hänen innostuksensa tarttui muihin. Ingridin työpaja sai kaikki osallistujat leikkimään enemmän yhdessä hänen rakentamassaan luovassa ympäristössä. Toivon todella, että hän palaa vielä kouluumme!\" – Lisa Cox, kuvataiteen opettaja, Second Street Middle School, Etobicoke</p><p>Ingrid Hansen vetää nukketeatterin ja fyysisen teatterin työpajoja aikuisille, varhaiskasvatusikäisille lapsille, nuorille, korkeakouluopiskelijoille, kuuroille taiteilijoille, ammattilaisille, ensikertalaisille, opettajille, vammaisille taiteilijoille sekä nukketeatterin harrastajille ja intohimoisille ystäville.<br>https://snafudance.com</p>", "en": "<p>A hands-on puppetry workshop, no construction or crafting required.</p><p>Together we bring to life newly discovered puppet creatures, be it a two-headed singing slug unicorn, an amiable puppy-cat, or a whatsit-thing-beast. There will be an emphasis on courage, breath, teamwork, and trusting your creative instincts.</p><p>All abilities and experience welcome. Suitable for everyone over 5 years of age.<br>Age recommendation: 5+<br> 2 h - you can attend only part / English<br>Lisätietoja: https://sampofestival.fi</p><p>TESTIMONIALS:<br>“Ingrid Hansen is a dynamic and engaging educator. The students and teachers alike were captivated by energy and presence. The curiosity and fearlessness that she demonstrates as an instructor is contagious. Through Ingrid's workshop everyone became more playful in the collaborative environment that Ingrid created. I can't wait for her to come back to our school!” - Lisa Cox, Arts Teacher at Second Street Middle School, Etobicoke</p><p>Ingrid Hansen teaches puppetry and physical theatre workshops for adults, kinders, teens, college students, Deaf artists, professionals, first-timers, teachers, artists with disabilities, and puppetry nerds.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Käytännönläheisessä nukketeatterityöpajassa ei rakenneta tai askarrella mitään, vaan tartutaan suoraan asiaan!", "en": "A hands-on puppetry workshop, no construction or crafting required." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1863B7E0976ED47F8DD65F8A9BC7EDC5/How_to_puppeteer_anything_", "en": "http://www.annantalo.fi/en/events/event/1863B7E0976ED47F8DD65F8A9BC7EDC5/How_to_puppeteer_anything_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69707/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69662", "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: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385726, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-07T13:13:53.640930Z", "last_modified_time": "2026-08-07T13:13:53.640946Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796169.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385726/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-07T13:13:53.507776Z", "last_modified_time": "2026-08-24T06:23:02.410897Z", "date_published": null, "start_time": "2026-08-29T08:00:00Z", "end_time": "2026-08-29T11: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, "location_extra_info": null, "provider": null, "name": { "fi": "Linda Liukas (Hello Ruby): Sana-avaruus – missä sanat asuvat? – Nonstop-työpaja", "sv": "Linda Liukas (Hello Ruby): Sana-avaruus – missä sanat asuvat? – Nonstop-verkstad", "en": "Linda Liukas (Hello Ruby): Sana-avaruus – missä sanat asuvat? – Nonstop Workshop" }, "description": { "fi": "<p>Tässä työpajassa tutustumme suuriin kielimalleihin, joiden avulla tekoäly osaa jatkaa lauseita, keksiä satuja ja arvata, mitä aiot sanoa seuraavaksi.</p><p>Mitä tapahtuu, kun sanat muuttuvat numeroiksi ja alkavat leijua?</p><p>Työpajassa rakennamme mobiileja, joissa sanat heiluvat ilmassa ja etsivät paikkansa. Mikä sana kuuluu lähelle sanaa “koti”? Entä “robotti”? Työpajassa rakennat oman mobiilin ja opit, näkeekö kone maailmaa samalla tavalla kuin sinä.</p><p>Työpajan vetää koodauksen maailmaa tutkivan <i>Hello Ruby</i> -lastenkirjasarjan kirjoittaja <b>Linda Liukas</b>.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p>", "sv": "<p>I den här workshopen får vi bekanta oss med stora språkmodeller som gör att artificiell intelligens kan fullfölja meningar, hitta på sagor och gissa vad du tänker säga härnäst.</p><p>Vad händer när ord förvandlas till siffror och börjar sväva?</p><p>Under workshopen bygger vi mobiler där orden svävar i luften och söker sin plats. Vilket ord hör ihop med ordet ”hem”? Och ”robot”? Under workshopen bygger du din egen mobil och får lära dig om maskinen ser världen på samma sätt som du.</p><p>Ledare: Linda Liukas (Hello Ruby)<br>Fri entré, ingen föranmälan krävs.</p>", "en": "<p>In this workshop, we’ll explore large language models that enable artificial intelligence to complete sentences, make up stories, and guess what you’re going to say next.</p><p>What happens when words turn into numbers and start to float?</p><p>In this workshop, we’ll build mobiles where words float in the air, searching for their place. Which word goes well with “home”? What about “robot”? In this workshop, you’ll build your own mobile and learn whether a machine sees the world the same way you do.</p><p>Facilitator: Linda Liukas (Hello Ruby)<br>Free admission, no advance registration required.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tässä työpajassa tutustumme suuriin kielimalleihin, joiden avulla tekoäly osaa jatkaa lauseita, keksiä satuja ja arvata, mitä aiot sanoa seuraavaksi.", "sv": "I den här workshopen får vi bekanta oss med stora språkmodeller som gör att artificiell intelligens kan fullfölja meningar, hitta på sagor och gissa vad du tänker säga härnäst.", "en": "In this workshop, we’ll explore large language models that enable artificial intelligence to complete sentences, make up stories, and guess what you’re going to say next." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BDA77B26F30CD795CAB5F6A89A328ED0/Linda_Liukas_Hello_Ruby_Sana-avaruus_missa_sanat_asuvat_", "sv": "http://www.annantalo.fi/sv/evenemang/event/BDA77B26F30CD795CAB5F6A89A328ED0/Linda_Liukas_Hello_Ruby_Sana-avaruus_missa_sanat_asuvat_", "en": "http://www.annantalo.fi/en/events/event/BDA77B26F30CD795CAB5F6A89A328ED0/Linda_Liukas_Hello_Ruby_Sana-avaruus_missa_sanat_asuvat_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69662/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5mk7udq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385698, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T10:20:51.407172Z", "last_modified_time": "2026-08-05T10:20:51.407191Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8108eb09-5ffe-4c8d-9898-14fddaed2371.jpg", "name": "", "cropping": "685,0,1235,550", "photographer_name": "", "alt_text": "Kuvassa on kitara ja sateenkaari", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385698/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-06T07:20:28.514972Z", "last_modified_time": "2026-08-23T13:19:41.150144Z", "date_published": null, "start_time": "2026-08-28T11:00:00Z", "end_time": "2026-08-28T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": { "fi": "Klassisen kitaran taitaja ja säveltäjä Yunjia Liu ", "sv": "Den professionella klassiska gitarristen och kompositören Yunjia Liu", "en": "Professional classical guitarist and composer Yunjia Liu" }, "name": { "fi": "\"Rainbow\"-projekti: Klassisen kitaran konserttikiertue", "sv": "Projektet ”Rainbow”: Konsertturné med sologitarr", "en": "\"Rainbow\" Project: Solo Guitar Concert Tour" }, "description": { "fi": "<p>Klassisen kitaran taitaja ja säveltäjä Yunjia Liu esittää \"Rainbow\"-projektin – ainutlaatuisen konserttisarjan, jonka tavoitteena on juhlistaa monimuotoisuutta ja syvää yhteiskunnallista osallisuutta.</p><p>Tämä 30-minuuttinen konserttimatka rakentaa musiikillisia mestariteoksia ja alkuperäissävellyksiä sateenkaaren seitsemän symbolisen värin ympärille. Ohjelmisto sisältää sekä klassisia teoksia että kantaesityksen teoksesta \"PUU\" (Tree) – sävellys, joka symboloi syvien juurten kasvattamista Suomeen.</p><p>Konsertit on suunniteltu kaikille avoimiksi ja saavutettaviksi, ja ne sisältävät yleisövuorovaikutusta sekä selostuksia, jotka voidaan esittää paikallisen yleisön tarpeen mukaan englanniksi, suomeksi, ruotsiksi, saksaksi tai kiinaksi. Nämä maksuttomat esitykset muuttavat kirjastot keskinäisen kunnioituksen ja yhteisöllisyyden tyyssijoiksi.</p><p>Digitaalinen julkaisu: Alkuperäisteos \"PUU\" julkaistaan suoratoistopalveluissa 28. elokuuta 2026.</p><p><br></p><p><strong>Tapahtumien aikataulu</strong></p><p>Kiertue vierailee viidessä espoolaisessa kirjastossa:</p><p><br></p><p><strong>Espoo-päivä, perjantai 28. elokuuta 2026</strong></p><p>12:00–12:30: Entressen kirjasto</p><p>14:00–14:30: Sellon kirjasto</p><p>16:00–16:30: Tapiolan kirjasto</p><p><br></p><p><strong>Lauantai 12. syyskuuta 2026</strong></p><p>13:00–13:30: Ison Omenan kirjasto</p><p>15:00–15:30: Lippulaivan kirjasto</p>", "sv": "<p>Den professionella klassiska gitarristen och kompositören Yunjia Liu presenterar projektet ”Rainbow”, en unik konsertserie som syftar till att hylla mångfald och djup samhällelig inkludering.</p><p><br></p><p>Denna 30-minuters långa musikaliska resa bygger upp musikaliska mästerverk och egna kompositioner kring regnbågens sju symboliska färger. Programmet innehåller både klassiska favoriter och världspremiären av ”PUU” (Träd) – ett stycke som symboliserar resan mot att slå djupa rötter i Finland – och erbjuder ett utrymme för gemenskap och reflektion.</p><p><br></p><p>Konserterna är utformade för att vara tillgängliga för alla, med interaktiva inslag och kommentarer anpassade efter den lokala publiken på engelska, finska, svenska, tyska eller kinesiska. Dessa kostnadsfria föreställningar förvandlar kommunala bibliotek till oaser av ömsesidig respekt och gemenskap.</p><p><br></p><p>Digital lansering: Det originella verket ”PUU” släpps på streamingplattformar den 28 augusti 2026.</p><p><br></p><p><strong>Evenemangsinformation och schema</strong></p><p>Turnén omfattar fem stora bibliotek i Esbo:</p><p><br></p><p><strong>Fredag den 28 augusti 2026 på Esbodagen:</strong></p><p>12:00–12:30: Entresse biblioteket</p><p>14:00–14:30: Sello biblioteket</p><p>16:00–16:30: Tapiola biblioteket</p><p><br></p><p><strong>Lördag den 12 september 2026:</strong></p><p>13:00–13:30: Iso Omena biblioteket</p><p>15:00–15:30: Lippulaiva biblioteket</p>", "en": "<p>Professional classical guitarist and composer Yunjia Liu presents the \"Rainbow\" Project, a unique series of concerts designed to celebrate diversity and deep societal inclusion.</p><p>This 30-minute performance journey structures musical masterworks and original compositions around the seven symbolic colors of the rainbow. Featuring both classical staples and the world premiere of \"PUU\" (Tree)—a piece symbolizing the journey of planting deep roots in Finland—this program offers a space for connection and reflection.</p><p>The concerts are designed to be accessible to everyone, with interactive elements and commentary tailored to local audiences in English, Finnish, Swedish, German, or Chinese. These free performances transform municipal libraries into sanctuaries of mutual respect and community cohesion.</p><p>Digital Launch: The original piece \"PUU\" will be released on streaming platforms on August 28, 2026.</p><p><br></p><p><strong>Event Details & Schedule</strong></p><p>The tour spans five major Espoo libraries:</p><p><br></p><p><strong>Friday, August 28, 2026 on Espoo Day:</strong></p><p>12:00–12:30: Entresse Library</p><p>14:00–14:30: Sello Library</p><p>16:00–16:30: Tapiola Library</p><p><br></p><p><strong>Saturday, September 12, 2026:</strong></p><p>13:00–13:30: Iso Omena Library</p><p>15:00–15:30: Lippulaiva Library</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa klassisenkitaran konserttiin pe 28.8. klo 14", "sv": "Välkommen till en konsert med klassisk gitarr.", "en": "Welcome to a classical guitar concert on Saturday." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5mk7udq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20985476", "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-4032917/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null, "info_url": { "fi": "https://www.lippu.fi/event/julia-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20985476/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/julia-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20985476/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/julia-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20985476/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1493858, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-23T22:14:41.071376Z", "last_modified_time": "2025-11-23T22:14:41.071388Z", "url": "https://www.lippu.fi/obj/mam/finland/12/0b/--julia-helsingin-kaupunginteatteri-tickets_472367_3776775_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493858/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-23T22:14:41.733906Z", "last_modified_time": "2026-08-22T23:25:04.641799Z", "date_published": null, "start_time": "2026-08-22T15: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, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "& Julia" }, "description": { "fi": "<p>Jos pidit Moulin Rouge! Musikaalista, tulet rakastamaan & Juliaa!</p><p>Unohda surulliset loput ja Romeonsa perään itkevä Julia – vuoden räiskyvin musikaali & Julia on jotain ihan muuta!</p><p>Mitä tapahtuisi, jos Julia ottaisikin elämänsä omiin käsiinsä? Alkaa hullutteleva ja häikäisevä seikkailu, jonka aikana tulee selväksi, että elämää on Romeon jälkeenkin! Tai oikeastaan, silloinhan se vasta alkaa...</p><p>Tämä Shakespearen tunnetuin rakkaustarina tarjoillaan nyt täysin uudella twistillä ja tunnetuimpien 90- ja 2000-luvun alun hittien soidessa - mikä voisi olla parempaa?</p><p>Lontoon ja Broadwayn hurmanneen & Julia-musikaalin on kirjoittanut Emmy-palkitun komediasarjan Schitt’s Creek kirjoittaja David West Read ja musiikin on säveltänyt ruotsalainen popsuuruus Max Martin. Musikaalissa kuullaan 90-luvun ja 2000-luvun alun suurimmat hitit, joita ovat tehneet tunnetuiksi mm. Britney Spears, Bon Jovi, Backstreet Boys ja Katy Perry. Tästä musikaalista poistut onnellisena, täynnä energiaa ja korvamato tai pari mukanasi.</p><p>& Juliassa traagista on vain jättää se näkemättä.</p><p>Esitysoikeuksien valvoja: MTI<br>Teksti: David West Read<br>Teksti: Max Martin<br>Sävellys: Max Martin ja ystävät<br>Suomennos: Paavo Leppäkoski<br>Ohjaus: Samuel Harjanne<br>Koreografi: Gunilla Olsson-Karlsson<br>Kapellimestari: Eeva Kontu<br>Lavastus: Peter Ahlqvist<br>Pukusuunnittelu: Elina Kolehmainen<br>Valo- ja videosuunnittelu: Toni Haaranen<br>Valo- ja videosuunnittelu: William Iles<br>Äänisuunnittelu: Kai Poutanen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Dramaturgi: Henna Piirto</p><p>Rooleissa: Renée Böök, Mikko Peltomäki, Tuukka Leppänen, Maria Lund, Martti Manninen,<br>Niki Rautén, Laura Alajääski, Risto Kaskilahti, Raili Raitala, Mikko Vihma, Laura Allonen,<br>Nicolas Frimodig, Linda Hämäläinen, Leo Ikhilor, Minna Kettunen-Enberg, Matti Leino,<br>Annette Lerviks, Lasse Lipponen, Pekka Louhio, Kalle Lähde, Ville Mäkinen, Ulla Paajanen,<br>Ella Snellman, Jennie Storbacka, Iina Suomalainen, Julius Suominen, Tino Virta, Edit Williams</p>", "en": "<p>David West Read - Max Martin<br><strong>& JULIA</strong></p>" }, "provider_contact_info": null, "short_description": { "fi": "David West Read - Max Martin & JULIA Jos pidit Moulin Rouge! Musikaalista, tulet rakastamaan & Juliaa! Unohda surulliset loput ja Romeonsa perään itkevä Julia –" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/julia-4032917/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/julia-4032917/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/julia-4032917/?affiliate=ADV&language=en" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20985476/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20985504", "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-4032917/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null, "info_url": { "fi": "https://www.lippu.fi/event/julia-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20985504/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/julia-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20985504/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/julia-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20985504/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1493858, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-23T22:14:41.071376Z", "last_modified_time": "2025-11-23T22:14:41.071388Z", "url": "https://www.lippu.fi/obj/mam/finland/12/0b/--julia-helsingin-kaupunginteatteri-tickets_472367_3776775_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493858/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-23T22:14:41.568491Z", "last_modified_time": "2026-08-22T23:25:04.485158Z", "date_published": null, "start_time": "2026-08-22T10: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, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "& Julia" }, "description": { "fi": "<p>Jos pidit Moulin Rouge! Musikaalista, tulet rakastamaan & Juliaa!</p><p>Unohda surulliset loput ja Romeonsa perään itkevä Julia – vuoden räiskyvin musikaali & Julia on jotain ihan muuta!</p><p>Mitä tapahtuisi, jos Julia ottaisikin elämänsä omiin käsiinsä? Alkaa hullutteleva ja häikäisevä seikkailu, jonka aikana tulee selväksi, että elämää on Romeon jälkeenkin! Tai oikeastaan, silloinhan se vasta alkaa...</p><p>Tämä Shakespearen tunnetuin rakkaustarina tarjoillaan nyt täysin uudella twistillä ja tunnetuimpien 90- ja 2000-luvun alun hittien soidessa - mikä voisi olla parempaa?</p><p>Lontoon ja Broadwayn hurmanneen & Julia-musikaalin on kirjoittanut Emmy-palkitun komediasarjan Schitt’s Creek kirjoittaja David West Read ja musiikin on säveltänyt ruotsalainen popsuuruus Max Martin. Musikaalissa kuullaan 90-luvun ja 2000-luvun alun suurimmat hitit, joita ovat tehneet tunnetuiksi mm. Britney Spears, Bon Jovi, Backstreet Boys ja Katy Perry. Tästä musikaalista poistut onnellisena, täynnä energiaa ja korvamato tai pari mukanasi.</p><p>& Juliassa traagista on vain jättää se näkemättä.</p><p>Esitysoikeuksien valvoja: MTI<br>Teksti: David West Read<br>Teksti: Max Martin<br>Sävellys: Max Martin ja ystävät<br>Suomennos: Paavo Leppäkoski<br>Ohjaus: Samuel Harjanne<br>Koreografi: Gunilla Olsson-Karlsson<br>Kapellimestari: Eeva Kontu<br>Lavastus: Peter Ahlqvist<br>Pukusuunnittelu: Elina Kolehmainen<br>Valo- ja videosuunnittelu: Toni Haaranen<br>Valo- ja videosuunnittelu: William Iles<br>Äänisuunnittelu: Kai Poutanen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Dramaturgi: Henna Piirto</p><p>Rooleissa: Renée Böök, Mikko Peltomäki, Tuukka Leppänen, Maria Lund, Martti Manninen,<br>Niki Rautén, Laura Alajääski, Risto Kaskilahti, Raili Raitala, Mikko Vihma, Laura Allonen,<br>Nicolas Frimodig, Linda Hämäläinen, Leo Ikhilor, Minna Kettunen-Enberg, Matti Leino,<br>Annette Lerviks, Lasse Lipponen, Pekka Louhio, Kalle Lähde, Ville Mäkinen, Ulla Paajanen,<br>Ella Snellman, Jennie Storbacka, Iina Suomalainen, Julius Suominen, Tino Virta, Edit Williams</p>", "en": "<p>David West Read - Max Martin<br><strong>& JULIA</strong></p>" }, "provider_contact_info": null, "short_description": { "fi": "David West Read - Max Martin & JULIA Jos pidit Moulin Rouge! Musikaalista, tulet rakastamaan & Juliaa! Unohda surulliset loput ja Romeonsa perään itkevä Julia –" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/julia-4032917/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/julia-4032917/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/julia-4032917/?affiliate=ADV&language=en" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20985504/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69450", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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": false, "offer_price_groups": [], "description": null, "price": { "fi": "10 €", "sv": "10 €", "en": "10 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/borrowed-cities-kaupunkikaevely-4182198/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/borrowed-cities-kaupunkikaevely-4182198/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/borrowed-cities-kaupunkikaevely-4182198/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385232, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T10:14:14.642106Z", "last_modified_time": "2026-06-17T10:14:14.642121Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794394.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385232/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T10:14:14.566607Z", "last_modified_time": "2026-08-22T14:22:40.448977Z", "date_published": null, "start_time": "2026-08-22T14:00:00Z", "end_time": "2026-08-22T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Shaghayegh Ansari: Borrowed Cities | LOPPUUNMYYTY", "sv": "Shaghayegh Ansari: Borrowed Cities", "en": "Shaghayegh Ansari: Borrowed Cities | SOLD OUT" }, "description": { "fi": "<p>Borrowed Cities (\"lainakaupungit\") on paikkasidonnainen audiokävely, joka johdattaa yleisönsä opastetulle kierrokselle Helsinkiin.</p><p>Esitys lähtee Kulttuurikeskus Caisasta, Leipätehtaan sisäpihalta osoitteessa Kaikukatu 4 B.</p><p>Teos käyttää itse kaupunkia näyttämönä, jolla se tutkii, kuinka ekologinen menetys ja muuttoliike horjuttavat tilakokemustamme. Heijastamalla uhanalaisten kaupunkien katkelmia Helsingin kaduille teos kyseenalaistaa ajatuksen, että kriisit kuuluisivat vain niiden syntypaikkoihin, ja esittää, kuinka kaupungit imevät itseensä tarinoita, suruja ja tulevaisuuksia myös pitkien matkojen takaa.</p><p>Kävelyä ohjaavat niiden kertomukset, joiden elämää ekologinen trauma on muokannut: paikallisten yhteisöjen, maahanmuuttajien ja muiden, joilla on omakohtaista kokemusta ympäristön epävakaudesta. Helsinki näyttäytyy heidän näkökulmastaan. Yhdessä kävelemällä teos pyrkii luomaan yhteisen tilan kuuntelemiselle, välittämiselle ja kulttuurienväliselle ymmärrykselle.</p><p>Mitä tarkoittaa kantaa useita alueita yhdessä ruumiissa? Miten muisti voi paljastaa ilmastoepäoikeudenmukaisuuden eriarvoiset todellisuudet?</p><p>Ohjaus: Shaghayegh Ansari, Aref Houshmandnia <br>Käsikirjoitus: Aref Houshmandnia <br>Esiintyjä: Shaghayegh Ansari <br>Äänisuunnittelu: Maija Suominen</p><p>Liput: 10 € osoitteesta lippu.fi<br>Taiteiden yönä 20.8. järjestetään kaksi maksutonta kävelyä klo 17 ja 20: ilmoittaudu sähköpostilla osoitteeseen caisa.tiedotus@hel.fi. Kullekin Taiteiden yön kävelylle otetaan mukaan 10 osallistujaa / kävely.</p><p>Esityksen kieli: englanti / farsi<br>Esityksen kesto: n. 1,5 t <br>Ikärajasuositus: 16-v. ja sitä vanhemmat</p>", "sv": "<p>Borrowed Cities (Lånade städer) är en platsspecifik ljudvandring som tar publiken med på en guidad tur genom Helsingfors.</p><p>Verket använder staden själv som scen för att utforska hur ekologiska förluster och migration rubbar vår känsla av tillhörighet. Genom att projicera fragment av hotade städer på Helsingfors gator ifrågasätter verket uppfattningen att kriser bara berör de platser där de inträffar och antyder att städer tar till sig berättelser, sorger och framtider från fjärran platser.</p><p>Berättelserna från dem vars liv har präglats av ekologiska trauman – lokalsamhällen, invandrare och andra som har upplevt miljöförändringar – styr vandringen och låter oss se Helsingfors ur deras perspektiv. Genom den gemensamma vandringen vill verket skapa ett delat rum av lyssnande, omsorg och förståelse över kulturgränserna. Vad innebär det att bära flera geografier i en och samma kropp? Hur kan minnen belysa de ojämlika realiteterna i klimatorättvisan?</p><p>Regissör: Shaghayegh Ansari, Aref Houshmandnia</p><p>Författare: Aref Houshmandnia</p><p>Artist: Shaghayegh Ansari</p><p>Ljuddesigner: Maija Suominen</p><p>Under Konstens natt den 20 augusti ordnar vi två avgiftsfria vandringar kl. 17.00 och 20.00. Biljetter till de övriga vandringarna kostar 10 euro.</p><p>Föreställningens språk: Engelska</p><p>Föreställningen startar vid kulturcentret Caisa, på innergården på Ekogatan 4 B.</p>", "en": "<p>Borrowed Cities is a site-specific audio-walk that leads audiences on a guided tour through Helsinki.</p><p>The performance sets off from Cultural Centre Caisa on the courtyard of Kaikukatu 4 B.</p><p>The work uses the city itself as the stage for exploring how ecological loss and migration unsettle our sense of place. By projecting fragments of endangered cities onto the streets of Helsinki, the piece challenges the idea that crises belong only to their locations and suggests that cities absorb stories, griefs, and futures from far away.</p><p>The narratives of the ones whose lives have been shaped by ecological trauma – local communities, immigrants, and others with lived experience of environmental instability, guide the walk and allow Helsinki to be seen through their perspective. By walking together, the work tries to create a shared space of listening, care, and cross-cultural understanding.</p><p>What does it mean to carry multiple geographies within one body? How can memory reveal the uneven realities of climate injustice?</p><p>Director: Shaghayegh Ansari, Aref Houshmandnia <br>Writer: Aref Houshmandnia <br>Performer: Shaghayegh Ansari <br>Sound designer: Maija Suominen</p><p>Tickets: 10 euros, sold at lippu.fi.<br>On the Night of the Arts, two free-of-charge walks are held at 17.00 and 20.00: register via email at caisa.tiedotus@hel.fi. There is room for 10 participants per walk.</p><p>Performance language: English / Farsi<br>Age recommendation: 16 and older<br>Performance duration: 1.5 h</p>" }, "provider_contact_info": null, "short_description": { "fi": "Borrowed Cities (\"lainakaupungit\") on paikkasidonnainen audiokävely, joka johdattaa yleisönsä opastetulle kierrokselle Helsinkiin.", "sv": "Borrowed Cities (Lånade städer) är en platsspecifik ljudvandring som tar publiken med på en guidad tur genom Helsingfors.", "en": "Borrowed Cities is a site-specific audio-walk that leads audiences on a guided tour through Helsinki." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/BD819B9F78213BBF8F0A1002878717BB/Shaghayegh_Ansari_Borrowed_Cities_LOPPUUNMYYTY", "sv": "http://www.caisa.fi/sv/evenemang/event/BD819B9F78213BBF8F0A1002878717BB/Shaghayegh_Ansari_Borrowed_Cities_", "en": "http://www.caisa.fi/en/events/event/BD819B9F78213BBF8F0A1002878717BB/Shaghayegh_Ansari_Borrowed_Cities_SOLD_OUT" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69450/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqcsp5oru", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385928, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-22T08:28:49.596697Z", "last_modified_time": "2026-08-22T08:28:49.596710Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/beeb31f4-8fbc-4e7b-a038-2f36aee7d998.png", "name": "", "cropping": "80,0,791,710", "photographer_name": "", "alt_text": "Kuvassa on Viaggio Musicale-konsertin esiintyjät ja Samuel Huberin taidesäätiön logo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385928/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-22T10:51:47.076313Z", "last_modified_time": "2026-08-22T10:51:47.076329Z", "date_published": null, "start_time": "2026-11-20T09:00:00Z", "end_time": "2026-11-20T09:50: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, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": { "fi": "Barokkiyhtye Baccano", "sv": "Barokkiyhtye Baccano", "en": "Barokkiyhtye Baccano" }, "name": { "fi": "Viaggio Musicale - Musiikkia menneiden vuosisatojen Italiasta", "sv": "Viaggio Musicale – Musik från Italien genom århundradena", "en": "Viaggio Musicale - Music from Italy Through the Centuries" }, "description": { "fi": "<p>Viaggio Musicale</p><p>Musiikkia menneiden vuosisatojen Italiasta</p><p>Vivaldi, Corelli, Geminiani, Marcello</p><p><br></p><p>Barokkiyhtye Baccano</p><p>Hanna Haapamäki, nokkahuilu</p><p>Jussi Seppänen, sello</p><p>Eero Palviainen, luuttu</p><p><br></p><p>Konsertin on mahdollistanut Samuel Huberin Taidesäätiö</p><p><br></p><p>Vapaa pääsy</p>", "sv": "<p>Viaggio Musicale</p><p>Musik från Italien från svunna århundraden</p><p>Vivaldi, Corelli, Geminiani, Marcello</p><p><br></p><p>Barockensemblen Baccano</p><p>Hanna Haapamäki, blockflöjt</p><p>Jussi Seppänen, cello</p><p>Eero Palviainen, luta</p><p><br></p><p>Konserten har möjliggjorts av Samuel Huber Art Foundation.</p><p>Fri entré</p>", "en": "<p>Viaggio Musicale</p><p>Music from Italy of centuries past</p><p>Vivaldi, Corelli, Geminiani, Marcello</p><p><br></p><p>The Baroque ensemble Baccano</p><p>Hanna Haapamäki, recorder</p><p>Jussi Seppänen, cello</p><p>Eero Palviainen, lute</p><p><br></p><p>The concert has been made possible by the Samuel Huber Art Foundation.</p><p>Free admission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa kuuntelemaan Viaggio Musicale - Musiikkia menneiden vuosisatojen Italiasta -konserttia Salonkiin pe 20.11. klo 11.", "sv": "Du är välkommen att komma och lyssna på konserten ”Viaggio Musicale – Musik från Italien genom tiderna” på Salonki fredagen den 20 november kl. 11.00.", "en": "You are welcome to come and listen to the ‘Viaggio Musicale – Music from Italy through the Centuries’ concert at the Salonki on Friday 20 November at 11.00." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqcsp5oru/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:c0d83950-619d-f111-b8dc-6045bddcef2f", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8000/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:e70aa2da-b1c8-4fb9-890e-e09bd4db47b5/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 2385926, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-21T13:17:52.222888Z", "last_modified_time": "2026-08-21T13:17:52.222903Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/ec480b40-da1d-f111-8341-6045bddd6dee", "name": "testi", "cropping": "", "photographer_name": "testi", "alt_text": "testi", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385926/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "created_time": "2026-08-21T13:17:17.467721Z", "last_modified_time": "2026-08-21T13:17:52.806757Z", "date_published": "2026-08-21T13:07:52Z", "start_time": "2026-08-31T18:00:00Z", "end_time": "2026-08-31T20:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": { "fi": "Iltapuuhastelijat ry" }, "name": { "fi": "Iltahämyn aikaan (esitys 2)" }, "description": { "fi": "<div><p>Iltahämyn aikaan tapahtuu kummia ja niistä teille tulee kertomaan huikea tarinankertoja Milla Magia.</p></div>" }, "provider_contact_info": null, "short_description": { "fi": "Tämä tapahtuma on iltahämärässä." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:c0d83950-619d-f111-b8dc-6045bddcef2f/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:6a593e50-619d-f111-b8db-000d3ad98db7", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8000/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:e70aa2da-b1c8-4fb9-890e-e09bd4db47b5/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 2385925, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-21T13:17:47.277203Z", "last_modified_time": "2026-08-21T13:17:47.277218Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/ec480b40-da1d-f111-8341-6045bddd6dee", "name": "testi", "cropping": "", "photographer_name": "testi", "alt_text": "testi", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385925/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "created_time": "2026-08-21T13:17:11.870065Z", "last_modified_time": "2026-08-21T13:17:47.896663Z", "date_published": "2026-08-21T13:07:57Z", "start_time": "2026-08-30T18:00:00Z", "end_time": "2026-08-31T20:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": { "fi": "Iltapuuhastelijat ry" }, "name": { "fi": "Iltahämyn aikaan (esitys 1)" }, "description": { "fi": "<div><p>Iltahämyn aikaan tapahtuu kummia ja niistä teille tulee kertomaan huikea tarinankertoja Milla Magia.</p></div>" }, "provider_contact_info": null, "short_description": { "fi": "Tämä tapahtuma on iltahämärässä." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6a593e50-619d-f111-b8db-000d3ad98db7/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:agqcizchxu", "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/kultus:22/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" }, "info_url": null } ], "data_source": "kultus", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:58/?format=api" } ], "created_time": "2026-08-21T12:55:46.887547Z", "last_modified_time": "2026-08-21T12:56:22.477927Z", "date_published": null, "start_time": "2026-08-29T08:00:00Z", "end_time": "2026-08-29T09: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": "2026-08-21T15:57:00+03:00", "enrolment_end_time": "2026-08-28T11:00:00+03:00", "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "KOTKOT", "sv": "", "en": "" }, "description": { "fi": "<p>KOTKOT</p>\n", "sv": "", "en": "" }, "provider_contact_info": null, "short_description": { "fi": "KOTKOT", "sv": "", "en": "" }, "info_url": { "fi": "", "sv": "", "en": "" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agqcizchxu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69710", "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: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: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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "46,50-67,50 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/ballet-flamenco-de-catalunya-carmen-4221933/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385910, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T12:23:23.980471Z", "last_modified_time": "2026-08-21T12:23:23.980488Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796543.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385910/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T12:23:23.845697Z", "last_modified_time": "2026-08-21T12:23:24.187709Z", "date_published": null, "start_time": "2027-01-23T17: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, "location_extra_info": null, "provider": { "fi": "Aftersunset Oy" }, "name": { "fi": "Ballet flamenco de Catalunya \"Carmen\"" }, "description": { "fi": "<p>Carmen – intohimoinen klassikko modernin flamencon voimalla</p><p>Carmenin tarina rakkaudesta, vapaudesta, mustasukkaisuudesta ja kohtalokkaasta intohimosta on kiehtonut yleisöjä jo lähes kahden vuosisadan ajan. Tammikuussa Ballet Flamenco de Catalunya tuo Savoy-teatteriin oman voimakkaan ja nykyaikaisen tulkintansa tästä ajattomasta klassikosta.</p><p>Ballet Flamenco de Catalunyan Carmen yhdistää flamencon raakaan tunnevoimaan baletin ilmaisua ja tuo Prosper Mériméen tunnetun tarinan tähän päivään. Tässä tulkinnassa Carmen ei ole vain kohtalokas ja intohimoinen nainen, vaan ennen kaikkea vapauden ja rohkeuden symboli – nainen, joka puolustaa oikeuttaan elää omilla ehdoillaan. Rakkauden, halun ja mustasukkaisuuden rinnalle nousevat kysymykset vapaudesta, tasa-arvosta ja oikeudesta tehdä omat valintansa.</p><p>Flamencon intensiivinen rytmi, virtuoosinen tanssi ja vahva tunneilmaisu kohtaavat näyttämöllä Carmenin draaman. Tanssi, musiikki, teatteri ja näyttävä visuaalisuus rakentavat kokonaisuuden, jossa klassikkotarina saa uuden sykkeen ja flamencon intohimo pääsee valloilleen.</p><p>Teoksen on luonut palkittu tanssija ja koreografi David Gutiérrez Molina, Ballet Flamenco de Catalunyan perustaja ja taiteellinen johtaja. Gutiérrez aloitti flamencon nelivuotiaana ja voitti jo 16-vuotiaana parhaan flamencosolistin palkinnon Gibraltarin flamencofestivaaleilla. Sittemmin hän on vienyt ryhmänsä kansainvälisille näyttämöille Eurooppaan, Aasiaan ja Amerikkaan. Hänen koreografioissaan flamencon perinne kohtaa rohkean, nykyajan näyttämöilmaisun.</p><p>Carmen on vahva ja visuaalisesti vaikuttava tanssiteatterielämys, jossa yksi maailman tunnetuimmista tarinoista herää eloon flamencon sykkeessä – täynnä intohimoa, voimaa ja vapautta.</p><p>Kesto n. 2 h sisältäen väliajan.</p><p>Ikäraja: S</p>" }, "provider_contact_info": null, "short_description": { "fi": "Carmen – intohimoinen klassikko modernin flamencon voimalla" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5F43ADF8D64CC412C416316011BF0D15/Ballet_flamenco_de_Catalunya_Carmen_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69710/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }