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&hide_recurring_children=true&page=42
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=43", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=41" }, "data": [ { "id": "kulke:66522", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "48-104 €", "en": "48-104 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/koiran-sydaen-sobachie-serdce-3912835/", "en": "https://www.lippu.fi/artist/savoy-teatteri/koiran-sydaen-sobachie-serdce-3912835/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 952725, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-06T12:13:59.672262Z", "last_modified_time": "2025-06-06T12:13:59.672278Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774765.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/952725/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-06T12:13:59.555981Z", "last_modified_time": "2025-06-11T14:12:41.101722Z", "date_published": null, "start_time": "2025-12-07T17: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/0D9FB8AB33EEEDEE17B7E188E1A1B9E2/Koiran_sydan_Sobachie_serdce", "en": "http://www.savoyteatteri.fi/en/events/event/0D9FB8AB33EEEDEE17B7E188E1A1B9E2/Heart_of_a_Dog_Sobachie_serdce" }, "provider_contact_info": null, "provider": { "fi": "Aftersunset Oy", "en": "Aftersunset Oy" }, "description": { "fi": "<p><b>The Play “Heart of a Dog”</b><br>Based on the cult novella by Mikhail Bulgakov</p><p>A story brought back to life on stage to inspire, astonish, and provoke reflection.<br><i>Heart of a Dog</i> is more than just a play — it's a profound exploration of human nature, society, and timeless questions of power, morality, and progress.</p><p>Bulgakov’s classic, in this production, becomes a modern mirror in which we can see not only the past, but also our present.</p><p>The familiar plot takes on new colors thanks to the unique approach of director Konstantin Kamensky. The play incorporates modern technology, video design, and interactive elements to immerse you in the world of 1920s Moscow.</p><p>Duration: 1 hour 45 minutes (no intermission)</p><p>Language: Performed in Russian without subtitles</p><p><b>Cast:</b><br>Alexander Feklistov<br>Artur Smolyaninov<br>Semyon Shteinberg<br>Grigory Služitel<br>Sasha Aleksis<br>Irina Soboleva</p><p><b>Director:</b><br>Konstantin Kamensky</p>", "en": "<p><b>The Play “Heart of a Dog”</b><br>Based on the cult novella by Mikhail Bulgakov</p><p>A story brought back to life on stage to inspire, astonish, and provoke reflection.<br><i>Heart of a Dog</i> is more than just a play — it's a profound exploration of human nature, society, and timeless questions of power, morality, and progress.</p><p>Bulgakov’s classic, in this production, becomes a modern mirror in which we can see not only the past, but also our present.</p><p>The familiar plot takes on new colors thanks to the unique approach of director Konstantin Kamensky. The play incorporates modern technology, video design, and interactive elements to immerse you in the world of 1920s Moscow.</p><p>Duration: 1 hour 45 minutes (no intermission)</p><p>Language: Performed in Russian without subtitles</p><p><b>Cast:</b><br>Alexander Feklistov<br>Artur Smolyaninov<br>Semyon Shteinberg<br>Grigory Služitel<br>Sasha Aleksis<br>Irina Soboleva</p><p><b>Director:</b><br>Konstantin Kamensky</p>" }, "name": { "fi": "Koiran sydän / Sobachie serdce", "en": "Heart of a Dog / Sobachie serdce" }, "short_description": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66522/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66617", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "36,50-64,50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3849337" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 994959, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-11T14:12:40.172145Z", "last_modified_time": "2025-06-11T14:12:40.172160Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774739.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/994959/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-11T14:12:40.087737Z", "last_modified_time": "2025-06-11T14:12:40.273462Z", "date_published": null, "start_time": "2025-10-19T15: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": "http://www.savoyteatteri.fi/fi/tapahtumat/event/456F46CC15B5936EF2BB41E6A43232CD/Alice_Amazing_Circus_Show" }, "provider_contact_info": null, "provider": { "fi": "Aftersunset Oy" }, "description": { "fi": "<p>Ainutlaatuinen Alice – Amazing Circus Show valloittaa lokakuussa Suomen!</p><p>Henkeäsalpaavaa sirkustaidetta, modernia koreografiaa, leikkisää puvustusta ja unenomaisia lavasteita – klassikkotarina Liisan seikkailuista Ihmemaassa ei ole koskaan näyttänyt näin upealta!</p><p>Ukrainalaisen Eastfire-tuotannon Liisa Ihmemaassa -sirkusesitys on hurmannut yleisön ympäri Eurooppaa, ja nyt se tulee vihdoin kiertueelle myös Suomeen. Tämä uskomattomia sirkustaitoja, tanssia, teatteria ja huumoria yhdistävä spektaakkeli vie kaikenikäiset katsojat keskelle värikylläistä fantasiamaailmaa, jossa liike, luovuus ja tarina yhdistyvät ennennäkemättömällä tavalla. Kokonaisuuden kruunaavat viimeisintä teknologiaa hyödyntävät erikoistehosteet.</p><p>Viihdyttävä show herättää kaikille tutut Liisa Ihmemaassa -hahmot eloon. Lavalla nähdään muun muassa hämmästyttävää akrobatiaa, jongleerausta, trampoliinitemppuja ja notkeutta, jollaista et tiennyt olevan olemassakaan. Ilmiömäisten esiintyjien loppuun asti hiottu ammattimaisuus saa katsojat haukkomaan henkeään ja tuntemaan, että mikä tahansa on mahdollista.</p><p>Unohtumaton ja mielikuvitusta kutkuttava show on elämys niin lapsille, nuorille kuin aikuisille.</p><p>Helsingin yleisö pääsee kokemaan tämän taianomaisen esityksen Savoy-teatterissa sunnuntaina 19.10.2025. Helsingin lisäksi esitys nähdään myös Kuopiossa 15.10., Tampereella 16.10., Lahdessa 17.10. ja Jyväskylässä 18.10.</p><p>Esityksen kesto: 1 h 30 min (ei väliaikaa).</p>" }, "name": { "fi": "Alice – Amazing Circus Show" }, "short_description": { "fi": "Ainutlaatuinen Alice – Amazing Circus Show valloittaa lokakuussa Suomen!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66617/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66137", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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:348/?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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": 689402, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T06:13:45.443930Z", "last_modified_time": "2025-05-05T06:13:45.443948Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752332.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/689402/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-05T06:13:45.275589Z", "last_modified_time": "2025-06-11T13:12:33.220787Z", "date_published": null, "start_time": "2025-06-12T07:00:00Z", "end_time": "2025-06-12T16: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": "http://www.vuotalo.fi/fi/tapahtumat/event/55E97BAE54FA4169B52A1FC429546FA7/Anssi_Kela_Unelmien_lavatanssit_Jattimuskari_Arne_Alligator", "sv": "http://www.vuotalo.fi/sv/evenemang/event/55E97BAE54FA4169B52A1FC429546FA7/Anssi_Kela_Drommarnas_logdans_Jattimuskari_och_Arne_Alligator", "en": "http://www.vuotalo.fi/en/events/event/55E97BAE54FA4169B52A1FC429546FA7/Anssi_Kela_open-air_dancing_music_playschool_and_Arnie_Alligator" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule juhlimaan Helsinki-päivää Vuotorille! Päivä alkaa koko perheen konserteilla ja huipentuu Anssi Kelan keikkaan. Ohjelmassa myös lavatanssit ja Taidepihan avajaiset.</p><p>Vuoden 2025 Helsinki-päivä alkaa Vuotorilla koko perheen konserteilla, kun lavalle nousevat Vuomun Näppärit, IHMO:n jättimuskari sekä ruotsiksi esiintyvä Aarne Alligaattori & Viidakkorumpu.</p><p>Iltapäivällä tanssitaan Unelmien lavatansseissa Matti-Sakarin ja Pekkaniskan Poikien tahdissa. Illalla ihanan Taidepihan avajaiset ja huikea pääesiintyjä Anssi Kela!</p><p><b>Päivän ohjelma</b><br>klo 10 Vuomun näppärit Vuotalon aulassa<br>klo 10.30 IHMO:n Jättimuskari<br>klo 11 Arne Alligator & Djungeltrumman</p><p>klo 13.30 Unelmien lavatanssit:<br>klo 13.30–14 Tanssin opetusta<br>klo 14.15–15 Unelmien lavatanssit: Matti-Sakari ja Pekkaniskan Pojat<br>klo 15.15–15.30 Asahi-terveysliikuntaa</p><p>klo 16–18 Taidepihan avajaiset Vuotalon alapihalla</p><p>klo 18 Anssi Kela</p><p>Kaikkiin tapahtumiin vapaa pääsy – nähdään Vuotorilla!</p><p><b>Lisätietoja ohjelmasta</b><br>klo 10 Vuomun näppärit<br>Vuotorilla esiintyy Vuosaaren musiikkiopiston lapsista ja nuorista koostuva pelimanniryhmä Näppärit! Näppäri-orkesteriin ei ole pääsykokeita, kuten ei Vuosaaren musiikkiopistoonkaan. Mukaan soittamaan pääsevät kaikki iästä tai tasosta riippumatta.<br> <br><b>IHMO:n Jättimuskari</b> <br>Lämpimästi tervetuloa kesäiselle muskariretkelle! Itä-Helsingin musiikkiopisto eli lyhyemmin IHMO laittaa pystyyn Jättimuskarin: Muskariopettajat ja bändi laulattavat ja leikittävät koko perhettä!</p><p><b>klo 11 Aarne Alligaattori & Viidakkorumpu</b> soittaa viidakon iloisinta ja tarttuvinta lastenmusiikkia. Ihastuttavan ja halattavan Aarnen lisäksi lavalla pomppii myös kaksi safariasuista kaveria, Tobbe ja Jocke. Tobbe laulaa ja säätää ja Jocke soittaa kitaraa. Aarne hassuttelee ja keksii aina jotain kepposia, ja soittaa viidakkorumpuja. Aarne Alligaattori & Viidakkorumpu esiintyy Vuotorilla ruotsiksi.</p><p>Konsertin kesto on n. 35–40 min. sekä meet and greet Arne Alligaattorin kanssa konsertin jälkeen.</p><p><b>klo 13.30–15.30 Unelmien lavatanssit: Matti-Sakari ja Pekkaniskan Pojat </b><br>Helsinki-päivän kunniaksi Vuotorilla tanssahdellaan ja jumpataan torstaina 12.6. kello 13.30–15.30. Unelmien lavatanssien esiintyjänä toimii maineikas orkesteri Matti-Sakari ja Pekkaniskan Pojat.</p><p>Maksuttomien lavatanssien lisäksi ohjelmassa on tanssinopetusta, Asahi-terveysliikuntaa, tasapainoilua sekä puristusvoiman mittaamista. Lisäksi tapahtuman aikana esitellään Helsingin liikuntapalveluiden Alueliikunta-palvelua.</p><p><b>Unelmien lavatanssien ohjelma Vuotorilla:</b> <br>klo 13.30–14 Tanssin opetusta <br>klo 14.15–15 Matti-Sakari ja Pekkaniskan Pojat <br>klo 15.15–15.30 Asahi-terveysliikuntaa</p><p>Vuotorilla myös klo 13.30–15.30 <br> – tasapainorata <br> – puristusvoimatesti <br> – alueliikunta esittäytyy</p><p><b>klo 16–18 Taidepihan avajaiset Vuotalon alapihalla</b> <br>Helsingin kuvataidekoulun ympäristötaidenäyttely avautuu Vuotalon alapihalla, josta näin ollen tulee Taidepiha! Avajaisten aikana nonstop-työpajoissa voit tehdä viirejä ja rekileijan lennätettäväksi kesätaivaan tuuliin. Lisäksi Helsingin tanssiopiston Tulilinnut ja Pisarat -tanssiryhmät esiintyvät avajaisissa klo 16.15 ja klo 17.</p><p><b>klo 18 Anssi Kela Vuotorilla</b><br>Anssi Kela singahti koko kansan sydämiin vuosituhannen taitteessa, kun hänen \"Nummela\"-klassikkoalbumistaan muodostui yksi maamme kaikkien aikojen menestyksekkäimmistä pitkäsoitoista. Rakastettu esiintyjä ei jäänyt kuitenkaan kieriskelemään hetkelliseen suosioon, vaan on pysynyt relevanttina läpi vuosikymmenten. <br> <br>Loputtomasta luovuudestaan tunnettu, palkittu laulaja-lauluntekijä esiintyy ympäri Suomea elämänsä liveiskussa, huippuunsa viritetyn bändin kera. Livekokoonpanon muodostavat maestron itsensä lisäksi Mikko Kosonen, Antti Karisalmi, Saara Metsberg sekä Ville Kela.</p>", "sv": "<p>Kom och fira Helsingforsdagen på Nortorget! Dagen börjar med konserter för hela familjen och kulminerar i Anssi Kelas uppträdande. I programmet ingår även logdans och invigning av Konstgården.</p><p>Helsingforsdagen 2025 börjar på Nortorget med konserter för hela familjen med Vuomus Näppärit, Vuomus och IHMO:s Jättimuskari samt Arne Alligator & Djungeltrumman som uppträder på svenska.</p><p>På eftermiddagen dansar vid i Drömmarnas logdans med dansorkestern Matti-Sakari & Pekkaniskan Pojat. <br>Kvällen bjuder på invigning av den underbara Konstgården samt den fantastiska huvudartisten Anssi Kela!</p><p><b>Dagens program</b><br>kl. 10 Vuomus Näppärit och IHMO:s Jättimuskari<br>kl. 11 Arne Alligator & Djungeltrumman<br>kl. 13.30–14 Dansundervisning<br>kl. 14.15–15 Drömmarnas logdans: Matti-Sakari & Pekkaniskan Pojat<br>kl. 15.15–15.30 Asahi hälsomotion<br>kl. 16–18 Invigning av Konstgården <br>kl. 18 Anssi Kela</p><p>Fritt inträde till alla evenemang – vi ses på Nortorget!</p><p><b>Mer information om programmet</b><br>kl. 10 Vuomus Näppärit och IHMO:s Jättimuskari på Nortorget<br>På Nortorget uppträder spelmansgruppen Näppärit, som består av barn och unga från Vuosaaren musiikkiopisto! Det finns inget inträdesprov till orkestern Näppäri eller Vuosaaren musiikkiopisto. Alla får vara med oavsett ålder eller nivå.</p><p><b>IHMO:s Jättimuskari</b> <br>Varmt välkomna till den somriga musiklekisutflykten! I Nordsjöområdet kan barn och unga studera musik vid Vuosaaren musiikkiopisto och Itä-Helsingin musiikkiopisto. Musiklekislärarna och bandet sjunger och leker med hela familjen!</p><p><b>kl. 11 Arne Alligator & Djungeltrumman</b> spelar djungelns gladaste och mest medryckande barnmusik. Förutom den förtjusande och kramgoda Arne studsar även två safariklädda kompisar, Tobbe och Jocke, på scenen. Tobbe sjunger och fixar och Jocke spelar gitarr. Aarne larvar sig och hittar alltid på några upptåg och spelar djungeltrummor. Arne Alligator & Djungeltrumman uppträder på svenska på Nortorget.</p><p>Konsertens längd är cirka 35–40 minuter, och efter konserten är det meet and greet med Arne Alligator.</p><p><b>kl. 13.30–15.30 Drömmarnas logdans: Matti-Sakari & Pekkaniskan Pojat </b><br>Helsingforsdagen firas med dans och gymnastik på Nortorget torsdagen den 12 juni kl. 13.30–15.30. Den berömda orkestern Matti-Sakari & Pekkaniskan Pojat uppträder under Drömmarnas logdans.</p><p>Förutom avgiftsfri logdans innehåller programmet dansundervisning, Asahi hälsomotion, balansering och mätning av tryckkraft. Under evenemanget presenteras dessutom Helsingfors idrottstjänsters Förortsmotionstjänst.</p><p><b>Program för Drömmarnas logdans på Nortorget:</b> <br>kl. 13.30–14 Dansundervisning <br>kl. 14.15–15 Matti-Sakari & Pekkaniskan Pojat <br>kl. 15.15–15.30 Asahi hälsomotion</p><p><b>Kl. 13.30–15.30 även på Nortorget</b> <br> – Balansbana <br> – Tryckkrafttest <br> – Förortsmotionen presenterar sig</p><p><b>kl. 16–18 Invigning av Konstgården på Nordhusets nedre gård</b> <br>Helsingin kuvataidekoulus miljökonstutställning öppnas på Nordhusets nedre gård, som därmed blir Konstgården! I nonstop-verkstaden under invigningen kan du tillverka en pappersdrake för att flyga i sommarhimlens vindar. Helsingin tanssiopistos dansgrupper Tulilinnut och Pisarat uppträder vid invigningen kl. 16.15 och kl. 17.</p><p><b>kl. 18 Anssi Kela på Nortorget</b><br>Anssi Kela intog hela folkets hjärtan i millennieskiftet, då hans klassikeralbum Nummela blev ett av de mest framgångsrika och länge spelade albumen i vårt land genom tiderna. Den älskade artisten stannade dock inte på stället för att vältra sig i den tillfälliga populariteten, utan han har förblivit relevant genom årtiondena. <br> <br>Den prisbelönta sångaren och låtskrivaren, känd för sin oändliga kreativitet, uppträder live runtom i Finland med ett toppenband. Livesammansättningen består förutom av maestron själv av Mikko Kosonen, Antti Karisalmi, Saara Metsberg och Ville Kela.</p>", "en": "<p>Come and celebrate Helsinki Day at Vuotori Square! The day will kick off with concerts for the whole family and culminate in a concert by Anssi Kela.</p><p>The programme also includes traditional dancing and the opening of the Vuotalo Art Yard.</p><p>The 2025 Helsinki Day will start at Vuotori Square with concerts for the whole family, featuring the Vuomun Näppärit orchestra of Vuosaari Music Institute, a music playschool event by East Helsinki Music Institute, and a concert in Swedish by Arnie Alligator & the Jungle Drum.</p><p>In the afternoon, there will be open-air dancing accompanied by Matti-Sakari & Pekkaniskan Pojat.</p><p>The evening will culminate with the opening of the Vuotalo Art Yard and a concert by the amazing headliner, Anssi Kela!</p><p><b>The day’s programme</b><br>10.00 Vuomun Näppärit in Vuotalo's Aula and IHMO's Jättimuskari – a music playschool event by Vuosaari Music Institute and East Helsinki Music Institute<br>11.00 Arnie Alligator & the Jungle Drum<br>13.30–14.00 Dance lesson<br>14.15–15.00 Open-air dancing: Matti-Sakari & Pekkaniskan Pojat<br>15.15–15.30 Asahi exercise<br>16.00–18.00 Opening of the Vuotalo Art Yard <br>18.00 Anssi Kela</p><p>Free entry to all events – see you at Vuotori Square!</p><p><b>Further information about the programme</b></p><p><b>10.00 Vuomun Näppärit and Jättimuskari, a music playschool event by Vuosaari Music Institute and East Helsinki Music Institute, at Vuotori Square</b><br>Näppärit, a string group formed by children and young people from Vuosaari Music Institute, will perform at Vuotori Square.</p><p><b>Jättimuskari – a music playschool event by East Helsinki Music Institute</b> <br>Come and join us for a summertime music playschool excursion! Music playschool teachers and the band will invite the entire family to sing and play along!</p><p><b>11.00 Arnie Alligator & the Jungle Drum</b> will play the happiest and catchiest children’s music of the jungle. The charming and huggable Arnie will be joined on the stage by his two friends in safari outfits: Tobbe and Jocke. Tobbe sings and putters about, while Jocke plays the guitar. Arnie fools around, always comes up with some sort of mischief and plays the jungle drums. Arnie Alligator & the Jungle Drum will perform in Swedish at Vuotori Square.</p><p>The concert will last for around 35–40 minutes, and there will be a meet and greet session with Arnie Alligator after the concert.</p><p><b>13.30–15.30 Open-air dancing: Matti-Sakari & Pekkaniskan Pojat</b> <br>In honour of Helsinki Day, there will be dancing and exercise at Vuotori Square on Thursday 12 June between 13.30 and 15.30. The renowned orchestra Matti-Sakari & Pekkaniskan Pojat will perform at the open-air dance.<br> <br>In addition to free-of-charge open-air dancing, the programme includes a dance lesson, Asahi exercise, balancing and measurement of people’s grip strength. The regional exercise services offered by the City of Helsinki's Sports Services will also introduce themselves during the event.</p><p><b>Programme of the open-air dance at Vuotori Square:</b> <br>13.30–14.00 Dance lesson <br>14.15–15.00 Matti-Sakari & Pekkaniskan Pojat <br>15.15–15.30 Asahi exercise</p><p><b>Other activities at Vuotori Square 13.30–15.30</b> <br> – balance track <br> – grip strength test <br> – self-introduction by regional exercise services.</p><p><b>16.00–18.00 Opening of the Art Yard in the lower yard of Vuotalo</b> <br>An exhibition of environmental art by Helsingin kuvataidekoulu (Art School for children and youth) will open in the lower yard of Vuotalo, turning the area into the Vuotalo Art Yard! In non-stop workshops, participants can make pennants or a Japanese-style reki kites and let them fly in the summer sky. The Tulilinnut and Pisarat dance groups from Helsinki Dance Institute will perform at the opening event, too.</p>" }, "name": { "fi": "Anssi Kela, Unelmien lavatanssit, Jättimuskari, Arne Alligator – Vuotalon Helsinki-päivä", "sv": "Anssi Kela, Drömmarnas logdans, Jättimuskari och Arne Alligator – Helsingforsdagen i Nordhuset", "en": "Anssi Kela, open-air dancing, music playschool and Arnie Alligator – Helsinki Day at Vuotalo" }, "short_description": { "fi": "Tule juhlimaan Helsinki-päivää Vuotorille! Päivä alkaa koko perheen konserteilla ja huipentuu Anssi Kelan keikkaan. Ohjelmassa myös lavatanssit ja Taidepihan avajaiset.", "sv": "Kom och fira Helsingforsdagen på Nortorget! Dagen börjar med konserter för hela familjen och kulminerar i Anssi Kelas uppträdande. I programmet ingår även logdans och invigning av Konstgården.", "en": "Come and celebrate Helsinki Day at Vuotori Square! The day will kick off with concerts for the whole family and culminate in a concert by Anssi Kela." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66137/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66555", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 993921, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-11T11:13:59.980629Z", "last_modified_time": "2025-06-11T11:13:59.980646Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764948.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/993921/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-11T11:13:59.864594Z", "last_modified_time": "2025-06-11T11:14:00.123237Z", "date_published": null, "start_time": "2025-08-22T11: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.espanlava.fi/fi/tapahtumat/event/8D4BC588128A1FFBDB7930D190193D95/MIL-Espa_Laivaston_soittokunta", "sv": "http://www.espanlava.fi/sv/evenemang/event/8D4BC588128A1FFBDB7930D190193D95/MIL-Espa_Laivaston_soittokunta", "en": "http://www.espanlava.fi/en/events/event/8D4BC588128A1FFBDB7930D190193D95/MIL-Espa_Laivaston_soittokunta" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.</p><p>Puolustusvoimien sotilassoittokunnat, varusmiessoittokunta ja soittokuntien varusmiesbändit nousevat vuorollaan eri kokoonpanoin Espan lavalle kesäperjantaisin kello 14.</p><p>Musiikki vaihtelee jazzista iskelmään ja tarjolla on kaikkea siltä väliltä. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen!<br>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa.</p><p>Konserttiin on vapaa pääsy. Tervetuloa!</p>", "sv": "<p>På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.</p><p>Försvarsmaktens militära musikkår, värnpliktsmusikkår och musikkårernas värnpliktsband stiger i tur och ordning i olika sammansättningar upp på Esplanadestraden på sommarfredagar kl. 14.</p><p>Musiken varierar från jazz till schlager och allt där emellan utlovas. Underhållande uppträdanden med blandade musikstilar utlovas!</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadsparken sedan 1927.</p>", "en": "<p>On summer Fridays, the Espa Stage will present different military band ensembles across Finland.</p><p>Finnish Military Bands, the Conscript Band of the Finnish Defence Forces and the conscript bands of different military bands in different compositions will take their turns on the Espa Stage on summer Fridays at 14:00.</p><p>The music will range from jazz to popular music and everything in-between! The concerts will feature entertaining performances spanning a wide variety of musical styles.</p><p>MIL-Espa park concerts have been organised at the Esplanadi Park since 1927.</p>" }, "name": { "fi": "MIL-Espa: Laivaston soittokunta", "sv": "MIL-Espa: Laivaston soittokunta", "en": "MIL-Espa: Laivaston soittokunta" }, "short_description": { "fi": "Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.", "sv": "På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.", "en": "On summer Fridays, the Espa Stage will present different military band ensembles across Finland." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66555/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66604", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 993920, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-11T11:13:58.543870Z", "last_modified_time": "2025-06-11T11:13:58.543888Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764947.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/993920/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-11T11:13:58.417185Z", "last_modified_time": "2025-06-11T11:13:58.713383Z", "date_published": null, "start_time": "2025-08-15T11: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.espanlava.fi/fi/tapahtumat/event/FE574C442F7A70D632F4CFD746F47681/MIL-Espa_Kaartin_soittokunta", "sv": "http://www.espanlava.fi/sv/evenemang/event/FE574C442F7A70D632F4CFD746F47681/MIL-Espa_Kaartin_soittokunta", "en": "http://www.espanlava.fi/en/events/event/FE574C442F7A70D632F4CFD746F47681/MIL-Espa_Kaartin_soittokunta" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.</p><p>Puolustusvoimien sotilassoittokunnat, varusmiessoittokunta ja soittokuntien varusmiesbändit nousevat vuorollaan eri kokoonpanoin Espan lavalle kesäperjantaisin kello 14.</p><p>Musiikki vaihtelee jazzista iskelmään ja tarjolla on kaikkea siltä väliltä. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen!<br>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa.</p><p>Konserttiin on vapaa pääsy. Tervetuloa!</p>", "sv": "<p>På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.</p><p>Försvarsmaktens militära musikkår, värnpliktsmusikkår och musikkårernas värnpliktsband stiger i tur och ordning i olika sammansättningar upp på Esplanadestraden på sommarfredagar kl. 14.</p><p>Musiken varierar från jazz till schlager och allt där emellan utlovas. Underhållande uppträdanden med blandade musikstilar utlovas!</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadsparken sedan 1927.</p>", "en": "<p>On summer Fridays, the Espa Stage will present different military band ensembles across Finland.</p><p>Finnish Military Bands, the Conscript Band of the Finnish Defence Forces and the conscript bands of different military bands in different compositions will take their turns on the Espa Stage on summer Fridays at 14:00.</p><p>The music will range from jazz to popular music and everything in-between! The concerts will feature entertaining performances spanning a wide variety of musical styles.</p><p>MIL-Espa park concerts have been organised at the Esplanadi Park since 1927.</p>" }, "name": { "fi": "MIL-Espa: Kaartin soittokunta", "sv": "MIL-Espa: Kaartin soittokunta", "en": "MIL-Espa: Kaartin soittokunta" }, "short_description": { "fi": "Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.", "sv": "På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.", "en": "On summer Fridays, the Espa Stage will present different military band ensembles across Finland." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66604/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66480", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 836706, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-23T13:12:43.963014Z", "last_modified_time": "2025-05-23T13:12:43.963027Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764946.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/836706/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-23T13:12:43.910071Z", "last_modified_time": "2025-06-11T11:13:56.353885Z", "date_published": null, "start_time": "2025-07-25T11: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.espanlava.fi/fi/tapahtumat/event/1435742BEC458B87105F7151C0473B6A/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_showband", "sv": "http://www.espanlava.fi/sv/evenemang/event/1435742BEC458B87105F7151C0473B6A/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_showband", "en": "http://www.espanlava.fi/en/events/event/1435742BEC458B87105F7151C0473B6A/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_showband" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.</p><p>Puolustusvoimien sotilassoittokunnat, varusmiessoittokunta ja soittokuntien varusmiesbändit nousevat vuorollaan eri kokoonpanoin Espan lavalle kesäperjantaisin kello 14.</p><p>Musiikki vaihtelee jazzista iskelmään ja tarjolla on kaikkea siltä väliltä. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen!</p><p>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa.</p><p>Konserttiin on vapaa pääsy. Tervetuloa!</p>", "sv": "<p>På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.</p><p>Försvarsmaktens militära musikkår, värnpliktsmusikkår och musikkårernas värnpliktsband stiger i tur och ordning i olika sammansättningar upp på Esplanadestraden på sommarfredagar kl. 14.</p><p>Musiken varierar från jazz till schlager och allt där emellan utlovas. Underhållande uppträdanden med blandade musikstilar utlovas!</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadsparken sedan 1927.</p>", "en": "<p>On summer Fridays, the Espa Stage will present different military band ensembles across Finland.</p><p>Finnish Military Bands, the Conscript Band of the Finnish Defence Forces and the conscript bands of different military bands in different compositions will take their turns on the Espa Stage on summer Fridays at 14:00.</p><p>The music will range from jazz to popular music and everything in-between! The concerts will feature entertaining performances spanning a wide variety of musical styles.</p><p>MIL-Espa park concerts have been organised at the Esplanadi Park since 1927.</p>" }, "name": { "fi": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan showband", "sv": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan showband", "en": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan showband" }, "short_description": { "fi": "Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.", "sv": "På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.", "en": "On summer Fridays, the Espa Stage will present different military band ensembles across Finland." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66480/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66421", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 810534, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-20T08:12:40.230017Z", "last_modified_time": "2025-05-20T08:12:40.230031Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771482.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/810534/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-20T08:12:40.181098Z", "last_modified_time": "2025-06-11T11:13:53.567448Z", "date_published": null, "start_time": "2025-07-01T13: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.espanlava.fi/fi/tapahtumat/event/06016609160D75E33646B20AF9CAA4C4/The_Seatbelts", "sv": "http://www.espanlava.fi/sv/evenemang/event/06016609160D75E33646B20AF9CAA4C4/The_Seatbelts", "en": "http://www.espanlava.fi/en/events/event/06016609160D75E33646B20AF9CAA4C4/The_Seatbelts" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>The Seatbelts on Väinö Honkasen, Ada Katzin ja Onni Rajaniemen muodostama The Beatles -tribuuttiyhtye.</p><p>Bändin repertuaari koostuu Beatlesin tuotannon kaikkien aikakausien helmistä, joita se tarjoilee yleisölleen poikkeuksellisella antaumuksella, kekseliäisyydellä ja tiukalla trio-energialla.</p><p>Vuonna 2023 The Seatbelts voitti Helsinki Beatles Weekendin bändikilpailun ja valloitti kyseisen festivaalin päälavan, minkä jälkeen yhtye on keikkaillut ahkerasti ympäri Suomea ja tanssittanut kaikenikäisiä yleisöjä.</p>", "sv": "<p>The Seatbelts är ett The Beatles-tributeband som består av Väinö Honkanen, Ada Katx och Onni Rajaniemi.</p><p>Bandets repertoar består av pärlor från alla perioder av Beatles repertoar, som det framför för publiken med en exceptionell entusiasm, påhittighet och kompakt trio-energi.</p><p>År 2023 vann The Seatbelts bandtävlingen under Helsinki Beatles Weekend och erövrade festivalens huvudscen. Sedan dess har gruppen turnerat flitigt runtom i Finland och fått alla slags publiker att dansa.</p>", "en": "<p>The Seatbelts is a The Beatles tribute band consisting of Väinö Honkanen, Ada Katz and Onni Rajaniemi.</p><p>The repertoire of the band consists of gems from all eras of The Beatles’ material, which they serve with extraordinary dedication, ingenuity and tight trio energy.</p><p>In 2023, The Seatbelts won the Helsinki Beatles Weekend band competition and took the main stage of the festival in question by storm, after which the group have toured all over Finland and made audiences of all ages dance.</p>" }, "name": { "fi": "The Seatbelts – Open Stage", "sv": "The Seatbelts – Open Stage", "en": "The Seatbelts – Open Stage" }, "short_description": { "fi": "The Seatbelts on Väinö Honkasen, Ada Katzin ja Onni Rajaniemen muodostama The Beatles -tribuuttiyhtye.", "sv": "The Seatbelts är ett The Beatles-tributeband som består av Väinö Honkanen, Ada Katx och Onni Rajaniemi.", "en": "The Seatbelts is a The Beatles tribute band consisting of Väinö Honkanen, Ada Katz and Onni Rajaniemi." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66421/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66158", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 690067, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T08:13:46.513925Z", "last_modified_time": "2025-05-05T08:13:46.513943Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756129.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/690067/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-05T08:13:46.374741Z", "last_modified_time": "2025-06-11T11:13:50.737049Z", "date_published": null, "start_time": "2025-06-12T14:00:00Z", "end_time": "2025-06-12T17: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": "http://www.stoa.fi/fi/tapahtumat/event/12E5FC868C097E84276B2A1E0C3E651B/ANI_Ykspihlajan_Kino-orkesteri_HOPP", "sv": "http://www.stoa.fi/sv/evenemang/event/12E5FC868C097E84276B2A1E0C3E651B/ANI_Ykspihlajan_Kino-orkesteri_HOPP", "en": "http://www.stoa.fi/en/events/event/12E5FC868C097E84276B2A1E0C3E651B/ANI_Ykspihlajan_Kino-orkesteri_HOPP" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Stoan aukiolla juhlitaan Helsinki-päivää upeiden artistien kanssa!</p><p>Ykspihlajan Kino-orkesteri kuljettaa kuulijansa iskelmien ja elokuvamusiikin valloittavaan tunnelmaan. Lavalle nousee myös suomalaista sielunmaisemaa ja poeettisuutta kansainvälisiin soundeihin yhdistelevä ANI, joka on yksi tämän hetken kiinnostavimmista pop-lupauksista.</p><p>Aukiolla nähdään kahden tanssijan ja muusikon sykkivä naruhyppelyesitys HOPP, johon myös yleisö pääsee osallistumaan.</p><p>Lisäksi kesäisiä työpajoja ja ravintola Box Stoa on avoinna tapahtuman ajan.</p><p><b>Aikataulu</b><br>17–17.30 HOPP<br>17.30–18.30 Ykspihlajan Kino-orkesteri<br>18.30–19 HOPP<br>19.15–20.15 ANI</p><p><b>HOPP</b><br>HOPP on naruhyppelyesitys. Kaksi tanssijaa ja muusikko luovat sykkivän maiseman, jossa innostuminen ja väsyminen on väistämätöntä. Yleisö kutsutaan kokeilemaan naruhyppelyä konsertin päätteeksi. <br> <br>Teoksen koreografit Sara Grotenfelt ja Selma Reynisdóttir aloittivat naruhyppelyn yhdessä eri puolilla Helsinkiä vuonna 2022. HOPP on ystävyyden ja riemukkaan harrastuksen tulos. <br> <br>Koreografia: Sara Grotenfelt and Selma Reynisdóttir<br>Esiintyjät: Selma Reynisdóttir and Terhi Hartikainen<br>Muusikko: Diego Manatrizio<br>Puvut: Ella Snellman</p><p><b>Ykspihlajan Kino-orkesteri</b><br>Ykspihlajan Kino-orkesteri on Kokkolan satamakaupunginosasta lähtöisin oleva yhtye, joka on kiertänyt yli 10 vuotta eurooppalaisia elokuvafestivaaleja säestäen mykkäelokuvia, pääasiassa Juho Kuosmasen mykkäelokuvatrilogian osia.</p><p>Kino-orkesterissa laulavat ja soittavat sisarukset Anna, Oona ja Laura Airola, sekä kitaristit Miika Snåre ja Tuomas Asanti, trumpetisti Miia Reko, basisti Reetta Kuisma sekä rumpali Ilkka Tolonen (jota toisinaan tuuraa Aapo Niininen).</p><p><b>ANI</b><br>ANIn lavapreesens, sanoitukset ja tarttuvat melodiat ovat luoneet hänestä yhden tämän hetken mielenkiintoisimmista pop-lupauksista. Artistin musiikissa suomalainen sielunmaisema ja poeettisuus yhdistyvät nuorekkaaseen soundiin ja huippuluokan tuotantoon. Laulaja-lauluntekijän osuutta tuotannossa on kuultu lukuisilla kultaa ja platinaa striimanneilla kappaleilla, joilla esiintyy muun muassa JVG, BESS, BEHM sekä Evelina. ANIn luovuus ja lahjakkuus on huomioitu myös kriitikoiden toimesta Emma-ehdokkuuksilla: 2022 Vuoden musiikintekijä sekä 2023 ja 2024 Vuoden pop!</p><p>Live-esiintymisessään ANI sulauttaa taitavasti yhteen lavakarismansa ja upean äänenkäytön, taaten energisen ja vuorovaikutteisen elämyksen kuulijoille. ANIn palo musiikkia kohtaan välittyy kappale kappaleelta yleisölle, tehden jokaisesta liveshowsta ainutkertaisen.</p><p><b>Maksuttomat työpajat klo 17-20</b></p><p><b>Eläviä koruja</b><br>Helsinki-päivän ja kesän kunniaksi solmitaan villejä kukkaseppeleitä tai rannekoruja. Tervetuloa mukaan!<br>Alle 8-vuotiaat aikuisen kanssa. Ohjaaja: Chloé Mahy-Hulkko</p><p><b>Liitävät lokit</b><br>Krakaraak! Lokit kaartelevat Helsingin yllä ja voivat yllättää varomattoman kulkijan. Siivekkäät ja kovaääniset helsinkiläiset ovat ovelia, viisaita ja luonnonsuojelulailla rauhoitettuja. Tässä työpajassa iloitaan kaupunkilinnustamme ja tehdään paperista liiteleviä lokkeja, jotka ripustetaan riippuvaksi koristeeksi Ohjaaja: Greta Salonen</p><p><b>Kaarnalaivakeidas</b><br>Taiteillaan kevyinä keinuvia kaarnalaivoja. Annetaan alusten kuljettaa lätäköistä laineille ja saarten salaisuuksista kesästadin pyörteisiin. Ohjaaja: Jenni Vilander</p><p><b>Kesätaidefillari</b><br>Seikkailutaidekoulun ja Stoan yhteinen taidetarvikkeilla lastattu kuormapyörä kruisailee Stoan aukiolle! Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita.</p><p><b>Kirjaston työpajat</b><br>Tule kirjaston pisteelle kokeilemaan hyppynarua perinteisin loruin klo 17:30 ja 19:00 – muulloin omatoimisesti. Heitä noppa ja voita poistokirja kesälukemiseksi! Lainattavia soittimia voi testata vapaasti klo 17–18 (sateella sisällä kirjastossa). Kaikenikäiset tervetuloa!</p>", "sv": "<p>På Stoaplatsen firar vi Helsingforsdagen med fantastiska artister!</p><p>Ykspihlajan Kino-orkesteri tar med sig lyssnaren in i schlagerlåtarnas och filmmusikens värld. ANI, som kombinerar det finländska själslandskapet och poesin med ett internationellt sound och som är ett av de intressantaste poplöftena just nu, stiger upp på scenen.</p><p>På Stoaplatsen får vi se den pulserande hopprepsföreställningen HOPP med två dansare och en musiker, där även publiken får delta.<br> <br>Dessutom utlovas somriga verkstäder. Restaurang Box Stoa är öppen under evenemanget. <br> <br>kl. 17–17.30 HOPP <br>kl. 17.30–18.30 Ykspihlajan Kino-orkesteri <br>kl. 18.30-19 HOPP <br>kl. 19.15-20.15 ANI <br> <br><b>HOPP</b><br>HOPP är en hopprepsföreställning. Två dansare och en musiker skapar ett pulserande landskap där man oundvikligen blir både inspirerad och trött. Som avslutning på konserten inbjuds publiken att testa att hoppa hopprep.<br>Koreograferna Sara Grotenfelt och Selma Reynisdóttir började med hopprep på olika håll i Helsingfors år 2022. HOPP är resultatet av vänskap och en glad hobby.<br>Koreografi: Sara Grotenfelt och Selma Reynisdóttir <br>På scenen: Selma Reynisdóttir och Terhi Hartikainen <br>Musiker: Diego Manatrizio <br>Dräkter: Ella Snellman</p><p><b>Ykspihlajan Kino-orkesteri </b><br>Ykspihlajan Kino-orkesteri är en grupp från hamnstadsdelen Yxpila i Karleby, som i mer än tio års tid har rest runt till europeiska filmfestivaler för att ackompanjera stumfilmer, huvudsakligen delarna i Juho Kuosmanens stumfilmstrilogi. Kino-orkesteri har också skrivit musik till Kuosmanens film Den lyckligaste dagen i Olli Mäkis liv (2016) samt skrivit och framfört musik till stumfilmsklassiker som William A. Wellmans tågfilm Beggars of Life från 1920-talet.</p><p>I Kino-orkesteri sjunger och spelar systrarna Anna, Oona och Laura Airola samt gitarristerna Miika Snåre och Tuomas Asanti, trumpetisten Miia Reko, basisten Reetta Kuisma och trummisen Ilkka Tolonen (som ibland ersätts av Aapo Niininen). Programmet under spelningarna består huvudsakligen av klassiska filmlåtar som har fått ett nytt liv med Laura Airolas texter.</p><p><b>ANI</b> <br>ANIs scennärvaro, texter och fängslande melodier har gjort honom till ett av de intressantaste poplöftena just nu. Hans musik kombinerar det finländska själslandskapet och poesin med ett ungdomligt sound och produktion i toppklass. Sångarens och låtskrivarens andel i produktionen har hörts i många låtar med bland andra JVG, BESS, BEHM och Evelina som strömmat guld och platina. ANIs kreativitet och begåvning har också uppmärksammats av kritiker i form av Emma-nomineringar: 2022 Årets musikskapare samt 2023 och 2024 Årets pop!</p><p>I sina liveuppträdanden smälter ANI samman sin scenkarisma och sin fantastiska röstanvändning på ett skickligt sätt, vilket garanterar en energisk och interaktiv upplevelse för lyssnarna. ANIs passion för musiken förmedlas till publiken för varje låt och gör varje liveshow unik.</p>", "en": "<p>We will celebrate Helsinki Day at Stoa Square with fabulous artists!</p><p>The band Ykspihlajan Kino-orkesteri will take us to the wonderful world of evergreens and film music. Taking the stage is also ANI, one of Finland's most fascinating and promising pop artists at the moment, who combines a poetic Finnish mindset with international sounds. <br>The Square will also host the rhythmic HOPP rope-skipping performance by two dancers and a musician that will even involve the audience. <br>We will also have summer-themed workshops. Restaurant Box Stoa will be open during the event. <br> <br>17.00–17.30 HOPP <br>17.30–18.30 Ykspihlajan Kino-orkesteri <br>18.30–19.00 HOPP <br>19.15–20.15 ANI <br> <br><b>HOPP</b><br>HOPP is a rope-skipping performance. Together, two dancers and a musician create a rhythmic landscape where both energy and fatigue are inevitable. At the end of the concert, the audience is invited to try out rope-skipping.<br>The choreographers Sara Grotenfelt and Selma Reynisdóttir started rope-skipping together around Helsinki in 2022. HOPP is the result of friendship and a joyful hobby.<br>Choreography: Sara Grotenfelt and Selma Reynisdóttir <br>Performers: Selma Reynisdóttir and Terhi Hartikainen <br>Musician: Diego Manatrizio <br>Costumes: Ella Snellman</p><p><b>Ykspihlajan Kino-orkesteri </b><br>The band Ykspihlajan Kino-orkesteri come from the Ykspihlaja port district in the town of Kokkola. They have toured European film festivals for over 10 years, accompanying silent films, mostly the silent film trilogy by Juho Kuosmanen. Kino-orkesteri have also composed music for Kuosmanen's film The Happiest Day in the Life of Olli Mäki (2016) and composed and performed music for classics of the silent film era, such as the train film Beggars of Life by William A. Wellman from the 1920s.</p><p>Kino-orkesteri includes vocalist and instrumentalist siblings Anna, Oona and Laura Airola, guitarists Miika Snåre and Tuomas Asanti, trumpetist Miia Reko, bassist Reetta Kuisma, and drummer Ilkka Tolonen (occasionally stood in by Aapo Niininen). Their concert programme consists primarily of well-known classic film tunes into which Laura Airola's lyrics breathe new life.</p><p><b>ANI</b> <br>ANI's stage presence, lyrics and catchy melodies have made him one of the most fascinating and promising pop artists at the moment. The artist's music combines a poetic Finnish mindset with a youthful sound and top-class production. The singer-songwriter has been involved in the production of several songs that have streamed gold and platinum, from artists such as JVG, BESS, BEHM, and Evelina. ANI's creativity and talent have also been recognised by critics with Emma award nominations: Music Creator of the Year 2022 and Pop Act of the Year 2023 and 2024!<br> <br>In his live performances, ANI skilfully merges his stage charisma and wonderful use of vocals, offering an energetic and interactive experience for the audience. The audience can sense ANI's passion for music song by song, making each live show unique.</p>" }, "name": { "fi": "ANI, Ykspihlajan Kino-orkesteri, HOPP – Stoan Helsinki-päivä", "sv": "ANI, Ykspihlajan Kino-orkesteri, HOPP – Helsingforsdagen på Stoa", "en": "ANI, Ykspihlajan Kino-orkesteri, HOPP – Helsinki Day at Cultural Centre Stoa" }, "short_description": { "fi": "Stoan aukiolla juhlitaan Helsinki-päivää upeiden artistien kanssa!", "sv": "På Stoaplatsen firar vi Helsingforsdagen med fantastiska artister!", "en": "We will celebrate Helsinki Day at Stoa Square with fabulous artists!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66158/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65856", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 613187, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-25T12:13:17.753914Z", "last_modified_time": "2025-04-25T12:13:17.753930Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767688.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613187/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-25T12:13:17.674419Z", "last_modified_time": "2025-06-11T11:13:49.831608Z", "date_published": null, "start_time": "2025-06-11T12:00:00Z", "end_time": "2025-06-11T14: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": "http://www.kanneltalo.fi/fi/tapahtumat/event/EAD714B8CB93F601B95E3AFE9B34E890/Puutarhakeidas_yllatyskasvin_istutus_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/EAD714B8CB93F601B95E3AFE9B34E890/Tradgardsoasen_plantera_en_overraskningsvaxt_", "en": "http://www.kanneltalo.fi/en/events/event/EAD714B8CB93F601B95E3AFE9B34E890/Garden_oasis_plantings_of_mystery_seeds_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa istuttamaan oma yllätyskasvi. Loitsua kasvatuslorua, koristele ruukkua ja ripauta sekaan kasvuonnea!</p><p>Arvaatko mikä kasvistasi voisi kasvaa? Nappaa istutus mukaan kotiin ja seuraa kasvua.</p><p><b>Kanneltalon Kesäkeidas Sitratorilla 11.6., 18.6., 16.7. ja 14.8.</b> <br>Kesäkeidas johdattaa koko perheen monipuolisten ja riemukkaiden työpajojen äärelle!</p><p>Sateen sattuessa työpajat toteutetaan Kanneltalon aulassa.</p><p>Työpajoissa loihditaan kukkakoristeita, istutetaan yllätyskasveja ja pelataan juhannusbingoa. Loihdimme myös metsän materiaaleista asetelmia.</p><p>Työpajojen ohessa voit loikoilla rantatuolilla, bongata värikkään jättidonitsin ja nauttia aurinkovarjojen loisteesta. Kokeile leikkisää kalastusta veikeällä lötköpötkö-ongella, nappaako kala? Keidas on katettu viherkasveilla ja värikkäillä kukilla. Sopii koko perheelle ja kaikenikäisille.</p><p>Vapaa pääsy</p>", "sv": "<p>Välkommen att plantera en egen överraskningsväxt!</p><p>Säg trollformeln som får fröet att växa, dekorera krukan och dutta på lite växtlycka. Gissar du vad din växt kan bli till? Ta med planteringen hem och följ tillväxten.</p><p><b>Gamlasgårdens sommaroas på Sitratorget 11.6, 18.6, 16.7 och 14.8</b><br>Sommaroasen leder hela familjen till mångsidiga och glada verkstäder.</p><p>Workshopparna bjuder på blomsterdekorationer, vi planterar överraskningsväxter och spelar midsommarbingo. Vi skapar också stilleben av skogens material.</p><p>Vid sidan av workshopparna kan du slappa i en solstol, hitta den färgglada jättedonitsen och njuta av de skinande parasollen. Prova på det lekfulla fisket med en poolnudel, nappar fisken? Oasen är täckt med grönväxter och färgglada blommor. Lämpar sig för hela familjen och personer i alla åldrar.</p>", "en": "<p>Come along and plant a mystery seed! Chant the growing rhyme, decorate the pot and sprinkle with a pinch of luck.</p><p>Can you guess what your plant is going to be? Take the pot home with you and see what happens.</p><p><b>Kanneltalo Summer Oasis at Sitratori on June 11, June 18, July 16 and August 14</b></p><p>In case of bad wather the workshops will be held in Kannaltalo's lobby.</p><p>The summer oasis (Kesäkeidas) introduces the entire family to versatile and enjoyable workshops.</p><p>The workshop activities include making flower decorations, planting mystery seeds and playing Midsummer bingo. We will also conjure up still lives made from forest materials.</p><p>In addition to participating in workshops, you can lounge on deckchairs, spot the colourful giant donut and enjoy the sparkle of sunshades. Try playful fishing with a fun pool noodle fishing rod. Will you have any luck? The oasis is decorated with green plants and colourful flowers. Suitable for the entire family and people of all ages.</p>" }, "name": { "fi": "Puutarhakeidas – yllätyskasvin istutus – Kanneltalon Kesäkeidas Sitratorilla", "sv": "Trädgårdsoasen – plantera en överraskningsväxt – Gamlasgårdens Sommaroas på Cittertorget", "en": "Garden oasis – plantings of mystery seeds – Kanneltalo summer oasis on Sitratori square" }, "short_description": { "fi": "Tervetuloa istuttamaan oma yllätyskasvi. Loitsua kasvatuslorua, koristele ruukkua ja ripauta sekaan kasvuonnea!", "sv": "Välkommen att plantera en egen överraskningsväxt!", "en": "Come along and plant a mystery seed! Chant the growing rhyme, decorate the pot and sprinkle with a pinch of luck." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65856/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:e3c2da99-c293-4808-935c-1231937bb73a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": { "fi": "0" }, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=592_Linked_events_-_yksittinen_tapahtuma2801546760" }, "description": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-06-11T10:18:29.401597Z", "last_modified_time": "2025-06-11T10:21:48.397716Z", "date_published": "2025-06-11T10:13:27Z", "start_time": "2025-06-16T05:00:00Z", "end_time": "2025-06-16T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 8, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 100, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-06-16T15:30:00+03:00", "enrolment_end_time": "2025-06-17T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "Annantalo" }, "description": { "fi": "<div><p>Kuvaus </p><p>sisältö:</p><ul><li><p>aihe 1</p></li><li><p>aihe 2</p></li></ul></div>" }, "name": { "fi": "592 Linked events - yksittäinen tapahtuma" }, "short_description": { "fi": "Lyhyt kuvaus" }, "location_extra_info": { "fi": "Huone 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:e3c2da99-c293-4808-935c-1231937bb73a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22tfw4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?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": 1490261, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-06-11T07:44:09.806790Z", "last_modified_time": "2025-06-11T07:44:09.806804Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/af7ae7d8-ee34-4da3-94c0-4634aabb1350.jpg", "cropping": "69,0,411,342", "photographer_name": "Pirkko Sillanpää", "alt_text": "Kirkkojarven pienoismalli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490261/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-11T07:54:49.163794Z", "last_modified_time": "2025-06-11T07:54:49.163811Z", "date_published": null, "start_time": "2025-08-30T09:00:00Z", "end_time": "2025-08-30T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "https://keskiespooseura.fi/" }, "provider_contact_info": null, "provider": { "fi": "Keski-Espoo Seura ry." }, "description": { "fi": "<p> Keski-Espoo-seura järjestää Espoo-päivänä lauantaina 30.8.2025 kaksi luentoa Entressen kirjaston Sinisessä huoneessa ja rollup-näyttelyn Espoon historiasta. </p>\n<strong>Espoo-päivän ohjelma lauantaina 30.8.2025 klo 12–15</strong><p><br></p><p> Klo 12.00–13.00 Kansallinen kaupunkipuisto Espooseen, Rainer Lahti, Keski-Espoo-seuran hallituksen jäsen</p><p> Klo 13.15–14.00 Espoonjoki peilaa kaupunkiympäristön tilaa, Heikki Simola, Pro Espoonjoki ry:n puheenjohtaja </p><p> Klo 14.00–14.30 Vapaata keskustelua Espoon keskuksen nykytilanteesta</p><p><br></p><p><a href=\"https://keskiespooseura.fi/\">Keski-Espoo Seura ry.</a></p>" }, "name": { "fi": "Keski-Espoo-seuran luento " }, "short_description": { "fi": " Keski-Espoo-seura järjestää Espoo-päivänä lauantaina 30.8.2025 kaksi luentoa Entressen kirjaston Sinisessä huoneessa ja rollup-näyttelyn Espoon historiasta. " }, "location_extra_info": { "fi": "Sininen huone" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tfw4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66420", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 810533, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-20T08:12:40.012372Z", "last_modified_time": "2025-05-20T08:12:40.012385Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771471.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/810533/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-20T08:12:39.943610Z", "last_modified_time": "2025-06-10T15:13:46.433344Z", "date_published": null, "start_time": "2025-07-01T12: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.espanlava.fi/fi/tapahtumat/event/647D5E55942A3FF146492321DD19381E/Chiara_Orlandi_Stefano_Cirilli", "sv": "http://www.espanlava.fi/sv/evenemang/event/647D5E55942A3FF146492321DD19381E/Chiara_Orlandi_Stefano_Cirilli", "en": "http://www.espanlava.fi/en/events/event/647D5E55942A3FF146492321DD19381E/Chiara_Orlandi_Stefano_Cirilli" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Chiara Orlandi & Stefano Cirilli vievät sinut musiikkimatkalle italialaisesta swingistä bossanovaan, chansoneihin ja maailmanmusiikkiin – tyylillä ja tunteella.</p><p>Chiara Orlandin heleä-ääninen laulu yhdistettynä Stefano Cirillin (kitara) sormityylillä soitettuihin harmonioihin kuljettaa sinut halki monenlaisten äänimaisemien ja tunnelmien.</p><p>Ohjelmistossa kuullaan italialaisia kappaleita vanhan ajan swing-kaudelta aina klassisiin pop-sävelmiin asti, maustettuna jazz-tunnelmilla, bossa novalla, ranskalaisilla chansoneilla ja maailmanmusiikin vaikutteilla.</p><p>Mukana on italialaisia lauluntekijöitä, kuten D. Modugno, B. Martino ja P. Conte, kansainvälisiä säveltäjiä kuten A. C. Jobim, sekä ajattomia tulkitsijoita kuten Elisa, Mina, E. Regina, Édith Piaf ja Pink Martini.</p><p>Useat kielet (italia, portugali, ranska) ja monipuoliset tunnelmat klassikoista nykyaikaisempiin kappaleisiin yhdistävät yleisöä yli ikä- ja kulttuurirajojen – olipa kyseessä sitten jazzin ystävä tai maailmanmusiikin harrastaja.</p>", "sv": "<p>Chiara Orlandi & Stefano Cirilli tar dig med på en musikalisk resa från italiensk swing till bossanova, chanson och världsmusik – med stil och känsla.</p><p>Chiara Orlandis klara sång i kombination med Stefano Cirillis (gitarr) harmonier för dig genom många olika ljudlandskap och stämningar.</p><p>På repertoaren står italienska låtar från den gamla swing-perioden ända fram till klassiska poplåtar, kryddade med jazzstämningar, bossanova, franska chanson-sånger och influenser från världsmusiken.</p><p>Där finns italienska låtskrivare som D. Modugno, B. Martino och P. Conte, internationella tonsättare som A. C. Jobim samt tidlösa uttolkare som Elisa, Mina, E. Regina, Édith Piaf och Pink Martini.</p><p>De olika språken (italienska, portugisiska, franska) och de mångsidiga stämningarna från klassiker till modernare låtar förenar publiken över ålders- och kulturgränserna – oavsett om det handlar om jazzvänner eller världsmusikentusiaster.</p>", "en": "<p>Chiara Orlandi & Stefano Cirilli take you on a musical journey from Italian swing to bossa nova, chansons and world music – with style and soul.</p><p>The sweet-sounding voice of Chiara Orlandi, together with the fingerstyle harmonies of Stefano Cirilli (guitar), will bring you through different landscapes and sounds: Italian songs from the old-fashioned swing era to the classic pop tunes, mixed with jazzy vibes along with Bossa Nova, Chansons Françaises and world music influences.</p><p>Italian songwriters like D. Modugno, B. Martino, P. Conte, international composers like A. C. Jobim, and timeless interpreters like Elisa, Mina, E. Regina, Edith Piaf, Pink Martini, will entertain all kinds of audience.</p><p>Different languages (italian, portuguese, french) and different moods from classics to more contemporary songs, will connect people from all ages and cultural backgrounds, like jazz aficionados and world music enthusiasts.</p>" }, "name": { "fi": "Chiara Orlandi & Stefano Cirilli – Open Stage", "sv": "Chiara Orlandi & Stefano Cirilli – Open Stage", "en": "Chiara Orlandi & Stefano Cirilli – Open Stage" }, "short_description": { "fi": "Chiara Orlandi & Stefano Cirilli vievät sinut musiikkimatkalle italialaisesta swingistä bossanovaan, chansoneihin ja maailmanmusiikkiin – tyylillä ja tunteella.", "sv": "Chiara Orlandi & Stefano Cirilli tar dig med på en musikalisk resa från italiensk swing till bossanova, chanson och världsmusik – med stil och känsla.", "en": "Chiara Orlandi & Stefano Cirilli take you on a musical journey from Italian swing to bossa nova, chansons and world music – with style and soul." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66420/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66570", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 986335, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-10T13:14:00.969430Z", "last_modified_time": "2025-06-10T13:14:00.969446Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772111.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/986335/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T13:14:00.836936Z", "last_modified_time": "2025-06-10T13:14:01.142184Z", "date_published": null, "start_time": "2025-08-26T14: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.espanlava.fi/fi/tapahtumat/event/876F5BDBCEF57FF8948ED444A85F506A/Antero_Raimo_Ovet", "sv": "http://www.espanlava.fi/sv/evenemang/event/876F5BDBCEF57FF8948ED444A85F506A/Antero_Raimo_Ovet", "en": "http://www.espanlava.fi/en/events/event/876F5BDBCEF57FF8948ED444A85F506A/Antero_Raimo_Ovet" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Antero Raimo & Ovet on tarjonnut vuodesta 1992 lähtien musiikkia, jossa lämpimän huumorin läpi saattaa löytää syvällistäkin sanomaa.</p><p>Humppa muodostaa yhtyeen taiteellisen selkärangan. Sen kantamana tehdään täsmäiskuja niin kotimaisen laulelman, soulin, reggaen, punkin kuin progenkin tantereelle, romanimusiikkiakaan unohtamatta.</p>", "sv": "<p>Sedan 1992 har Antero Raimo & Ovet bjudit på musik där man genom varm humor kan hitta även djupa budskap.</p><p>Humppa utgör gruppens konstnärliga ryggrad. Utgående från detta gör de precisionsslag på soul, reggae, punk och prog, utan att glömma romansk musik och rena finska ballader.</p>", "en": "<p>Since 1992, Antero Raimo & Ovet has delivered music where cosy humor may hide some deeper thoughts.</p><p>Humppa music is the ensemble's artistic backbone. It gives ground to surgical strikes that cut through the territories of soul, reggae, punk and prog - not forgetting romani tunes and pure Finnish ballads.</p>" }, "name": { "fi": "Antero Raimo & Ovet – Open Stage", "sv": "Antero Raimo & Ovet – Open Stage", "en": "Antero Raimo & Ovet – Open Stage" }, "short_description": { "fi": "Antero Raimo & Ovet on tarjonnut vuodesta 1992 lähtien musiikkia, jossa lämpimän huumorin läpi saattaa löytää syvällistäkin sanomaa.", "sv": "Sedan 1992 har Antero Raimo & Ovet bjudit på musik där man genom varm humor kan hitta även djupa budskap.", "en": "Since 1992, Antero Raimo & Ovet has delivered music where cosy humor may hide some deeper thoughts." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66570/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66479", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 836705, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-23T13:12:43.731907Z", "last_modified_time": "2025-05-23T13:12:43.731919Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764877.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/836705/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-23T13:12:43.666926Z", "last_modified_time": "2025-06-10T13:13:56.828938Z", "date_published": null, "start_time": "2025-07-24T14: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.espanlava.fi/fi/tapahtumat/event/7333CDDB1F7580F6937CD368747913E7/Voices_of_the_Land_of_Fire", "sv": "http://www.espanlava.fi/sv/evenemang/event/7333CDDB1F7580F6937CD368747913E7/Voices_of_the_Land_of_Fire", "en": "http://www.espanlava.fi/en/events/event/7333CDDB1F7580F6937CD368747913E7/Voices_of_the_Land_of_Fire" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tapahtuma tarjoaa unohtumattoman elämyksen täynnä azerbaidžanilaisia lauluja, perinteisiä tansseja ja herkullisia makuja.</p><p>Tervetuloa nauttimaan kulttuurista, musiikista ja tunnelmasta Helsingin sydämessä!</p>", "sv": "<p>Detta evenemang bjuder på en oförglömlig upplevelse med sång, traditionell dans och läckra smaker från Azerbajdzjan.</p><p>Välkommen att njuta av kultur, musik och stämning i hjärtat av Helsingfors.</p>", "en": "<p>The event will provide an unforgettable experience filled with Azerbaijani songs, traditional dances and delicious flavours.</p><p>Come along and enjoy Azerbaijani culture, music and atmosphere in the heart of Helsinki!</p>" }, "name": { "fi": "Voices of the Land of Fire", "sv": "Voices of the Land of Fire", "en": "Voices of the Land of Fire" }, "short_description": { "fi": "Tapahtuma tarjoaa unohtumattoman elämyksen täynnä azerbaidžanilaisia lauluja, perinteisiä tansseja ja herkullisia makuja.", "sv": "Detta evenemang bjuder på en oförglömlig upplevelse med sång, traditionell dans och läckra smaker från Azerbajdzjan.", "en": "The event will provide an unforgettable experience filled with Azerbaijani songs, traditional dances and delicious flavours." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66479/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66510", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "38,90 €, S&D 98,90 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/virve-rosti-freeman-menneisyyden-vangit/virve-rosti-freeman-ja-menneisyyden-vangit-3913241/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 985989, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-10T12:14:52.231811Z", "last_modified_time": "2025-06-10T12:14:52.231833Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774778.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985989/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T06:13:51.402685Z", "last_modified_time": "2025-06-10T12:14:52.280262Z", "date_published": null, "start_time": "2025-11-07T17: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/31F438691EB9E84EA67CA3D4B0833F89/Virve_Rosti_Freeman_ja_Menneisyyden_Vangit" }, "provider_contact_info": null, "provider": { "fi": "Sunborn Events Oy" }, "description": { "fi": "<p>Legendaarinen kokoonpano Virve Rosti, Freeman & Menneisyyden Vangit Savoy-teatterissa parhaimpaan pikkujouluaikaan!</p><p>Kesto n. 2 h, sisältää väliajan<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Konserttiin on myynnissä Savoy-teatterin yhteydessä toimivan Minne Garden-ravintolan herkullinen kolmen ruokalajin illallinen, joka tarjoillaan kaksi tuntia ennen esitystä. Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.</p><p><b>Show & Dinner -lippu</b> sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun.</p><p><b>Menu Classic</b> <br>Rapuskagen, paahdettua mallasleipää, etikkakurkkua ja siianmätiä L<br>Matalassa lämmössä kypsytettyä häränfileetä, paahdettua palsternakkaa ja aligot-perunaa L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G<br> <br>TAI<br> <br><b>Menu Green</b> <br>Punajuuricarpaccio, kuusenkerkkächeddaria ja pikkelöityjä sieniä L,G<br>Grillattua savojinkaalta, kikhernepyrettä ja haudutettua pinaattia L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G<br> <br>Menun hinta ei sisällä juomia. <br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua. <br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</p>" }, "name": { "fi": "Virve Rosti, Freeman ja Menneisyyden Vangit" }, "short_description": { "fi": "Legendaarinen kokoonpano Virve Rosti, Freeman & Menneisyyden Vangit Savoy-teatterissa parhaimpaan pikkujouluaikaan!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66510/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66567", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 985987, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-10T12:14:48.784803Z", "last_modified_time": "2025-06-10T12:14:48.784822Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773116.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985987/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T12:14:48.686603Z", "last_modified_time": "2025-06-10T12:14:48.921777Z", "date_published": null, "start_time": "2025-08-23T11: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.espanlava.fi/fi/tapahtumat/event/C92CA0E45C594CC9F0A44B61DE0FF108/Spotless_Souls", "sv": "http://www.espanlava.fi/sv/evenemang/event/C92CA0E45C594CC9F0A44B61DE0FF108/Spotless_Souls", "en": "http://www.espanlava.fi/en/events/event/C92CA0E45C594CC9F0A44B61DE0FF108/Spotless_Souls" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Spotless Souls on nelihenkinen taiderock-yhtye Helsingistä.</p><p>Yhtye soittaa ambientin, soulin sekä rockin elementtejä yhdistelevää, itse sävellettyä ja englannin kielellä kirjoitettua musiikkia. Inspiraatio musiikin syntyy artisteilta kuten Jeff Buckley, Cocteau Twins & Mazzy Star.</p>", "en": "<p>Spotless Souls is a four-member art rock band from Helsinki.</p><p>The band plays self-composed music written in English and combining elements of ambient, soul and rock. Inspiration for the music comes from artists like Jeff Buckley, Cocteau Twins & Mazzy Star.</p>" }, "name": { "fi": "Spotless Souls – Open Stage", "sv": "Spotless Souls – Open Stage", "en": "Spotless Souls – Open Stage" }, "short_description": { "fi": "Spotless Souls on nelihenkinen taiderock-yhtye Helsingistä.", "en": "Spotless Souls is a four-member art rock band from Helsinki." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66567/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66563", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 985985, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-10T12:14:47.899911Z", "last_modified_time": "2025-06-10T12:14:47.899935Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765416.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985985/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T12:14:47.797672Z", "last_modified_time": "2025-06-10T12:14:48.030141Z", "date_published": null, "start_time": "2025-08-22T14: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.espanlava.fi/fi/tapahtumat/event/19EB35440B76E1D32CD358364A3C675B/Silvia_ja_Mina_-kamariooppera", "sv": "http://www.espanlava.fi/sv/evenemang/event/19EB35440B76E1D32CD358364A3C675B/Silvia_ja_Mina_-kamariooppera", "en": "http://www.espanlava.fi/en/events/event/19EB35440B76E1D32CD358364A3C675B/Silvia_ja_Mina_-kamariooppera" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Markus Fageruddin säveltämä Silvia ja Minä -kamariooppera Eppu Nuotion ja Tiina Brännaren kirjoittamaan librettoon sijoittuu Lontoon Buckinghamin palatsiin.</p><p>Kuningatar Elisabet (Jenni Lättilä) on kutsunut Euroopan tärkeimmät kuningattaret illanistujaisiin. Kaikki vieraat kuitenkin peruvat tulonsa, paitsi Silvia (Olga Heikkilä). Ainoan vieraan kiusallinen paikalle ilmaantuminen muuttuu ratkiriemuksi Ville Saukkosen ohjauksessa.</p><p>Satiirinen Silvia ja Minä -kamariooppera kertoo, millaista on kuninkaallisen elämä kulissien takana. Kielenkannat löystyvät muutaman ginipaukun jälkeen ja tittelin alta kuoriutuu ihminen. Pianistina toimii Jussi Littunen.</p>", "sv": "<p>Kammaroperan Silvia och Jag, komponerad av Markus Fagerudd och satt till ett libretto skrivet av Eppu Nuotion och Tiina Brännaren.</p><p>Utspelar sig i Buckingham Palace i London, där drottning Elizabeth (Jenni Lättilä) har bjudit in Europas viktigaste drottningar till en kvällsmottagning. Alla gäster avbokar dock sin ankomst, utom Sveriges drottning Silvia (Olga Heikkilä). Den enda gästens obekväma framtoning förvandlas till en glädjeåkning under iscensättning av Ville Saukkonen.</p><p>Den satiriska kammaroperan Silvia och Jag berättar om hur det kungliga livet är bakom kulisserna, när tungans strängar lossnar efter några gin shots och när en person dyker upp under titeln. Pianist är Jussi Littunen.</p>", "en": "<p>The chamber opera Silvia and Me is composed by Markus Fagerudd to libretto by Eppu Nuotio and Tiina Brännare.</p><p>The story is set in Buckingham Palace in London, where Queen Elizabeth (Jenni Lättilä) has invited the most important queens of Europe to an evening reception. However, all the guests cancel their attendance, except Silvia, the Queen of Sweden (Olga Heikkilä). The awkward appearance of the only guest turns into a joyride in the staging of Ville Saukkonen.</p><p>The satirical chamber opera Silvia and Me tells the story of what royal life is like behind the scenes, when the strings loosen after a few shots of gin and a person emerges from under the title. Jussi Littunen is the pianist at this performance.</p>" }, "name": { "fi": "Silvia ja Minä -kamariooppera", "sv": "Silvia ja Minä -kamariooppera", "en": "Silvia ja Minä -kamariooppera" }, "short_description": { "fi": "Markus Fageruddin säveltämä Silvia ja Minä -kamariooppera Eppu Nuotion ja Tiina Brännaren kirjoittamaan librettoon sijoittuu Lontoon Buckinghamin palatsiin.", "sv": "Kammaroperan Silvia och Jag, komponerad av Markus Fagerudd och satt till ett libretto skrivet av Eppu Nuotion och Tiina Brännaren.", "en": "The chamber opera Silvia and Me is composed by Markus Fagerudd to libretto by Eppu Nuotio and Tiina Brännare." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66563/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66546", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 985983, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-10T12:14:46.977477Z", "last_modified_time": "2025-06-10T12:14:46.977496Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773067.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985983/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T12:14:46.820383Z", "last_modified_time": "2025-06-10T12:14:47.162077Z", "date_published": null, "start_time": "2025-08-21T13: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.espanlava.fi/fi/tapahtumat/event/262E15E6D32FAB2E78DEF590626D5632/Marino_Sunrise-orchestra", "sv": "http://www.espanlava.fi/sv/evenemang/event/262E15E6D32FAB2E78DEF590626D5632/Marino_Sunrise-orchestra", "en": "http://www.espanlava.fi/en/events/event/262E15E6D32FAB2E78DEF590626D5632/Marino_Sunrise-orchestra" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Marino & Sunrise-orchestra on keikkaillut vuosikymmenien ajan.</p><p>He esittävät rytmimusiikin kulta-ajalta 1920–1970-luvuilta ikimuistoisia sävelmiä eri puolilta maailmaa. \"Kaipaan svengin kulta-aikaan\" -konsertit aloitettiin tänä vuonna, ja tämä konsertti kuullaan myös Espan lavalla.</p>", "sv": "<p>Marino & Sunrise-orchestra har turnerat i decennier och framför minnesvärda evergreens från rytmmusikens guldålder på 1920–1970 talen från hela världen.</p><p>\"Jag saknar swingens gyllene tider\" inleddes i år och även denna konsert kommer att höras på Esplanadestraden.</p>", "en": "<p>Marino & Sunrise-orchestra have performed for decades.</p><p>They play rhythm music from the golden age of the 1920-1970 era, unforgettable tunes from different parts of the world. \"I long for the golden age of swing\" concert tour starts this year and reaches also the Espa Stage.</p>" }, "name": { "fi": "Marino & Sunrise-orchestra – Open Stage", "sv": "Marino & Sunrise-orchestra – Open Stage", "en": "Marino & Sunrise-orchestra – Open Stage" }, "short_description": { "fi": "Marino & Sunrise-orchestra on keikkaillut vuosikymmenien ajan.", "sv": "Marino & Sunrise-orchestra har turnerat i decennier och framför minnesvärda evergreens från rytmmusikens guldålder på 1920–1970 talen från hela världen.", "en": "Marino & Sunrise-orchestra have performed for decades." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66546/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22tpjm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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: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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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:agmk22tgg4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tgvu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22thei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22thti/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tica/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tira/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ti74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tjqy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tj7q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tkoa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tk44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tlmm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tl3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tmke/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tmzi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tnii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tnx4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tohu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22toym/?format=api" } ], "images": [ { "id": 150457, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T06:48:18.411767Z", "last_modified_time": "2024-03-15T06:48:18.411835Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kruglik_2_.jpeg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Tyttö musiikkikerhossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150457/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-04-16T06:59:00.365037Z", "last_modified_time": "2025-06-10T12:01:29.924234Z", "date_published": null, "start_time": "2025-08-15T14:00:00Z", "end_time": "2025-12-19T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "Sellon kirjasto", "sv": "Sello Biblioteket", "en": "Sello Library" }, "description": { "fi": "<p>Lasten musiikki- ja teatterikerhotunnit jatkuvat! </p><p><strong>15.8-19.12.2025</strong> perjantaisin klo <strong>17.00</strong> Sellon kirjaston <strong>Akseli-salissa.</strong> </p><p>Venäjänkielinen lasten musiikkikerho<strong> 5-9 </strong>-vuotiaille . </p><p>Tervetuloa!</p><p><br></p><p>Продолжаются занятия <strong>детского музыкально-театрального кружка</strong>!</p><p>С <strong>15.8-19.12.2025</strong> по пятницам в <strong>17.00</strong> в <strong>Зале Аксели</strong> Библиотека Селло.</p><p>Русскоязычный музыкально-театральный кружок.</p><p>Для детей от<strong> 5 до 9</strong> лет. </p><p>Добро пожаловать!</p>", "sv": "<p>Musikklubb för barn på ryska</p>", "en": "<p>Russian-language children's music club for 5-9 year olds</p>" }, "name": { "fi": "Venäjänkielinen lasten musiikkikerho", "sv": "Musikklubb för barn på ryska", "en": "Children's music club in russian" }, "short_description": { "fi": "Venäjänkielinen lasten musiikkikerho", "sv": "Musikklubb för barn på ryska", "en": "Children's music club in russian" }, "location_extra_info": { "fi": "Akseli sali", "sv": "Akseli salen", "en": "Akseli hall" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tpjm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22tpyi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?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:p5121/?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": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490262, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-22T07:31:08.582230Z", "last_modified_time": "2025-05-22T07:31:08.582245Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/f7e83ba7-11e1-4514-a195-e3bb2df9de0b.png", "cropping": "200,0,1000,800", "photographer_name": "Lauri Tervonen", "alt_text": "Valokuva puun oksista ja lehdistä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490262/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-22T07:45:55.971738Z", "last_modified_time": "2025-06-10T11:23:49.859270Z", "date_published": "2025-05-26T04:59:00Z", "start_time": "2025-05-26T05:00:00Z", "end_time": "2025-06-15T15: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>Olen taideharrastaja, joka on kiinnostunut geometrisista muodoista, luonnosta ja tunnelmista. Tässä näyttelyssä esittelen valokuvia näkymistä, joita olen löytänyt kävelemällä tuttuja polkuja - usein iltakävelyllä Espoon Kirkkojärvellä ja sen lähialueilla. Valokuvaaminen on minulle samaan aikaan sekä luovaa haaveilua että keskittymistä vaativaa, tarkkaa työtä. Arkinen pihapuu täytyy ensin saada heräämään henkiin, ja sen jälkeen täytyy vielä löytää oikeat kameran asetukset, joilla henkiolento uskaltautuu esiin.</p><p>Työskentelen pääasiassa digijärjestelmäkameralla ja käytän ilmaisia kuvanmuokkausohjelmia. En ole välineurheilija enkä muista objektiivien ominaisuuksia tai kameramalleja ulkoa, mutta käytän mieluiten samoja välineitä niin pitkään, että tunnen niiden mahdollisuudet intuitiivisesti. Minua inspiroi se, että voin tehdä taidetta arkisista kohteista ja arkisilla laitteilla - toivottavasti niin, että löydän samalla jotakin, mikä nousee hieman arjen yläpuolelle.</p><p><br></p><p>www.mollikka.net/photos/theme/</p>", "sv": "<p>Välkommen att besöka Lauri Tervonens utställning \"Haaveilutallenteita lähialueilta\" i Entressebiblioteket under tiden 26.5.-15.6.2025. Utställningen kan ses under bibliotekets öppettider.</p><p><br></p><p>www.mollikka.net/photos/theme/</p>", "en": "<p>Art exhibition \"Haaveilutallenteita lähialueilta\" by Lauri Tervonen in Entresse Library during 26.5.-15.6.2025. Welcome!</p><p><br></p><p>www.mollikka.net/photos/theme/</p>" }, "name": { "fi": "Lauri Tervonen: Haaveilutallenteita lähialueilta", "sv": "Lauri Tervonen: Haaveilutallenteita lähialueilta", "en": "Lauri Tervonen: Haaveilutallenteita lähialueilta" }, "short_description": { "fi": "Lauri Tervosen valokuvanäyttely \"Haaveilutallenteita lähialueilta\" Entressen kirjaston Galleria Betonissa 26.5.-15.6.2025. Tervetuloa!", "sv": "Lauri Tervonens utställning \"Haaveilutallenteita lähialueilta\" i Entressebiblioteket under tiden 26.5.-15.6.2025.", "en": "Art exhibition \"Haaveilutallenteita lähialueilta\" by Lauri Tervonen in Entresse Library during 26.5.-15.6.2025." }, "location_extra_info": { "fi": "Galleria Betoni" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tpyi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19239, "next": "