Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=17&publisher_ancestor=ahjo%3A00001
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=18&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=16&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kulke:66819", "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: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:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1418519, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-05T12:12:48.623662Z", "last_modified_time": "2025-08-05T12:12:48.623674Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775282.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1418519/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2025-08-05T12:12:48.548398Z", "last_modified_time": "2025-08-20T02:14:04.155024Z", "date_published": null, "start_time": "2025-10-07T11: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, "provider_contact_info": null, "short_description": { "fi": "Näyttelijä Johanna Ringbom ja trubaduuri-muusikko Magnus Gräsbeck kutsuvat sinut ranskalaisten ja ruotsalaisten chansoneiden konserttiin. Ruotsinkielinen senioriverkostotapaaminen.", "sv": "Skådespelaren Johanna Ringbom och trubaduren, musikern Magnus Gräsbeck bjuder in till en konsert med franska och svenska chansoner.", "en": "Actor Johanna Ringbom and troubadour and musician Magnus Gräsbeck invite you to a concert of French and Swedish chansons. Network meeting for seniors in swedish." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CDDF2B73F1DCB1117D337CDC3093FEFD/S_IL_VOUS_PLAIT_ranskalaisvaikutteinen_konsertti_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CDDF2B73F1DCB1117D337CDC3093FEFD/S_IL_VOUS_PLAIT_-_en_franskinspirerad_konsert_", "en": "http://www.vuotalo.fi/en/events/event/CDDF2B73F1DCB1117D337CDC3093FEFD/S_IL_VOUS_PLAIT_a_French-inspired_concert_" }, "location_extra_info": null, "name": { "fi": "S´IL VOUS PLAIT! – ranskalaisvaikutteinen konsertti – Seniornätverksträff med Johanna Ringbom och Magnus Gräsbeck", "sv": "S´IL VOUS PLAIT! - en franskinspirerad konsert – Seniornätverksträff med Johanna Ringbom och Magnus Gräsbeck", "en": "S´IL VOUS PLAIT! – a French-inspired concert – Seniornätverksträff med Johanna Ringbom och Magnus Gräsbeck" }, "description": { "fi": "<p>Näyttelijä Johanna Ringbom ja trubaduuri-muusikko Magnus Gräsbeck kutsuvat sinut ranskalaisten ja ruotsalaisten chansoneiden konserttiin. Ruotsinkielinen senioriverkostotapaaminen.</p><p>Konsertissa on intiimi tunnelma. Laulujen joukossa on sekä tunnettuja että vähemmän tunnettuja kappaleita, esimerkiksi ranskankieliset ”Ne me quitte pas”, ”Milord” ja ”Les feuilles mortes” sekä ruotsinkieliset ”Loppan och pianisten” ja ”Fabeln om spindeln och flugan”. Lauluja on yhteensä yhdeksän, ja niiden välissä on leppoisaa rupattelua, joka pohjautuu Pariisin kevääseen 1968. Artistit laulavat sekä yhdessä että soolona, ja Gräsbeck säestää kitaralla. Yleisö saa nauttia erittäin hyvästä ääntämyksestä, sillä molemmat artistit puhuvat ranskaa.</p><p>Konsertti kestää noin 50 minuuttia.<br>Laulut ranskaksi ja ruotsiksi, välispiikit ruotsiksi. Infotori senioreille ruotsiksi.</p>", "sv": "<p>Skådespelaren Johanna Ringbom och trubaduren, musikern Magnus Gräsbeck bjuder in till en konsert med franska och svenska chansoner.</p><p>En konsert i det intima formatet. Det blir både kända och mindre kända sånger. Bland annat “Ne me quitte pas”, “Milord”, “Les feuilles mortes” på franska, och “Loppan och pianisten” samt “Fabeln om spindeln och flugan” på svenska. Mellan de 9 sångerna lättsamt småprat som tar avstamp i Parisvåren 1968. Artisterna sjunger såväl solo som tillsammans och Gräsbeck ackompanjerar på gitarr. Publiken bjuds på mycket gott uttal då båda behärskar det franska språket.</p><p>Konserten räcker ca 50 minuter. Sångerna är på franska och svenska, mellansnacket på svenska liksom infotorget för seniorer. Kaffeservering - Johannes och Matteus församlingar bjuder på kaffe.</p>", "en": "<p>Actor Johanna Ringbom and troubadour and musician Magnus Gräsbeck invite you to a concert of French and Swedish chansons. Network meeting for seniors in swedish.</p><p>This is a concert with an intimate format. There will be both well-known and less well-known songs. These include \"Ne me quitte pas\", \"Milord\", \"Les feuilles mortes\" in French, and \"Loppan och pianisten\" and \"Fabeln om spindeln och flugan\" in Swedish. Between the nine songs there will be light talk based on Paris in the spring of 1968. The artists sing both solo and together and Gräsbeck accompanies on guitar. The audience is treated to very good pronunciation as both artists are fluent in French.</p><p>The concert lasts approximately 50 minutes. The songs are in french and swedish, the talk and information square for seniors in swedish.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66819/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66809", "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: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:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/matineakonserttimatinekonsert-a-tribute-to-billie-3933522/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/matineakonserttimatinekonsert-a-tribute-to-billie-3933522/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/matineakonserttimatinekonsert-a-tribute-to-billie-3933522/" }, "price": { "fi": "10€ / 8€", "sv": "10€ / 8€", "en": "10€ / 8€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1410897, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-04T11:14:44.273937Z", "last_modified_time": "2025-08-04T11:14:44.273954Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775281.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1410897/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2025-08-04T11:14:44.144025Z", "last_modified_time": "2025-08-20T01:14:30.089855Z", "date_published": null, "start_time": "2025-09-16T11: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, "provider_contact_info": null, "short_description": { "fi": "A Tribute to Billie on 1930-luvun hengessä toteutettu konsertti, jossa kuullaan jazzlegenda Billie Holidayn rakastetuimpia kappaleita tarinoineen.", "sv": "A Tribut to Billie är en konsert i 30-tals anda med jazzlegenden Billie Holidays mest älskade låtar varvat med anekdoter ur hennes spännande och dramatiska liv.", "en": "‘A Tribute to Billie’ is a 1930s-inspired concert featuring some of jazz legend Billie Holiday’s most beloved songs and their stories." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E88372C15B438316D942AD01CCE67BCF/A_Tribute_to_Billie", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E88372C15B438316D942AD01CCE67BCF/A_Tribute_to_Billie", "en": "http://www.vuotalo.fi/en/events/event/E88372C15B438316D942AD01CCE67BCF/A_Tribute_to_Billie" }, "location_extra_info": null, "name": { "fi": "A Tribute to Billie – Mirella Pendolin", "sv": "A Tribute to Billie – Mirella Pendolin", "en": "A Tribute to Billie – Mirella Pendolin" }, "description": { "fi": "<p>A Tribute to Billie on 1930-luvun hengessä toteutettu konsertti, jossa kuullaan jazzlegenda Billie Holidayn rakastetuimpia kappaleita tarinoineen.</p><p>Lavalla kuulemme Mirella Pendolinin tulkitsevan Holidayn kappaleita yhdessä pianisti Kalle Katzin, basisti Ulf Krokforsin ja rumpali Thomas Törnroosin kanssa.</p><p>Illan aikana yleisö saa kuulla henkilökohtaisia tulkintoja muun muassa kappaleista Fine and Mellow, Gloomy Sunday, God Bless the Child ja monista muista.</p><p>Mirella Pendolin on laulaja, joka tunnetaan monista eri kokoonpanoista sekä sooloartistina. Hänellä on erityinen rakkaus vanhaa jazzperinnettä kohtaan – erityisesti naisartisteja – joita hän oppi tuntemaan jo lapsena kotonaan. Hänen äitinsä, jazzlaulaja Raili Pendolin, soitti usein mm. Ella Fitzgeraldin, Sarah Vaughanin ja Dinah Washingtonin musiikkia.</p><p>Tervetuloa kokemaan tunnelmallinen ja inspiroiva konserttielämys, lämpimästi tervetuloa! Kesto n. 90 min.</p>", "sv": "<p>A Tribut to Billie är en konsert i 30-tals anda med jazzlegenden Billie Holidays mest älskade låtar varvat med anekdoter ur hennes spännande och dramatiska liv.</p><p>På scenen hör vi Mirella Pendolin tolka Holidays låtar, tillsammans med pianisten Kalle Katz, basisten Ulf Krokfors och Thomas Törnroos på trummor.</p><p>Vi bjuder på en helkvälls konsert var tolkningarna av Billie Holidays låtar, deras personlighet, sårbarhet och Billies livsöde, inte lämnar någon oberörd. Under kvällen får publiken höra personliga tolkningar av låtar som Fine and mellow, Gloomy sunday, God bless the child och många fler.</p><p>Mirella Pendolin är en sångerska välkänd från många olika ensembler samt som soloartist. Mirella har en förkärlek för den gamla jazz traditionen, och speciellt de kvinnliga artisterna, som hon blev bekant med redan som barn hemma där hennes mamma, jazzsångerskan Raili Pendolin, spelade musik av sångerskor som bl.a Ella Fitzgerald, Sarah Vaughan och Dinah Washington.</p><p>Vi vill bjuda på en stämningsfull och inspirerande konsertupplevelse, varmt välkomna! Längd ca 90 min.</p>", "en": "<p>‘A Tribute to Billie’ is a 1930s-inspired concert featuring some of jazz legend Billie Holiday’s most beloved songs and their stories.</p><p>On stage, we will hear Mirella Pendolin interpret Holiday’s songs together with pianist Kalle Katz, bassist Ulf Krokfors and drummer Thomas Törnroos.</p><p>During the evening, the audience will hear personal interpretations of songs such as Fine and Mellow, Gloomy Sunday, God Bless the Child and many others.</p><p>Mirella Pendolin is a singer known for her work in various ensembles and as a solo artist. She has a special love for the old jazz tradition – especially the women artists – that she got to know as a child at home. Her mother, jazz singer Raili Pendolin, would often play the music of Ella Fitzgerald, Sarah Vaughan and Dinah Washington, among others.</p><p>Join us for an atmospheric and inspiring concert experience. We are looking forward to seeing you! Duration apx 90 min.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66809/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66873", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/andrea-vanzo/" }, "price": { "fi": "35/39 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490472, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T12:15:05.608831Z", "last_modified_time": "2025-08-19T12:15:05.608850Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776268.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490472/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-19T12:15:05.435242Z", "last_modified_time": "2025-08-19T12:15:05.800573Z", "date_published": null, "start_time": "2026-01-23", "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, "provider_contact_info": null, "short_description": { "fi": "Neoklassisen musiikin suurnimi Andrea Vanzo ensimmäistä kertaa suomeen" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/593E65BA49882A42BBCFD8E3B0B50791/Andrea_Vanzo_Intimacy_Part_2_IT_" }, "location_extra_info": null, "name": { "fi": "Andrea Vanzo – Intimacy Part 2 (IT)" }, "description": { "fi": "<p>Neoklassisen musiikin suurnimi Andrea Vanzo ensimmäistä kertaa suomeen</p><p>Palkittu italialainen säveltäjä sekä valtavan somesuosion saavuttanut Andrea Vanzo saapuu ensi kertaa Suomeen omalla konserttikiertueellaan. Andrea Vanzo – Intimacy Part 2 -konsertti kuullaan Helsingissä Savoy-teatterissa perjantaina 23. tammikuuta 2026.</p><p>Vanzo tunnetaan postminimalistisesta tyylistään, jossa yhdistyvät moderni klassinen musiikki ja popin äänimaisema. Hänen sävellyksensä rakentavat tunnelmallisia ja jopa elokuvallisia maailmoja, jotka kumpuavat henkilökohtaisista paikoista ja kokemuksista. Musiikin keskiössä ovat ihmisen ja luonnon suhde, rakkaus, tunteet ja ilmaisunvapaus.</p><p>Vuonna 2022 julkaistu Intimacy Vol. 1-pianoalbumi sai laajaa huomiota ja keräsi miljoonia kuuntelukertoja eri alustoilla. Vanzo esiintyi ensimmäistä kertaa Euroopan kiertueella alkuvuodesta 2024, ja kaikki kahdeksan konserttia suurkaupungeissa kuten Lontoossa, Pariisissa ja Berliinissä myytiin loppuun.</p><p>Andrea Vanzon musiikki on löytänyt yleisönsä myös sosiaalisessa mediassa, ja hän on noussut yhdeksi neoklassisen musiikin vaikuttajista yli miljoonan Instagram-seuraajan voimin. Syksyllä 2025 julkaistaan hänen uusi albuminsa Intimacy Vol. 2, jonka musiikkia tullaan kuulemaan myös Helsingissä.</p><p>Ovet klo 18:00. Showtime vahvistuu myöhemmin.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>" }, "provider": { "fi": "Fullsteam Agency" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66873/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66872", "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: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T10:14:26.234494Z", "last_modified_time": "2025-08-19T10:14:26.234512Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776265.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2025-08-19T10:14:26.124777Z", "last_modified_time": "2025-08-19T10:14:26.406848Z", "date_published": null, "start_time": "2025-12-18T15: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, "provider_contact_info": null, "short_description": { "fi": "NUMI tuo nuoret artistit Stoan lavalle!", "sv": "Nuorten Uuden Musiikin Ilta, det vill säga NUMI, är ett avgiftsfritt evenemang som är öppet för allmänheten.", "en": "NUMI brings young artists to the Stoa stage!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6E239996135FC25CECC6262A48588984/NUMI_Nuorten_Uuden_Musiikin_Ilta", "sv": "http://www.stoa.fi/sv/evenemang/event/6E239996135FC25CECC6262A48588984/NUMI_Nuorten_Uuden_Musiikin_Ilta", "en": "http://www.stoa.fi/en/events/event/6E239996135FC25CECC6262A48588984/NUMI_Nuorten_Uuden_Musiikin_Ilta" }, "location_extra_info": null, "name": { "fi": "NUMI, Nuorten Uuden Musiikin Ilta", "sv": "NUMI, Nuorten Uuden Musiikin Ilta", "en": "NUMI, Nuorten Uuden Musiikin Ilta" }, "description": { "fi": "<p>NUMI tuo nuoret artistit Stoan lavalle!</p><p>Nuorten Uuden Musiikin Ilta, eli tuttavallisemmin NUMI on Stoan Kulttuurikeskuksessa järjestettävä kaikille avoin maksuton tapahtuma, jossa 13–29-vuotiaat artistit pääsevät matalalla kynnyksellä esittämään musiikkiaan saadakseen lisää esiintymiskokemusta ja rakentavaa palautetta kokeneilta tapahtuma- ja musiikkialan tekijöiltä.</p><p>Lue lisää: https://nuorten.hel.fi/yleinen/nuorten-uuden-musiikin-ilta/</p>", "sv": "<p>Nuorten Uuden Musiikin Ilta, det vill säga NUMI, är ett avgiftsfritt evenemang som är öppet för allmänheten.</p><p>Evenemanget ordnas i Kulturcentret Stoa. Under evenemanget får 13–29-åriga artister med låg tröskel uppträda med sin musik för att samla åt sig mer erfarenhet av uppträdande och konstruktiv respons av erfarna yrkeskunniga inom evenemangs- och musikbranschen.</p>", "en": "<p>NUMI brings young artists to the Stoa stage!</p><p>Nuorten Uuden Musiikin Ilta, aka Youth New Music Night, or NUMI as it is more commonly known, is a free event open to all at the Cultural Centre Stoa, where artists between the ages of 13 and 29 get to perform their music at a low threshold to gain more performance experience and constructive feedback from experienced event and music industry professionals.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66872/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66537", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3915091" }, "price": { "fi": "48,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490464, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T10:14:25.841579Z", "last_modified_time": "2025-08-19T10:14:25.841599Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765404.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490464/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T08:13:55.052081Z", "last_modified_time": "2025-08-19T10:14:25.884175Z", "date_published": null, "start_time": "2025-12-16T17: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, "provider_contact_info": null, "short_description": { "fi": "Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7BE2439C0FF0C86B2DDF2C2193CEA50C/Club_for_Five_-_JOULUNA_2025" }, "location_extra_info": null, "name": { "fi": "Club for Five - JOULUNA 2025" }, "description": { "fi": "<p>Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.</p><p>Tule kokemaan rakastettu JOULUNA-konsertti ja tavoita aito joulumieli!</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>" }, "provider": { "fi": "Helmi Promotion Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66537/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66536", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3915091" }, "price": { "fi": "48,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490463, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T10:14:25.667427Z", "last_modified_time": "2025-08-19T10:14:25.667446Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765403.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490463/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T08:13:54.724386Z", "last_modified_time": "2025-08-19T10:14:25.708607Z", "date_published": null, "start_time": "2025-12-15T17: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, "provider_contact_info": null, "short_description": { "fi": "Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9574E24D2C391A5AE4977BA2B9F3D012/Club_for_Five_-_JOULUNA_2025" }, "location_extra_info": null, "name": { "fi": "Club for Five - JOULUNA 2025" }, "description": { "fi": "<p>Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.</p><p>Tule kokemaan rakastettu JOULUNA-konsertti ja tavoita aito joulumieli!</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>" }, "provider": { "fi": "Helmi Promotion Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66536/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66535", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3915091" }, "price": { "fi": "48,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490462, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T10:14:25.439145Z", "last_modified_time": "2025-08-19T10:14:25.439161Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765402.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490462/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T08:13:54.398686Z", "last_modified_time": "2025-08-19T10:14:25.496113Z", "date_published": null, "start_time": "2025-12-14T17: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, "provider_contact_info": null, "short_description": { "fi": "Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F7E8516469054CE5FBFF7CF7C470E02B/Club_for_Five_-_JOULUNA_2025" }, "location_extra_info": null, "name": { "fi": "Club for Five - JOULUNA 2025" }, "description": { "fi": "<p>Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.</p><p>Tule kokemaan rakastettu JOULUNA-konsertti ja tavoita aito joulumieli!</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>" }, "provider": { "fi": "Helmi Promotion Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66535/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66514", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3915091" }, "price": { "fi": "48,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490461, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T10:14:25.189399Z", "last_modified_time": "2025-08-19T10:14:25.189414Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765401.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490461/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T08:13:54.033878Z", "last_modified_time": "2025-08-19T10:14:25.238132Z", "date_published": null, "start_time": "2025-12-14T13: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, "provider_contact_info": null, "short_description": { "fi": "Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9B82184615E168430A46FE1926066B27/Club_for_Five_-_JOULUNA_2025" }, "location_extra_info": null, "name": { "fi": "Club for Five - JOULUNA 2025" }, "description": { "fi": "<p>Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.</p><p>Tule kokemaan rakastettu JOULUNA-konsertti ja tavoita aito joulumieli!</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>" }, "provider": { "fi": "Helmi Promotion Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66514/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66869", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/tommi-laentinen-savoy-teatteri-20409360/" }, "price": { "fi": "35 € / S&D 98 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490456, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T08:14:48.260269Z", "last_modified_time": "2025-08-19T08:14:48.260287Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776257.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490456/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-19T08:14:48.149193Z", "last_modified_time": "2025-08-19T08:14:48.407911Z", "date_published": null, "start_time": "2025-11-29T17: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, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6F158E7478C5620BAB88AA1C32F852DE/Tommi_Lantinen" }, "location_extra_info": null, "name": { "fi": "Tommi Läntinen" }, "description": { "fi": "<p><b>Tommi Läntinen</b> on suomalaisen poprockin ikoni, jonka ura on kestänyt yli 40 vuotta.<br>Boycott -rock-yhtyeen räjähdysmäisen suosion jälkeen hän vaihtoi laulukielen suomeen ja siirtyi soolouralle, joka kiiti jättihittien kuten Via Dolorosa, Kevät ja minä, Villi ja vapaa, Syvälle sydämeen sattuu, Rööperin kuu ja Elämä kantaa mua sekä hurmoksellisten livekeikkojen myötä maan ykköskaartiin.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>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ä: yritysmyynti@sunborn.fi.</p><p>Show & Dinner -lippu 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>Reilunkaupan luomukahvi/ tee</p><p>TAI</p><p><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</p><p>Menun hinta ei sisällä juomia.</p><p>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua.</p><p>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</p>" }, "provider": { "fi": "Sunborn Events Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66869/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66606", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108836", "sv": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108836", "en": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108836" }, "price": { "fi": "5–25 €", "sv": "5–25 €", "en": "5–25 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1146921, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-30T09:12:48.846319Z", "last_modified_time": "2025-06-30T09:12:48.846334Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771228.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1146921/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-30T09:12:48.728794Z", "last_modified_time": "2025-08-19T08:14:24.500173Z", "date_published": null, "start_time": "2025-08-20T14: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, "provider_contact_info": null, "short_description": { "fi": "Esitystaiteilija Homa Shokri tuo Outsider Art Festivalille esityksen nimeltä Ashla: 00:00:01, joka pohjautuu samannimiseen, käynnissä olevaan projektiin.", "sv": "Performancekonstnären Homa Shokri framför verket Ashla: 00:00:01 på Outsider Art Festival. Ashla grundar sig på ett pågående projekt med samma namn.", "en": "The performance artist Homa Shokri presents Ashla, a performance developed from an ongoing choreographic performance project of the same name." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/FDD8C52A5F9B6E7CC330B37CB86E356C/OAF_X_Caisa_Homa_Shokri_-_Ashla_", "sv": "http://www.caisa.fi/sv/evenemang/event/FDD8C52A5F9B6E7CC330B37CB86E356C/OAF_X_Caisa_Homa_Shokri_-_Ashla_", "en": "http://www.caisa.fi/en/events/event/FDD8C52A5F9B6E7CC330B37CB86E356C/OAF_X_Caisa_Homa_Shokri_-_Ashla_" }, "location_extra_info": null, "name": { "fi": "OAF X Caisa: Homa Shokri - Ashla اشلاء", "sv": "OAF X Caisa: Homa Shokri - Ashla اشلاء", "en": "OAF X Caisa: Homa Shokri - Ashla اشلاء" }, "description": { "fi": "<p>Esitystaiteilija Homa Shokri tuo Outsider Art Festivalille esityksen nimeltä Ashla: 00:00:01, joka pohjautuu samannimiseen, käynnissä olevaan projektiin.</p><p>Teos tutkii, miten piilevä väkivalta hajottaa kehoa – sekä fyysisesti että psyykkisesti – liikkeen ja kuvan kautta. Ashlassa fantasia, teknosta inspiroitunut liike ja kollektiivinen kehollisuus yhdistyvät vastustamaan huomaamattomia pelon ja kontrollin rakenteita.</p><p>Teos luodaan yhteistyössä työryhmän kanssa, johon kuuluvat: Homa Shokri (konsepti ja ohjaus), Christy MA (koreografia), Sonjis Laine, Sointu Saraste, Chen Nadler (esiintyjät), Logane Rime (äänisuunnittelu) ja Oskari Kaarne (valosuunnittelu).</p><p>Homa Shokri on helsinkiläinen esitys- ja videotaiteilija, jonka teokset käsittelevät poliittista väkivaltaa ja kehollisuutta. Shokrin teokset ammentavat usein henkilökohtaisista ja kollektiivisista sorron kokemuksista. Ohjaaja- ja dramaturgitaustaisen Shokrin taiteellinen praktiikka haastaa vallitsevat käsitykset pelosta ja väkivallasta, ja siitä miten ne liikuttavat kehoja.</p><p>*(Ashla اشلاء) on arabialaisperäinen sana, joka viittaa ruumiiseen, joka on revitty brutaalisti kappaleiksi.</p><p>Liput ovat myynnissä maksa mitä jaksat -periaatteella (5–25 €).<br>Ikäsuositus: +12</p><p>HUOM! Esityksessä käytetään kovia ääniä ja voimakkaita välkkyviä valoja</p><p>Lue lisää: https://outsiderart.fi/homa-shokri-ashla/</p>", "sv": "<p>Performancekonstnären Homa Shokri framför verket Ashla: 00:00:01 på Outsider Art Festival. Ashla grundar sig på ett pågående projekt med samma namn.</p><p>Verket undersöker hur dolt våld bryter ner kroppen – både fysiskt och psykiskt – genom rörelse och bild. Ashla kombinerar fantasi, technoinspirerad rörelse och kollektiv kroppslighet för att göra motstånd till obemärkta strukturer av rädsla och kontroll.</p><p>Verket skapas i samarbete med en arbetsgrupp som består av: Homa Shokri (koncept och regi), Christy MA (koreografi), Sonjis Laine, Sointu Saraste, Chen Nadler (artister), Logane Rime (ljuddesign) och Oskari Kaarne (ljusdesign).</p><p>Homa Shokri är en preformance- och videokonstnär från Helsingfors vars verk behandlar politiskt våld och kroppslighet. Shokris verk bygger ofta på personliga och kollektiva erfarenheter av förtryck. Med en bakgrund inom regi och dramaturgi utmanar Shokri i sin konstnärliga praktik rådande föreställningar om rädsla och våld och hur de påverkar kropparna.</p><p>*(Ashla اشلاء) är ett arabiskt ord som syftar på en kropp som har blivit brutalt söndersliten.</p><p>Biljetterna säljs enligt principen ”betala vad du kan” (5–25 euro).<br>Åldersrekommendation: +12</p><p>Läs mer: https://outsiderart.fi/homa-shokri-ashla/</p>", "en": "<p>The performance artist Homa Shokri presents Ashla, a performance developed from an ongoing choreographic performance project of the same name.</p><p>The work investigates how hidden violence dismembers the body—physically and psychologically—through movement and image. Ashla integrates fantasy, techno-inspired movement and collective bodily scores as responses to unseen structures of fear and control.</p><p>This project is a collaborative and process-based work developed together with the following working group: Homa Shokri (concept and direction), Christy MA (choreography), Sonjis Laine, Sointu Saraste, Chen Nadler (performers), Alina Ostrogradskaya (sound design) and Oskari Kaarne (light design).</p><p>Homa Shokri is a Helsinki-based performance and video artist. Her work explores political violence and the uninhabitability of bodies, often drawing from personal and collective experiences of oppression. With a background in dramaturgy and directing, her practice challenges dominant narratives about how fear and violence mobilise bodies, engaging with themes such as necropolitics and resistance.</p><p>*(Ashla اشلاء), derived from Arabic word, refers to a body that has been brutally torn into pieces.</p><p>Tickets: pay what you can (5-25€)</p><p>NOTE! Loud noises and flashing/strobe lights are used during this performance</p><p>Read more: https://outsiderart.fi/en/homa-shokri-ashla/</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66606/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66607", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108836", "sv": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108836", "en": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108836" }, "price": { "fi": "5–25 €", "sv": "5–25 €", "en": "5–25 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1146920, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-30T09:12:48.432717Z", "last_modified_time": "2025-06-30T09:12:48.432734Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771226.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1146920/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-30T09:12:48.295173Z", "last_modified_time": "2025-08-19T08:14:24.256170Z", "date_published": null, "start_time": "2025-08-19T16: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, "provider_contact_info": null, "short_description": { "fi": "Esitystaiteilija Homa Shokri tuo Outsider Art Festivalille esityksen nimeltä Ashla: 00:00:01, joka pohjautuu samannimiseen, käynnissä olevaan projektiin.", "sv": "Performancekonstnären Homa Shokri framför verket Ashla: 00:00:01 på Outsider Art Festival. Ashla grundar sig på ett pågående projekt med samma namn.", "en": "The performance artist Homa Shokri presents Ashla, a performance developed from an ongoing choreographic performance project of the same name." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/672CAD3EC2D0520A30FF498F805D350A/OAF_X_Caisa_Homa_Shokri_-_Ashla_", "sv": "http://www.caisa.fi/sv/evenemang/event/672CAD3EC2D0520A30FF498F805D350A/OAF_X_Caisa_Homa_Shokri_-_Ashla_", "en": "http://www.caisa.fi/en/events/event/672CAD3EC2D0520A30FF498F805D350A/OAF_X_Caisa_Homa_Shokri_-_Ashla_" }, "location_extra_info": null, "name": { "fi": "OAF X Caisa: Homa Shokri - Ashla اشلاء", "sv": "OAF X Caisa: Homa Shokri - Ashla اشلاء", "en": "OAF X Caisa: Homa Shokri - Ashla اشلاء" }, "description": { "fi": "<p>Esitystaiteilija Homa Shokri tuo Outsider Art Festivalille esityksen nimeltä Ashla: 00:00:01, joka pohjautuu samannimiseen, käynnissä olevaan projektiin.</p><p>Teos tutkii, miten piilevä väkivalta hajottaa kehoa – sekä fyysisesti että psyykkisesti – liikkeen ja kuvan kautta. Ashlassa fantasia, teknosta inspiroitunut liike ja kollektiivinen kehollisuus yhdistyvät vastustamaan huomaamattomia pelon ja kontrollin rakenteita.</p><p>Teos luodaan yhteistyössä työryhmän kanssa, johon kuuluvat: Homa Shokri (konsepti ja ohjaus), Christy MA (koreografia), Sonjis Laine, Sointu Saraste, Chen Nadler (esiintyjät), Logane Rime (äänisuunnittelu) ja Oskari Kaarne (valosuunnittelu).</p><p>Homa Shokri on helsinkiläinen esitys- ja videotaiteilija, jonka teokset käsittelevät poliittista väkivaltaa ja kehollisuutta. Shokrin teokset ammentavat usein henkilökohtaisista ja kollektiivisista sorron kokemuksista. Ohjaaja- ja dramaturgitaustaisen Shokrin taiteellinen praktiikka haastaa vallitsevat käsitykset pelosta ja väkivallasta, ja siitä miten ne liikuttavat kehoja.</p><p>*(Ashla اشلاء) on arabialaisperäinen sana, joka viittaa ruumiiseen, joka on revitty brutaalisti kappaleiksi.</p><p>Liput ovat myynnissä maksa mitä jaksat -periaatteella (5–25 €).<br>Ikäsuositus: +12</p><p>HUOM! Esityksessä käytetään kovia ääniä ja voimakkaita välkkyviä valoja</p><p>Lue lisää: https://outsiderart.fi/homa-shokri-ashla/</p>", "sv": "<p>Performancekonstnären Homa Shokri framför verket Ashla: 00:00:01 på Outsider Art Festival. Ashla grundar sig på ett pågående projekt med samma namn.</p><p>Verket undersöker hur dolt våld bryter ner kroppen – både fysiskt och psykiskt – genom rörelse och bild. Ashla kombinerar fantasi, technoinspirerad rörelse och kollektiv kroppslighet för att göra motstånd till obemärkta strukturer av rädsla och kontroll.</p><p>Verket skapas i samarbete med en arbetsgrupp som består av: Homa Shokri (koncept och regi), Christy MA (koreografi), Sonjis Laine, Sointu Saraste, Chen Nadler (artister), Logane Rime (ljuddesign) och Oskari Kaarne (ljusdesign).</p><p>Homa Shokri är en preformance- och videokonstnär från Helsingfors vars verk behandlar politiskt våld och kroppslighet. Shokris verk bygger ofta på personliga och kollektiva erfarenheter av förtryck. Med en bakgrund inom regi och dramaturgi utmanar Shokri i sin konstnärliga praktik rådande föreställningar om rädsla och våld och hur de påverkar kropparna.</p><p>*(Ashla اشلاء) är ett arabiskt ord som syftar på en kropp som har blivit brutalt söndersliten.</p><p>Biljetterna säljs enligt principen ”betala vad du kan” (5–25 euro).<br>Åldersrekommendation: +12</p><p>Läs mer: https://outsiderart.fi/homa-shokri-ashla/</p>", "en": "<p>The performance artist Homa Shokri presents Ashla, a performance developed from an ongoing choreographic performance project of the same name.</p><p>The work investigates how hidden violence dismembers the body—physically and psychologically—through movement and image. Ashla integrates fantasy, techno-inspired movement and collective bodily scores as responses to unseen structures of fear and control.</p><p>This project is a collaborative and process-based work developed together with the following working group: Homa Shokri (concept and direction), Christy MA (choreography), Sonjis Laine, Sointu Saraste, Chen Nadler (performers), Alina Ostrogradskaya (sound design) and Oskari Kaarne (light design).</p><p>Homa Shokri is a Helsinki-based performance and video artist. Her work explores political violence and the uninhabitability of bodies, often drawing from personal and collective experiences of oppression. With a background in dramaturgy and directing, her practice challenges dominant narratives about how fear and violence mobilise bodies, engaging with themes such as necropolitics and resistance.</p><p>*(Ashla اشلاء), derived from Arabic word, refers to a body that has been brutally torn into pieces.</p><p>Tickets: pay what you can (5-25€)</p><p>NOTE! Loud noises and flashing/strobe lights are used during this performance</p><p>Read more: https://outsiderart.fi/en/homa-shokri-ashla/</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66607/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66868", "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: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490453, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-18T14:14:03.063074Z", "last_modified_time": "2025-08-18T14:14:03.063091Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773012.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490453/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2025-08-18T14:14:02.956111Z", "last_modified_time": "2025-08-18T14:14:03.215174Z", "date_published": null, "start_time": "2025-10-15T14: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, "provider_contact_info": null, "short_description": { "fi": "NUMI tuo nuoret artistit Stoan lavalle!", "sv": "Nuorten Uuden Musiikin Ilta, det vill säga NUMI, är ett avgiftsfritt evenemang som är öppet för allmänheten.", "en": "NUMI brings young artists to the Stoa stage!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/1125C19930479C40BF16C902B5C2E298/NUMI_Nuorten_Uuden_Musiikin_Ilta", "sv": "http://www.stoa.fi/sv/evenemang/event/1125C19930479C40BF16C902B5C2E298/NUMI_Nuorten_Uuden_Musiikin_Ilta", "en": "http://www.stoa.fi/en/events/event/1125C19930479C40BF16C902B5C2E298/NUMI_Nuorten_Uuden_Musiikin_Ilta" }, "location_extra_info": null, "name": { "fi": "NUMI, Nuorten Uuden Musiikin Ilta", "sv": "NUMI, Nuorten Uuden Musiikin Ilta", "en": "NUMI, Nuorten Uuden Musiikin Ilta" }, "description": { "fi": "<p>NUMI tuo nuoret artistit Stoan lavalle!</p><p>Nuorten Uuden Musiikin Ilta, eli tuttavallisemmin NUMI on Stoan Kulttuurikeskuksessa järjestettävä kaikille avoin maksuton tapahtuma, jossa 13–29-vuotiaat artistit pääsevät matalalla kynnyksellä esittämään musiikkiaan saadakseen lisää esiintymiskokemusta ja rakentavaa palautetta kokeneilta tapahtuma- ja musiikkialan tekijöiltä.</p><p>Lue lisää: https://nuorten.hel.fi/yleinen/nuorten-uuden-musiikin-ilta/</p>", "sv": "<p>Nuorten Uuden Musiikin Ilta, det vill säga NUMI, är ett avgiftsfritt evenemang som är öppet för allmänheten.</p><p>Evenemanget ordnas i Kulturcentret Stoa. Under evenemanget får 13–29-åriga artister med låg tröskel uppträda med sin musik för att samla åt sig mer erfarenhet av uppträdande och konstruktiv respons av erfarna yrkeskunniga inom evenemangs- och musikbranschen.</p>", "en": "<p>NUMI brings young artists to the Stoa stage!</p><p>Nuorten Uuden Musiikin Ilta, aka Youth New Music Night, or NUMI as it is more commonly known, is a free event open to all at the Cultural Centre Stoa, where artists between the ages of 13 and 29 get to perform their music at a low threshold to gain more performance experience and constructive feedback from experienced event and music industry professionals.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66868/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66569", "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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 985990, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-10T12:14:54.186455Z", "last_modified_time": "2025-06-10T12:14:54.186475Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773117.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985990/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T12:14:54.092596Z", "last_modified_time": "2025-08-18T14:13:50.234565Z", "date_published": null, "start_time": "2025-08-26T13: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, "provider_contact_info": null, "short_description": { "fi": "Sävelten juhlaa – oopperaa, operettia ja musikaalia!", "sv": "En fest av toner – opera, operetter och musikaler!", "en": "Celebration of melodies – opera, operetta and musicals!" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/AF5C2809897DADF2136D217B43941E06/Karelia_Ooppera", "sv": "http://www.espanlava.fi/sv/evenemang/event/AF5C2809897DADF2136D217B43941E06/Karelia_Ooppera", "en": "http://www.espanlava.fi/en/events/event/AF5C2809897DADF2136D217B43941E06/Karelia_Ooppera" }, "location_extra_info": null, "name": { "fi": "Karelia Ooppera – Open Stage", "sv": "Karelia Ooppera – Open Stage", "en": "Karelia Ooppera – Open Stage" }, "description": { "fi": "<p>Sävelten juhlaa – oopperaa, operettia ja musikaalia!</p><p>Tule nauttimaan konsertista, jossa kuullaan sävelmiä oopperan loistosta operetin kepeyteen ja musikaalien säihkeeseen. Karelia Oopperan iloinen ja mukaansatempaava ohjelma vie sydämen mennessään, kun solistit Senja Syrjälä, Jere Hölttä, Tiia Maria Saari, Laura Juvonen ja Aki Alamikkotervo pääsevät tulkitsemaan rakkaita klassikoita elokuun iltapäivässä pianisti Erkki Korhosen kanssa.</p>", "sv": "<p>En fest av toner – opera, operetter och musikaler!</p><p>Kom och njut av en konsert med toner från operans prakt till operettens lätthet och musikalens schvung. Karelia Operas glada och medryckande program stjäl våra hjärtan när solisterna Senja Syrjälä, Jere Höltta, Tiia Maria Saari, Laura Juvonen och Aki Alamikkotervo tolkar älskade klassiker under augustieftermiddagen tillsammans med pianisten Erkki Korhonen.</p>", "en": "<p>Celebration of melodies – opera, operetta and musicals!</p><p>Come and enjoy a concert with melodies from the glamour of operas to the lightness of operetta and sparkle of musicals. The joyful and compelling programme of the Karelia Opera takes hold of your heart when the soloists Senja Syrjälä, Jere Hölttä, Tiia Maria Saari, Laura Juvonen and Aki Alamikkotervo, together with pianist Erkki Korhonen, get to interpret beloved classics on this August afternoon.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66569/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66438", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3935250" }, "price": { "fi": "43,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490430, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-18T12:14:52.270002Z", "last_modified_time": "2025-08-18T12:14:52.270020Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774179.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490430/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-18T12:14:52.140900Z", "last_modified_time": "2025-08-18T12:14:52.428552Z", "date_published": null, "start_time": "2026-03-18T16: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, "provider_contact_info": null, "short_description": { "fi": "Kaupungin rytmit tanssittavat keväällä vielä kerran" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CDB24E71BA5D1E275E9CDFD152C75552/Tanssien_Tahtiin_The_Farewell_Show" }, "location_extra_info": null, "name": { "fi": "Tanssien Tähtiin The Farewell Show" }, "description": { "fi": "<p>Kaupungin rytmit tanssittavat keväällä vielä kerran</p><p>Tanssien Tähtiin Show on vakiinnuttanut paikkansa Suomen teatteriohjelmistossa ja katsojien sydämissä. Yli 32000 katsojaa on tähän mennessä nähnyt nämä upeat tanssituotannot. Täysin uuden show´n ensi-ilta oli 28.2.2025 Helsingissä Peacock näyttämöllä. <br> <br>Elevent Group Oy on Helena Ahti-Hallbergin luotsaama ohjelma- ja tapahtumatoimisto, joka on perustettu 2014 tuomaan esille tanssin monipuoliset mahdollisuudet. Parketin laidalta alkanut matka on kuljettanut omistajat monien kokemusten kautta takaisin tanssin äärelle.<br> <br><i>”On tullut aika palata juurille ja keskittyä siihen ydinosaamiseen, jonka ympärille kaikki on rakentunut”</i> kertoo Elevent Groupin toimitusjohtaja Helena Ahti-Hallberg. <i>”Pienimuotoinen ohjelmatarjonta tanssiesityksistä kasvoi kasvamistaan ja pian huomasimme, että kivijalkamme tanssi oli vain yksi osa tarjontaamme. Olemme päässeet tekemään upeita tapahtumatuotantoja ja konsepteja, joista olemme ylpeitä mutta nyt on oikea hetki kirkastaa toimintaa”</i> hän jatkaa. <br> <br><i>”Viimeiset vuodet ovat olleet sekä tapahtuma- että ohjelmatoimistoalalla hyvin haastavia taloudellisesti ja maailman mylleryksen jatkuessa tämä on meille paras ratkaisu”</i> kertoo Helena. <i>”Ei ole helppo päätös lopettaa yritystoimintaa. Emme kuitenkaan halua joutua tilanteeseen, missä ajautuisimme taloudellisiin vaikeuksiin emmekä pystyisi suoriutumaan velvoitteistamme. Siksi nyt on oikea hetki päättää Elevent Groupin tarina ja jatkaa tanssin ilosanoman levittämistä uuden Elevent Dance -yhdistyksen myötä”</i> Helena jatkaa.<br> <br><i>”Jotta saadaan tälle upealle showlle ja tuotannolle arvoisensa päätös, niin haluamme tuoda vielä kerran uusimman showmme Savoy-teatterin lavalle. The Farewell Show on siis vain yksi ilta, jonka jälkeen esitys sekä Tanssien Tähtiin Show siirtyy historiaan”</i> kertoo Helena Ahti-Hallberg. <br> <br>Esityksen upeat ammattitanssijat ovat Claudia Ketonen, Jutta Helenius, Kastanja Rauhala, Kia Lehmuskoski, Saana Akiola, Emil Hallberg, Marius Tropercher, Mikko Matikka, Sami Helenius sekä Valtteri Palin. Esityksen ohjaa Sari Siikander. <br> <br>Esitys vie katsojat kaupungin sykkeeseen, työelämän pyörteisiin ja yöelämän hulinoihin. ”Mitä kaikkea voi päivän aikana tapahtua, ketä me kohtaamme, olemmeko illan tullen yksin vai juhlimassa. Näiden asioiden ympärille esitys rakentuu. Lavalla tulee olemaan koko tunteiden kirjo ja upeaa tanssia” Ohjaaja Sari Siikander paljastaa.</p><p>Kesto n. 65 min, ei väliaikaa</p><p>Ikäraja: S</p>" }, "provider": { "fi": "Elevent Dance ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66438/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66866", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/" }, "price": { "fi": "27/34 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490401, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-18T09:14:03.552368Z", "last_modified_time": "2025-08-18T09:14:03.552388Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775701.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490401/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-18T09:14:03.434440Z", "last_modified_time": "2025-08-18T09:14:03.707150Z", "date_published": null, "start_time": "2025-10-17T16: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, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/679F0DAC168B065FC21B6C3FD613D11C/The_Great_Helsinki_Swing_Big_Band_It_s_a_Swingin_Affair_" }, "location_extra_info": null, "name": { "fi": "The Great Helsinki Swing Big Band: \"It's a Swingin Affair\"" }, "description": { "fi": "<p>Vuonna 2005 perustettu <b>The Great Helsinki Swing Big Band</b> on Suomen ainoa perinteiseen swing-aikakauden big band -musiikkiin erikoistunut musiikin ammattilaisista koostuva orkesteri. Orkesteri vaalii monimuotoista swing-musiikin historiaa esittämällä swing-aikakauden mestariteoksia mahdollisimman autenttisesti. Tässä konsertissa musiikkinsa kautta mukana ovat Glenn Miller, Tommy Dorsey, Gene Grupa, Frank Sinatra ja Anita O Day. Orkesterin solisteina toimivat <b>Annimaria Rinne, Juki Välipakka</b> ja <b>Hanne Rouvalin</b> luotsaama <b>The Oldinaires-lauluyhtye</b>. Konsertin johtaa <b>Antti Rissanen</b>.</p><p>Kesto n. 2 h 30min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>" }, "provider": { "fi": "Savoy-teatteri & The Great Helsinki Swing Big Band -yhdistys ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66866/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66608", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-caisa-palestiinalaisen-kulttuurin-festivaali-kulttuurikeskus-caisa-20383188/", "sv": "https://www.lippu.fi/event/kino-caisa-palestiinalaisen-kulttuurin-festivaali-kulttuurikeskus-caisa-20383188/", "en": "https://www.lippu.fi/event/kino-caisa-palestiinalaisen-kulttuurin-festivaali-kulttuurikeskus-caisa-20383188/" }, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1203859, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-07T14:14:10.068726Z", "last_modified_time": "2025-07-07T14:14:10.068742Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775109.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203859/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-07T14:14:09.940817Z", "last_modified_time": "2025-08-18T09:13:50.971672Z", "date_published": null, "start_time": "2025-08-29T14: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, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa kahden päivän festivaalille, jossa syvennytään palestiinalaiseen kulttuuriin.", "sv": "Välkommen till en tvådagarsfestival som fördjupar sig i palestinsk kultur.", "en": "Welcome to a two-day festival that will delve into Palestinian culture." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/464C7FE0F473444B75C41A4373CFB208/Slingshot_Hip_Hop_ja_paneelikeskustelu", "sv": "http://www.caisa.fi/sv/evenemang/event/464C7FE0F473444B75C41A4373CFB208/Slingshot_Hip_Hop_och_paneldiskussion", "en": "http://www.caisa.fi/en/events/event/464C7FE0F473444B75C41A4373CFB208/Slingshot_Hip_Hop_and_panel_discussion" }, "location_extra_info": null, "name": { "fi": "Slingshot Hip Hop ja paneelikeskustelu – Palestiinalaisen kulttuurin festivaali", "sv": "Slingshot Hip Hop och paneldiskussion – Palestinsk kulturfestival", "en": "Slingshot Hip Hop and panel discussion – Palestinian Culture Festival" }, "description": { "fi": "<p>Tervetuloa kahden päivän festivaalille, jossa syvennytään palestiinalaiseen kulttuuriin.</p><p>Kulttuurikeskus Caisassa järjestettävä festivaali tarjoaa eri taidelajien kautta elämyksiä ja syvällisiä keskusteluja palestiinalaisesta kulttuurista. Perjantai-iltana luvassa on elokuvanäytös ja paneelikeskustelu ja lauantaina useita eri aktiviteetteja ja esiintyjiä.</p><p>Festivaalin avaa elokuvanäytös, joka johdattaa katsojat palestiinalaiseen todellisuuteen ja kulttuuriin.</p><p><b>Slingshot Hip Hop</b><br>Slingshot Hip Hop dokumentoi palestiinalaisen hiphop-kulttuurin syntyä ja punoo yhteen Gazassa, Länsirannalla ja vuonna 1948 miehitetyllä Palestiinan alueella asuvien nuorten palestiinalaisten taiteilijoiden tarinat.</p><p>Elokuvan kesto: 80 min<br>Elokuvan kielet: Arabia, heprea, englanti<br>Elokuvan tekstitys: englanti<br>Ohjaus: Jackie Reem Salloum<br>Tuotanto: Jackie Reem Salloum, Rumzi Araj, Waleed Zaiter<br>Rooleissa: DAM, Abeer Alzinaty, PR, WEH Crew, Mahmoud Shalabi, Arapeyat</p><p>Näytöksen jälkeen syvennymme teemaan paneelikeskustelussa, jossa asiantuntijat ja elokuvantekijät keskustelevat elokuvan herättämistä kysymyksistä. Vieraina ainakin palestiinalainen hiphop-artisti Tariq Abu Nahel, elokuvantekijä Nitin Shawney sekä mahdollisesti laulaja-muusikko Meera ja elokuvatekijä ja näyttelijä Ali Al-Saffu.</p>", "sv": "<p>Välkommen till en tvådagarsfestival som fördjupar sig i palestinsk kultur.</p><p><b>Slingshot Hip Hop</b><br>Slingshot Hip Hop dokumenterar hiphopscenens födelse i Palestina och flätar samman berättelserna från unga palestinska artister som bor i Gaza, på Västbanken och i Palestina 48.</p><p>Efter visningen blir det en paneldiskussion där experter och filmskapare diskuterar de frågor som filmen väcker.<br>Som gäster åtminstone den palestinska hiphopartisten Tariq Abu Nahel, filmskaparen Nitin Shawney samt eventuellt sångaren och musikern Meera och filmskaparen och skådespelaren Ali Al-Saffu.</p>", "en": "<p>Welcome to a two-day festival that will delve into Palestinian culture.</p><p><b>Slingshot Hip Hop</b><br>Slingshot Hip Hop documents the birth of the Hip Hop scene in Palestine and braids together the stories of young Palestinian artists living in Gaza, the West Bank and Palestine 48.</p><p>Duration: 80 min<br>Languages: Arabic, Hebrew, English<br>Subtitles: English</p><p>Directed by<br>Jackie Reem Salloum<br>Produced by<br>Jackie Reem Salloum, Rumzi Araj, Waleed Zaiter<br>Starring<br>DAM, Abeer Alzinaty, PR, WEH Crew, Mahmoud Shalabi, Arapeyat</p><p>After the screening, there will be a panel discussion where experts and filmmakers will discuss the questions raised by the film. Panelists include at least the Palestinian hip-hop artist Tariq Abu Nahel, the filmmaker Nitin Shawney and possibly the singer-musician Meera and the filmmaker and actor Ali Al-Saffu.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66608/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-2812", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://liput.helsinginkaupunginorkesteri.fi/fi/buyingflow/tickets/14562/12504/" }, "price": { "fi": "6.50 - 49.50 €", "sv": "6.50 - 49.50 €", "en": "6.50 - 49.50 €" }, "description": { "fi": "Hinta", "sv": "Priset", "en": "Price" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-16T00:06:10.424693Z", "last_modified_time": "2025-08-16T00:06:10.424713Z", "date_published": null, "start_time": "2025-09-11T16:00:00Z", "end_time": "2025-09-11T18: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, "provider_contact_info": null, "short_description": { "fi": "”En voi soittaa Rahmaninovia tuntematta ihmetystä ja kiitollisuutta siitä, että sellaista kauneutta on olemassa”, kertoo illan solisti Boris Giltburg.", "sv": "”Jag kan inte spela Rachmaninov utan att känna häpnad och tacksamhet över att det kan finnas musik med sådan skönhet”, berättar solisten Boris Giltburg....", "en": "“I can't ever play it without feeling a sense of wonder and gratitude that such beauty exists,” says the evening’s soloist Boris Giltburg" }, "info_url": { "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/2812", "sv": "https://helsinginkaupunginorkesteri.fi/sv/node/2812", "en": "https://helsinginkaupunginorkesteri.fi/en/node/2812" }, "location_extra_info": { "fi": "Musiikkitalo Konserttisali", "en": "Musiikkitalo Concert Hall" }, "name": { "fi": "HKO: Kauneutta ja kontrasteja ", "sv": "HKO: Skönhet och kontraster ", "en": "HKO: Beauty and Contrasts " }, "description": { "fi": "<p>”En voi soittaa Rahmaninovia tuntematta ihmetystä ja kiitollisuutta siitä, että sellaista kauneutta on olemassa”, kertoo illan solisti Boris Giltburg.</p>", "sv": "<p>”Jag kan inte spela Rachmaninov utan att känna häpnad och tacksamhet över att det kan finnas musik med sådan skönhet”, berättar solisten Boris Giltburg....</p>", "en": "<p>“I can't ever play it without feeling a sense of wonder and gratitude that such beauty exists,” says the evening’s soloist Boris Giltburg</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-2812/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66663", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1146922, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-30T09:12:49.566338Z", "last_modified_time": "2025-06-30T09:12:49.566354Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771139.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1146922/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-30T09:12:49.444631Z", "last_modified_time": "2025-08-15T12:13:54.402517Z", "date_published": null, "start_time": "2025-08-21T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Runokuu-kirjallisuusfestivaali tuo kansainvälisiä runoilijoita Caisan lavalle 21. elokuuta 2025!", "sv": "Litteraturfestivalen Runokuu för med sig internationella poeter till Caisas scen den 21 augusti 2025!", "en": "Poetry Moon Literature Festival brings international poets to the stage of Caisa in 21st of August 2025." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/43F711EBCA1299A52BE0F46FB3295647/Caisa_Poetry_Night", "sv": "http://www.caisa.fi/sv/evenemang/event/43F711EBCA1299A52BE0F46FB3295647/Caisa_Poetry_Night", "en": "http://www.caisa.fi/en/events/event/43F711EBCA1299A52BE0F46FB3295647/Caisa_Poetry_Night" }, "location_extra_info": null, "name": { "fi": "Caisa Poetry Night – Runokuu", "sv": "Caisa Poetry Night – Runokuu", "en": "Caisa Poetry Night – Runokuu" }, "description": { "fi": "<p>Runokuu-kirjallisuusfestivaali tuo kansainvälisiä runoilijoita Caisan lavalle 21. elokuuta 2025!</p><p>Runokuu ilahduttaa runouden ystäviä Helsingissä ja sen lähialueilla joka vuosi aina elokuussa. Kansainvälinen runoilta Caisassa kokoaa yhteen elävän ja monimuotoisen joukon ääniä eri puolilta maailmaa.</p><p>Illan aikana esiintyvät irakilainen kirjailija Yaseen Ghaleb, kurdilainen runoilija Abdulla Pashew, ruotsalainen runoilija Siri Berzelius, norjalais-somalialainen runoilija Sumaya Jirde Ali sekä saksalainen kirjailija ja runoilija Simoné Goldschmidt-Lechner.</p><p>Kesto: 1,5 tuntia, ei väliaikaa<br>Ikäsuositus: 12+<br>Kieli: englanti</p><p>Vapaa pääsy</p>", "sv": "<p>Litteraturfestivalen Runokuu för med sig internationella poeter till Caisas scen den 21 augusti 2025!</p><p>Runokuu gläder poesiälskare i Helsingfors och dess närområden varje år i augusti. Den internationella poesikvällen på Caisa samlar en levande och mångsidig grupp röster från hela världen. Under kvällen uppträder bland annat den irakiska författaren Yaseen Ghaleb, den kurdiska poeten Abdulla Pashew och den tyska skribenten Simoné Goldschmidt-Lechner.</p><p>Längd: 1,5 timmar, utan paus<br>Åldersrekommendation: +12<br>Språk: engelska</p><p>Fritt inträde</p>", "en": "<p>Poetry Moon Literature Festival brings international poets to the stage of Caisa in 21st of August 2025.</p><p>Runokuu / Poetry Moon Literature Festival delights poetry lovers in Helsinki and its outskirts every August. International Poetry Night at Cultural Centre Caisa 21st of August 2025 brings together a vibrant and diverse array of voices from around the world.</p><p>The evening features performances by Iraqi author Yaseen Ghaleb, Kurdish poet Abdulla Pashew, Swedish poet Siri Berzelius, Norwegian-Somalian poet Sumaya Jirde Ali, and German author and poet Simoné Goldschmidt-Lechner.</p><p>Duration: 1.5 hours, no intermission<br>Age recommendation: 12+<br>Language: English</p><p>Organised by Runokuu / Poetry Moon festival. <br>Performers: Yaseen Ghaleb, Abdulla Pashew and Simoné Goldschmidt-Lechner.</p><p>In Collaboration with Cultural Centre Caisa and Goethe-Institut Finnland.</p><p>Free entry</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66663/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66857", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/tulikettu-eldraeven-3933583/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/tulikettu-eldraeven-3933583/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/tulikettu-eldraeven-3933583/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1482106, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-14T08:14:23.127715Z", "last_modified_time": "2025-08-14T08:14:23.127731Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775898.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1482106/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-14T08:14:23.008472Z", "last_modified_time": "2025-08-14T08:14:23.293358Z", "date_published": null, "start_time": "2025-10-25T10: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, "provider_contact_info": null, "short_description": { "fi": "Tulikettu – Eldräven on kaksikielinen esitys revontulista, sekä itselle käsittämättömän ja tuntemattoman kunnioittamisesta.", "sv": "Tulikettu – Eldräven är en tvåspråkig föreställning om norrskenet och om att respektera det ofattbara och okända.", "en": "Tulikettu – Eldräven is a bilingual performance about the northern lights and respecting the unfathomable and the unknown." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/57AAD1F2DDFDAC62A28D8D3EB594F0DB/Tulikettu_Eldraven", "sv": "http://www.caisa.fi/sv/evenemang/event/57AAD1F2DDFDAC62A28D8D3EB594F0DB/Tulikettu_Eldraven", "en": "http://www.caisa.fi/en/events/event/57AAD1F2DDFDAC62A28D8D3EB594F0DB/Tulikettu_Eldraven" }, "location_extra_info": null, "name": { "fi": "Tulikettu – Eldräven", "sv": "Tulikettu – Eldräven", "en": "Tulikettu – Eldräven" }, "description": { "fi": "<p>Tulikettu – Eldräven on kaksikielinen esitys revontulista, sekä itselle käsittämättömän ja tuntemattoman kunnioittamisesta.</p><p>Oletko koskaan nähnyt revontulia? Entä tiedätkö mitä ne ovat?</p><p>Tarinan mukaan mustaturkkinen tulikettu asuu aivan maan pohjoisimmissa kolkissa. Sen turkki hohtaa kuin tuli, vaikka onkin musta. Ketun juostessa tunturissa sen kyljet ja loimuava häntä hipovat puiden oksia. Siitä syntyy kipinöitä, jotka sinkoutuvat taivaalle ja saavat aikaan taivaalla loimuavat revontulet. Se, joka saa kiinni tuliketun, tulee rikkaaksi ja kuuluisaksi.</p><p>Tulikettu - Eldräven on kaksikielinen fyysisen teatterin ja kansanmusiikin vuoropuhelulle rakentuva esitys revontulista, ja kutsuu mukaansa niin lapset kuin aikuisetkin. Kertojat johdattavat haitarimusiikin saattelemana yleisön yhteiselle matkalle, jossa liikutaan kansanuskon ja perinteiden, sekä taivaan ilmiöistä haltioitumisen äärellä. Tuliketun lisäksi matkalla tavataan kahdestaan enonsa kanssa asuva utelias lapsi, sekä ketun loimuavaa turkkia havittelevat metsästäjät. He kaikki elävät metsästä ja metsän kanssa, ja lumoutuvat tuliketusta omalla tavallaan; kun yksi kaipaa taianomaista lohtua, toiset jahtaavat satumaista aarretta. Esityksessä tarkastellaan itselle käsittämättömän ja tuntemattoman arvostamista yhteiselon ja vastavuoroisuuden edellytyksenä. Sen todellisuus ei tiedä ja luokittele, vaan tarkkailee ja haltioituu yhdessä yleisön kanssa.</p><p>Esityksessä puhutaan sekä suomea että ruotsia, ja siinä hyödynnetään paitsi tarinankerrontaa, myös sanatonta esittämistä, naamioita, nukketeatteria, haitarimusiikkia, pariakrobatiaa, sekä videoprojisointia. Tervetuloa Tuliketun matkaan!</p><p>Esityksen kesto: 45min <br>Esityksen kielet: suomi ja ruotsi<br>Ikäsuositus: kohdennettu 5–12-vuotiaille, soveltuu vanhempien kanssa 3-vuotiaasta alkaen</p><p>Esitys on koulu- ja päiväkotiryhmille maksuton. Ilmoittautuminen: https://kultus.hel.fi/fi</p><p>Idea, käsikirjoitus, dramaturgia: Liv Meijer Nordgren, Freia Stenbäck<br>Musiikki: Markus Räsänen<br>Movement director: Sonja Järvisalo<br>Koreografia: Liv Meijer Nordgren, Freia Stenbäck, Sonja Järvisalo<br>Taustamateriaali ja käännökset: Freia Stenbäck<br>Nuket, naamio, videot: Liv Meijer Nordgren<br>Esiintyjät: Liv Meijer Nordgren, Markus Räsänen, Freia Stenbäck<br>Valokuvat: Claes Johansson</p>", "sv": "<p>Tulikettu – Eldräven är en tvåspråkig föreställning om norrskenet och om att respektera det ofattbara och okända.</p><p>Har du någonsin sett norrsken? Och vet du vad de är?</p><p>Enligt sägnen bor den svarthåriga eldräven i de allra nordligaste delarna av landet. Eldrävens päls lyser som eld, trots att den är svart. När räven springer över bergen nuddar dess sidor och glänsande svans vid trädens grenar. Detta skapar gnistor som skjuter upp mot himlen och får norrskenet att flamma över himlen. Den som lyckas fånga räven blir rik och berömd.</p><p>Tulikettu – Eldräven är en tvåspråkig föreställning om norrsken, som bygger på en dialog mellan fysisk teater och folkmusik, för både barn och vuxna. Ackompanjerade av dragspelsmusik tar berättarna med publiken på en gemensam resa genom folktro och traditioner och en hänförelse för himmelska fenomen. På vägen möter man förutom eldräven ett nyfiket barn som bor ensam med sin farbror samt jägare som är ute efter rävens fluffiga päls. De lever alla i och tillsammans med skogen och är förtrollade av eldräven på sitt eget sätt; medan vissa söker magisk tröst, är andra på jakt efter sagolika skatter. Föreställningen granskar uppskattningen av det obegripliga och det okända som en förutsättning för samlevnad och ömsesidighet. Dess verklighet vet inte och klassificerar inte, utan observerar och hänförs tillsammans med publiken.</p><p>I föreställningen talar man både finska och svenska och utnyttjar förutom berättandet även icke-verbalt framförande, masker, dockteater, dragspelsmusik, parakrobatik och videoprojektion. Välkommen med på Eldrävens resa!</p><p>Föreställningens längd: 45 minuter <br>Föreställningens språk: finska och svenska<br>Åldersrekommendation: riktar sig till 5–12-åringar, lämplig med föräldrar från 3 år och uppåt</p><p>Föreställningen är avgiftsfri för skol- och förskolegrupper. Anmälan: https://kultus.hel.fi/sv</p><p>Idé, manus, dramaturgi: Liv Meijer Nordgren, Freia Stenbäck<br>Musik: Markus Räsänen<br>Movement director: Sonja Järvisalo<br>Koreografi: Liv Meijer Nordgren, Freia Stenbäck, Sonja Järvisalo<br>Bakgrundsmaterial och översättningar: Freia Stenbäck<br>Dockor, masker, videor: Liv Meijer Nordgren<br>Artister: Liv Meijer Nordgren, Markus Räsänen, Freia Stenbäck<br>Fotografier: Claes Johansson</p>", "en": "<p>Tulikettu – Eldräven is a bilingual performance about the northern lights and respecting the unfathomable and the unknown.</p><p>Have you ever seen the northern lights? And do you know what they are?</p><p>Legend has it that a black-furred fire fox lives in the very northernmost reaches of the country. Its coat of fur shines like fire, even though it is black. As the fox runs across the fells, its flanks and flaming tail touch the branches of trees. This creates sparks that shoot up into the sky and cause the northern lights to blaze across the sky. Whoever catches the fire fox will become rich and famous.</p><p>Tulikettu – Eldräven is a bilingual performance about the northern lights, based on a dialogue between physical theatre and folk music, that invites children and adults alike to take part. Accompanied by accordion music, the narrators will take the audience on a shared journey into folk beliefs and traditions, as well as fascination with celestial phenomena. In addition to the fire fox, the audience will meet a curious child living alone with their uncle, as well as hunters who are after the fox’s flaming fur. They all live in and with the forest and are enchanted by the fire fox in their own way; while one is seeking magical solace, the others are chasing after the fabled treasure. The performance explores appreciation of the unfathomable and the unknown as a prerequisite for coexistence and reciprocity. Its reality does not know and classify, but instead observes and is enchanted together with the audience.</p><p>The performance will be in both Finnish and Swedish, and it will utilise not only storytelling, but also non-verbal performance, masks, puppetry, accordion music, pair acrobatics, and video projection. Join us on the journey with the fire fox!</p><p>Duration of the performance: 45 min <br>Languages of the performance: Finnish and Swedish<br>Recommended age: aimed at ages 5–12, suitable for children aged 3 and above with parents</p><p>The performance is free of charge for school and daycare centre groups. Registration: https://kultus.hel.fi/en</p><p>Idea, script, dramaturgy: Liv Meijer Nordgren, Freia Stenbäck<br>Music: Markus Räsänen<br>Movement director: Sonja Järvisalo<br>Choreography: Liv Meijer Nordgren, Freia Stenbäck, Sonja Järvisalo<br>Background material and translations: Freia Stenbäck<br>Puppets, mask, videos: Liv Meijer Nordgren<br>Performers: Liv Meijer Nordgren, Markus Räsänen, Freia Stenbäck<br>Photos: Claes Johansson</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66857/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66856", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/tulikettu-eldraeven-3933583/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/tulikettu-eldraeven-3933583/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/tulikettu-eldraeven-3933583/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1482105, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-14T08:14:22.291935Z", "last_modified_time": "2025-08-14T08:14:22.291952Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775897.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1482105/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-14T08:14:22.176218Z", "last_modified_time": "2025-08-14T08:14:22.459529Z", "date_published": null, "start_time": "2025-10-24T08: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, "provider_contact_info": null, "short_description": { "fi": "Tulikettu – Eldräven on kaksikielinen esitys revontulista, sekä itselle käsittämättömän ja tuntemattoman kunnioittamisesta.", "sv": "Tulikettu – Eldräven är en tvåspråkig föreställning om norrskenet och om att respektera det ofattbara och okända.", "en": "Tulikettu – Eldräven is a bilingual performance about the northern lights and respecting the unfathomable and the unknown." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/F4F4E56953DE634FCD47BF47F9199F6F/Tulikettu_Eldraven", "sv": "http://www.caisa.fi/sv/evenemang/event/F4F4E56953DE634FCD47BF47F9199F6F/Tulikettu_Eldraven", "en": "http://www.caisa.fi/en/events/event/F4F4E56953DE634FCD47BF47F9199F6F/Tulikettu_Eldraven" }, "location_extra_info": null, "name": { "fi": "Tulikettu – Eldräven", "sv": "Tulikettu – Eldräven", "en": "Tulikettu – Eldräven" }, "description": { "fi": "<p>Tulikettu – Eldräven on kaksikielinen esitys revontulista, sekä itselle käsittämättömän ja tuntemattoman kunnioittamisesta.</p><p>Oletko koskaan nähnyt revontulia? Entä tiedätkö mitä ne ovat?</p><p>Tarinan mukaan mustaturkkinen tulikettu asuu aivan maan pohjoisimmissa kolkissa. Sen turkki hohtaa kuin tuli, vaikka onkin musta. Ketun juostessa tunturissa sen kyljet ja loimuava häntä hipovat puiden oksia. Siitä syntyy kipinöitä, jotka sinkoutuvat taivaalle ja saavat aikaan taivaalla loimuavat revontulet. Se, joka saa kiinni tuliketun, tulee rikkaaksi ja kuuluisaksi.</p><p>Tulikettu - Eldräven on kaksikielinen fyysisen teatterin ja kansanmusiikin vuoropuhelulle rakentuva esitys revontulista, ja kutsuu mukaansa niin lapset kuin aikuisetkin. Kertojat johdattavat haitarimusiikin saattelemana yleisön yhteiselle matkalle, jossa liikutaan kansanuskon ja perinteiden, sekä taivaan ilmiöistä haltioitumisen äärellä. Tuliketun lisäksi matkalla tavataan kahdestaan enonsa kanssa asuva utelias lapsi, sekä ketun loimuavaa turkkia havittelevat metsästäjät. He kaikki elävät metsästä ja metsän kanssa, ja lumoutuvat tuliketusta omalla tavallaan; kun yksi kaipaa taianomaista lohtua, toiset jahtaavat satumaista aarretta. Esityksessä tarkastellaan itselle käsittämättömän ja tuntemattoman arvostamista yhteiselon ja vastavuoroisuuden edellytyksenä. Sen todellisuus ei tiedä ja luokittele, vaan tarkkailee ja haltioituu yhdessä yleisön kanssa.</p><p>Esityksessä puhutaan sekä suomea että ruotsia, ja siinä hyödynnetään paitsi tarinankerrontaa, myös sanatonta esittämistä, naamioita, nukketeatteria, haitarimusiikkia, pariakrobatiaa, sekä videoprojisointia. Tervetuloa Tuliketun matkaan!</p><p>Esityksen kesto: 45min <br>Esityksen kielet: suomi ja ruotsi<br>Ikäsuositus: kohdennettu 5–12-vuotiaille, soveltuu vanhempien kanssa 3-vuotiaasta alkaen</p><p>Esitys on koulu- ja päiväkotiryhmille maksuton. Ilmoittautuminen: https://kultus.hel.fi/fi</p><p>Idea, käsikirjoitus, dramaturgia: Liv Meijer Nordgren, Freia Stenbäck<br>Musiikki: Markus Räsänen<br>Movement director: Sonja Järvisalo<br>Koreografia: Liv Meijer Nordgren, Freia Stenbäck, Sonja Järvisalo<br>Taustamateriaali ja käännökset: Freia Stenbäck<br>Nuket, naamio, videot: Liv Meijer Nordgren<br>Esiintyjät: Liv Meijer Nordgren, Markus Räsänen, Freia Stenbäck<br>Valokuvat: Claes Johansson</p>", "sv": "<p>Tulikettu – Eldräven är en tvåspråkig föreställning om norrskenet och om att respektera det ofattbara och okända.</p><p>Har du någonsin sett norrsken? Och vet du vad de är?</p><p>Enligt sägnen bor den svarthåriga eldräven i de allra nordligaste delarna av landet. Eldrävens päls lyser som eld, trots att den är svart. När räven springer över bergen nuddar dess sidor och glänsande svans vid trädens grenar. Detta skapar gnistor som skjuter upp mot himlen och får norrskenet att flamma över himlen. Den som lyckas fånga räven blir rik och berömd.</p><p>Tulikettu – Eldräven är en tvåspråkig föreställning om norrsken, som bygger på en dialog mellan fysisk teater och folkmusik, för både barn och vuxna. Ackompanjerade av dragspelsmusik tar berättarna med publiken på en gemensam resa genom folktro och traditioner och en hänförelse för himmelska fenomen. På vägen möter man förutom eldräven ett nyfiket barn som bor ensam med sin farbror samt jägare som är ute efter rävens fluffiga päls. De lever alla i och tillsammans med skogen och är förtrollade av eldräven på sitt eget sätt; medan vissa söker magisk tröst, är andra på jakt efter sagolika skatter. Föreställningen granskar uppskattningen av det obegripliga och det okända som en förutsättning för samlevnad och ömsesidighet. Dess verklighet vet inte och klassificerar inte, utan observerar och hänförs tillsammans med publiken.</p><p>I föreställningen talar man både finska och svenska och utnyttjar förutom berättandet även icke-verbalt framförande, masker, dockteater, dragspelsmusik, parakrobatik och videoprojektion. Välkommen med på Eldrävens resa!</p><p>Föreställningens längd: 45 minuter <br>Föreställningens språk: finska och svenska<br>Åldersrekommendation: riktar sig till 5–12-åringar, lämplig med föräldrar från 3 år och uppåt</p><p>Föreställningen är avgiftsfri för skol- och förskolegrupper. Anmälan: https://kultus.hel.fi/sv</p><p>Idé, manus, dramaturgi: Liv Meijer Nordgren, Freia Stenbäck<br>Musik: Markus Räsänen<br>Movement director: Sonja Järvisalo<br>Koreografi: Liv Meijer Nordgren, Freia Stenbäck, Sonja Järvisalo<br>Bakgrundsmaterial och översättningar: Freia Stenbäck<br>Dockor, masker, videor: Liv Meijer Nordgren<br>Artister: Liv Meijer Nordgren, Markus Räsänen, Freia Stenbäck<br>Fotografier: Claes Johansson</p>", "en": "<p>Tulikettu – Eldräven is a bilingual performance about the northern lights and respecting the unfathomable and the unknown.</p><p>Have you ever seen the northern lights? And do you know what they are?</p><p>Legend has it that a black-furred fire fox lives in the very northernmost reaches of the country. Its coat of fur shines like fire, even though it is black. As the fox runs across the fells, its flanks and flaming tail touch the branches of trees. This creates sparks that shoot up into the sky and cause the northern lights to blaze across the sky. Whoever catches the fire fox will become rich and famous.</p><p>Tulikettu – Eldräven is a bilingual performance about the northern lights, based on a dialogue between physical theatre and folk music, that invites children and adults alike to take part. Accompanied by accordion music, the narrators will take the audience on a shared journey into folk beliefs and traditions, as well as fascination with celestial phenomena. In addition to the fire fox, the audience will meet a curious child living alone with their uncle, as well as hunters who are after the fox’s flaming fur. They all live in and with the forest and are enchanted by the fire fox in their own way; while one is seeking magical solace, the others are chasing after the fabled treasure. The performance explores appreciation of the unfathomable and the unknown as a prerequisite for coexistence and reciprocity. Its reality does not know and classify, but instead observes and is enchanted together with the audience.</p><p>The performance will be in both Finnish and Swedish, and it will utilise not only storytelling, but also non-verbal performance, masks, puppetry, accordion music, pair acrobatics, and video projection. Join us on the journey with the fire fox!</p><p>Duration of the performance: 45 min <br>Languages of the performance: Finnish and Swedish<br>Recommended age: aimed at ages 5–12, suitable for children aged 3 and above with parents</p><p>The performance is free of charge for school and daycare centre groups. Registration: https://kultus.hel.fi/en</p><p>Idea, script, dramaturgy: Liv Meijer Nordgren, Freia Stenbäck<br>Music: Markus Räsänen<br>Movement director: Sonja Järvisalo<br>Choreography: Liv Meijer Nordgren, Freia Stenbäck, Sonja Järvisalo<br>Background material and translations: Freia Stenbäck<br>Puppets, mask, videos: Liv Meijer Nordgren<br>Performers: Liv Meijer Nordgren, Markus Räsänen, Freia Stenbäck<br>Photos: Claes Johansson</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66856/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 10295, "next": "