Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=183
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=184", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=182" }, "data": [ { "id": "kulke:66174", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 802487, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-19T08:12:45.083333Z", "last_modified_time": "2025-05-19T08:12:45.083346Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772431.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/802487/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-19T08:12:45.009021Z", "last_modified_time": "2025-05-19T08:12:45.175100Z", "date_published": null, "start_time": "2025-11-17T10: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2B1E48BA6B62D50D603F46772161D902/UMO_Helsinki_Ensemble_The_Tristano_School_", "en": "http://www.savoyteatteri.fi/en/events/event/2B1E48BA6B62D50D603F46772161D902/UMO_Helsinki_Ensemble_The_Tristano_School_" }, "provider_contact_info": null, "provider": { "fi": "Savoy-teatteri & UMO Helsinki Jazz Orchestra", "en": "Savoy Theatre & UMO Helsinki Jazz Orchestra" }, "description": { "fi": "<p>Jazzia lounaaksi – kyllä kiitos! Savoy-teatterin ja UMO Helsinki Jazz Orchestran toivotut lounaskonsertit jatkuvat taas syyskaudella 2025 kaksin kappalein! Tämän konsertin ilmaisliput ovat varattavissa ke 29.10. klo 15 alkaen Savoy-teatterista ja Lippu.fi:stä, lue tarkemmat ohjeet alempaa.</p><p><b>Lennie Tristano</b> (USA 1919–1978) oli visionäärinen jazzpianisti ja -säveltäjä ja improvisoinnin opettaja. Tristano kehitti oppilaidensa, mm. saksofonistien <b>Lee Konitzin</b> (1927–2020) ja <b>Warne Marshin</b> (1927–1987) kanssa oman ainutlaatuisen tyylin, joka erotti heidät muista bebop-aikalaisista. Tämä koulukunta syntyi vastareaktiona bebopin intensiteetille, pyrki tuomaan jazziin enemmän melodista hienostuneisuutta ja siten vei vastakkaiseen suuntaan valtavirran mieltymyksistä.</p><p>Tristanon koulukunnan ja erityisesti Lee Konitzin vaikutus ulottuu yhä nykypäivän muusikoihin – umolaisistakin ainakin saksofonisti <b>Max Zengeriin</b>, joka on suunnitellut konsertin ohjelmiston ja luotsaa UMOn riveistä koottua pienempää kokoonpanoa, <b>UMO Helsinki Ensembleä</b>. Konsertissa kuullaan kolmen edellä mainitun säveltäjän mielikuvituksellisia melodialinjoja sovitettuna UMOn pienyhtyeelle.</p><p>– Lee Konitzin uskomaton ja monipuolinen ura kesti aivan hänen elämänsä loppumetreille asti. Hänen soittoaan ja lähestymistapaansa improvisaatioon ei suotta pidetä yhtenä kekseliäimmistä jazzmusiikin historiassa. Hän on pioneeri, jota muusikot yli genrerajojen arvostavat, Zenger kehuu.</p><p>Konsertti on osa UMOn 50-vuotisjuhlakauden ohjelmistoa.</p><p>HUOM! Vapaa pääsy, mutta lippu tarvitaan. Hankithan lipun ennakkoon ke 29.10. klo 15 alkaen Savoy-teatterin lippuluukulta (0 €) tai Lippu.fi-verkkokaupasta (0 €). Lippu.fi:n myyntipisteissä kulut ovat 3 € / tilaus, R-kioskeilla 3 € / tilaus + 1 € / lippu. Max. 2 lippua / varaus. Isommat ryhmävaraukset suoraan Savoysta. Ennakkolipulla sisään klo 11:50 asti. Tämän jälkeen mahdollisesti tyhjäksi jääneet paikat täytetään liputtomilla asiakkailla. Kannattaa tulla ajoissa paikalle, koska saliin ei pääse myöhässä. Konsertin kesto 1 h.</p><p><i><b>UMO Helsinki Jazz Orchestra – The Greatest Feats since 1975.</b> Jo 50 vuotta jazzin urotekoja ja taidonnäytteitä! 50-vuotisjuhlakauttaan kesästä 2025 kevääseen 2026 viettävä UMO Helsinki Jazz Orchestra on ollut vuosikymmenten ajan suomalaisen jazzin huipulla. Vuosien saatossa Yrjö- ja Emma-palkittu ja Grammy-ehdokkaanakin ollut UMO on levyttänyt yli 60 albumia ja esiintynyt niin kansainvälisten jazzin kärkinimien kuin kotimaisten artistien kanssa. Yksi on ja pysyy: UMOn ydin on uudessa musiikissa. Juhlakaudella muistellaan menneitä ja juhlistetaan saavutuksia, ja pidetään katse tiukasti tulevaisuudessa. Juhli yhdessä UMOn kanssa! www.umohelsinki.fi </i></p>", "en": "<p>Jazz for lunch – yes please! The Savoy Theatre’s and UMO Helsinki Jazz Orchestra’s much-anticipated lunch concerts continue in the autumn season of 2025! The free concert tickets can be reserved from Wednesday 29th October at 3 pm onwards at the Savoy Theatre and Lippu.fi, see below for more detailed instructions.</p><p>Jazz for lunch – yes please! The Savoy Theatre’s and UMO Helsinki Jazz Orchestra’s much-anticipated lunch concerts continue in the autumn season of 2025! The free concert tickets can be reserved from Wednesday 29th October at 3 pm onwards at the Savoy Theatre and Lippu.fi, see below for more detailed instructions.</p><p><b>Lennie Tristano</b> (USA 1919–1978) was a visionary jazz pianist and composer, as well as a teacher of improvisation. Together with his students – among them the saxophone players <b>Lee Konitz</b> (1927–2020) and <b>Warne Marsh</b> (1927–1987) – Tristano developed a unique style, differentiating them from their bebop contemporaries. This school came about as a response to the intensity of bebop, and as it aimed to bring more melodic refinement into jazz, it was contrary to the preferences of the mainstream.</p><p>Tristano’s school and especially the influence of Lee Konitz still extends to the musicians of today – of the UMO musicians, at least to the saxophonist <b>Max Zenger</b>, who has planned the concert repertoire and leads the <b>UMO Helsinki Ensemble</b>, with musicians from UMO. The concert programme features imaginative melodies by the three aforementioned composers in arrangements for the ensemble from UMO.</p><p>– Lee Konitz’s incredible and versatile career continued right until the end of his life. His playing and approach to improvisation are considered among the most inventive in the history of jazz music. He’s a pioneer, respected by musicians from all genres, says Zenger.</p><p>Please note! The concert will be held in the Savoy Theatre at 12-13. The admission is free but we recommend that you book a ticket in advance at the Savoy Theatre box office (0 €) or Lippu.fi (1,50 – 3 € commission). Admission only with pre-booked tickets until 11:50am, after which the remaining seats will be given to customers without a pre-booking. Please arrive early as the doors will be closed once the concert has started. The duration of the concert is 1 hour.</p><p>The concert is part of UMO’s 50th anniversary season.</p><p><i><b>UMO Helsinki Jazz Orchestra – The Greatest Feats since 1975.</b> Get ready to groove as we mark 50 years of achievements and mastery in jazz! UMO Helsinki Jazz Orchestra celebrates its 50th anniversary season from summer 2025 to spring 2026. Throughout these decades, the orchestra has been at the forefront of Finnish jazz. Over the years, UMO has recorded over 60 albums, received Yrjö and Emma prizes, and even a Grammy nomination. The orchestra has shared the stage with international jazz stars as well as Finnish artists. One thing remains constant: the core of UMO is in new music. Join us for our anniversary season to look back on the past and celebrate our achievements, all while keeping our eyes firmly on the exciting future ahead. Come and celebrate together with the UMO! www.umohelsinki.fi </i></p>" }, "name": { "fi": "UMO Helsinki Ensemble – The Tristano School – Lounaskonsertti", "en": "UMO Helsinki Ensemble – The Tristano School – Lunch time concert" }, "short_description": { "fi": "Jazzia lounaaksi – kyllä kiitos! Savoy-teatterin ja UMO Helsinki Jazz Orchestran toivotut lounaskonsertit jatkuvat taas syyskaudella 2025 kaksin kappalein! Tämän konsertin ilmaisliput ovat varattavissa ke 29.10. klo 15 alkaen Savoy-teatterista ja Lippu.fi:stä, lue tarkemmat ohjeet alempaa.", "en": "Jazz for lunch – yes please! The Savoy Theatre’s and UMO Helsinki Jazz Orchestra’s much-anticipated lunch concerts continue in the autumn season of 2025! The free concert tickets can be reserved from Wednesday 29th October at 3 pm onwards at the Savoy Theatre and Lippu.fi, see below for more detailed instructions." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66174/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66163", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@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": [], "price": { "fi": "20-40 €", "en": "20-40 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/3891148", "en": "https://www.lippu.fi/eventseries/3891148" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 802486, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-19T08:12:44.780056Z", "last_modified_time": "2025-05-19T08:12:44.780074Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772409.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/802486/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-19T08:12:44.692924Z", "last_modified_time": "2025-05-19T08:12:44.873143Z", "date_published": null, "start_time": "2025-11-13T17: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/8AB07DAE3139A486767FB3C6F741BAA2/Maria_Schneider_US_UMO_Helsinki_Jazz_Orchestra_", "en": "http://www.savoyteatteri.fi/en/events/event/8AB07DAE3139A486767FB3C6F741BAA2/Maria_Schneider_US_UMO_Helsinki_Jazz_Orchestra_" }, "provider_contact_info": null, "provider": { "fi": "UMO Helsinki Jazz Orchestra", "en": "UMO Helsinki Jazz Orchestra" }, "description": { "fi": "<p>UMOn vieraana vuonna 1991, 1997, 2002 ja heti perään 2025! Yksi aikamme suurimmista jazzsäveltäjistä, big band -musiikin supertähti Maria Schneider palaa johtamaan UMO Helsinki Jazz Orchestraa marraskuussa. Konsertti on osa UMOn 50-vuotisjuhlakauden ohjelmistoa.</p><p>Maria Schneider on yksi big band -jazzin suunnannäyttäjistä. Kriitikot ovat kuvailleet hänen sävellyksiään mm. taianomaisiksi, majesteettisiksi ja pysäyttävän upeiksi.</p><p>UMO oli ensimmäinen eurooppalainen orkesteri, joka kutsui Schneiderin vierailevaksi kapellimestarikseen ja soitti tämän sävellyksiä. <br>– Työskentely UMOn kanssa vuonna 1991 eli 34 vuotta sitten aloitti urani ulkomailla säveltäjä-kapellimestarina. Sen takia tunnen erityistä yhteenkuuluvuutta UMOn kanssa, ja on todella hienoa palata johtamaan orkesteria neljännen kerran, Schneider iloitsee.</p><p>Schneider saapuu Helsinkiin mukanaan ohjelmisto, joka edustaa kattavasti hänen luomuksiaan viimeisen 20 vuoden ajalta. Sävellykset hän on poiminut esittelemään nyky-UMOn upeita kykyjä ja solistivoimaa. UMOn peruskokoonpanoa vahvistetaan tässä konsertissa kitaralla ja harmonikalla.</p><p><i><b>Maria Schneider</b> (s. 1960) on yhdysvaltalainen yhtyeenjohtaja, kapellimestari, jazzsäveltäjä ja -sovittaja, jota ylistetään omaperäisestä sävellystyylistään. Hän on saanut uransa aikana jo 14 Grammy-ehdokkuutta ja 7 Grammy-palkintoa, lukuisia tunnustuksia mm. DownBeatilta ja Jazztimesilta, sekä monia muita alan kunnianosoituksia. Vuodesta 1992 omaa orkesteriaan johtanut Schneider on myös aktiivinen musiikintekijöiden oikeuksien puolestapuhuja. Schneiderin genrerajat ylittävä yhteistyökumppaneiden lista ulottuu Jazz at Lincoln Centeristä kymmeniin orkestereihin ja jopa David Bowieen. www.mariaschneider.com</p><p><b>UMO Helsinki Jazz Orchestra – The Greatest Feats since 1975.</b> Jo 50 vuotta jazzin urotekoja ja taidonnäytteitä! 50-vuotisjuhlakauttaan kesästä 2025 kevääseen 2026 viettävä UMO Helsinki Jazz Orchestra on ollut vuosikymmenten ajan suomalaisen jazzin huipulla. Vuosien saatossa Yrjö- ja Emma-palkittu ja Grammy-ehdokkaanakin ollut UMO on levyttänyt yli 60 albumia ja esiintynyt niin kansainvälisten jazzin kärkinimien kuin kotimaisten artistien kanssa. Yksi on ja pysyy: UMOn ydin on uudessa musiikissa. Juhlakaudella muistellaan menneitä ja juhlistetaan saavutuksia, ja pidetään katse tiukasti tulevaisuudessa. Juhli yhdessä UMOn kanssa! www.umohelsinki.fi</i></p><p>Konsertin sisältöihin syventyvä Enemmän irti esityksestä -keskustelutilaisuus pidetään Savoy-teatterin aulatilojen yhteydessä olevassa Minne-ravintolassa ennen konserttia klo 18:15. Keskustelu käydään englanniksi. <br> <br>Konsertin kesto n. 2 h, sis. väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Spotify: https://open.spotify.com/album/5TDoy8L0syQ3EepzY3hkHb?si=nq9RmSdQQhOl_si8dsifaQ</p>", "en": "<p>UMO’s guest star in 1991, 1997, 2002 and right again in 2025! One of the most renowned jazz composers and a true superstar of big band music, Maria Schneider returns to conduct the UMO Helsinki Jazz Orchestra in November. The concert is part of UMO’s 50th anniversary season.</p><p>Maria Schneider is at the forefront of contemporary big band jazz. Her compositions have been called magical, majestic and breathtakingly beautiful.</p><p>UMO was the first European group to invite her to work with them as a guest conductor, performing her music that would soon be recorded on her first album. <br>– Working with UMO some 34 years ago in 1991 started my career abroad as a composer/conductor. That’s why I feel a very special affinity with the orchestra. It’s really great to be back to conduct UMO for the fourth time, Schneider rejoices.</p><p>Schneider returns to Helsinki with a program representing her creations from the last 20 years, hand-picked to feature the magnificent talents of today’s renowned UMO Helsinki Jazz Orchestra. UMO's basic lineup will be expanded in this concert with guitar and accordion.</p><p><i><b>Maria Schneider</b> (b. 1960) is an American band leader, conductor, jazz composer and arranger, celebrated for her original style. Hailed by critics as “evocative, majestic, magical, heart-stompingly gorgeous, imaginative, riveting, and beyond categorization\", Schneider has received 14 Grammy nominations and won 7 Grammy Awards, as well as accolades from magazines such as DownBeat and Jazztimes. She is also an outspoken advocate for music creators’ rights. Schneider's collaborations stretch across genres, including the great soprano, Dawn Upshaw, and David Bowie – both collaborations being awarded Grammys. www.mariaschneider.com</p><p><b>UMO Helsinki Jazz Orchestra – The Greatest Feats since 1975.</b> Get ready to groove as we mark 50 years of achievements and mastery in jazz! UMO Helsinki Jazz Orchestra celebrates its 50th anniversary season from summer 2025 to spring 2026. Throughout these decades, the orchestra has been at the forefront of Finnish jazz. Over the years, UMO has recorded over 60 albums, received Yrjö and Emma prizes, and even a Grammy nomination. The orchestra has shared the stage with international jazz stars as well as Finnish artists. One thing remains constant: the core of UMO is in new music. Join us for our anniversary season to look back on the past and celebrate our achievements, all while keeping our eyes firmly on the exciting future ahead. Come and celebrate together with the UMO! www.umohelsinki.fi</i></p><p>Deeper into the show discussion event about concert in Restaurant Minne at 6:15 PM. Conversation is in English.</p><p>Duration approx. 2 h, incl. intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>Spotify: https://open.spotify.com/album/5TDoy8L0syQ3EepzY3hkHb?si=nq9RmSdQQhOl_si8dsifaQ</p>" }, "name": { "fi": "Maria Schneider (US) & UMO Helsinki Jazz Orchestra", "en": "Maria Schneider (US) & UMO Helsinki Jazz Orchestra" }, "short_description": { "fi": "UMOn vieraana vuonna 1991, 1997, 2002 ja heti perään 2025! Yksi aikamme suurimmista jazzsäveltäjistä, big band -musiikin supertähti Maria Schneider palaa johtamaan UMO Helsinki Jazz Orchestraa marraskuussa. Konsertti on osa UMOn 50-vuotisjuhlakauden ohjelmistoa.", "en": "UMO’s guest star in 1991, 1997, 2002 and right again in 2025! One of the most renowned jazz composers and a true superstar of big band music, Maria Schneider returns to conduct the UMO Helsinki Jazz Orchestra in November. The concert is part of UMO’s 50th anniversary season." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66163/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66160", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@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": [], "price": { "fi": "20-44 €", "en": "20-44 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3891086", "en": "https://www.lippu.fi/eventseries/name-3891086" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 802485, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-19T08:12:44.086114Z", "last_modified_time": "2025-05-19T08:12:44.086126Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772406.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/802485/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-19T08:12:44.015253Z", "last_modified_time": "2025-05-19T08:12:44.173361Z", "date_published": null, "start_time": "2025-10-02T16: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/996FBB90CC304E336A278C84DE72EAE8/Emma_Smith_UK_UMO_Helsinki_Jazz_Orchestra_Doing_It_My_Way_", "en": "http://www.savoyteatteri.fi/en/events/event/996FBB90CC304E336A278C84DE72EAE8/Emma_Smith_UK_UMO_Helsinki_Jazz_Orchestra_Doing_It_My_Way_" }, "provider_contact_info": null, "provider": { "fi": "UMO Helsinki Jazz Orchestra", "en": "UMO Helsinki Jazz Orchestra" }, "description": { "fi": "<p>Tyylillä, taidolla ja tunteella – tästä konsertista ei puutu glamouria!</p><p>Lontoolainen jazzlaulaja <b>Emma Smith</b> saapuu <b>UMO Helsinki Jazz Orchestran</b> solistiksi lokakuussa. Konsertti on osa UMOn 50-vuotisjuhlakauden ohjelmistoa.</p><p>Emma Smith on yksi tämän hetken brittiläisten jazzlaulajien kirkkaimmista tähdistä, jonka ura on kovassa nousukiidossa. Hänet tunnetaan poikkeuksellisen upeasta ja monipuolisesta äänestään, joka taipuu perinteisestä jazzista ja scattauksesta souliin ja bluesiin. Smith on valloittava esiintyjä, joka on samaan aikaan elegantti tulkitsija ja heittäytyvä improvisoija. Hän on kantaaottava artisti, joka nostaa esille erityisesti naisten oikeuksia. Hänellä onkin omaperäinen ote moniin jazzklassikoihin erityisesti naisen näkökulmasta. Konserteissa kuullaan Smithin tulkitsemana rakastettuja kappaleita mm. Frank Sinatralta, Sarah Vaughanilta ja Thad Jonesilta. Konsertin kapellimestarina toimii <b>Teemu Takanen</b>.</p><p><i><b>Emma Smith</b> on ollut mukana huippusuositussa Postmodern Jukebox -yhtyeessä, tehnyt yhteistyötä musiikkimaailman kerman, kuten Michael Bublén, Robbie Williamsin, Quincy Jonesin ja Gregory Porterin kanssa, johtanut omaa yhtyettään sekä julkaissut debyyttialbuminsa pari vuotta sitten. Erilaisia ehdokkuuksia ja palkintoja hänelle on kertynyt vino pino aina Parliamentary Jazz Awardsista Montreux Jazz Voice -kilpailuun ja London Music Awardsin the Rising Star Awardiin. Tarkkasilmäisimmät muistavat Emma Smithin UMOn ja Helsingin kaupunginorkesterin yhteiskonsertin solistina kevään 2024 Quincy!-konsertista. www.emmasmithmusic.co.uk</p><p><b>UMO Helsinki Jazz Orchestra – The Greatest Feats since 1975.</b> Jo 50 vuotta jazzin urotekoja ja taidonnäytteitä! 50-vuotisjuhlakauttaan kesästä 2025 kevääseen 2026 viettävä UMO Helsinki Jazz Orchestra on ollut vuosikymmenten ajan suomalaisen jazzin huipulla. Vuosien saatossa Yrjö- ja Emma-palkittu ja Grammy-ehdokkaanakin ollut UMO on levyttänyt yli 60 albumia ja esiintynyt niin kansainvälisten jazzin kärkinimien kuin kotimaisten artistien kanssa. Yksi on ja pysyy: UMOn ydin on uudessa musiikissa. Juhlakaudella muistellaan menneitä ja juhlistetaan saavutuksia, ja pidetään katse tiukasti tulevaisuudessa. Juhli yhdessä UMOn kanssa! www.umohelsinki.fi</i></p><p>Konsertin sisältöihin syventyvä Enemmän irti esityksestä -keskustelutilaisuus pidetään Savoy-teatterin aulatilojen yhteydessä olevassa Minne-ravintolassa ennen konserttia klo 18:15. Keskustelu käydään englanniksi.</p><p>Konsertin kesto n. 2 h, sis. väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>https://open.spotify.com/artist/6Kcax12zGyJGkuEYRcidcm?si=xei6xTRcSgKBrxQnrrnbng<br>https://www.youtube.com/channel/UCnPqFeEJAJZV-NkqBzqerHg<br>https://youtu.be/_jzfhpw08i8?si=9ahb8sfEL7X_vhZ5<br>https://vimeo.com/953550898</p>", "en": "<p>Style, skill and feeling – this evening is all about music and glamour!</p><p>London-based jazz singer <b>Emma Smith</b> joins the <b>UMO Helsinki Jazz Orchestra</b> as guest soloist in October. The concert is part of UMO’s 50th anniversary season.</p><p>Emma Smith is one of the brightest stars on today’s UK jazz scene, with a career on a sharp upward trajectory. She is known for her exceptionally magnificent and versatile voice, which spans traditional jazz and scat through to soul and blues. Smith is a captivating performer – both a refined interpreter and a fearless improviser. Smith is known as an artist who highlights feminine power and women's rights. She has an original take on many jazz classics, especially from a woman's perspective. The concerts will feature Smith's interpretation of beloved songs by, among others, Frank Sinatra, Sarah Vaughan and Thad Jones. The concert will be conducted by <b>Teemu Takanen</b>.</p><p><i><b>Emma Smith</b> has performed with the hugely popular ensemble Postmodern Jukebox and collaborated with music legends such as Michael Bublé, Robbie Williams, Quincy Jones and Gregory Porter. Smith leads her own ensemble and released her debut album a few of years ago. She has earned multiple nominations and awards, including the Parliamentary Jazz Award, the Montreux Jazz Voice Competition and the London Music Awards’ Rising Star Award. The most observant jazz fans may remember her as the soloist in Quincy!, the joint concert by UMO and the Helsinki Philharmonic Orchestra in spring 2024. www.emmasmithmusic.co.uk</p><p><b>UMO Helsinki Jazz Orchestra – The Greatest Feats since 1975.</b> Get ready to groove as we mark 50 years of achievements and mastery in jazz! UMO Helsinki Jazz Orchestra celebrates its 50th anniversary season from summer 2025 to spring 2026. Throughout these decades, the orchestra has been at the forefront of Finnish jazz. Over the years, UMO has recorded over 60 albums, received Yrjö and Emma prizes, and even a Grammy nomination. The orchestra has shared the stage with international jazz stars as well as Finnish artists. One thing remains constant: the core of UMO is in new music. Join us for our anniversary season to look back on the past and celebrate our achievements, all while keeping our eyes firmly on the exciting future ahead. Come and celebrate together with the UMO! www.umohelsinki.fi</i></p><p>Deeper into the show discussion event about concert in Restaurant Minne at 6:15 PM. Conversation is in English.</p><p>Duration approx. 2 h, incl. intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>https://open.spotify.com/artist/6Kcax12zGyJGkuEYRcidcm?si=xei6xTRcSgKBrxQnrrnbng<br>https://www.youtube.com/channel/UCnPqFeEJAJZV-NkqBzqerHg<br>https://youtu.be/_jzfhpw08i8?si=9ahb8sfEL7X_vhZ5<br>https://vimeo.com/953550898</p>" }, "name": { "fi": "Emma Smith (UK) & UMO Helsinki Jazz Orchestra – Doing It My Way", "en": "Emma Smith (UK) & UMO Helsinki Jazz Orchestra – Doing It My Way" }, "short_description": { "fi": "Tyylillä, taidolla ja tunteella – tästä konsertista ei puutu glamouria!", "en": "Style, skill and feeling – this evening is all about music and glamour!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66160/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66173", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 802484, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-19T08:12:43.643328Z", "last_modified_time": "2025-05-19T08:12:43.643341Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772430.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/802484/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-19T08:12:43.557607Z", "last_modified_time": "2025-05-19T08:12:43.751259Z", "date_published": null, "start_time": "2025-09-11T09: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/E03BFA8C830166AF6F2D4866CE58DF44/Jaska_Lukkarinen_UMO_Helsinki_Jazz_Orchestra_Rainbow_Blue_", "en": "http://www.savoyteatteri.fi/en/events/event/E03BFA8C830166AF6F2D4866CE58DF44/Jaska_Lukkarinen_UMO_Helsinki_Jazz_Orchestra_Rainbow_Blue_" }, "provider_contact_info": null, "provider": { "fi": "Savoy-teatteri & UMO Helsinki Jazz Orchestra", "en": "Savoy Theatre & UMO Helsinki Jazz Orchestra" }, "description": { "fi": "<p>Jazzia lounaaksi – kyllä kiitos! Savoy-teatterin ja UMO Helsinki Jazz Orchestran toivotut lounaskonsertit jatkuvat taas syyskaudella 2025 kaksin kappalein! Tämän konsertin ilmaisliput ovat varattavissa ke 20.8. klo 15 alkaen Savoy-teatterista ja Lippu.fi:stä, lue tarkemmat ohjeet alempaa.</p><p>UMOn riveissä ensimmäisen kerran vuonna 2003 vieraillut rumpali <b>Jaska Lukkarinen</b> nousee tämän konsertin valokeilaan. Taiteellista tohtorintutkintoaan Sibelius-Akatemiassa viimeistelevälle Lukkariselle yhteiskonsertti <b>UMO Helsinki Jazz Orchestran</b> kanssa on tutkinnon viimeinen taiteellinen osio.</p><p>Jazzrumpusetin säestyksen eri tapoja tutkiva Lukkarinen paneutuu konsertissa erityisesti termiin solistinen säestäminen. Hän etsii tapoja tuoda rummut osaksi big bandin koko sointiväriä ja yhdistää pienyhtyesoiton yllätyksellisyys ja dynaamiset ääripäät big band -säestykseen. Musiikin on säveltänyt konsertin kapellimestarinakin toimiva <b>Mikko Hassinen</b>.</p><p>Luvassa on ennen kaikkea hyvää big band -jaskaa – ei nuotinhajuista akateemista tutkimusta.</p><p>Konsertti on osa UMOn 50-vuotisjuhlakauden ohjelmistoa.</p><p>HUOM! Vapaa pääsy, mutta lippu tarvitaan. Hankithan lipun ennakkoon ke 20.8. klo 15 alkaen Savoy-teatterin lippuluukulta (0 €) tai Lippu.fi-verkkokaupasta (0 €). Lippu.fi:n myyntipisteissä kulut ovat 3 € / tilaus, R-kioskeilla 3 € / tilaus + 1 € / lippu. Max. 2 lippua / varaus. Isommat ryhmävaraukset suoraan Savoysta. Ennakkolipulla sisään klo 11:50 asti. Tämän jälkeen mahdollisesti tyhjäksi jääneet paikat täytetään liputtomilla asiakkailla. Kannattaa tulla ajoissa paikalle, koska saliin ei pääse myöhässä. Konsertin kesto 1 h.</p><p><i><b>Jaska Lukkarinen</b> (s. 1982) on monipuolinen ja kysytty jazzrumpali, aktiivinen pedagogi ja säveltäjä, joka pyörittää omaa Jaskaa-levymerkkiään. Lukkarinen on julkaissut omilla kokoonpanoillaan useita albumeita, viimeisimpänä One For Joe (2023), sekä soittanut yli sadalla albumilla jättäen oman kädenjälkensä suomalaiseen jazzkenttään. Lukkarinen on saanut useita tunnustuksia uransa aikana, kuten Sony Jazz- ja Pori Jazzin vuoden taiteilija -palkinnot. www.jaskalukkarinen.com</p><p><b>UMO Helsinki Jazz Orchestra – The Greatest Feats since 1975.</b> Jo 50 vuotta jazzin urotekoja ja taidonnäytteitä! 50-vuotisjuhlakauttaan kesästä 2025 kevääseen 2026 viettävä UMO Helsinki Jazz Orchestra on ollut vuosikymmenten ajan suomalaisen jazzin huipulla. Vuosien saatossa Yrjö- ja Emma-palkittu ja Grammy-ehdokkaanakin ollut UMO on levyttänyt yli 60 albumia ja esiintynyt niin kansainvälisten jazzin kärkinimien kuin kotimaisten artistien kanssa. Yksi on ja pysyy: UMOn ydin on uudessa musiikissa. Juhlakaudella muistellaan menneitä ja juhlistetaan saavutuksia, ja pidetään katse tiukasti tulevaisuudessa. Juhli yhdessä UMOn kanssa! www.umohelsinki.fi</i></p>", "en": "<p>Jazz for lunch – yes please! The Savoy Theatre’s and UMO Helsinki Jazz Orchestra’s much-anticipated lunch concerts continue in the autumn season of 2025! The free concert tickets can be reserved from Wednesday 20th August at 3 pm onwards at the Savoy Theatre and Lippu.fi, see below for more detailed instructions.</p><p>The drummer <b>Jaska Lukkarinen</b> performed with the UMO for the first time in 2003, and now he takes centre stage in this concert series. Lukkarinen is currently finalising his artistic doctoral degree at the Sibelius Academy, and the joint concert with the <b>UMO Helsinki Jazz Orchestra</b> marks the final artistic component of his doctoral degree.</p><p>Lukkarinen is exploring different approaches to accompaniment on the jazz drum set, with a particular focus in this concert on the concept of soloistic accompaniment. His research examines ways to integrate the drums into the overall timbre of the big band as well as combining the surprise elements and dynamic extremes of small ensemble performances with big band accompaniment. The music is composed by <b>Mikko Hassinen</b>, who also conducts the concert.</p><p>Most of all, the concert will showcase great big band jazz – not dry, academic research.</p><p>Please note! The concert will be held in the Savoy Theatre at 12-13. The admission is free but we recommend that you book a ticket in advance at the Savoy Theatre box office (0 €) or Lippu.fi (1,50 – 3 € commission). Admission only with pre-booked tickets until 11:50am, after which the remaining seats will be given to customers without a pre-booking. Please arrive early as the doors will be closed once the concert has started. The duration of the concert is 1 hour.</p><p>The concert is part of UMO’s 50th anniversary season.</p><p><i><b>Jaska Lukkarinen</b> (b. 1982) is a versatile and sought-after jazz drummer, who is also active as a teacher and composer, and runs his own record label, Jaskaa. He has released several albums with his own ensembles – the latest being One For Joe (2023) – and has played on over a hundred albums, leaving his unique mark on the Finnish jazz scene. Lukkarinen has received numerous accolades during his career, including the Sony Jazz and the Pori Jazz Artist of the Year awards.<br>www.jaskalukkarinen.com</p><p><b>UMO Helsinki Jazz Orchestra – The Greatest Feats since 1975.</b> Get ready to groove as we mark 50 years of achievements and mastery in jazz! UMO Helsinki Jazz Orchestra celebrates its 50th anniversary season from summer 2025 to spring 2026. Throughout these decades, the orchestra has been at the forefront of Finnish jazz. Over the years, UMO has recorded over 60 albums, received Yrjö and Emma prizes, and even a Grammy nomination. The orchestra has shared the stage with international jazz stars as well as Finnish artists. One thing remains constant: the core of UMO is in new music. Join us for our anniversary season to look back on the past and celebrate our achievements, all while keeping our eyes firmly on the exciting future ahead. Come and celebrate together with the UMO! www.umohelsinki.fi </i></p>" }, "name": { "fi": "Jaska Lukkarinen & UMO Helsinki Jazz Orchestra – Rainbow Blue – Lounaskonsertti", "en": "Jaska Lukkarinen & UMO Helsinki Jazz Orchestra – Rainbow Blue – Lunch time concert" }, "short_description": { "fi": "Jazzia lounaaksi – kyllä kiitos! Savoy-teatterin ja UMO Helsinki Jazz Orchestran toivotut lounaskonsertit jatkuvat taas syyskaudella 2025 kaksin kappalein! Tämän konsertin ilmaisliput ovat varattavissa ke 20.8. klo 15 alkaen Savoy-teatterista ja Lippu.fi:stä, lue tarkemmat ohjeet alempaa.", "en": "Jazz for lunch – yes please! The Savoy Theatre’s and UMO Helsinki Jazz Orchestra’s much-anticipated lunch concerts continue in the autumn season of 2025! The free concert tickets can be reserved from Wednesday 20th August at 3 pm onwards at the Savoy Theatre and Lippu.fi, see below for more detailed instructions." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66173/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66336", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 754678, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-13T12:13:27.353304Z", "last_modified_time": "2025-05-13T12:13:27.353318Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773370.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/754678/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-13T12:13:27.220316Z", "last_modified_time": "2025-05-19T08:12:40.090351Z", "date_published": null, "start_time": "2025-06-02T06:30:00Z", "end_time": "2025-06-06T11: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/27328E78EBBB32B68D8A9133F174400B/TAYNNA_Tanssileiri_Tanssiva_kaupunki", "sv": "http://www.malmitalo.fi/sv/evenemang/event/27328E78EBBB32B68D8A9133F174400B/FULLBOKAD_Tanssileiri_Tanssiva_kaupunki", "en": "http://www.malmitalo.fi/en/events/event/27328E78EBBB32B68D8A9133F174400B/FULLY_BOOKED_Tanssileiri_Tanssiva_kaupunki" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule mukaan Tanssiva Kaupunki -leirille tutkimaan kaupunkitilaa liikkeen ja luovan leikin keinoin!</p><p>Leirin aikana teemme erilaisia tanssiharjoituksia ja leikkejä, joiden avulla seikkailemme Malmitalon lähiympäristössä ja tanssisalissa. Keskitymme käyttämään kaikkia aistejamme ja pohdimme, voisiko tutun lähiympäristön kokea uudella tavalla. Millaisia ääniä kuulemme? Entä miltä maailma näyttää, jos sitä katsoo ylösalaisin?</p><p>Leiripäivä alkaa lämmittelyllä, toisiin tutustumisella ja yhteisten pelisääntöjen luomisella. Tästä jatkamme luoviin tanssiharjoituksiin ja lopuksi rentoudumme. Tavoitteenamme on, että kaikki voivat osallistua leirille omista lähtökohdistaan, kannustavassa ilmapiirissä.</p><p>Aiempaa kokemusta tanssista ei tarvita. Leirin lopuksi järjestämme ulkona pienen esityksen, jota lasten läheiset ovat tervetulleita seuraamaan.</p><p>Leirille tarvitset säähän sopivat vaatteet, joissa on mukava liikkua. Muistathan hatun ja aurinkosuojan.<br> <br><b>Kurssi-info:</b><br>Kesäleirit ovat maksuttomia ja siihen sisältyy päivittäin maksuton lounas<br>Kurssit on suunnattu 7–11-vuotiaille, max. 12 oppilasta/kurssi<br>Kurssit järjestetään Malmitalolla ja sen välittömässä läheisyydessä, osoite Ala-Malmin tori 1.</p><p>Sitovat ilmoittautumiset sähköpostitse osoitteeseen: petra.rovila-aarnio@hel.fi<br> <br>Lisätietoja antaa Malmitalon kulttuurituottaja Petra Rovila-Aarnio, puh +358 400 293 371</p>" }, "name": { "fi": "TÄYNNÄ Tanssileiri: Tanssiva kaupunki", "sv": "FULLBOKAD Tanssileiri: Tanssiva kaupunki", "en": "FULLY BOOKED Tanssileiri: Tanssiva kaupunki" }, "short_description": { "fi": "Tule mukaan Tanssiva Kaupunki -leirille tutkimaan kaupunkitilaa liikkeen ja luovan leikin keinoin!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66336/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226ipa", "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:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23efdi/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-20T13:19:04.787926Z", "last_modified_time": "2025-05-19T06:07:25.912905Z", "date_published": null, "start_time": "2025-05-22T14:30:00Z", "end_time": "2025-05-22T16: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Omppu Open Mic Runostage on lämminhenkinen lavarunoklubi, jossa sinulla on tilaisuus esittää omia tekstejäsi innostavan ja kannustavan yleisön edessä. Klubi järjestetään kerran kuussa, ja ilta tarjoaa sekä inspiraatiota että yhteisöllisyyttä.</p><p>Illan seremoniamestarina toimii karismaattinen Sanna Vaara, tunnetaan myös nimellä Räppäri Vaara. Tapahtuma alkaa ennalta sovitun esiintyjän esityksellä, jonka jälkeen lava on avoinna kaikille halukkaille.</p><p><br></p><p>27.2. Merja Valve</p><p>24.4. Riika Kotka</p><p>22.5. Risto Oikarinen lausuu ja soittaa saksofonia. </p><p><br></p><p>📍 Ilmoittautuminen: Paikan päällä ennen esityksiä</p><p>⏳ Esityksen kesto: Maksimissaan 5 minuuttia</p><p>Tule rohkeasti mukaan!</p>", "sv": "<p>Omppu Open Mic Poesiscen är en varm och stämningsfull poesiklubb där du har möjlighet att framföra dina egna texter inför en stöttande och entusiastisk publik. Klubben ordnas en gång i månaden och bjuder på inspiration och gemenskap.</p><p>Kvällens konferencier är den karismatiska Sanna Vaara, också känd som Räppäri Vaara. Evenemanget inleds med ett framträdande av en förutbestämd gästartist, varefter scenen är öppen för alla som vill delta.</p><p><br></p><p>27.2. Merja Valve</p><p>24.4. Riika Kotka</p><p>22.5. Risto Oikarinen med hans saxofon.</p><p><br></p><p>📍 Anmälan: På plats innan framträdandet</p><p>⏳ Framträdandets längd: Max 5 minuter</p><p>Välkommen att delta – poesin är för alla!</p>", "en": "<p>Omppu Open Mic Poetry Stage is a warm and welcoming poetry club where you have the chance to perform your own texts in front of a supportive and enthusiastic audience. The club is held once a month, offering both inspiration and a sense of community.</p><p>The evening’s host is the charismatic Sanna Vaara, also known as Räppäri Vaara. The event begins with a performance by a prearranged guest, followed by an open mic for anyone who wants to take the stage.</p><p><br></p><p>27.February. Merja Valve</p><p>24 April. Riika Kotka</p><p>22.May. Risto Oikarinen and his saxophone. </p><p>📍 Sign-up: On-site before the performances</p><p>⏳ Performance duration: Maximum 5 minutes</p><p>Come and join us – poetry is for everyone! </p>" }, "name": { "fi": "Omppu Open Mic", "sv": "Omppu Open Mic", "en": "Omppu Open mic" }, "short_description": { "fi": "Lavarunoja", "sv": "Scendikter", "en": "Spoken word poetry" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226ipa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19667092", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3802089/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://www.lippu.fi/event/red-nose-company-stroemsoe-helsingin-kaupunginteatteri-19667092/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/red-nose-company-stroemsoe-helsingin-kaupunginteatteri-19667092/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/red-nose-company-stroemsoe-helsingin-kaupunginteatteri-19667092/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235449, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:17:19.026779Z", "last_modified_time": "2025-02-17T11:17:19.026797Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/9f/d9/hkt-stromso222-tickets_341909_2916967_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235449/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:19.850840Z", "last_modified_time": "2025-05-16T23:16:11.703437Z", "date_published": null, "start_time": "2025-05-16T15: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, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/red-nose-company-stroemsoe-3802089/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/red-nose-company-stroemsoe-3802089/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/red-nose-company-stroemsoe-3802089/?affiliate=ADV&language=en" }, "provider_contact_info": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "description": { "fi": "<p> Superpositiivinen musiikkiteatteriesitys, jonka loppu on takuuvarmasti onnellinen!</p><p> Strömsö on hilpeä esitys kaikesta siitä, mikä on pielessä – elämässä, yhteiskunnassa ja fiktiossa. Mutta ei syytä huoleen! Nyt eskapismista tehdään taidetta: tarinoiden onnettomat loput korjataan, tuloksena uusi, uljas maailma, jossa kaikki menee niin kuin Strömsössä! Vai meneekö? Voidaanko taiteella todella muuttaa maailmaa, ja mikä oikeastaan saa kaipaamaan <em>Maahan jota ei ole</em> (Södergran).</p><p> Palkittu Red Nose Company on Suomen arvostettu kiertueteatteri, joka tekee nyt ensimmäisen ruotsinkielisen ensi-iltansa. Ohjauksesta vastaa Marielle Eklund-Vasama, jonka edellinen klovniesitys <em>Babylon</em> oli viiden tähden hitti.</p><p>Ohjaus Marielle Eklund-Vasama<br>Näyttelijät Stella Laine ja Marika Westerling<br>Sävellys, sovitus ja livemuusikko Petri Tiainen</p><p> Musiikin on säveltänyt Petri Tiainen, joka myös soittaa esityksissä. Käsikirjoitus lainaa vapaasti useammastakin tunnetusta klassikosta, ja ensimmäistä kertaa Red Nose Companyn 20-vuotisessa historiassa tullaan kuulemaan myös oopperaa laulavia klovneja!</p><p> Loppu hyvin – kaikki hyvin!</p><p> Esityskieli on ruotsi. Esitys tekstitetään suomeksi.</p>", "sv": "<p> • Premiär 13.5.2025 på Lilla Teatern, Georgsgatan 30<br>• Längd ca 2 h 15 min inkl. paus<br>• Genre: Musikteater, komedi, satir, clownteater<br>• Föreställningsspråket är svenska, föreställningen textas till finska.</p><p> Strömsö är en festlig föreställning om allt som är fel i livet, samhället och fiktionen. Men ingen fara – på den här scenen gör man verklighetsflykten till en konstform; de olyckliga sluten korrigeras och en ny, skön värld skapas, där allt går som på Strömsö! Eller? Kan konsten faktiskt förändra verkligheten och vad ligger egentligen bakom längtan efter <em>Landet som icke är</em>? Prisbelönta Red Nose Company är en av Finlands mest uppskattade turnéteatrar som nu gör sin första svenskspråkiga premiär. </p><p> Regi Marielle Eklund-Vasama<br>På scen Pigg (Stella Laine) och Hen (Marika Westerling)<br>Kompositör, arrangemang och livemusiker Petri Tiainen<br>Text Marielle Eklund-Vasama<br>Avvikelser från texten Arbetsgruppen<br>Scenografi och dräkter Reija Laine<br>Foton Cata Portin<br>Produktion Red Nose Company / Noomi Forslund, Tuukka Vasama och Milla Hilke<br>Produktionen har fått understöd av Alfred Kordelins stiftelse, Emilie och Rudolf Gesellius stiftelse, Konstsamfundet, Stiftelsen Tre Smeder, Svenska kulturfonden, Thurings stiftelse och Under- stödsstiftelsen för Arbetets Vänner</p><p> Musiken är komponerad, arrangerad och framförd av Petri Tiainen. Pjäsen lånar fritt från både en och annan känd klassiker, och för första gången i Red Nose Companys 20-åriga, nyskapande teaterhistoria får vi även höra clowner sjunga opera!</p><p> Slutet gott – allting gott!</p><p> Föreställningsspråket är svenska. Föreställningen textas till finska.</p><p> Produktionen har fått understöd av<strong> </strong>Alfred Kordelins stiftelse, Konstsamfundet, Stiftelsen Tre Smeder, Svenska kulturfonden, Thurings stiftelse och Understödsstiftelsen för Arbetets Vänner</p><p><br></p><p> *******</p><p><br></p><p> Käsikirjoitus Marielle Eklund-Vasama<br>Poikkeamat tekstistä Työryhmä<br>Skenografia ja puvut Reija Laine<br>Kuvat Cata Portin<br>Tuotanto Red Nose Company / Noomi Forslund, Tuukka Vasama och Milla Hilke<br>Esityksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Emilie och Rudolf Gesellius stiftelse, Konstsamfundet, Stiftelsen Tre Smeder, Svenska kulturfonden, Thurings stiftelse och Under- stödsstiftelsen för Arbetets Vänner</p><p> Esityksen valmistamista ovat tukeneetAlfred Kordelinin säätiö, Konstsamfundet, Stiftelsen Tre Smeder, Svenska kulturfonden, Thurings Stiftelse sekä Understödsstiftelsen för Arbetets Vänner</p><p>", "en": "<p> Red Nose Company<br><strong>STRÖMSÖ</strong></p><p> </p>" }, "name": { "sv": "Strömsö" }, "short_description": { "en": "Red Nose Company STRÖMSÖ • Premiär 13." }, "location_extra_info": { "fi": "Lilla Teatern" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667092/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226jam", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226mfm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490148, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-15T11:22:49.078032Z", "last_modified_time": "2025-05-15T11:22:49.078051Z", "name": "Kesäaskartelua.", "url": "https://tapahtumasyotto.espoo.fi/media/images/8ace77d7-cfd1-4993-85f9-665bec329b87.jpg", "cropping": "0,456,3648,4104", "photographer_name": "https://unsplash.com/@esteejanssens", "alt_text": "Vihko ja askartelu tarvikkeita.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490148/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-15T11:26:09.238087Z", "last_modified_time": "2025-05-16T12:16:59.060142Z", "date_published": null, "start_time": "2025-06-04T10:00:00Z", "end_time": "2025-06-04T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "name": { "fi": "Pajailtapäivä: Kesä Edition", "sv": "Pysseleftermiddag i bibliotekets Makerspace: Sommaredition", "en": "Arts and crafts afternoon in the library’s Makerspace: Summer Edition" }, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226jam/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226jma", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226mfm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490148, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-15T11:22:49.078032Z", "last_modified_time": "2025-05-15T11:22:49.078051Z", "name": "Kesäaskartelua.", "url": "https://tapahtumasyotto.espoo.fi/media/images/8ace77d7-cfd1-4993-85f9-665bec329b87.jpg", "cropping": "0,456,3648,4104", "photographer_name": "https://unsplash.com/@esteejanssens", "alt_text": "Vihko ja askartelu tarvikkeita.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490148/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-15T11:26:09.566353Z", "last_modified_time": "2025-05-16T12:16:58.938209Z", "date_published": null, "start_time": "2025-06-11T10:00:00Z", "end_time": "2025-06-11T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "name": { "fi": "Pajailtapäivä: Kesä Edition", "sv": "Pysseleftermiddag i bibliotekets Makerspace: Sommaredition", "en": "Arts and crafts afternoon in the library’s Makerspace: Summer Edition" }, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226jma/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226jxi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226mfm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490148, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-15T11:22:49.078032Z", "last_modified_time": "2025-05-15T11:22:49.078051Z", "name": "Kesäaskartelua.", "url": "https://tapahtumasyotto.espoo.fi/media/images/8ace77d7-cfd1-4993-85f9-665bec329b87.jpg", "cropping": "0,456,3648,4104", "photographer_name": "https://unsplash.com/@esteejanssens", "alt_text": "Vihko ja askartelu tarvikkeita.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490148/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-15T11:26:09.968740Z", "last_modified_time": "2025-05-16T12:16:58.639710Z", "date_published": null, "start_time": "2025-06-18T10:00:00Z", "end_time": "2025-06-18T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "name": { "fi": "Pajailtapäivä: Kesä Edition", "sv": "Pysseleftermiddag i bibliotekets Makerspace: Sommaredition", "en": "Arts and crafts afternoon in the library’s Makerspace: Summer Edition" }, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226jxi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226kce", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226mfm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490148, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-15T11:22:49.078032Z", "last_modified_time": "2025-05-15T11:22:49.078051Z", "name": "Kesäaskartelua.", "url": "https://tapahtumasyotto.espoo.fi/media/images/8ace77d7-cfd1-4993-85f9-665bec329b87.jpg", "cropping": "0,456,3648,4104", "photographer_name": "https://unsplash.com/@esteejanssens", "alt_text": "Vihko ja askartelu tarvikkeita.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490148/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-15T11:26:10.439126Z", "last_modified_time": "2025-05-16T12:16:58.361841Z", "date_published": null, "start_time": "2025-06-25T10:00:00Z", "end_time": "2025-06-25T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "name": { "fi": "Pajailtapäivä: Kesä Edition", "sv": "Pysseleftermiddag i bibliotekets Makerspace: Sommaredition", "en": "Arts and crafts afternoon in the library’s Makerspace: Summer Edition" }, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226kce/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226knq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226mfm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490148, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-15T11:22:49.078032Z", "last_modified_time": "2025-05-15T11:22:49.078051Z", "name": "Kesäaskartelua.", "url": "https://tapahtumasyotto.espoo.fi/media/images/8ace77d7-cfd1-4993-85f9-665bec329b87.jpg", "cropping": "0,456,3648,4104", "photographer_name": "https://unsplash.com/@esteejanssens", "alt_text": "Vihko ja askartelu tarvikkeita.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490148/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-15T11:26:10.837981Z", "last_modified_time": "2025-05-16T12:16:58.238741Z", "date_published": null, "start_time": "2025-07-02T10:00:00Z", "end_time": "2025-07-02T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "name": { "fi": "Pajailtapäivä: Kesä Edition", "sv": "Pysseleftermiddag i bibliotekets Makerspace: Sommaredition", "en": "Arts and crafts afternoon in the library’s Makerspace: Summer Edition" }, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226knq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226kyy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226mfm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490148, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-15T11:22:49.078032Z", "last_modified_time": "2025-05-15T11:22:49.078051Z", "name": "Kesäaskartelua.", "url": "https://tapahtumasyotto.espoo.fi/media/images/8ace77d7-cfd1-4993-85f9-665bec329b87.jpg", "cropping": "0,456,3648,4104", "photographer_name": "https://unsplash.com/@esteejanssens", "alt_text": "Vihko ja askartelu tarvikkeita.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490148/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-15T11:26:11.346435Z", "last_modified_time": "2025-05-16T12:16:58.050404Z", "date_published": null, "start_time": "2025-07-09T10:00:00Z", "end_time": "2025-07-09T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "name": { "fi": "Pajailtapäivä: Kesä Edition", "sv": "Pysseleftermiddag i bibliotekets Makerspace: Sommaredition", "en": "Arts and crafts afternoon in the library’s Makerspace: Summer Edition" }, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226kyy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226ldu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226mfm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490148, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-15T11:22:49.078032Z", "last_modified_time": "2025-05-15T11:22:49.078051Z", "name": "Kesäaskartelua.", "url": "https://tapahtumasyotto.espoo.fi/media/images/8ace77d7-cfd1-4993-85f9-665bec329b87.jpg", "cropping": "0,456,3648,4104", "photographer_name": "https://unsplash.com/@esteejanssens", "alt_text": "Vihko ja askartelu tarvikkeita.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490148/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-15T11:26:11.763747Z", "last_modified_time": "2025-05-16T12:16:57.935459Z", "date_published": null, "start_time": "2025-07-16T10:00:00Z", "end_time": "2025-07-16T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "name": { "fi": "Pajailtapäivä: Kesä Edition", "sv": "Pysseleftermiddag i bibliotekets Makerspace: Sommaredition", "en": "Arts and crafts afternoon in the library’s Makerspace: Summer Edition" }, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226ldu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226lo4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226mfm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490148, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-15T11:22:49.078032Z", "last_modified_time": "2025-05-15T11:22:49.078051Z", "name": "Kesäaskartelua.", "url": "https://tapahtumasyotto.espoo.fi/media/images/8ace77d7-cfd1-4993-85f9-665bec329b87.jpg", "cropping": "0,456,3648,4104", "photographer_name": "https://unsplash.com/@esteejanssens", "alt_text": "Vihko ja askartelu tarvikkeita.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490148/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-15T11:26:12.167735Z", "last_modified_time": "2025-05-16T12:16:57.750883Z", "date_published": null, "start_time": "2025-07-23T10:00:00Z", "end_time": "2025-07-23T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "name": { "fi": "Pajailtapäivä: Kesä Edition", "sv": "Pysseleftermiddag i bibliotekets Makerspace: Sommaredition", "en": "Arts and crafts afternoon in the library’s Makerspace: Summer Edition" }, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226lo4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226l2e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226mfm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490148, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-15T11:22:49.078032Z", "last_modified_time": "2025-05-15T11:22:49.078051Z", "name": "Kesäaskartelua.", "url": "https://tapahtumasyotto.espoo.fi/media/images/8ace77d7-cfd1-4993-85f9-665bec329b87.jpg", "cropping": "0,456,3648,4104", "photographer_name": "https://unsplash.com/@esteejanssens", "alt_text": "Vihko ja askartelu tarvikkeita.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490148/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-15T11:26:12.564987Z", "last_modified_time": "2025-05-16T12:16:57.543528Z", "date_published": null, "start_time": "2025-07-30T10:00:00Z", "end_time": "2025-07-30T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "name": { "fi": "Pajailtapäivä: Kesä Edition", "sv": "Pysseleftermiddag i bibliotekets Makerspace: Sommaredition", "en": "Arts and crafts afternoon in the library’s Makerspace: Summer Edition" }, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226l2e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226mfm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226jam/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226jma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226jxi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226kce/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226knq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226kyy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226ldu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226lo4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226l2e/?format=api" } ], "images": [ { "id": 1490148, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-15T11:22:49.078032Z", "last_modified_time": "2025-05-15T11:22:49.078051Z", "name": "Kesäaskartelua.", "url": "https://tapahtumasyotto.espoo.fi/media/images/8ace77d7-cfd1-4993-85f9-665bec329b87.jpg", "cropping": "0,456,3648,4104", "photographer_name": "https://unsplash.com/@esteejanssens", "alt_text": "Vihko ja askartelu tarvikkeita.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490148/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-05-15T11:26:05.565873Z", "last_modified_time": "2025-05-16T12:16:53.216864Z", "date_published": null, "start_time": "2025-06-04T10:00:00Z", "end_time": "2025-07-30T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>", "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>" }, "name": { "fi": "Pajailtapäivä: Kesä Edition", "sv": "Pysseleftermiddag i bibliotekets Makerspace: Sommaredition", "en": "Arts and crafts afternoon in the library’s Makerspace: Summer Edition" }, "short_description": { "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.", "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.", "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials. " }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226mfm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66047", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:751/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "5-20 €, festivaalilippu 70-135 €", "sv": "5-20 €, festivaalilippu 70-135 €", "en": "5-20 €, festivaalilippu 70-135 €" }, "info_url": { "fi": "https://kaaos.eventiolive.fi/", "sv": "https://kaaos.eventiolive.fi/", "en": "https://kaaos.eventiolive.fi/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 539943, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-15T12:13:31.185483Z", "last_modified_time": "2025-04-15T12:13:31.185498Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770607.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/539943/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-04-15T12:13:31.141373Z", "last_modified_time": "2025-05-16T12:13:59.658594Z", "date_published": null, "start_time": "2025-06-03", "end_time": "2025-06-08", "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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9C8B2354B674A2D6E9F2CA6B9BF1EA82/X_Dance_Festival_2025", "sv": "http://www.caisa.fi/sv/evenemang/event/9C8B2354B674A2D6E9F2CA6B9BF1EA82/X_Dance_Festival_2025", "en": "http://www.caisa.fi/en/events/event/9C8B2354B674A2D6E9F2CA6B9BF1EA82/X_Dance_Festival_2025" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Mitä tapahtuu kun liikkeestä tulee vastarinnan voima? Kun tanssista tulee yhteyden, välittämisen ja muutoksen kieli?</p><p>Aikana, jona taiteet ovat uhan alla ja tukea inklusiiviselle toiminnalle puretaan, X Dance Festival 2025 kokoontuu pitämään yllä linjaa -- ja puskemaan sitä eteenpäin. Tämän vuoden teema kutsuu esiin rohkeaa, kollektiivista liikettä. Se on julistus, että inklusiivista tanssia ei hidasteta tai pyyhitä pois.</p><p>Helsingissä järjestettävä XDF 2025 on kansainvälinen kohtaamispaikka vammaisille ja vammattomille taiteilijoille, opettajille ja liittolaisille, jotka muovaavat tanssin tulevaisuutta keskinäisen riippuvuuden ja mielikuvituksen kautta. Tämä ei ole vain festivaali — se on liike.</p><p>Yhdessä jaamme työtämme, syvennämme suhteita ja kuvittelemme uusia tapoja olla ja luoda maailmassa, joka liian usein sivuuttaa vammaisten tanssitaiteilijoiden läsnäolon ja panoksen. Voimallisten esitysten, immersiivisten työpajojen ja tärkeiden keskustelujen kautta kysymme:</p><p>Kuinka ylläpidämme itseämme ja toisiamme kun järjestelmät ympärillämme epäonnistuvat siinä? <br>Miltä näyttää vastarinta liikkeen muodossa? <br>Liity mukaan luomaan yhteisöä, joka vaatii saavutettavuutta, juhlii erilaisuutta ja liikkuu tarkoituksella.</p><p>XDF:n järjestää Kaaos Company, joka on sitoutunut vaalimaan saavutettavuutta, oikeudenmukaisuutta ja tanssin iloa — nyt ja aina.</p><p>Festivaalin tarkempi ohjelmisto julkistetaan keväällä 2025.</p>", "sv": "<p>XDF är en inkluderande dansfestival som hyllar mångfalden av kroppar och sinnen genom dans.</p><p>Programmet för X Dance Festival omfattar föreställningar, workshoppar, danskortfilmer, paneldiskussioner, offentliga diskussioner och Get-together-evenemang.</p><p>Festivalen är öppen för alla, inklusive barn, vuxna, äldre, personer med och utan funktionshinder.</p><p>Vi erbjuder teckenspråkstolkning för alla talade evenemang på finska eller engelska, och de flesta föreställningar har teckenspråkstolkning.</p><p>Det detaljerade programmet för festivalen publiceras under våren 2025.</p><p>XDF arrangeras av Inklusiivisen tanssin tuki ry och Kaaos Company.</p>", "en": "<p>What happens when movement becomes a force for resistance? When dance becomes a language for connection, solidarity—and change?</p><p>At a time when the arts are under threat and support for inclusive practice is being dismantled, X Dance Festival 2025 gathers to hold the line—and push it forward. This year’s theme calls for bold, collective movement. It is a declaration that inclusive dance will not be slowed, or erased.</p><p>Taking place in Helsinki, XDF 2025 is an international meeting place of disabled and non-disabled artists, educators, and allies who are shaping the future of dance through interdependence, and imagination. This is not just a festival—it’s a movement.</p><p>Together, we will share work, deepen relationships, and imagine new ways of being and creating in a world that too often overlooks us. Through powerful performances, immersive workshops, and urgent conversations, we will ask: How do we sustain ourselves and each other when the systems around us fail to? What does resistance look like in motion?</p><p>Join us in building a community that insists on access, uplifts difference, and moves with purpose.<br>XDF is organized by Kaaos Company, committed to cultivating accessibility, equity, and joy in dance—now and always.</p><p>The detailed programme for the festival will be announced in the spring of 2025.</p>" }, "name": { "fi": "X Dance Festival 2025 – Yhteisöä. Yhteistyötä. Liittolaisuutta. Toimintaa.", "sv": "X Dance Festival 2025", "en": "X Dance Festival 2025 – Community. Collaboration. Allyship. Action." }, "short_description": { "fi": "Mitä tapahtuu kun liikkeestä tulee vastarinnan voima? Kun tanssista tulee yhteyden, välittämisen ja muutoksen kieli?", "sv": "XDF är en inkluderande dansfestival som hyllar mångfalden av kroppar och sinnen genom dans.", "en": "What happens when movement becomes a force for resistance? When dance becomes a language for connection, solidarity—and change?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66047/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65864", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 415159, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-27T11:13:50.850651Z", "last_modified_time": "2025-03-27T11:13:50.850668Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761676.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/415159/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-27T11:13:50.815790Z", "last_modified_time": "2025-05-16T12:13:56.515758Z", "date_published": null, "start_time": "2025-05-21T15: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C5292328C0A11960633200EDCE0A9283/Myrskyluodon_Maija_12_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C5292328C0A11960633200EDCE0A9283/Stormskars-Maja_12_", "en": "http://www.vuotalo.fi/en/events/event/C5292328C0A11960633200EDCE0A9283/Stormskerry_Maja_12_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.</p><p>Elokuva on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella. Elokuva perustuu Anni Blomqvistin Myrskyluoto-kirjasarjaan ja sijoittuu 1800-luvun Suomen rannikkoseudulle. Nuori 17-vuotias Maija avioituu vasten tahtoaan kalastajamies Jannen kanssa. Hänen elämänsä Myrskyluodolla on täynnä haasteita ja vastoinkäymisiä: kalastajan vaimona hän joutuu selviytymään miehensä pitkistä poissaoloista merellä ja huolehtimaan perheestään yksin.<br> <br>Maijasta on kuitenkin kasvanut lujatahtoinen ja itsenäinen nainen, joka ei pelkää tarttua toimeen karussa saaristossa. Maijalla ja Jannella on vahva yhteys, sekä ajan myötä syventynyt rakkaus. Janne tukee vaimonsa pyrkimyksiä ja ymmärtää, että perheen vahvuus syntyy yhteisistä ponnisteluista.</p><p>Kesto 2 t 45 min<br>Ikäraja 12<br>Puhuttu ruotsiksi, tekstitetty suomeksi<br>Vapaa pääsy!</p>", "sv": "<p>Stormskärs Maja är en berättelse om vilja, kraft och kärlek.</p><p>Stormskärs Maja är en rörande historia om en stark kvinna och de utmaningar hon möter på en stormig ö. Filmen är baserad på<br> <br>Anni Blomqvists Stormskäret-bokserie och utspelar sig i kusttrakterna i 1800-talets Finland. Maja som är cirka 17 år gammal gifter sig mot sin vilja med fiskaren Janne. Hennes liv på Stormskäret är fullt av utmaningar och motgångar: som fiskarhustru är hon tvungen att klara av sin mans långa frånvaron på havet och ta hand om sin familj ensam.<br> <br>Maja har dock vuxit till en självständig kvinna med stark vilja, som inte är rädd att ta itu med saker och ting i den karga skärgården. Maja och Janne har en stark kontakt och med tiden en djupare kärlek till varandra. Janne stöder sin hustrus strävanden och förstår att familjens styrka uppstår ur gemensamt bemödande.<br> <br>Premiär: 19.01.2024<br> <br>Manus och regi: Tiina Lymi<br> <br>Åldersgräns: F 12<br>Längd: 2 h 45 min.<br>Språk: svenska<br>Textning: finska<br>Fri entré</p>", "en": "<p>Stormskerry Maja is a story of will, strength and love.</p><p>Stormskerry Maja is the touching story of a strong woman and the challenges she faces on a stormy island. The film is based on Anni Blomqvist’s Stormskerry book series and is set in coastal Finland in the 19th century. Against her will, the young 17-year-old Maja marries Janne, a fisherman. Her life on Stormskerry is full of challenges and adversity: as a fisherman’s wife, she has to cope with her husband’s long absences away at sea and look after her family on her own.<br> <br>But Maja has grown into a strong-willed, independent woman who is not afraid to face the challenges of the rugged archipelago. Maja and Janne have a strong connection and a love that has deepened over time. Janne supports his wife’s efforts and understands that the strength of a family comes from joint efforts.<br> <br>Premiere: 19 January 2024<br> <br>Screenplay and direction: Tiina Lymi<br>Age limit: 12+<br>Duration: 2 hours 45 min</p><p>Language: Swedish<br>Subtitles: Finnish</p><p>Free entry</p>" }, "name": { "fi": "Myrskyluodon Maija (12) – Onsdagsbio", "sv": "Stormskärs-Maja (12) – Onsdagsbio", "en": "Stormskerry Maja (12) – Onsdagsbio" }, "short_description": { "fi": "Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.", "sv": "Stormskärs Maja är en berättelse om vilja, kraft och kärlek.", "en": "Stormskerry Maja is a story of will, strength and love." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65864/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk226mqu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490322, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-16T10:18:43.454510Z", "last_modified_time": "2025-05-16T10:18:43.454525Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/0be4b4ca-e3b0-4b6d-8273-5d0fcc1e092e.jpg", "cropping": "315,0,1125,810", "photographer_name": "Jeff Mc Carthy", "alt_text": "Tuire Krogerus vaaleanpunaisessa hatussa ja punaisessa mekossa katsoo kameraan hymyillen. Taustalla kivikkoinen merenranta. Vieressä kuva hänen kirjastaan Majakan varjo.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490322/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-16T10:20:00.070720Z", "last_modified_time": "2025-05-16T10:21:24.491679Z", "date_published": "2025-05-16T10:07:00Z", "start_time": "2025-08-21T15:00:00Z", "end_time": "2025-08-21T16: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, "info_url": { "fi": "https://www.tuirekrogerus.fi/", "sv": "https://www.tuirekrogerus.fi/", "en": "https://www.tuirekrogerus.fi/" }, "provider_contact_info": null, "provider": { "fi": "Tuire Krogerus", "sv": "Tuire Krogerus", "en": "Tuire Krogerus" }, "description": { "fi": "<p>Tuire Krogerus on menestynyt yrittäjä ja määrätietoinen kirjailija. Krogeruksen esikoisteos Majakan varjo tuo valoon tärkeitä ja vaikeita teemoja kuitenkaan liikaa synkistelemättä. Tilaisuudessa jutellaan lapsuuden loppumisesta liian varhain, ja kuinka Krogerus opetteli kirjoittamisen taidon ohituskaistaa käyttäen.</p><p>Tilaisuus sopii tyttöjen oikeuksien kannattajille sekä kaikenikäisille, jotka haaveilevat kirjan kirjottamisesta tai ovat kiinnostuneita siitä, miten kirja syntyy.</p><p>*</p><p>Kirjan kansi: Aviador kustannus</p><p>Krogeruksen kuva: Jeff Mc Carthy</p>", "sv": "<p>Tuire Krogerus är en framgångsrik entreprenör och en målmedveten författare. Krogerus debutroman, Majakan varjo, belyser viktiga och svåra teman utan att vara alltför dyster. Under evenemanget kommer vi att prata om att avsluta barndomen för tidigt och hur Krogerus lärde sig konsten att skriva genom att använda snabbfilen.</p><p>Evenemanget lämpar sig för förespråkare för flickors rättigheter och för personer i alla åldrar som drömmer om att skriva en bok eller är intresserade av hur en bok blir till.</p><p>Evenemanget är på finska.</p><p>*</p><p>Bokomslag av Aviador Publishing</p><p>Krogerus foto av Jeff Mc Carthy</p>", "en": "<p>Tuire Krogerus is a successful entrepreneur and a determined writer. Krogerus' debut novel, Majakan varjo, brings important and difficult themes to light without being too gloomy. The event will talk about ending childhood too early, and how Krogerus learned the art of writing using the fast lane.</p><p><br></p><p>The event is suitable for girls' rights advocates and anyone of any age who dreams of writing a book or is interested in how a book is made.</p><p>The event is in Finnish.</p><p>*</p><p>Book cover by Aviador Publishing</p><p>Krogerus photo by Jeff Mc Carthy</p>" }, "name": { "fi": "Kirjailijavieraana Tuire Krogerus", "sv": "Författargäst: Tuire Krogerus", "en": "Author Guest: Tuire Krogerus" }, "short_description": { "fi": "Krogeruksen esikoisteos Majakan varjo tuo valoon tärkeitä ja vaikeita teemoja kuitenkaan liikaa synkistelemättä.", "sv": "Krogerus debutroman, Majakan varjo, belyser viktiga och svåra teman utan att vara alltför dyster.", "en": "Krogerus' debut novel, Majakan varjo, brings important and difficult themes to light without being too gloomy." }, "location_extra_info": { "fi": "Kaija", "sv": "Kaija", "en": "Kaija" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226mqu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27008, "next": "