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=91
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=92", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=90" }, "data": [ { "id": "lippupiste:20985475", "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-20985475/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/julia-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20985475/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/julia-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20985475/?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:40.975347Z", "last_modified_time": "2026-08-18T23:17:07.706727Z", "date_published": null, "start_time": "2026-08-18T15: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 Ennakko" }, "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:20985475/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69664", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "59,50-134,50 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/boris-grebenshikov/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385844, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-18T14:15:25.783718Z", "last_modified_time": "2026-08-18T14:15:25.783736Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796225.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385844/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-18T14:15:25.614291Z", "last_modified_time": "2026-08-18T14:15:26.012228Z", "date_published": null, "start_time": "2026-10-11T15: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": "AIT Music Production" }, "name": { "fi": "Boris Grebenchikov & Aquarium" }, "description": { "fi": "<p>Iso uusi konserttiohjelmisto Helsingissä!</p><p>Tuskin löytyy sellaista venäjänkielistä ihmistä, joka ei olisi kuullut legendaarisesta Boris Grebenshikovista (BG:stä). Hänet tunnetaan myös rockyhtye Akvariumin perustajana.</p><p>BG: n sanoituslyriikka on suorastaan uusinut sitä venäjää, jota parhaillaan puhutaan. BG loi Venäjälle 1970- ja 1980-luvuilla myös täysin ainutlaatuisen musiikillisen ja sosiaalisen estetiikan, joka avautuu lähes 30:stä studioalbumistaan. Grebenshikov<br>on ollut tuttu myös Neuvostoliiton hajoamisen jälkeen itsenäistyneissä maissa, hän on vieraillut Euroopassa ja Pohjois-Amerikassa, tullut tunnetuksi ja arvostetuksi myös länsimaiden merkittävimpien muusikkojen keskuudessa.</p><p>BG on jatkuvasti ja rohkeasti vastustanut epäoikeudenmukaisuutta<br>ja kansanvainoja kotimaassaan, niin kauan kuin se oli mahdollista.<br>Pidettyään esityksiään täysille saleille eri puolilla maailmaa, BG pitää kiertueensa ainoan konsertin Suomessa.</p><p>Siihen kuuluu uusien kappaleiden lisäksi ”akvariumilaisia” klassikkoja sovittamalla näin yhteen ikuisuutta ja ajankohtaisuutta.<br>Aquarium on pääasiallisesti yhtä kuin BG, Andrei Surotdinov (viulu), Leo Abrahams (kitara), Brian Finnegan (huilu), Konstantin Tumanov (kosketinsoittimet ja harmonikka), Liam Bradley<br>(rummut) ja Gleb Grebenshikov (lyömäsoittimet).</p><p>Vietä unohtumaton viikonloppu ja tule konserttiin, jonka tulet muistamaan aina!</p><p>Kesto n. 3 h, sisältää väliajan</p>" }, "provider_contact_info": null, "short_description": { "fi": "Iso uusi konserttiohjelmisto Helsingissä!" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/FF5D9111BB474A4BE7276B0AA8587923/Boris_Grebenchikov_Aquarium" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69664/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69480", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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": 2385276, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-22T06:14:06.365468Z", "last_modified_time": "2026-06-22T06:14:06.365483Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789658.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385276/?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-22T06:14:06.277089Z", "last_modified_time": "2026-08-18T13:14:26.968897Z", "date_published": null, "start_time": "2026-09-18T07:30:00Z", "end_time": "2026-09-18T08: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": "Metka matka! – Tanssi- ja sirkusesitys päiväkotiryhmille", "sv": "Metka matka! – Dans- och cirkusföreställning för daghemsgrupper", "en": "Metka matka! – Dance and circus performance for daycare groups" }, "description": { "fi": "<p>Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys.</p><p>Teos seuraa Vekkuli-Vilman seikkailuja hänen etsiessään tietään salaperäiseen Metkalan kylään. Matkan varrella nähdään tanssia, akrobaattisia temppuja ja yllättäviä tapahtumia.</p><p>Vekkuli-Vilma kohtaa myös visaisia tehtäviä ja pulmia, jotka hänen on ratkaistava ehtiäkseen perille Metkalan kylään ennen iltaa. Lähtölaskenta seikkailulle on alkanut!</p><p><i>Metka matka!</i> on lämminhenkinen, mielikuvitteluun kutsuva ja kutkuttavan taidokas esitys. Se vie lapset mukaan seikkailuun, jossa yhteistyö ja luovuus kukoistavat. Esitys palkittiin lastenteatterin ideahautomo ITUn vuoden 2026 Pikku Itu -palkinnolla.</p><p>Työryhmä:<br>Koreografia ja ohjaus: Jussi Väänänen<br>Esiintyjä: Anniina Peltovako<br>Valo- ja lavastussuunnittelu: Juho Rahijärvi<br>Pukusuunnittelu: Kati Autere<br>Äänisuunnittelu: Touko Kemppainen<br>Tuotanto: Jussi Väänänen ja Nomadi yhteistyössä Circo Aereon kanssa.</p><p>Ikäsuositus: 3+<br>Kesto: n. 30 min</p><p><u><a> href=\"https://kultus.hel.fi/fi/event/kultus:agplcgl5nu\">Ilmoita ryhmäsi esityksiin osoitteessa kultus.hel.fi 17.8. alkaen</u></a></p>", "sv": "<p>Metka matka! (En festlig resa!) är en fartfylld och hjärtevärmande föreställning för barn som kombinerar dans och cirkus.</p><p>Verket följer Vekkuli-Vilmas äventyr när hon söker sig till den mystiska byn Metkala. Under resan får publiken se skicklig jonglering, smidig dans och fantasifulla akrobatiska nummer. <br> <br>I föreställningen stöter Vekkuli-Vilma på sin resa på en rad kluriga uppgifter och problem, som hon måste lösa för att hinna fram till byn Metkala före kvällen. Nedräkningen inför äventyret har börjat!</p><p><i>Metka matka!</i> är en varm, fantasieggande och fängslande skicklig föreställning, som tar barnen med på ett äventyr där samarbete och kreativitet alltid leder framåt. Föreställningen belönades med idéinkubatorn för barnteater ITU:s Pikku Itu-pris 2026. <br> <br>Arbetsgrupp: <br>Koncept, koreografi och regi: Jussi Väänänen <br>På scenen: Anniina Peltovako <br>Ljus- och scendesign: Juho Rahijärvi <br>Kostymdesign: Kati Autere<br>Ljuddesign: Touko Kemppainen <br>Produktion: Jussi Väänänen och Nomadi i samarbete med Circo Aereo</p><p>Åldersrekommendation: 3+ <br>Längd: ca 30 min. <br> <br><u><a> href=\"https://kultus.hel.fi/sv/event/kultus:agplcgl5nu\">Anmäl din grupp till föreställningarna på kultus.hel.fi från och med den 17 augusti.</u></a></p>", "en": "<p>Metka matka! (‘Wacky Trip!’) is an energetic and warm performance for children that combines dance and circus.</p><p>The performance follows Vekkuli-Vilma’s adventures as she makes her way to the mysterious village of Metkala. Along the way, we see skilful juggling, flexible dancing and inventive acrobatic feats. <br> <br>In the performance, Vekkuli-Vilma encounters a series of tricky problems and puzzles on her journey, which she must solve in order to reach the village of Metkala before nightfall. The countdown to adventure has begun!</p><p><i>Metka matka!</i> is a warm, imagination-tickling and delightfully skilful performance that takes children on an adventure where cooperation and creativity always lead the way. The performance was awarded the 2026 Pikku Itu prize by the children’s theatre idea incubator ITU. <br> <br>Creative team: <br>Concept, choreography and direction: Jussi Väänänen <br>Performer: Anniina Peltovako <br>Lighting and set design: Juho Rahijärvi <br>Costume design: Kati Autere<br>Sound design: Touko Kemppainen <br>Production: Jussi Väänänen and Nomadi-tuotanto in collaboration with Circo aereo</p><p>Recommended age: 3+ <br>Duration: roughly 30 min <br> <br><u><a> href=\"https://kultus.hel.fi/en/event/kultus:agplcgl5nu\">Sign up your group for the performances at kultus.hel.fi from 17 August onwards</u></a>.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys.", "sv": "Metka matka! (En festlig resa!) är en fartfylld och hjärtevärmande föreställning för barn som kombinerar dans och cirkus.", "en": "Metka matka! (‘Wacky Trip!’) is an energetic and warm performance for children that combines dance and circus." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A2048B6A6FD9165C79A62C9EE2755D91/Metka_matka_", "sv": "http://www.annantalo.fi/sv/evenemang/event/A2048B6A6FD9165C79A62C9EE2755D91/Metka_matka_", "en": "http://www.annantalo.fi/en/events/event/A2048B6A6FD9165C79A62C9EE2755D91/Metka_matka_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69480/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69479", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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": 2385275, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-22T06:14:06.013464Z", "last_modified_time": "2026-06-22T06:14:06.013478Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789657.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385275/?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-22T06:14:05.930817Z", "last_modified_time": "2026-08-18T13:14:26.682644Z", "date_published": null, "start_time": "2026-09-18T06:00:00Z", "end_time": "2026-09-18T06:40: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": "Metka matka! – Tanssi- ja sirkusesitys päiväkotiryhmille", "sv": "Metka matka! – Dans- och cirkusföreställning för daghemsgrupper", "en": "Metka matka! – Dance and circus performance for daycare groups" }, "description": { "fi": "<p>Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys.</p><p>Teos seuraa Vekkuli-Vilman seikkailuja hänen etsiessään tietään salaperäiseen Metkalan kylään. Matkan varrella nähdään tanssia, akrobaattisia temppuja ja yllättäviä tapahtumia.</p><p>Vekkuli-Vilma kohtaa myös visaisia tehtäviä ja pulmia, jotka hänen on ratkaistava ehtiäkseen perille Metkalan kylään ennen iltaa. Lähtölaskenta seikkailulle on alkanut!</p><p><i>Metka matka!</i> on lämminhenkinen, mielikuvitteluun kutsuva ja kutkuttavan taidokas esitys. Se vie lapset mukaan seikkailuun, jossa yhteistyö ja luovuus kukoistavat. Esitys palkittiin lastenteatterin ideahautomo ITUn vuoden 2026 Pikku Itu -palkinnolla.</p><p>Työryhmä:<br>Koreografia ja ohjaus: Jussi Väänänen<br>Esiintyjä: Anniina Peltovako<br>Valo- ja lavastussuunnittelu: Juho Rahijärvi<br>Pukusuunnittelu: Kati Autere<br>Äänisuunnittelu: Touko Kemppainen<br>Tuotanto: Jussi Väänänen ja Nomadi yhteistyössä Circo Aereon kanssa.</p><p>Ikäsuositus: 3+<br>Kesto: n. 30 min</p><p><u><a> href=\"https://kultus.hel.fi/fi/event/kultus:agplcgl5nu\">Ilmoita ryhmäsi esityksiin osoitteessa kultus.hel.fi 17.8. alkaen</u></a></p>", "sv": "<p>Metka matka! (En festlig resa!) är en fartfylld och hjärtevärmande föreställning för barn som kombinerar dans och cirkus.</p><p>Verket följer Vekkuli-Vilmas äventyr när hon söker sig till den mystiska byn Metkala. Under resan får publiken se skicklig jonglering, smidig dans och fantasifulla akrobatiska nummer. <br> <br>I föreställningen stöter Vekkuli-Vilma på sin resa på en rad kluriga uppgifter och problem, som hon måste lösa för att hinna fram till byn Metkala före kvällen. Nedräkningen inför äventyret har börjat!</p><p><i>Metka matka!</i> är en varm, fantasieggande och fängslande skicklig föreställning, som tar barnen med på ett äventyr där samarbete och kreativitet alltid leder framåt. Föreställningen belönades med idéinkubatorn för barnteater ITU:s Pikku Itu-pris 2026. <br> <br>Arbetsgrupp: <br>Koncept, koreografi och regi: Jussi Väänänen <br>På scenen: Anniina Peltovako <br>Ljus- och scendesign: Juho Rahijärvi <br>Kostymdesign: Kati Autere<br>Ljuddesign: Touko Kemppainen <br>Produktion: Jussi Väänänen och Nomadi i samarbete med Circo Aereo</p><p>Åldersrekommendation: 3+ <br>Längd: ca 30 min. <br> <br><u><a> href=\"https://kultus.hel.fi/sv/event/kultus:agplcgl5nu\">Anmäl din grupp till föreställningarna på kultus.hel.fi från och med den 17 augusti.</u></a></p>", "en": "<p>Metka matka! (‘Wacky Trip!’) is an energetic and warm performance for children that combines dance and circus.</p><p>The performance follows Vekkuli-Vilma’s adventures as she makes her way to the mysterious village of Metkala. Along the way, we see skilful juggling, flexible dancing and inventive acrobatic feats. <br> <br>In the performance, Vekkuli-Vilma encounters a series of tricky problems and puzzles on her journey, which she must solve in order to reach the village of Metkala before nightfall. The countdown to adventure has begun!</p><p><i>Metka matka!</i> is a warm, imagination-tickling and delightfully skilful performance that takes children on an adventure where cooperation and creativity always lead the way. The performance was awarded the 2026 Pikku Itu prize by the children’s theatre idea incubator ITU. <br> <br>Creative team: <br>Concept, choreography and direction: Jussi Väänänen <br>Performer: Anniina Peltovako <br>Lighting and set design: Juho Rahijärvi <br>Costume design: Kati Autere<br>Sound design: Touko Kemppainen <br>Production: Jussi Väänänen and Nomadi-tuotanto in collaboration with Circo aereo</p><p>Recommended age: 3+ <br>Duration: roughly 30 min <br> <br><u><a> href=\"https://kultus.hel.fi/en/event/kultus:agplcgl5nu\">Sign up your group for the performances at kultus.hel.fi from 17 August onwards</u></a>.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys.", "sv": "Metka matka! (En festlig resa!) är en fartfylld och hjärtevärmande föreställning för barn som kombinerar dans och cirkus.", "en": "Metka matka! (‘Wacky Trip!’) is an energetic and warm performance for children that combines dance and circus." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/64DDBB45193C4381550C4167E7710169/Metka_matka_", "sv": "http://www.annantalo.fi/sv/evenemang/event/64DDBB45193C4381550C4167E7710169/Metka_matka_", "en": "http://www.annantalo.fi/en/events/event/64DDBB45193C4381550C4167E7710169/Metka_matka_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69479/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68450", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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": 2385274, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-22T06:14:05.443460Z", "last_modified_time": "2026-06-22T06:14:05.443476Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789619.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385274/?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-22T06:14:05.347643Z", "last_modified_time": "2026-08-18T13:14:26.162497Z", "date_published": null, "start_time": "2026-09-17T07:30:00Z", "end_time": "2026-09-17T08: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": "Metka matka! – Tanssi- ja sirkusesitys päiväkotiryhmille", "sv": "Metka matka! – Dans- och cirkusföreställning för daghemsgrupper", "en": "Metka matka! – Dance and circus performance for daycare groups" }, "description": { "fi": "<p>Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys.</p><p>Teos seuraa Vekkuli-Vilman seikkailuja hänen etsiessään tietään salaperäiseen Metkalan kylään. Matkan varrella nähdään tanssia, akrobaattisia temppuja ja yllättäviä tapahtumia.</p><p>Vekkuli-Vilma kohtaa myös visaisia tehtäviä ja pulmia, jotka hänen on ratkaistava ehtiäkseen perille Metkalan kylään ennen iltaa. Lähtölaskenta seikkailulle on alkanut!</p><p><i>Metka matka!</i> on lämminhenkinen, mielikuvitteluun kutsuva ja kutkuttavan taidokas esitys. Se vie lapset mukaan seikkailuun, jossa yhteistyö ja luovuus kukoistavat. Esitys palkittiin lastenteatterin ideahautomo ITUn vuoden 2026 Pikku Itu -palkinnolla.</p><p>Työryhmä:<br>Koreografia ja ohjaus: Jussi Väänänen<br>Esiintyjä: Anniina Peltovako<br>Valo- ja lavastussuunnittelu: Juho Rahijärvi<br>Pukusuunnittelu: Kati Autere<br>Äänisuunnittelu: Touko Kemppainen<br>Tuotanto: Jussi Väänänen ja Nomadi yhteistyössä Circo Aereon kanssa.</p><p>Ikäsuositus: 3+<br>Kesto: n. 30 min</p><p><u><a> href=\"https://kultus.hel.fi/fi/event/kultus:agplcgl5nu\">Ilmoita ryhmäsi esityksiin osoitteessa kultus.hel.fi 17.8. alkaen</u></a></p>", "sv": "<p>Metka matka! (En festlig resa!) är en fartfylld och hjärtevärmande föreställning för barn som kombinerar dans och cirkus.</p><p>Verket följer Vekkuli-Vilmas äventyr när hon söker sig till den mystiska byn Metkala. Under resan får publiken se skicklig jonglering, smidig dans och fantasifulla akrobatiska nummer. <br> <br>I föreställningen stöter Vekkuli-Vilma på sin resa på en rad kluriga uppgifter och problem, som hon måste lösa för att hinna fram till byn Metkala före kvällen. Nedräkningen inför äventyret har börjat!</p><p><i>Metka matka!</i> är en varm, fantasieggande och fängslande skicklig föreställning, som tar barnen med på ett äventyr där samarbete och kreativitet alltid leder framåt. Föreställningen belönades med idéinkubatorn för barnteater ITU:s Pikku Itu-pris 2026. <br> <br>Arbetsgrupp: <br>Koncept, koreografi och regi: Jussi Väänänen <br>På scenen: Anniina Peltovako <br>Ljus- och scendesign: Juho Rahijärvi <br>Kostymdesign: Kati Autere<br>Ljuddesign: Touko Kemppainen <br>Produktion: Jussi Väänänen och Nomadi i samarbete med Circo Aereo</p><p>Åldersrekommendation: 3+ <br>Längd: ca 30 min. <br> <br><u><a> href=\"https://kultus.hel.fi/sv/event/kultus:agplcgl5nu\">Anmäl din grupp till föreställningarna på kultus.hel.fi från och med den 17 augusti.</u></a></p>", "en": "<p>Metka matka! (‘Wacky Trip!’) is an energetic and warm performance for children that combines dance and circus.</p><p>The performance follows Vekkuli-Vilma’s adventures as she makes her way to the mysterious village of Metkala. Along the way, we see skilful juggling, flexible dancing and inventive acrobatic feats. <br> <br>In the performance, Vekkuli-Vilma encounters a series of tricky problems and puzzles on her journey, which she must solve in order to reach the village of Metkala before nightfall. The countdown to adventure has begun!</p><p><i>Metka matka!</i> is a warm, imagination-tickling and delightfully skilful performance that takes children on an adventure where cooperation and creativity always lead the way. The performance was awarded the 2026 Pikku Itu prize by the children’s theatre idea incubator ITU. <br> <br>Creative team: <br>Concept, choreography and direction: Jussi Väänänen <br>Performer: Anniina Peltovako <br>Lighting and set design: Juho Rahijärvi <br>Costume design: Kati Autere<br>Sound design: Touko Kemppainen <br>Production: Jussi Väänänen and Nomadi-tuotanto in collaboration with Circo aereo</p><p>Recommended age: 3+ <br>Duration: roughly 30 min <br> <br><u><a> href=\"https://kultus.hel.fi/en/event/kultus:agplcgl5nu\">Sign up your group for the performances at kultus.hel.fi from 17 August onwards</u></a>.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys.", "sv": "Metka matka! (En festlig resa!) är en fartfylld och hjärtevärmande föreställning för barn som kombinerar dans och cirkus.", "en": "Metka matka! (‘Wacky Trip!’) is an energetic and warm performance for children that combines dance and circus." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8AC6AB33FFD25721608F87433BC07804/Metka_matka_", "sv": "http://www.annantalo.fi/sv/evenemang/event/8AC6AB33FFD25721608F87433BC07804/Metka_matka_", "en": "http://www.annantalo.fi/en/events/event/8AC6AB33FFD25721608F87433BC07804/Metka_matka_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68450/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69478", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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": 2385273, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-22T06:14:05.032978Z", "last_modified_time": "2026-06-22T06:14:05.033011Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789656.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385273/?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-22T06:14:04.907791Z", "last_modified_time": "2026-08-18T13:14:25.877720Z", "date_published": null, "start_time": "2026-09-17T06:00:00Z", "end_time": "2026-09-17T06:40: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": "Metka matka! – Tanssi- ja sirkusesitys päiväkotiryhmille", "sv": "Metka matka! – Dans- och cirkusföreställning för daghemsgrupper", "en": "Metka matka! – Dance and circus performance for daycare groups" }, "description": { "fi": "<p>Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys.</p><p>Teos seuraa Vekkuli-Vilman seikkailuja hänen etsiessään tietään salaperäiseen Metkalan kylään. Matkan varrella nähdään tanssia, akrobaattisia temppuja ja yllättäviä tapahtumia.</p><p>Vekkuli-Vilma kohtaa myös visaisia tehtäviä ja pulmia, jotka hänen on ratkaistava ehtiäkseen perille Metkalan kylään ennen iltaa. Lähtölaskenta seikkailulle on alkanut!</p><p><i>Metka matka!</i> on lämminhenkinen, mielikuvitteluun kutsuva ja kutkuttavan taidokas esitys. Se vie lapset mukaan seikkailuun, jossa yhteistyö ja luovuus kukoistavat. Esitys palkittiin lastenteatterin ideahautomo ITUn vuoden 2026 Pikku Itu -palkinnolla.</p><p>Työryhmä:<br>Koreografia ja ohjaus: Jussi Väänänen<br>Esiintyjä: Anniina Peltovako<br>Valo- ja lavastussuunnittelu: Juho Rahijärvi<br>Pukusuunnittelu: Kati Autere<br>Äänisuunnittelu: Touko Kemppainen<br>Tuotanto: Jussi Väänänen ja Nomadi yhteistyössä Circo Aereon kanssa.</p><p>Ikäsuositus: 3+<br>Kesto: n. 30 min</p><p><u><a> href=\"https://kultus.hel.fi/fi/event/kultus:agplcgl5nu\">Ilmoita ryhmäsi esityksiin osoitteessa kultus.hel.fi 17.8. alkaen</u></a></p>", "sv": "<p>Metka matka! (En festlig resa!) är en fartfylld och hjärtevärmande föreställning för barn som kombinerar dans och cirkus.</p><p>Verket följer Vekkuli-Vilmas äventyr när hon söker sig till den mystiska byn Metkala. Under resan får publiken se skicklig jonglering, smidig dans och fantasifulla akrobatiska nummer. <br> <br>I föreställningen stöter Vekkuli-Vilma på sin resa på en rad kluriga uppgifter och problem, som hon måste lösa för att hinna fram till byn Metkala före kvällen. Nedräkningen inför äventyret har börjat!</p><p><i>Metka matka!</i> är en varm, fantasieggande och fängslande skicklig föreställning, som tar barnen med på ett äventyr där samarbete och kreativitet alltid leder framåt. Föreställningen belönades med idéinkubatorn för barnteater ITU:s Pikku Itu-pris 2026. <br> <br>Arbetsgrupp: <br>Koncept, koreografi och regi: Jussi Väänänen <br>På scenen: Anniina Peltovako <br>Ljus- och scendesign: Juho Rahijärvi <br>Kostymdesign: Kati Autere<br>Ljuddesign: Touko Kemppainen <br>Produktion: Jussi Väänänen och Nomadi i samarbete med Circo Aereo</p><p>Åldersrekommendation: 3+ <br>Längd: ca 30 min. <br> <br><u><a> href=\"https://kultus.hel.fi/sv/event/kultus:agplcgl5nu\">Anmäl din grupp till föreställningarna på kultus.hel.fi från och med den 17 augusti.</u></a></p>", "en": "<p>Metka matka! (‘Wacky Trip!’) is an energetic and warm performance for children that combines dance and circus.</p><p>The performance follows Vekkuli-Vilma’s adventures as she makes her way to the mysterious village of Metkala. Along the way, we see skilful juggling, flexible dancing and inventive acrobatic feats. <br> <br>In the performance, Vekkuli-Vilma encounters a series of tricky problems and puzzles on her journey, which she must solve in order to reach the village of Metkala before nightfall. The countdown to adventure has begun!</p><p><i>Metka matka!</i> is a warm, imagination-tickling and delightfully skilful performance that takes children on an adventure where cooperation and creativity always lead the way. The performance was awarded the 2026 Pikku Itu prize by the children’s theatre idea incubator ITU. <br> <br>Creative team: <br>Concept, choreography and direction: Jussi Väänänen <br>Performer: Anniina Peltovako <br>Lighting and set design: Juho Rahijärvi <br>Costume design: Kati Autere<br>Sound design: Touko Kemppainen <br>Production: Jussi Väänänen and Nomadi-tuotanto in collaboration with Circo aereo</p><p>Recommended age: 3+ <br>Duration: roughly 30 min <br> <br><u><a> href=\"https://kultus.hel.fi/en/event/kultus:agplcgl5nu\">Sign up your group for the performances at kultus.hel.fi from 17 August onwards</u></a>.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys.", "sv": "Metka matka! (En festlig resa!) är en fartfylld och hjärtevärmande föreställning för barn som kombinerar dans och cirkus.", "en": "Metka matka! (‘Wacky Trip!’) is an energetic and warm performance for children that combines dance and circus." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B5A8E43061ECBCDF573BE2E623305622/Metka_matka_", "sv": "http://www.annantalo.fi/sv/evenemang/event/B5A8E43061ECBCDF573BE2E623305622/Metka_matka_", "en": "http://www.annantalo.fi/en/events/event/B5A8E43061ECBCDF573BE2E623305622/Metka_matka_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69478/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68430", "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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?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": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T12:13:17.330298Z", "last_modified_time": "2026-08-18T09:14:31.681633Z", "date_published": null, "start_time": "2026-08-19T14:30:00Z", "end_time": "2027-05-19T16: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": "Seed Art Studio: Taide ympäri maailmaa (taidetta englanniksi) – 5–11-vuotiaat, 2017-2019 syntyneet", "sv": "Seed Art Studio: Taide ympäri maailmaa (taidetta englanniksi) – Konst jorden runt (konst på engelska) – 5–11-åringar, född 2017-2019", "en": "Seed Art Studio: Taide ympäri maailmaa (taidetta englanniksi) – Art Around the World (Art in English) – 5–11-year-olds, born 2017-2019" }, "description": { "fi": "<p>Ota passi ja seikkailumieli mukaan! Lähdemme unohtumattomalle matkalle ympäri maailma luomaan upeaa taidetta eri kulttuurien ja kiehtovien maisemien inspiroimina. Samalla opimme & harjoittelemme englantia lämpimässä ja itseluottamusta vahvistavassa ympäristössä. Sekä englannin kielen oppijat että sitä äidinkielenään puhuvat ovat tervetulleita.</p><p>Kulttuuriesineiden, kirjojen ja musiikin avulla opimme aiheista, kuten Australian aboriginaalien pistemaalauksesta ja meksikolaisen taiteilijan Frida Kahlon rakkaudesta eksoottisiin eläimiin.</p><p>Maalaamme, piirrämme ja luomme laadukkailla taidemateriaaleilla ja kokeilemme hauskoja tekniikoita.</p><p>Ryhmä pidetään pienenä ja viihtyisänä, jotta jokainen lapsi saa yksilöllistä huomiota. Lapset auttavat suunnittelemaan matkoja ehdottamalla kohteita, joita he ovat kiinnostuneita tutkimaan. Suomea käytetään tarvittaessa.</p><p>Katsotaan, minne taiteellinen matkamme vie – tule mukaan!</p><p>*Rushan Seed Art Studiosta on Kaliforniasta kotoisin ja TEFL-sertifioitu opettaja, jolla on yli 25 vuoden kokemus lasten luovuuden tukemisesta.</p><p>Syyslukukausi 450€<br>Kevätlukukausi 500€</p><p>Ilmoittaudu sekä syys- että kevätlukukaudelle Seed Art Studion verkkosivujen kautta viimeistään 13.08.2026\thttps://www.seedartstudio.com/classes-at-annantalo.html</p>", "sv": "<p>Ta med pass och äventyrslust! Vi ger oss ut på en resa jorden runt för att skapa fantastisk konst inspirerad av olika kulturer, konstformer och fascinerande landskap. Samtidigt övar vi engelska i en vänlig och självförtroendeskapande miljö. Både de som lär sig engelska och de med det som modersmål är varmt välkomna.</p><p>Genom kulturföremål, böcker och musik lär vi oss om allt från australiska aboriginernas punktmålning till den mexikanska konstnären Frida Kahlos kärlek till exotiska djur. Vi skapar med konstnärsmaterial av hög kvalitet och provar på roliga tekniker. Barnen hjälper till att planera våra framtida resor genom att föreslå destinationer som de är nyfikna på att utforska.</p><p>Gruppen hålls liten & trivsam för att ge en personlig och noggrant utformad upplevelse – varje barn får gott om uppmärksamhet. Finska används vid behov.</p><p>Låt oss se var i världen vår konstnärliga resa tar oss!</p><p>*Rushan från Seed Art Studio är en infödd kalifornier och TEFL-certifierad instruktör med över 25 års erfarenhet av att vårda barns kreativitet.</p><p>Hösttermin 450€<br>Vårtermin 500€</p><p>Anmäl dig till höst- och vårterminen på Seed Art Studios webbplats senast den 13 augusti 2026: https://www.seedartstudio.com/classes-at-annantalo.html</p>", "en": "<p>Grab your passport and sense of adventure! We’re going on an unforgettable journey around the world to make amazing art inspired by different cultures, art forms, and fascinating landscapes. All the while, we learn and practice English in a friendly and confidence-building environment. Both English learners & native speakers are warmly welcome.</p><p>Using inspiring cultural objects, books and even music, we learn about topics like Australian Aboriginal dot painting and Mexican artist Frida Kahlo’s love for exotic animals.<br>We paint, draw, and build with quality art materials and try out fun techniques and tools.</p><p>This class is kept small & cozy to ensure a personalized and specially curated experience–each child gets plenty of attention. Kids help plan our future travels by suggesting destinations they are curious about exploring. Finnish is used as necessary.</p><p>Let’s see where in the world our artful trip takes us!</p><p>*Rushan of Seed Art Studio is a native Californian and TEFL certified instructor with over 25 years of experience nurturing children’s creativity</p><p>Fall term 450€<br>Spring term 500€</p><p>Register for the autumn and spring semesters on Seed Art Studio's website by August 13, 2026: https://www.seedartstudio.com/classes-at-annantalo.html</p>" }, "provider_contact_info": null, "short_description": { "fi": "Ota passi ja seikkailumieli mukaan! Lähdemme unohtumattomalle matkalle ympäri maailma luomaan upeaa taidetta eri kulttuurien ja kiehtovien maisemien inspiroimina. Samalla opimme & harjoittelemme englantia lämpimässä ja itseluottamusta vahvistavassa ympäristössä. Sekä englannin kielen oppijat että sitä äidinkielenään puhuvat ovat tervetulleita.", "sv": "Ta med pass och äventyrslust! Vi ger oss ut på en resa jorden runt för att skapa fantastisk konst inspirerad av olika kulturer, konstformer och fascinerande landskap. Samtidigt övar vi engelska i en vänlig och självförtroendeskapande miljö. Både de som lär sig engelska och de med det som modersmål är varmt välkomna.", "en": "Grab your passport and sense of adventure! We’re going on an unforgettable journey around the world to make amazing art inspired by different cultures, art forms, and fascinating landscapes. All the while, we learn and practice English in a friendly and confidence-building environment. Both English learners & native speakers are warmly welcome." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/54A5AED6BD7F15140C619D9D5069D008/Seed_Art_Studio_Taide_ympari_maailmaa_taidetta_englanniksi_", "sv": "http://www.annantalo.fi/sv/evenemang/event/54A5AED6BD7F15140C619D9D5069D008/Seed_Art_Studio_Taide_ympari_maailmaa_taidetta_englanniksi_Konst_jorden_runt_konst_pa_engelska_", "en": "http://www.annantalo.fi/en/events/event/54A5AED6BD7F15140C619D9D5069D008/Seed_Art_Studio_Taide_ympari_maailmaa_taidetta_englanniksi_Art_Around_the_World_Art_in_English_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68430/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqbimknim", "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:p1947/?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:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "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": 2385841, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-18T08:07:44.687369Z", "last_modified_time": "2026-08-18T08:07:44.687384Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4c02639e-7595-432d-8280-be1b20137813.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Kirjan kannen suunnittelija Tuomo Parikka. Valokuva Hanna Hurtta.", "alt_text": "Kasviskapina-kirjan kansi ja Hanna Hurtta syömässä istuen nuudelia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385841/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-18T08:26:07.349674Z", "last_modified_time": "2026-08-18T08:26:07.349690Z", "date_published": "2026-08-18T08:30:18.823000Z", "start_time": "2026-09-12T11:00:00Z", "end_time": "2026-09-12T13: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": "Jukeboksi tila ", "sv": "Jukeboksi utrymme", "en": "Jukeboksi venue" }, "provider": null, "name": { "fi": "Kasviskapinaa! kirjailijavierailu ", "sv": "Vegetariskt uppror! – författarbesök", "en": "Veggie Rebellion! – an author visit" }, "description": { "fi": "<p>Kasviskapinailtapäivässä pääsemme maistamaan uunituoreesta keittokirjasta Hannan valitsemaa reseptiä jutustelun lomassa. </p><p>Hanna Hurtta on ruokatoimittaja, kasvisruokakokki ja pitkän linjan vegaanivaikuttaja. Hänen tavoitteenaan ei ole moittia vaan inspiroida: näyttää, kuinka kasvisruoka voi olla arjen ilo, ekologinen teko ja samalla makunystyröitä kutkuttava seikkailu.</p><p>Tapahtuma on ilmainen.</p><p>Ennakkoilmottautumista ei tarvita.</p><p>Tapahtuma on suomenkielinen. </p>", "sv": "<p>Under den här vegetariska eftermiddagen får vi smaka på ett recept som Hanna har valt ur en helt ny kokbok, samtidigt som vi småpratar.</p><p>Hanna Hurtta är matjournalist, vegetarisk kock och en veganaktivist med lång erfarenhet. Hennes mål är inte att kritisera utan att inspirera: att visa hur vegetarisk mat kan vara en glädje i vardagen, en miljövänlig handling och samtidigt ett äventyr som kittlar smaklökarna.</p><p>Evenemanget är gratis.</p><p>Förhandsanmälan behövs inte.</p><p>Evenemanget hålls på finska.</p>", "en": "<p>At the Vegetarian Afternoon, we’ll get to sample a recipe chosen by Hanna from a brand-new cookbook whilst chatting.</p><p>Hanna Hurtta is a food journalist, vegetarian chef and long-standing vegan influencer. Her aim is not to criticise but to inspire: to show how plant-based food can be a daily joy, an eco-friendly choice and, at the same time, a taste bud-tingling adventure.</p><p>The event is free of charge.</p><p>No advance booking is required.</p><p>The event will be held in Finnish.</p><p><br></p>" }, "provider_contact_info": null, "short_description": { "fi": "Juttelua ja maistelua Kasviskapinaa kirjasta, vegaanisesti. ", "sv": "Samtal och provsmakning ur boken ”Kasviskapina”, på veganskt vis. ", "en": "A chat and a tasting session based on the book Kasviskapina, vegan." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqbimknim/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69705", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 2385831, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-18T07:14:00.679622Z", "last_modified_time": "2026-08-18T07:14:00.679635Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796510.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385831/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-18T07:14:00.517323Z", "last_modified_time": "2026-08-18T07:14:00.878859Z", "date_published": null, "start_time": "2026-08-26T08:00:00Z", "end_time": "2026-08-26T10: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": "Graffitijamit", "sv": "Graffitijamit", "en": "Graffitijamit" }, "description": { "fi": "<p>Tervetuloa tutustumaan graffitimaalaukseen ja jamittelemaan Ala-Malmin torille! Asukkaiden toiveen pohjalta järjestetyssä tapahtumassa pääset kokeilemaan graffitien tekoa yhdessä ohjaajan kanssa tai itsenäisesti. Graffitityöpajan ohjaajana toimii kuvataiteilija Santtu Tuomola. Tuomola on Etelä-Karjalan Taiteilijaseuran sekä Taidekollektiivi Äärellisen joukon jäsen sekä Taidemaalariliiton kokelasjäsen. Hänen teoksensa käsittelevät päihderiippuvaisen addiktiosairaan elämää: Tuomola kuvaa teoksissaan päihderiippuvuuden aiheuttamia tapahtumia, sekä kokemuksia ja tunnetiloja ja tuo näkyväksi heidän äänensä, joita ei yleensä kuulla.<br>Roskista ja kierrätysmateriaaleista musiikkia luovan Trash Drumming -yhtyeen rumpalit Aleksi Kinnunen ja Niklas Ahlsved musisoivat yhdessä Q-Teatterin näyttelijä/muusikko Timo Mäkysen kanssa. Roskarumpuja ja kitaraa yhdisteleviä improvisoituja jameja kuullaan Ala-Malmin torilla tapahtuman ajan.<br> <br>Ei ennakkoilmoittautumista! Graffitimaalaukseen tarvittavat materiaalit löytyvät tapahtumasta. Tapahtuma järjestetään Via Dia kahvilan yhteydessä.<br>Maksuton</p>" }, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9BAD6C5F409BF09F493151BCB576E085/Graffitijamit", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9BAD6C5F409BF09F493151BCB576E085/Graffitijamit", "en": "http://www.malmitalo.fi/en/events/event/9BAD6C5F409BF09F493151BCB576E085/Graffitijamit" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69705/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:21462309", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4113324/?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/birds-of-paradise-helsingin-kaupunginteatteri-studio-pasila-21462309/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/birds-of-paradise-helsingin-kaupunginteatteri-studio-pasila-21462309/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/birds-of-paradise-helsingin-kaupunginteatteri-studio-pasila-21462309/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1646632, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T21:15:32.096046Z", "last_modified_time": "2026-03-16T21:15:32.096061Z", "url": "https://www.lippu.fi/obj/mam/finland/b2/76/bird-of-paradise-tickets_524214_4111198_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/1646632/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-16T21:15:34.255426Z", "last_modified_time": "2026-08-17T23:16:28.838960Z", "date_published": null, "start_time": "2026-08-17T15: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": "Studio Pasila" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "en": "Birds Of Paradise" }, "description": { "fi": "<p>Tiia Kasurinen<br><strong>BIRDS OF PARADISE</strong></p><p><strong>Tiia Kasurisen </strong>Birds of Paradise ammentaa paratiisilintujen soidintansseista, showpainista, rakkauslauluista ja kaipuusta. Koreografinen teos näyttää, miten sekä linnut että ihmiset rakentavat rituaaleja tullakseen huomatuksi, hyväksytyksi ja valituksi. Lopputuloksena on fyysinen ja leikittelevä esitys, joka tarkastelee valtaa, sukupuolirooleja sekä haavoittuvuutta.<br>Lintujen soidintanssien lisäksi Bird of Paradise inspiroituu ihmisen stereotyypillisestä maskuliinisuudesta: showpainista, kamppailulajeista, poikabändeistä, prinsseistä ja klubikulttuurista. Lavalla nähdään neljä utopistista paratiisilintua, joiden asut ovat pukusuunnittelija <strong>Leevi Ikäheimon </strong>hypermaskuliinisuutta tutkivasta No Pain No Glamour -mallistosta.</p><p>Birds of Paradise on Nykyesityksen näyttämön ohjelmistoa. Studio Pasilassa toimiva Nykyesityksen näyttämö tuo uusia esittävän taiteen muotoja osaksi Helsingin Kaupunginteatterin ohjelmistoa ja luo ainutlaatuisia kohtaamisia kiinteän ammattiteatterin ja vapaan kentän toimijoiden välille.</p><p>Birds of Paradise -teoksen varhainen versio herätti kansainvälistä kiinnostusta jo vuonna 2024, jolloin se valittiin Danse Élargie -koreografiakilpailun finaaliin Pariisissa – ensimmäisenä suomalaisteoksena kilpailun historiassa. Kasurinen valmistui Tukholman taideyliopistosta tanssitaiteen koulutusohjelmasta vuonna 2017. Hänen koreografioitaan on esitetty muun muassa Dance Basessa Yokohamassa Japanissa, One Dance -festivaalilla Bulgariassa. Inkonstissa Ruotsissa sekä Helsingin juhlaviikoilla ja Zodiak – Uuden tanssin keskuksessa. Kasurinen tutkailee teoksillaan identiteettiä, sukupuolta ja pop-kulttuuria. Internet ja sen erilaiset muodot ovat hänelle tärkeä inspiraation lähde.</p><p>Tukijat ja yhteistyökumppanit: Koneen säätiö, Suomen Kulttuurirahasto, Institut Finlandais, pARTir, Dansé Elargie, Zodiak - Uuden tanssin keskus / Loisto, Helsingin Kaupunginteatterin Nykyesityksen Näyttämö</p><p>Residenssit: Cité Internationale des Arts, Atelier De Paris, Saaren kartano, Helsingin Kaupunginteatterin Nykyesityksen näyttämö ö<br></p>" }, "provider_contact_info": null, "short_description": { "fi": "Tiia Kasurinen BIRDS OF PARADISE Tiia Kasurisen Birds of Paradise ammentaa paratiisilintujen soidintansseista, showpainista, rakkauslauluista ja kaipuusta." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/birds-of-paradise-4113324/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/birds-of-paradise-4113324/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/birds-of-paradise-4113324/?affiliate=ADV&language=en" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21462309/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69362", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@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": "31,90 € - 41,90 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/valede-vorgus-ehk-vino-veritas-4184287/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385199, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-16T15:13:52.979725Z", "last_modified_time": "2026-06-16T15:13:52.979739Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794102.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385199/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-16T15:13:52.859599Z", "last_modified_time": "2026-08-17T13:15:32.114309Z", "date_published": null, "start_time": "2026-10-28T17: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": "Komöödiateater OÜ" }, "name": { "fi": "Valede võrgus ehk Vino Veritas" }, "description": { "fi": "<p>Komöödia kahes vaatuses.</p><p>Neli sõpra otsustavad ühel Halloweeni õhtul üksteisele ainult tõtt rääkida. Mis see siis ära pole! Või siiski? Igatahes võtavad nad appi ühe iidse joogi, mis sellele kaasa aitab. Peo perenaine on Peruu reisilt kaasa toonud sinakat värvi veini, mida indiaanlased joovad enne abiellumist. Siis ei saa rääkida muud kui tõtt ja kes selle välja kannatab, saab paari pandud. Mõni ime, et inkad välja surid! <br>Harilikult möllavad suhtekomöödias väikesed ja suured valed, aga siin räägitakse ainult tõtt. Korraga nii õudne kui naljakas!</p><p>Ameeriklase David MacGregori komöödia on tõlkinud Heiti Pakk, mängivad Ott Sepp, Kaia Skoblov, Indrek Taalmaa ja Marika Barabanštšikova.</p><p>„Valede võrgus ehk Veinis peitub tõde“ etendub Helsingi Savoy Teatris 28. oktoobril kell 19.</p><p>Esitluse keel: eesti</p><p>Kesto n. 2 h, sis. väliajan</p>" }, "provider_contact_info": null, "short_description": { "fi": "Komöödia kahes vaatuses." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5E3EBF3D5038B363B9AFE0738BE69FFB/Valede_v_rgus_ehk_Vino_Veritas" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69362/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqa7z2m4y", "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": "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": 2385820, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-17T12:55:04.845238Z", "last_modified_time": "2026-08-17T12:55:04.845251Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/a89bbbe5-ae44-4df8-9632-664e7e94f087.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Joonas Kaeek", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385820/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-17T12:55:15.107643Z", "last_modified_time": "2026-08-17T12:55:15.107660Z", "date_published": null, "start_time": "2026-09-05T12:00:00Z", "end_time": "2026-09-05T13: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": "Lava", "sv": "Scen", "en": "Stage" }, "provider": { "fi": "Joonas Kaeek", "sv": "Joonas Kaeek", "en": "Joonas Kaeek" }, "name": { "fi": "Joonas Kaeek Show", "sv": "Joonas Kaeek Show", "en": "Joonas Kaeek Show" }, "description": { "fi": "<p>Näe ja kuule kun Joonas Kaeek tulkitsee kaikkien aikojen isoimpia englanninkielisiä hittejä eri artisteilta läpi vuosikymmenten. Luvassa energiaa tihkuva yhden miehen show! Ensimmäistä kertaa Suomessa Sellon kirjastossa lauantaina 05.09.2026 klo 15!</p>", "sv": "<p>Se och hör när Joonas Kaeek tolkar de största engelskspråkiga hitsen genom tiderna från olika artister genom årtiondena. Det blir en energifylld enmansshow! För första gången i Finland på Sellos bibliotek lördagen den 5 september 2026 kl. 15!</p>", "en": "<p>See and hear Joonas Kaeek perform some of the biggest English-language hits of all time by various artists across the decades. Get ready for an energetic one-man show! For the first time in Finland,at Sello Library on Saturday 5 September 2026 at 3 pm!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Näe ja kuule kun Joonas Kaeek tulkitsee kaikkien aikojen isoimpia englanninkielisiä hittejä eri artisteilta läpi vuosikymmenten.", "sv": "Se och hör när Joonas Kaeek tolkar de största engelskspråkiga hitsen genom tiderna från olika artister genom årtiondena.", "en": "See and hear Joonas Kaeek perform some of the biggest English-language hits of all time by various artists across the decades" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqa7z2m4y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqa7m7y6u", "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:p2149/?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": 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": 2385819, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-17T11:22:40.208789Z", "last_modified_time": "2026-08-17T11:22:40.208802Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/6adb7dc4-466d-4daa-8080-9284a74db84e.jpg", "name": "", "cropping": "240,0,1680,1440", "photographer_name": "", "alt_text": "Entressen kirjaston aulaa. Esittelypöytiä jossa kirjoja, kirjahyllyjä ja vitriini jossa taidenäyttely.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385819/?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-11T14:36:20.733979Z", "last_modified_time": "2026-08-17T11:23:25.784549Z", "date_published": "2026-08-17T11:25:00Z", "start_time": "2026-10-06T09:00:00Z", "end_time": "2026-10-06T10: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": "Kirjastokierros ", "sv": "Biblioteksrundtur ", "en": "Library tour" }, "description": { "fi": "<p>Tiesitkö että kirjastossa voi kokata, paikata vaatteita, lukea lehtiä, pelata aikuisten pelihuoneessa, ihan vaan hengata tai osallistua vaikka vapaaehtoisena kirjaston toimintaan.</p><p>Tule mukaan kirjastokierrokselle kuulemaan mitä kaikkea kirjastossa voi tehdä tai miten voit hyötyä kirjaston palveluista.</p><p>Tunnin kestävä kierros alkaa Entressen kirjaston lehtienlukualueelta ja päättyy Pajaan.</p><p>Kierrokset ovat samansisältöiset.</p><p>Ei ennakkoilmoittautumista.</p><p>Kierros pidetään suomeksi.</p>", "sv": "<p>Visste du att man på biblioteket kan laga mat, laga kläder, läsa tidningar, spela i spelrummet för vuxna, bara hänga eller till och med delta som volontär i bibliotekets verksamhet?</p><p>Följ med på en biblioteksrundtur för att höra vad man kan göra på biblioteket och hur du kan dra nytta av bibliotekets tjänster.</p><p>Den timslånga rundvandringen börjar i tidningsläsesalen på Entresse-biblioteket och avslutas i Verkstaden.</p><p>Rundvandringarna har samma innehåll.</p><p>Ingen föranmälan krävs.</p><p>Rundvandringen hålls på finska.</p>", "en": "<p>Did you know that at the library you can cook, mend clothes, read magazines, play games in the adults’ games room, just hang out, or even get involved as a volunteer in the library’s activities?</p><p>Come along on a library tour to find out all the things you can do at the library and how you can benefit from its services.</p><p>The one-hour tour starts in the newspaper and magazine reading area at Entresse Library and ends at Maker Space.</p><p>All tours cover the same content.</p><p>No advance booking required.</p><p>The tour is conducted in Finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Opi lisää siitä mitä kirjasto voi tarjota sinulle", "sv": "Läs mer om vad biblioteket kan erbjuda dig", "en": "Find out more about what the library has to offer" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqa7m7y6u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69704", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "29-48 €" }, "info_url": { "fi": "https://www.lippu.fi/event/we-jazz-presents-nik-bartschs-ronin-savoy-teatteri-22007265/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385814, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-17T11:14:51.685763Z", "last_modified_time": "2026-08-17T11:14:51.685780Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796500.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385814/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-17T11:14:51.533560Z", "last_modified_time": "2026-08-17T11:14:51.892115Z", "date_published": null, "start_time": "2027-05-05", "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": "We Jazz Oy" }, "name": { "fi": "We Jazz presents: Nik Bärtsch's RONIN" }, "description": { "fi": "<p>Nykyajan omaäänisimpiin jaza-artisteihin lukeutuva sveitsiläispianisti Nik Bärtsch saapuu RONIN-yhtyeensä kera Suomeen keväällä ja konsertoi Helsingin Savoy-teatterissa keskiviikkona 5.5.2027. Musiikkiaan \"Zen Funk\" -termillä luonnehtiva Bärtsch tuo samalla rakastetun RONIN-yhtyeensä konsertoimaan ensi kertaa Helsinkiin.</p><p>Bärtsch on merkittävä tekijä jazziin liittyvän musiikillisen ajattelun uudistajana ja hän on luonut RONIN-yhtyeineen täysin omanlaisensa musiikillisen näkökulman. Myös termi \"Ritual Groove Music\" kuvaa hyvin Roninin meditatiivista, joskin paikoin myös myrskyisää musiikkia. Roninin musiikki kehittyy hiljaa vaanien, tuoden yhteen jazzin, funkin ja japanilaisen musiikkiperinteen kaikuja.</p><p>Maineikkaalle ECM-levymerkille tehdyt albumit ovat tehneet Bärtschin Roninista maailmanlaajuisesti seuratun yhtyeen, jonka keikat ovat aina Tapauksia isolla alkukirjaimella. Jo vuodesta 2001 yhdessä soittanut kvartetti on kehittynyt zürichiläisen Exil-klubin viikottaisissa sessioissa hitaasti kypsyen, ja nelikon saumaton yhteinen musiikillinen pyrkimys kuuluu upeasti sekä levyillä että livenä.</p><p>Tuorein RONIN-albumi Spin näki päivänvalon vuonna 2024, jonka jälkeen yhtye on kiertänyt maailmaa herättäen ihastusta sekä festivaaleilla että konserttisaleissa.</p><p>RONIN-yhtyeeseen kuuluvat pianisti Bärtschin lisäksi Kaspar Rast (rummut), Jeremias Keller (basso) ja Sha (puhaltimet). Kiertueella yhtyeen tarjoaman kokonaisvaltaisen musiikkielämyksen täydentävät aina mukana oleva oma valosuunnittelija ja ääniteknikko.</p><p>Ovet klo 18.00. Showtime vahvistuu myöhemmin.</p><p>Nik Bärtsch -dokumenttielokuva Scientists Of Groove (2024) Youtubessa:</p>" }, "provider_contact_info": null, "short_description": { "fi": "Nykyajan omaäänisimpiin jaza-artisteihin lukeutuva sveitsiläispianisti Nik Bärtsch saapuu RONIN-yhtyeensä kera Suomeen keväällä ja konsertoi Helsingin Savoy-teatterissa keskiviikkona 5.5.2027. Musiikkiaan \"Zen Funk\" -termillä luonnehtiva Bärtsch tuo samalla rakastetun RONIN-yhtyeensä konsertoimaan ensi kertaa Helsinkiin." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0F911AB8BDB3A7362E491AEFA91DF483/We_Jazz_presents_Nik_Bartsch_s_RONIN" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69704/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69703", "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: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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385812, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-17T11:14:13.422302Z", "last_modified_time": "2026-08-17T11:14:13.422318Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796499.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385812/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-17T11:14:13.253288Z", "last_modified_time": "2026-08-17T11:14:13.674899Z", "date_published": null, "start_time": "2026-08-20T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Ivar Bremer: Robin i hooden – Taiteiden yö Vuotalossa", "sv": "Ivar Bremer: Robin i hooden – Konstens natt på Nordhuset", "en": "Ivar Bremer: Robin i hooden – Night of the Arts at Vuosaari House" }, "description": { "fi": "<p>Ketä vastaan voimme nousta, kun meillä ei ole enää yhtä ainoaa ahnetta kuningasta? Kuinka voimme piiloutua julmalta sheriffiltä, kun hän on jokaisen kulman takana?</p><p>Kuinka voimme antaa köyhille, kun emme voi enää ottaa rikkailta? Kuinka voimme taistella pahuutta vastaan?</p><p>Älä pelkää! Kuiskitaan, että Robin Hood kuljeskelee yhä kaduillamme. Ja hän, jos kuka, saattaa tietää vastaukset kysymyksiimme! Robin tulee apuun – hoodissa lähellä sinua!</p><p><b>Ivar Bremer</b>, joka opiskelee Teatterikorkeakoulun maisteri-ohjelmalla, antaa ilmaisesityksen Vuotalon aulassa, Mosaiikkitori 2, Taiteiden yönä torstaina 20.8. klo 19. Ruotsinkielinen esitys sopii kaikenikäisille ja kestää n. 30 min. Vapaa pääsy!</p>", "sv": "<p>Vem kan vi göra motstånd mot då vi inte längre har någon enstaka girig kung? Hur kan vi gömma oss från den grymma sheriffen då han finns bakom varje hörn?</p><p>Hur kan vi ge åt de fattiga då vi inte längre kan ta från de rika?<br>Hur kan vi kämpa mot ondskan?</p><p>Var inte rädd! Det viskas att Robin Hood ännu strövar omkring på våra gator. Och han om nån kan ha svar på våra frågor! Robin kommer till räddningen i en hood nära dig!</p><p><b>Ivar Bremer</b>, som studerar på Teaterhögskolans magisterprogram, ger en gratisföreställning i Nordhusets aula på Mosaiktorget 2 på Konstens Natt torsdagen den 20.8 kl. 19. Den svenskspråkiga föreställningen som passar för alla åldrar räcker ca 30 min. och inträdet är fritt.</p>", "en": "<p>Who can we rise up against when we no longer have a single greedy king? How can we hide from the cruel sheriff when he’s around every corner?</p><p>How can we give to the poor when we can no longer take from the rich? How can we fight against evil?</p><p>Don’t be afraid! Rumor has it that Robin Hood still roams our streets. And he, if anyone, might know the answers to our questions! Robin is coming to the rescue—in a hood, right near you!</p><p><b>Ivar Bremer</b>, a student in the master’s program at the University of the Arts Helsinki, will give a free performance in the lobby of Vuosaari House, Mosaiikkitori 2, during the Night of the Arts on Thursday, August 20, at 7:00 p.m. The Swedish-language performance is suitable for all ages and lasts approximately 30 minutes. Free admission!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Ketä vastaan voimme nousta, kun meillä ei ole enää yhtä ainoaa ahnetta kuningasta? Kuinka voimme piiloutua julmalta sheriffiltä, kun hän on jokaisen kulman takana?", "sv": "Vem kan vi göra motstånd mot då vi inte längre har någon enstaka girig kung? Hur kan vi gömma oss från den grymma sheriffen då han finns bakom varje hörn?", "en": "Who can we rise up against when we no longer have a single greedy king? How can we hide from the cruel sheriff when he’s around every corner?" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EB510475D7FC805C5FF3C980823C83BD/Ivar_Bremer_Robin_i_hooden_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/EB510475D7FC805C5FF3C980823C83BD/Ivar_Bremer_Robin_i_hooden_", "en": "http://www.vuotalo.fi/en/events/event/EB510475D7FC805C5FF3C980823C83BD/Ivar_Bremer_Robin_i_hooden_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69703/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpnkhehsu", "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:p10727/?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:p2787/?format=api" }, { "@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/espoo_le:agpnkheiby/?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": 2385233, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T09:57:53.542165Z", "last_modified_time": "2026-06-17T09:57:53.542179Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/75bb3f3e-9f95-4b6c-b06f-966f6bba7c24.jpg", "name": "", "cropping": "375,0,2625,2250", "photographer_name": "", "alt_text": "Madame T ja onnenpyörä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385233/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T09:58:03.106170Z", "last_modified_time": "2026-08-17T11:02:33.837725Z", "date_published": null, "start_time": "2026-08-20T14:00:00Z", "end_time": "2026-08-20T14: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": "Akseli", "sv": "Akseli", "en": "Akseli" }, "provider": { "fi": "Espoon Kulttuuri" }, "name": { "fi": "Madame T: Pelissä elämä - Let´s spin the Fortune Wheel with Madame T!", "sv": "Madame T: Spelet som kallas livet - Let´s spin the Fortune Wheel with Madame T!", "en": "Madame T: Life Is a Game - Let´s spin the Fortune Wheel with Madame T!" }, "description": { "fi": "<p>Madame T toivottaa vieraansa tervetulleeksi yllätykselliseen, mutta turvalliseen peliluolaansa. Siellä onnenpyörä pyörii ja osumat paljastavat voittoja ja tappioita elämän eri osa-alueilta. Rakkaus, raha, työ ja unelmat eli pelissä on koko elämä. Klovneriataituri<strong> Taina Mäki-Iso</strong> tarjoaa vuorovaikutuksellista ja lempeästi osallistavaa lähiklovneriaa vain pienelle joukolle kerrallaan.</p><p><br></p><p>Suunnattu nuorille (+12) ja aikuisille. Maksuton tapahtuma 20 katsojalle. Esityskielinä suomi ja englanti.</p><p>Taina Mäki-Iso on teatteriohjaaja, opettaja ja klovni. Hän on tehnyt useita klovnisooloja esiintyen niin kotimaisilla kuin myös ulkomaisilla festivaaleilla. Suomen Kulttuurirahaston Uudenmaan rahaston vuoden 2024 palkinto myönnettiin Taina Mäki-Isolle herkkyydestä, hauskuudesta ja klovneriataiteen edistämisestä.</p><p>Madame T onnenpyörineen on mukana Espoon kaupungin Tulevaisuustarinoiden Taideiskuissa.</p><p>https://www.espoo.fi/fi/tulevaisuustarinoita</p>", "sv": "<p>Madame T välkomnar sina gäster till sin överraskande men trygga spelgrotta. Där snurrar lyckohjulet och varje träff avslöjar vinster och förluster inom livets olika områden. Kärlek, pengar, arbete och drömmar – i det här spelet ryms hela livet. Klovnkonstnären <strong>Taina Mäki-Iso </strong>bjuder på interaktiv och vänligt deltagande närklovneri för endast en liten grupp åt gången.</p><p><br></p><p>Riktar sig till ungdomar (12+) och vuxna. Kostnadsfritt evenemang för 20 åskådare. Föreställningen ges på finska och engelska.</p><p>Taina Mäki-Iso är teaterregissör, lärare och clown. Hon har skapat flera clownsolon och uppträtt på både inhemska och utländska festivaler. Finlands kulturfondens Uusimaa-fond tilldelade Taina Mäki-Iso 2024 års pris för hennes känslighet, humor och insatser för att främja clownkonsten.</p><p>Madame T med sitt lyckohjul deltar i Espoo stads konstprojekt ”Tulevaisuustarinoita” (Framtidsberättelser).</p><p>https://www.espoo.fi/fi/tulevaisuustarinoita</p>", "en": "<p>Madame T welcomes her guests to her surprising yet safe game den. There, the wheel of fortune spins, and each spin reveals wins and losses in different areas of life. Love, money, work, and dreams—the game encompasses the whole of life. Clowning master <strong>Taina Mäki-Iso</strong> offers interactive and gently engaging close-up clowning for only a small group at a time.</p><p><br></p><p>Aimed at young people (ages 12 and up) and adults. Free event for 20 audience members. Performed in Finnish and English.</p><p>Taina Mäki-Iso is a theater director, teacher, and clown. She has created numerous clown solos and performed at festivals both in Finland and abroad. The 2024 award from the Uusimaa Fund of the Finnish Cultural Foundation was presented to Taina Mäki-Iso for her sensitivity, humor, and promotion of the art of clowning.</p><p>Madame T and her wheel of fortune are part of the City of Espoo’s “Stories of the Future” Art Events.</p><p>https://www.espoo.fi/fi/tulevaisuustarinoita</p>" }, "provider_contact_info": null, "short_description": { "fi": "Klovneriataituri Taina Mäki-Iso tarjoaa vuorovaikutuksellista ja lempeästi osallistavaa lähiklovneriaa vain pienelle joukolle kerrallaan.", "sv": "Klovnkonstnären Taina Mäki-Iso bjuder på interaktiv och vänligt deltagande närklovneri för endast en liten grupp åt gången.", "en": " Clowning master Taina Mäki-Iso offers interactive and gently engaging close-up clowning for only a small group at a time." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnkhehsu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpnkhegza", "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:p10727/?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:p2787/?format=api" }, { "@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/espoo_le:agpnkheiby/?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": 2385233, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T09:57:53.542165Z", "last_modified_time": "2026-06-17T09:57:53.542179Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/75bb3f3e-9f95-4b6c-b06f-966f6bba7c24.jpg", "name": "", "cropping": "375,0,2625,2250", "photographer_name": "", "alt_text": "Madame T ja onnenpyörä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385233/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T09:58:03.197605Z", "last_modified_time": "2026-08-17T11:02:33.804091Z", "date_published": null, "start_time": "2026-08-20T14:45:00Z", "end_time": "2026-08-20T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Akseli", "sv": "Akseli", "en": "Akseli" }, "provider": { "fi": "Espoon Kulttuuri" }, "name": { "fi": "Madame T: Pelissä elämä - Let´s spin the Fortune Wheel with Madame T!", "sv": "Madame T: Spelet som kallas livet - Let´s spin the Fortune Wheel with Madame T!", "en": "Madame T: Life Is a Game - Let´s spin the Fortune Wheel with Madame T!" }, "description": { "fi": "<p>Madame T toivottaa vieraansa tervetulleeksi yllätykselliseen, mutta turvalliseen peliluolaansa. Siellä onnenpyörä pyörii ja osumat paljastavat voittoja ja tappioita elämän eri osa-alueilta. Rakkaus, raha, työ ja unelmat eli pelissä on koko elämä. Klovneriataituri<strong> Taina Mäki-Iso</strong> tarjoaa vuorovaikutuksellista ja lempeästi osallistavaa lähiklovneriaa vain pienelle joukolle kerrallaan.</p><p><br></p><p>Suunnattu nuorille (+12) ja aikuisille. Maksuton tapahtuma 20 katsojalle. Esityskielinä suomi ja englanti.</p><p>Taina Mäki-Iso on teatteriohjaaja, opettaja ja klovni. Hän on tehnyt useita klovnisooloja esiintyen niin kotimaisilla kuin myös ulkomaisilla festivaaleilla. Suomen Kulttuurirahaston Uudenmaan rahaston vuoden 2024 palkinto myönnettiin Taina Mäki-Isolle herkkyydestä, hauskuudesta ja klovneriataiteen edistämisestä.</p><p>Madame T onnenpyörineen on mukana Espoon kaupungin Tulevaisuustarinoiden Taideiskuissa.</p><p>https://www.espoo.fi/fi/tulevaisuustarinoita</p>", "sv": "<p>Madame T välkomnar sina gäster till sin överraskande men trygga spelgrotta. Där snurrar lyckohjulet och varje träff avslöjar vinster och förluster inom livets olika områden. Kärlek, pengar, arbete och drömmar – i det här spelet ryms hela livet. Klovnkonstnären <strong>Taina Mäki-Iso </strong>bjuder på interaktiv och vänligt deltagande närklovneri för endast en liten grupp åt gången.</p><p><br></p><p>Riktar sig till ungdomar (12+) och vuxna. Kostnadsfritt evenemang för 20 åskådare. Föreställningen ges på finska och engelska.</p><p>Taina Mäki-Iso är teaterregissör, lärare och clown. Hon har skapat flera clownsolon och uppträtt på både inhemska och utländska festivaler. Finlands kulturfondens Uusimaa-fond tilldelade Taina Mäki-Iso 2024 års pris för hennes känslighet, humor och insatser för att främja clownkonsten.</p><p>Madame T med sitt lyckohjul deltar i Espoo stads konstprojekt ”Tulevaisuustarinoita” (Framtidsberättelser).</p><p>https://www.espoo.fi/fi/tulevaisuustarinoita</p>", "en": "<p>Madame T welcomes her guests to her surprising yet safe game den. There, the wheel of fortune spins, and each spin reveals wins and losses in different areas of life. Love, money, work, and dreams—the game encompasses the whole of life. Clowning master <strong>Taina Mäki-Iso</strong> offers interactive and gently engaging close-up clowning for only a small group at a time.</p><p><br></p><p>Aimed at young people (ages 12 and up) and adults. Free event for 20 audience members. Performed in Finnish and English.</p><p>Taina Mäki-Iso is a theater director, teacher, and clown. She has created numerous clown solos and performed at festivals both in Finland and abroad. The 2024 award from the Uusimaa Fund of the Finnish Cultural Foundation was presented to Taina Mäki-Iso for her sensitivity, humor, and promotion of the art of clowning.</p><p>Madame T and her wheel of fortune are part of the City of Espoo’s “Stories of the Future” Art Events.</p><p>https://www.espoo.fi/fi/tulevaisuustarinoita</p>" }, "provider_contact_info": null, "short_description": { "fi": "Klovneriataituri Taina Mäki-Iso tarjoaa vuorovaikutuksellista ja lempeästi osallistavaa lähiklovneriaa vain pienelle joukolle kerrallaan.", "sv": "Klovnkonstnären Taina Mäki-Iso bjuder på interaktiv och vänligt deltagande närklovneri för endast en liten grupp åt gången.", "en": " Clowning master Taina Mäki-Iso offers interactive and gently engaging close-up clowning for only a small group at a time." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnkhegza/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68586", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@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": "44,50-104 €", "en": "44,50-104 €" }, "info_url": { "fi": "https://www.savoyteatteri.fi/fi/tapahtumat/event/70B72CE3626C52F6527AE5B8E557EF67/Chanel_vs__Rubinstein_", "en": "https://www.savoyteatteri.fi/fi/tapahtumat/event/70B72CE3626C52F6527AE5B8E557EF67/Chanel_vs__Rubinstein_" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1824291, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-29T16:13:33.914676Z", "last_modified_time": "2026-04-29T16:13:33.914691Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791128.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824291/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-29T16:13:33.792171Z", "last_modified_time": "2026-08-17T10:14:29.252898Z", "date_published": null, "start_time": "2026-09-12T16: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", "en": "Aftersunset Oy" }, "name": { "fi": "Kvadrat / Neliö – EVENT CANCELLED. NEW EVENT ON APRIL 18, 2027", "en": "Kvadrat / Neliö – EVENT CANCELLED. NEW EVENT ON APRIL 18, 2027" }, "description": { "fi": "<p>12.9.2026 Savoy-teatterissa Helsingissä järjestettäväksi suunniteltu KVADRAT-näytelmä ei toteudu.</p><p>Sen sijaan 18.4.2027 Savoy-teatterissa nähdään musiikkinäytelmä CHANEL VS. RUBINSTEIN, jonka pääosissa esiintyvät Ekaterina Varnava, Svetlana Ustinova ja Dmitri Kondrashov.</p><p>Aiemmin KVADRAT-näytelmään ostetut liput käyvät sellaisenaan 18.4.2027 järjestettävään CHANEL VS. RUBINSTEIN -esitykseen. Lippuja ei tarvitse vaihtaa.</p><p>Mikäli ette halua osallistua uuteen esitykseen, voitte hakea lipuista rahanpalautusta 12.9.2026 mennessä. Lipun hinta palautetaan lukuun ottamatta Lippupisteen perimiä palvelu- ja/tai toimitusmaksuja.</p><p>Lippurahojen palautusta voi hakea seuraavan linkin kautta:<br>https://web.lippu.fi/palautus/</p><p>Mahdollisissa lisäkysymyksissä voitte ottaa yhteyttä tapahtuman järjestäjään: info@giraffe-events.com</p><p>KVADRAT-näytelmän vaihtoon liittyviä kysymyksiä ei käsitellä enää 12.9.2026 jälkeen.</p><p>Lisätietoja CHANEL VS. RUBINSTEIN musiikkinäytelmästä voit lukea: https://www.savoyteatteri.fi/fi/tapahtumat/event/70B72CE3626C52F6527AE5B8E557EF67/Chanel_vs__Rubinstein_</p><p>******</p><p>The play Square is a deeply personal story about friendship, time, and change that immerses us in the atmosphere of the cabaret show \"Attraction 90s.\"</p><p>The production was created by one of today's most acclaimed directors — <b>Marfa Gorvits</b>, a two-time Golden Mask award winner. She has staged productions in Estonia, Norway, Germany, and Israel.</p><p>This show brings together a remarkable all-male cast: <b>Maxim Vitorgan, Evgeny Kulakov, Mikhail Umanets</b>, and <b>Ruslan Barabanov</b>. Old friends gather for a virtual reunion to reminisce about their childhood. In recent years, they've all ended up on opposite sides of the barricades. The characters recreate and try to make sense of their shared history. Today, when the world and reality have changed beyond recognition, childhood friends separated by borders are forced to search for justification.</p><p>Is it possible to preserve human relationships when everything around is falling apart? Is reconciliation possible when people see life from different perspectives? This documentary drama becomes a multilayered statement about how the personal intertwines with the historical, and how the past inevitably shapes the present.</p><p>Square is about us. A play that begins as a memory and ends with that familiar lump in your throat. That moment when you're smiling, but inside there's a quiet, warm ache.</p><p>This play is performed in Russian without surtitles.</p><p>Duration: Approx.1hour and 40 minutes without intermission</p><p>Age limit 18+</p><p>The floor: R18 alcohol serving area. The balcony: no alcohol serving.</p>", "en": "<p>The play Square is a deeply personal story about friendship, time, and change that immerses us in the atmosphere of the cabaret show \"Attraction 90s.\"</p><p>The production was created by one of today's most acclaimed directors — <b>Marfa Gorvits</b>, a two-time Golden Mask award winner. She has staged productions in Estonia, Norway, Germany, and Israel.</p><p>This show brings together a remarkable all-male cast: <b>Maxim Vitorgan, Evgeny Kulakov, Mikhail Umanets</b>, and <b>Ruslan Barabanov</b>. Old friends gather for a virtual reunion to reminisce about their childhood. In recent years, they've all ended up on opposite sides of the barricades. The characters recreate and try to make sense of their shared history. Today, when the world and reality have changed beyond recognition, childhood friends separated by borders are forced to search for justification.</p><p>Is it possible to preserve human relationships when everything around is falling apart? Is reconciliation possible when people see life from different perspectives? This documentary drama becomes a multilayered statement about how the personal intertwines with the historical, and how the past inevitably shapes the present.</p><p>Square is about us. A play that begins as a memory and ends with that familiar lump in your throat. That moment when you're smiling, but inside there's a quiet, warm ache.</p><p>This play is performed in Russian without surtitles.</p><p>Duration: Approx.1hour and 40 minutes without intermission</p><p>Age limit 18+</p><p>The floor: R18 alcohol serving area. The balcony: no alcohol serving.</p>", "ru": "<p>Спектакль <b>«КВАДРАТ»</b>, запланированный на <b>12 сентября 2026 года</b> в театре <b>Savoy, Хельсинки</b>, не состоится.</p><p>Вместо него <b>18 апреля 2027 года</b> в театре <b>Savoy</b> состоится музыкальный спектакль <b>«CHANEL VS. RUBINSTEIN»</b> с Екатериной Варнавой, Светланой Устиновой и Дмитрием Кондрашовым.</p><p>Ранее приобретённые билеты на спектакль «КВАДРАТ» будут действительны на спектакль «CHANEL VS. RUBINSTEIN» 18 апреля 2027 года. Обменивать билеты не нужно.</p><p>Если Вы не желаете посещать новый спектакль, Вы можете запросить возврат денежных средств за билеты <b>до 12 сентября 2026 года</b>. В этом случае будет возвращена стоимость билета за вычетом сервисного и/или сборов за доставку, взимаемых Lippupiste.</p><p>Оформить возврат можно по следующей ссылке:<br>https://web.lippu.fi/palautus/</p><p>В случае возникновения дополнительных вопросов Вы можете обратиться к организатору мероприятия: info@giraffe-events.com</p><p>Вопросы, связанные с заменой спектакля «КВАДРАТ», после <b>12 сентября 2026 года рассматриваться не будут.</b></p><p>Дополнительную информацию о музыкальном спектакле CHANEL VS. RUBINSTEIN можно прочитать: <br>https://www.savoyteatteri.fi/fi/tapahtumat/event/70B72CE3626C52F6527AE5B8E557EF67/Chanel_vs__Rubinstein_</p><p>—————————</p><p>12.9.2026 Savoy-teatterissa Helsingissä järjestettäväksi suunniteltu KVADRAT-näytelmä ei toteudu.</p><p>Sen sijaan 18.4.2027 Savoy-teatterissa nähdään musiikkinäytelmä CHANEL VS. RUBINSTEIN, jonka pääosissa esiintyvät Ekaterina Varnava, Svetlana Ustinova ja Dmitri Kondrashov.</p><p>Aiemmin KVADRAT-näytelmään ostetut liput käyvät sellaisenaan 18.4.2027 järjestettävään CHANEL VS. RUBINSTEIN -esitykseen. Lippuja ei tarvitse vaihtaa.</p><p>Mikäli ette halua osallistua uuteen esitykseen, voitte hakea lipuista rahanpalautusta 12.9.2026 mennessä. Lipun hinta palautetaan lukuun ottamatta Lippupisteen perimiä palvelu- ja/tai toimitusmaksuja.</p><p>Lippurahojen palautusta voi hakea seuraavan linkin kautta:<br>https://web.lippu.fi/palautus/</p><p>Mahdollisissa lisäkysymyksissä voitte ottaa yhteyttä tapahtuman järjestäjään: info@giraffe-events.com</p><p>KVADRAT-näytelmän vaihtoon liittyviä kysymyksiä ei käsitellä enää 12.9.2026 jälkeen.</p><p>Lisätietoja CHANEL VS. RUBINSTEIN musiikkinäytelmästä voit lukea: https://www.savoyteatteri.fi/fi/tapahtumat/event/70B72CE3626C52F6527AE5B8E557EF67/Chanel_vs__Rubinstein_</p><p>******</p>" }, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CF3F75BAF8FB1B84FA0E75EEE43DBF5B/Kvadrat_Nelio", "en": "http://www.savoyteatteri.fi/en/events/event/CF3F75BAF8FB1B84FA0E75EEE43DBF5B/Kvadrat_Nelio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68586/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqa6qppgy", "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:p2149/?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:agqa6qp23m/?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": 2385504, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-05T14:41:38.018049Z", "last_modified_time": "2026-01-05T14:41:38.018066Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/eb52c8dc-458a-42df-929a-8ba0e4439dcc.jpg", "name": "", "cropping": "100,0,1100,1000", "photographer_name": "AJ Savolainen", "alt_text": "kaksi senioria tutkii tablettia ja nauraa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385504/?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-17T10:07:16.100054Z", "last_modified_time": "2026-08-17T10:07:16.100068Z", "date_published": null, "start_time": "2026-12-16T08:00:00Z", "end_time": "2026-12-16T10: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": "Kari", "sv": "Kari", "en": "Kari" }, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "name": { "fi": "Digiopastusta seniorilta seniorille Ison Omenan kirjastossa", "sv": "It-handledning från seniorer till seniorer på Iso Omena biblioteket", "en": "Peer tutoring in IT matters for seniors in Iso Omena library" }, "description": { "fi": "<p>Ikäihmisten tietotekniikkayhdistys Enterin vapaaehtoiset vertaisopastajat tarjoavat maksutonta, henkilökohtaista ja kiireetöntä digiopastusta.</p><p>Ison Omenan kirjastossa joka tiistai ja keskiviikko kello 10-12.</p><p>Opastuksissa käydään usein läpi esimerkiksi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia tai laitteen hankintaa.</p><p>Tule rohkeasti kysymään mitä tahansa tietotekniikasta - tyhmiä kysymyksiä ei ole.</p><p>Ota mukaan oma laitteesi ja tarvittavat tunnukset ja salasanat palveluun, jota haluat harjoitella.</p><p><strong>Varaa aika kirjastosta 09 8165 7723</strong></p>", "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater. Enters handledning är personlig, avgiftsfri och sker i lugn takt. Hos oss handleder seniorer andra seniorer.</p><p>På Iso Omena biblioteket varje tisdag ocj onsdag kl. 10:00-12:00.</p><p><strong>Boka tiden: 09 8165 7723</strong></p><p>Se aktuell information om platser där du kan få Enters handledning på svenska:</p><p><a href=\" https://www.entersenior.fi/sv/handledning/huvudstadsregionen/ \">https://www.entersenior.fi/sv/handledning/huvudstadsregionen/</a></p>", "en": "<p><strong>Enter ICT Association for Seniors</strong> offers personal, free of charge, peer tutoring for the elderly people. With us, seniors guide other seniors with the use of digital devices.</p><p>Every tuesday and wednesday in Iso Omena library from 10 am to 12 pm.</p><p>Book your time at the library: 09 8165 7723</p><p>See where to get Enter's Digital Support <strong>in English: </strong><a href=\"https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T \">https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T </a></p>" }, "provider_contact_info": null, "short_description": { "fi": "Maksutonta, henkilökohtaista ja kiireetöntä digiopastusta senioreille. Opastajina ikäihmisten tietotekniikkayhdistyksen vapaaehtoiset seniorit. Tervetuloa!", "sv": "De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater.\t", "en": "Peer tutoring in IT matters for seniors. \t" }, "info_url": { "fi": "https://www.entersenior.fi/opastus/espoo/", "sv": "https://www.entersenior.fi/sv/", "en": "https://www.entersenior.fi/yhdistys/en/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqa6qppgy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqa6qpqn4", "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:p2149/?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:agqa6qp23m/?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": 2385504, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-05T14:41:38.018049Z", "last_modified_time": "2026-01-05T14:41:38.018066Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/eb52c8dc-458a-42df-929a-8ba0e4439dcc.jpg", "name": "", "cropping": "100,0,1100,1000", "photographer_name": "AJ Savolainen", "alt_text": "kaksi senioria tutkii tablettia ja nauraa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385504/?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-17T10:07:15.993906Z", "last_modified_time": "2026-08-17T10:07:15.993921Z", "date_published": null, "start_time": "2026-12-09T08:00:00Z", "end_time": "2026-12-09T10: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": "Kari", "sv": "Kari", "en": "Kari" }, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "name": { "fi": "Digiopastusta seniorilta seniorille Ison Omenan kirjastossa", "sv": "It-handledning från seniorer till seniorer på Iso Omena biblioteket", "en": "Peer tutoring in IT matters for seniors in Iso Omena library" }, "description": { "fi": "<p>Ikäihmisten tietotekniikkayhdistys Enterin vapaaehtoiset vertaisopastajat tarjoavat maksutonta, henkilökohtaista ja kiireetöntä digiopastusta.</p><p>Ison Omenan kirjastossa joka tiistai ja keskiviikko kello 10-12.</p><p>Opastuksissa käydään usein läpi esimerkiksi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia tai laitteen hankintaa.</p><p>Tule rohkeasti kysymään mitä tahansa tietotekniikasta - tyhmiä kysymyksiä ei ole.</p><p>Ota mukaan oma laitteesi ja tarvittavat tunnukset ja salasanat palveluun, jota haluat harjoitella.</p><p><strong>Varaa aika kirjastosta 09 8165 7723</strong></p>", "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater. Enters handledning är personlig, avgiftsfri och sker i lugn takt. Hos oss handleder seniorer andra seniorer.</p><p>På Iso Omena biblioteket varje tisdag ocj onsdag kl. 10:00-12:00.</p><p><strong>Boka tiden: 09 8165 7723</strong></p><p>Se aktuell information om platser där du kan få Enters handledning på svenska:</p><p><a href=\" https://www.entersenior.fi/sv/handledning/huvudstadsregionen/ \">https://www.entersenior.fi/sv/handledning/huvudstadsregionen/</a></p>", "en": "<p><strong>Enter ICT Association for Seniors</strong> offers personal, free of charge, peer tutoring for the elderly people. With us, seniors guide other seniors with the use of digital devices.</p><p>Every tuesday and wednesday in Iso Omena library from 10 am to 12 pm.</p><p>Book your time at the library: 09 8165 7723</p><p>See where to get Enter's Digital Support <strong>in English: </strong><a href=\"https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T \">https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T </a></p>" }, "provider_contact_info": null, "short_description": { "fi": "Maksutonta, henkilökohtaista ja kiireetöntä digiopastusta senioreille. Opastajina ikäihmisten tietotekniikkayhdistyksen vapaaehtoiset seniorit. Tervetuloa!", "sv": "De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater.\t", "en": "Peer tutoring in IT matters for seniors. \t" }, "info_url": { "fi": "https://www.entersenior.fi/opastus/espoo/", "sv": "https://www.entersenior.fi/sv/", "en": "https://www.entersenior.fi/yhdistys/en/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqa6qpqn4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }