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=190®istration__remaining_attendee_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=191®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=189®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "lippupiste:serie-3504617", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api" }, "keywords": [], "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/katrina-helsingin-kaupunginteatteri-19352665/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/katrina-helsingin-kaupunginteatteri-19352665/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/katrina-helsingin-kaupunginteatteri-19352665/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352655/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352658/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352659/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352660/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352661/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352666/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352667/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352662/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352663/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352665/?format=api" } ], "images": [ { "id": 235442, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:52.027374Z", "last_modified_time": "2025-02-17T11:16:52.027397Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/hktkatrina222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235442/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:15.394455Z", "last_modified_time": "2025-04-30T20:16:50.688371Z", "date_published": null, "start_time": "2025-03-12T16:30:00Z", "end_time": "2025-04-30", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Katrina" }, "description": { "fi": "<p>Sally Salminen – Kaisa Lundán – Aili Järvelä<br><strong>KATRINA</strong></p>", "sv": "<p>Den unga Katrina lockas av kärleken att flytta från Österbotten till Åland för att bli sjömanshustru. Trots att hon blir lämnad ensam, lyckas hon gång på gång övervinna både yttre svårigheter och sig själv. Katrinas stolthet och rättvisa banar väg där hon utmanar samhällets normer och vad det är att vara kvinna.</p><p>Katrina är en klassikerroman som när den kom ut 1936 var banbrytande och gjorde författaren Sally Salminen till en världskändis, och boken översattes till över tjugo språk. Kaisa Lundáns dramatisering och Aili Järveläs nykomponerade musik ger nu nytt liv åt Katrinas berörande berättelse.</p><p>Emma Klingenberg och Aili Järvelä, Ulriikka Heikinheimo och Senni Valtonen sjunger Katrinas hjärtskärande historia, vars budskap är aktuellt än i dag.</p><p>På scen: Emma Klingenberg, Aili Järvelä, Ulriikka Heikinheimo, Senni Valtonen<br>Dramatisering: Kaisa Lundán<br>Kompositör och arrangör: Aili Järvelä<br>Regi: Jakob Höglund<br>Scenografi och design av rekvisita: Heini Maaranen<br>Kostym: Samu-Jussi Koski<br>Ljusdesign: Tobias Lönnquist<br>Ljuddesign: Antero Mansikka<br>Mask: Pia Kähkönen<br>Premiär: 31.1.2024 på Lilla Teatern<br>Uppföranderätt: Nordic Drama Corner</p><p>Föreställningen textas till finska och svenska via appen Subtitle mobile.<br>Föreställningen är ett samarbete mellan Lilla Teatern, Åbo Svenska Teater och Wasa Teater. I Åbo och Vasa spelar föreställningen våren 2025.<br></p>" }, "location_extra_info": { "fi": "Lilla Teatern" }, "provider_contact_info": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/katrina-3504617/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/katrina-3504617/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/katrina-3504617/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Sally Salminen – Kaisa Lundán", "sv": "Aili Järvelä KATRINA Den unga Katrina lockas av kärleken att flytta från Österbotten till Åland för att bli sjömanshustru." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3504617/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19352665", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3504617/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/katrina-helsingin-kaupunginteatteri-19352665/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/katrina-helsingin-kaupunginteatteri-19352665/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/katrina-helsingin-kaupunginteatteri-19352665/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235442, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:52.027374Z", "last_modified_time": "2025-02-17T11:16:52.027397Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/hktkatrina222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235442/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:13.943703Z", "last_modified_time": "2025-04-30T20:16:11.189640Z", "date_published": null, "start_time": "2025-04-30T15: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, "name": { "fi": "Katrina" }, "description": { "fi": "<p>Sally Salminen – Kaisa Lundán – Aili Järvelä<br><strong>KATRINA</strong></p>", "sv": "<p>Den unga Katrina lockas av kärleken att flytta från Österbotten till Åland för att bli sjömanshustru. Trots att hon blir lämnad ensam, lyckas hon gång på gång övervinna både yttre svårigheter och sig själv. Katrinas stolthet och rättvisa banar väg där hon utmanar samhällets normer och vad det är att vara kvinna.</p><p>Katrina är en klassikerroman som när den kom ut 1936 var banbrytande och gjorde författaren Sally Salminen till en världskändis, och boken översattes till över tjugo språk. Kaisa Lundáns dramatisering och Aili Järveläs nykomponerade musik ger nu nytt liv åt Katrinas berörande berättelse.</p><p>Emma Klingenberg och Aili Järvelä, Ulriikka Heikinheimo och Senni Valtonen sjunger Katrinas hjärtskärande historia, vars budskap är aktuellt än i dag.</p><p>På scen: Emma Klingenberg, Aili Järvelä, Ulriikka Heikinheimo, Senni Valtonen<br>Dramatisering: Kaisa Lundán<br>Kompositör och arrangör: Aili Järvelä<br>Regi: Jakob Höglund<br>Scenografi och design av rekvisita: Heini Maaranen<br>Kostym: Samu-Jussi Koski<br>Ljusdesign: Tobias Lönnquist<br>Ljuddesign: Antero Mansikka<br>Mask: Pia Kähkönen<br>Premiär: 31.1.2024 på Lilla Teatern<br>Uppföranderätt: Nordic Drama Corner</p><p>Föreställningen textas till finska och svenska via appen Subtitle mobile.<br>Föreställningen är ett samarbete mellan Lilla Teatern, Åbo Svenska Teater och Wasa Teater. I Åbo och Vasa spelar föreställningen våren 2025.<br></p>" }, "location_extra_info": { "fi": "Lilla Teatern" }, "provider_contact_info": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/katrina-3504617/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/katrina-3504617/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/katrina-3504617/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Sally Salminen – Kaisa Lundán", "sv": "Aili Järvelä KATRINA Den unga Katrina lockas av kärleken att flytta från Österbotten till Åland för att bli sjömanshustru." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352665/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66128", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 652229, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-30T14:14:18.305541Z", "last_modified_time": "2025-04-30T14:14:18.305559Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767270.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/652229/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-04-30T14:14:18.215150Z", "last_modified_time": "2025-04-30T14:14:18.443051Z", "date_published": null, "start_time": "2025-06-10T07:00:00Z", "end_time": "2025-06-10T09: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, "name": { "fi": "Surrealistinen pinta! – Kesäpihan taidepajat", "sv": "Surrealistisk yta! – Sommargårdens konstverkstäder", "en": "Surrealistic surface! – Art workshops in the summer yard" }, "description": { "fi": "<p>Tule tekemään ihania taidejuttuja Vuotalon kesäpihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Kesäpihan taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Jos sataa ja myrskyää, työpaja siirtyy Vuotalon sisätiloihin</p><p><b>Surrealistinen pinta! -taidepaja klo 10–12</b><br>Teemme värikkäitä pintoja frottaasi-tekniikalla. Frottage, eli frottaasi on surrealistien kehittämä piirustustekniikka. Frottaasi tehdään laittamalla paperi epätasaisen pinnan päälle. Paperia hangataan öljyliidulla niin, että koholla olevat osat saavat väriä. Teemme monta erilaista pintaa ja yhdistämme ne kollaasiksi.</p><p>Työpajoja ohjaa Chloé Mahy-Hulkko<br>Kielet: suomi, englanti, ranska<br>Paikka: Vuotalon kesäpiha</p><p>Vapaa pääsy, ei ennakkoilmoittautumista</p>", "sv": "<p>Kom och skapa underbara konstföremål på Nordhusets sommargård! Verkstäderna är öppna och avgiftsfria för alla och lämpar sig för hela familjen samt för unga.</p><p>I sommargårdens konstverkstäder skapar vi konst med olika teman och tekniker tillsammans. Om det regnar och stormar flyttar verkstaden in i Nordhuset. <br> <br><b>Konstverkstaden Surrealistisk yta! kl. 10–12</b><br>Vi skapar färgglada ytor med tekniken frottage. Frottage är en ritteknik som surrealister utvecklat. Frottage skapas genom att lägga papper på en ojämn yta. Papperet gnuggas med oljekrita så att de upphöjda delarna får färg. Vi skapar många olika ytor och kombinerar dem till ett collage.</p><p>Chloé Mahy-Hulkko leder verkstäderna<br>Språk: finska, engelska, franska<br>Plats: Nordhusets sommargård</p><p>Fritt inträde, ingen förhandsanmälan</p>", "en": "<p>Come and create wonderful works of art in the summer yard of Cultural Centre Vuotalo!</p><p>The workshops are open to everyone, free of charge, and they are suitable for the whole family and for young people.<br>In the art workshops in the summer yard, we will make art together, exploring various themes and techniques. In the event of rain or stormy weather, the workshop will take place inside Vuotalo. <br> <br><b>Art workshop: Surrealistic surface! 10.00–12.00</b><br>We will create colourful surfaces with the frottage technique. Frottage is a drawing technique developed by surrealists. It involves putting a piece of paper on top of an uneven surface. Then, the paper is rubbed with an oil pastel so that the raised sections take on colour. We will create many different surfaces and combine them into a collage.</p><p>The workshops are led by Chloé Mahy-Hulkko<br>Languages: Finnish, English, French<br>Location: Summer yard of Cultural Centre Vuotalo</p><p>Free entry, no advance registration.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/48DD251D20E1FFE92B71D7848587D84F/Surrealistinen_pinta_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/48DD251D20E1FFE92B71D7848587D84F/Surrealistisk_yta_", "en": "http://www.vuotalo.fi/en/events/event/48DD251D20E1FFE92B71D7848587D84F/Surrealistic_surface_" }, "provider": null, "short_description": { "fi": "Tule tekemään ihania taidejuttuja Vuotalon kesäpihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.", "sv": "Kom och skapa underbara konstföremål på Nordhusets sommargård! Verkstäderna är öppna och avgiftsfria för alla och lämpar sig för hela familjen samt för unga.", "en": "Come and create wonderful works of art in the summer yard of Cultural Centre Vuotalo!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66128/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65870", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 651895, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-30T13:14:18.772215Z", "last_modified_time": "2025-04-30T13:14:18.772231Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767269.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/651895/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-04-30T13:14:18.662391Z", "last_modified_time": "2025-04-30T13:14:18.916586Z", "date_published": null, "start_time": "2025-06-09T07:00:00Z", "end_time": "2025-06-09T09: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, "name": { "fi": "Kuka piileskelee väreissä? – Kesäpihan taidepajat", "sv": "Vem gömmer sig i färgerna? – Sommargårdens konstverkstäder", "en": "Who is hiding in the colours? – Art workshops in the summer yard" }, "description": { "fi": "<p>Tule tekemään ihania taidejuttuja Vuotalon kesäpihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.</p><p>Kesäpihan taidepajoissa tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Jos sataa ja myrskyää, työpaja siirtyy Vuotalon sisätiloihin.</p><p><b>Kuka piileskelee väreissä? -taidepaja klo 10–12</b><br>Luomme satunnaisia kuvioita nestemäisellä tussilla paperille esimerkiksi pipetin avulla. Väritahroista etsimme sitten piileskeleviä muotoja, hahmoja, ehkä eläimiä? Mitä sinä näet? Tästä tulee mielikuvitusleikki!</p><p>Työpajoja ohjaa Chloé Mahy-Hulkko<br>Kielet: suomi, englanti, ranska</p><p>Vapaa pääsy, ei ennakkoilmoittautumista</p>", "sv": "<p>Kom och skapa underbara konstföremål på Nordhusets sommargård! Verkstäderna är öppna och avgiftsfria för alla och lämpar sig för hela familjen samt för unga.</p><p>I sommargårdens konstverkstäder skapar vi konst med olika teman och tekniker tillsammans. Om det regnar och stormar flyttar verkstaden in i Nordhuset.</p><p><b>Konstverkstaden Vem gömmer sig i färgerna kl. 10–12</b><br>Vi skapar slumpmässiga figurer med flytande tusch på papper, till exempel med hjälp av en pipett. I färgfläckarna letar vi efter dolda former, gestalter, kanske djur? Vad ser du? Det här blir en fantasilek!</p><p>Chloé Mahy-Hulkko leder verkstäderna<br>Språk: finska, engelska, franska</p><p>Fritt inträde, ingen förhandsanmälan</p>", "en": "<p>Come and create wonderful works of art in the summer yard of Cultural Centre Vuotalo!</p><p>The workshops are open to everyone, free of charge, and they are suitable for the whole family and for young people.</p><p>In the art workshops in the summer yard, we will make art together, exploring various themes and techniques. In the event of rain or stormy weather, the workshop will take place inside Vuotalo.</p><p><b>Art workshop: Who is hiding in the colours? 10.00–12.00</b><br>We will create random patterns on paper with a liquid marker and a pipette, for instance. Then we will look at the stains of colour and search for the shapes, figures and perhaps animals hiding in them. What do you see? This will be a game of imagination!</p><p>The workshops are led by Chloé Mahy-Hulkko<br>Languages: Finnish, English, French</p><p>Free entry, no advance registration.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/91433B8B4B239F8BD8D516920E43BFC7/Kuka_piileskelee_vareissa_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/91433B8B4B239F8BD8D516920E43BFC7/Vem_gommer_sig_i_fargerna_", "en": "http://www.vuotalo.fi/en/events/event/91433B8B4B239F8BD8D516920E43BFC7/Who_is_hiding_in_the_colours_" }, "provider": null, "short_description": { "fi": "Tule tekemään ihania taidejuttuja Vuotalon kesäpihalle! Kaikille avoimet ja maksuttomat työpajat sopivat koko perheelle ja nuorille.", "sv": "Kom och skapa underbara konstföremål på Nordhusets sommargård! Verkstäderna är öppna och avgiftsfria för alla och lämpar sig för hela familjen samt för unga.", "en": "Come and create wonderful works of art in the summer yard of Cultural Centre Vuotalo!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65870/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65706", "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: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: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/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/", "sv": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/", "en": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/" }, "description": null, "price": { "fi": "24,80 € / 18 €", "sv": "24,80 € / 18 €", "en": "24,80 € / 18 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 320899, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-10T15:16:14.267531Z", "last_modified_time": "2025-03-10T15:16:14.267549Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761678.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/320899/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-10T15:16:14.231070Z", "last_modified_time": "2025-04-30T13:14:18.407907Z", "date_published": null, "start_time": "2025-06-07T15: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, "name": { "fi": "Eid al-Adha juhlakonsertti Mais Harbin kanssa – sekä Middle Eastern Ensemble", "sv": "Eid al-Adha festkonsert med Mais Harb – och Middle Eastern Ensemble", "en": "Eid al-Adha Celebration Concert with Mais Harb – and Middle Eastern Ensemble" }, "description": { "fi": "<p>Juhlistakaa kanssamme iloista Eid al-Adhan aikaa, muslimien suurinta juhlaa, jota vietetään ympäri maailman 3–4 päivän ajan.</p><p>Luvassa on unohtumaton musiikki-ilta, jossa esiintyy kuuluisa Mais Harb, jonka vangitseva ääni on hurmannut yleisöjä ympäri maailmaa. Tässä erityisessä konsertissa Mais Harb esiintyy itämaisessa yhtyeessä, jota johtaa Ali Haitham. Yhtye yhdistää perinteiset arabialaiset instrumentit, kuten oud, qanun ja tabla, länsimaisiin soittimiin, kuten piano ja jouset. Ohjelmassa on sekä lauluesityksiä että lumoavia instrumentaalikappaleita, jotka tarjoavat ainutlaatuisen musiikkikokemuksen yhdistämällä idän ja lännen perinteet.</p><p>Mais Harb esittää lauluja Syyriasta, Irakista, Libanonista, Egyptistä ja muualta, jokainen kappale kertoo oman tarinansa ja vie kuulijansa musiikilliselle matkalle Lähi-idän perinteiden sydämeen. Mais Harb on esiintynyt lukuisilla lavoilla Euroopassa ja Lähi-idässä. Hänet tunnetaan voimakkaasta äänestään ja kyvystään luoda yhteys yleisöönsä arabimusiikin kauneuden kautta.</p><p>Tämä on ainutlaatuinen tilaisuus kokea hänen lahjakkuutensa ja arabimaailman ajattomat sävelet yhdessä juhlavassa illassa. Älä jätä väliin tätä mahdollisuutta nauttia Lähi-idän musiikin lumoavasta tunnelmasta ja juhlia Eid al-Adhaa ilon, tunteiden ja yhteisöllisyyden täyteisessä illassa!</p><p>Kesto: 75 min, ei väliaikaa</p>", "sv": "<p>Fira den glada Eid al-Adha, muslimernas största högtid, med oss. Eid al-Adha firas i 3–4 dagar över hela världen.</p><p>Här utlovas en oförglömlig musikkväll med den berömda Mais Harb, vars fängslande röst har charmat publik över hela världen. I den här specialkonserten uppträder Mais Harb med sin österländska grupp som leds av Ali Haitham. Gruppen kombinerar traditionella arabiska instrument, som oud, qanun och tabla, med västerländska instrument som piano och stråkinstrument. På programmet finns både sångframträdanden och förtrollande instrumentala stycken, som skapar en unik musikupplevelse genom att kombinera österländska och västerländska traditioner. <br> <br>Mais Harb framför sånger från Syrien, Irak, Libanon, Egypten och andra länder, och varje sång berättar en egen historia och tar med sig lyssnaren på en musikalisk resa till hjärtat av Mellanösterns traditioner. Mais Harb har uppträtt på många scener i Europa och Mellanöstern. Hon är känd för sin kraftfulla röst och sin förmåga att få kontakt med publiken genom den arabiska musikens skönhet. <br> <br>Det här är ett unikt tillfälle att uppleva hennes begåvning och arabvärldens tidlösa toner tillsammans under en festlig kväll. Missa inte denna chans att njuta av de förtrollande stämningarna i musiken från Mellanöstern och fira Eid-al-Ahda under en kväll fylld av glädje, känslor och gemenskap!</p>", "en": "<p>Celebrate the joyous occasion of Eid al-Adha, the major holiday celebrated by Muslims worldwide for 3 to 4 days.</p><p>Join us for an unforgettable evening of music from across the Middle East, featuring the renowned Mais Harb, whose captivating voice has graced stages around the world. In this special concert, Mais Harb will be joined by a Middle Eastern Ensemble led by Ali Haitham, featuring a unique blend of traditional Arabic instruments such as the Oud, Qanoun, and Tabla, alongside Western instruments like the piano and strings.</p><p>The ensemble will perform not only vocal pieces but also enchanting instrumental melodies, creating a rich musical experience that brings together the best of both Eastern and Western traditions.</p><p>Mais Harb will perform a selection of songs from Syria, Iraq, Lebanon, Egypt, and beyond, each telling a unique story and drawing you into a journey through the region’s musical heritage. Having performed on stages in Europe and the Middle East, Mais Harb is celebrated for her powerful voice and her ability to connect with audiences through the beauty of Arabic music. This is an extraordinary opportunity to experience her talent and the timeless melodies of the Arab world, all in one festive evening.</p><p>Don’t miss this chance to immerse yourself in the heart of Middle Eastern music and celebrate Eid al-Adha with a night full of emotion, joy, and togetherness.</p><p>Duration: 75 min</p>", "ar": "<p>حفلة عيد األضحى مع ميس حرب احتفلوا معنا بهذه المناسبة السعيدة، عيد األضحى المبارك، العيد األكبر الذي يحتفل به المسلمون حول العالم لمدة ثالثة إلى أربعة أيام. ندعوكم لقضاء أمسية موسيقية ال تُنسى مع الفنانة المتميزة ميس حرب، صاحبة الصوت الساحر الذي تألق .على مسارح العالم في هذه الحفلة المميزة، تنضم ميس حرب إلى فرقة شرقية يقودها علي هيثم، حيث تمتزج اآلالت الشرقية التقليدية مثل العود والقانون والطبلة مع اآلالت الغربية كالبيانو واآلالت الوترية. ستقدم الفرقة مجموعة من األغاني الشرقية باإلضافة .إلى مقطوعات موسيقية ساحرة، مما يخلق تجربة موسيقية فريدة تجمع بين تقاليد الشرق والغرب ستؤدي ميس حرب مجموعة مختارة من األغاني السورية والعراقية واللبنانية والمصرية وغيرها، كل أغنية تحمل حكاية .خاصة وتأخذكم في رحلة عبر التراث الموسيقي للمنطقة ميس حرب، التي قدمت عروضاً على مسارح أوروبا والشرق األوسط، معروفة بصوتها القوي وقدرتها على التواصل مع الجمهور من خالل جمال الموسيقى العربية. إنها فرصة استثنائية لالستمتاع بموهبتها وسحر األلحان العربية في ليلة .احتفالية مليئة بالمشاعر والفرح والتواصل !ال تفوتوا هذه الفرصة لالحتفال بعيد األضحى مع أمسية موسيقية ستبقى في الذاكرة</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C31F3295461074FE2393B2058DBCF552/Eid_al-Adha_juhlakonsertti_Mais_Harbin_kanssa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C31F3295461074FE2393B2058DBCF552/Eid_al-Adha_festkonsert_med_Mais_Harb", "en": "http://www.vuotalo.fi/en/events/event/C31F3295461074FE2393B2058DBCF552/Eid_al-Adha_Celebration_Concert_with_Mais_Harb" }, "provider": null, "short_description": { "fi": "Juhlistakaa kanssamme iloista Eid al-Adhan aikaa, muslimien suurinta juhlaa, jota vietetään ympäri maailman 3–4 päivän ajan.", "sv": "Fira den glada Eid al-Adha, muslimernas största högtid, med oss. Eid al-Adha firas i 3–4 dagar över hela världen.", "en": "Celebrate the joyous occasion of Eid al-Adha, the major holiday celebrated by Muslims worldwide for 3 to 4 days." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65706/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65707", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 320898, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-10T15:16:13.932624Z", "last_modified_time": "2025-03-10T15:16:13.932651Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759592.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/320898/?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-03-10T15:16:13.902595Z", "last_modified_time": "2025-04-30T13:14:17.003023Z", "date_published": null, "start_time": "2025-06-02", "end_time": "2025-06-06", "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, "name": { "fi": "Taidefillari – Kesätoimintaviikko: Työpajat ma-pe klo 10–15", "sv": "Konstcykel – Sommaraktivitetsvecka: Verkstäder mån–fre kl. 10–15", "en": "Art bike Taidefillari – Summer activity week: Workshops Mon–Fri 10:00–15:00" }, "description": { "fi": "<p>Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!</p><p>Seikkailutaidekoulu kruisailee taidetarvikkeilla lastatulla kuormapyörällä itähelsinkiläisiin leikkipuistoihin ja ulkotiloihin 2.-6.6.2025.<br> <br>Työpajoissa opetellaan erilaisia leikkisiä ja kokeellisia taidetekniikoita. Mukana on myös hengailuvilttejä, riippumattoja, piirustuspaperia, saippuakuplia ja muita mahdollisuuksia matalan kynnyksen osallistumiseen.</p><p><b>Taidefillarin reitti:</b><br>ma 2.6. klo 10–15 Kulttuuritila Merirasti ja Meri-Rastilan tori<br>ti 3.6. klo 10–12 Haruspuisto & klo 13–15 Aurinkolahden uimaranta <br>ke 4.6. klo 10–15 Leikkipuisto Mustakivi <br>to 5.6. klo 10–15 Leikkipuisto Lohikäärmepuisto <br>pe 6.6. klo 10–15 Vuotalon etupiha</p><p>Ei ennakkoilmoittautumista!<br>Sopii lapsille ja perheille.</p>", "sv": "<p>Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!</p><p>Äventyrskonstskolan åker omkring med en cykel lastad med konstmaterial till lekparkerna i östra Helsingfors 2–6.6.2025.</p><p>I workshopparna lär vi oss en mängd olika lekfulla och experimentella konsttekniker. Med finns också filtar för häng, hängmattor, ritpapper, såpbubblor och andra möjligheter till deltagande med låg tröskel.</p><p><b>Konstcykelns rutt:</b><br>Måndag 2.6 kl. 10–15 Kulturlokalen Merirasti och Havsrastböle torg<br>Tisdag 3.6 kl. 10–12 Stagparken och kl. 13–15 Solviks badstrand <br>Onsdag 4.6 kl. 10–15 Lekparken Svartstenen <br>Torsdag 5.6 kl. 10–15 Lekparken Drakparken <br>Fredag 6.6 kl. 10–15 Nordhusets förgård</p><p>Ingen förhandsanmälan!<br>Lämpar sig för barn och familjer.</p>", "en": "<p>Come and spend summer holidays with us making art on playgrounds!</p><p>Seikkailutaidekoulu cruises on a cargo bike loaded with art supplies to playgrounds and parks in East Helsinki from 2 to 6 June 2025.</p><p>In the workshops, we will learn different playful and experimental art techniques. There are also blankets for hanging out, hammocks, drawing paper, soap bubbles and other opportunities for low-threshold participation.</p><p><b>Route of art bike Taidefillari:</b><br>Mon 2 June, 10.00–15.00 Cultural Space Merirasti and Meri-Rastila Market Square<br>Tue 3 June, 10.00–12.00 Haruspuisto Park and 13.00–15.00 Aurinkolahti beach <br>Wed 4 June, 10.00–15.00 Playground Mustakivi <br>Thu 5 June, 10.00–15.00 Playground Lohikäärmepuisto <br>Fri 6 June, 10.00–15.00 Front yard of Vuotalo</p><p>No advance registration needed!<br>Suitable for children and families.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/28E7F9BEE887812B3FB1820B882232CA/Taidefillari", "sv": "http://www.vuotalo.fi/sv/evenemang/event/28E7F9BEE887812B3FB1820B882232CA/Konstcykel", "en": "http://www.vuotalo.fi/en/events/event/28E7F9BEE887812B3FB1820B882232CA/Art_bike_Taidefillari" }, "provider": null, "short_description": { "fi": "Tule viettämään kanssamme kesälomaa leikkipuistoissa ja ulkona taiteillen!", "sv": "Kom och tillbringa sommarlov med oss i lekparkerna och skapa konst!", "en": "Come and spend summer holidays with us making art on playgrounds!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65707/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64951", "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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 166728, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T15:15:25.229251Z", "last_modified_time": "2025-01-24T15:15:25.229267Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761832.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166728/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-24T15:15:25.186765Z", "last_modified_time": "2025-04-30T13:13:59.937199Z", "date_published": null, "start_time": "2025-04-05", "end_time": "2025-04-29", "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, "name": { "fi": "Origins – dignity and equal chances – Maku Dakar", "sv": "Origins – dignity and equal chances – Maku Dakar", "en": "Origins – dignity and equal chances – Maku Dakar" }, "description": { "fi": "<p>Maku Dakar on senegalilais-suomalainen taiteilija, jonka työt toimivat sillanrakentajina Afrikan ja Pohjoismaiden kulttuurien välillä.</p><p>Makun taide kertoo sekä henkilökohtaisia että kollektiivisia tarinoita, joissa korostuvat monimuotoisuuden, osallisuuden ja yhteisten mahdollisuuksien merkitys. Hänen rohkeat abstraktit sommitelmansa ja yksityiskohtaiset teoksensa ylittävät maantieteellisiä ja kulttuurisia rajoja, tuoden esiin ääniä, jotka usein jäävät marginaaliin. Teoksissaan hän juhlistaa afrikkalaista eleganssia ja inhimillisiä kokemuksia samalla kun pohtii monikulttuurisuutta, yhtenäisyyttä ja yhteiskuntien yhteenkuuluvuutta.</p><p>Hän on vakiinnuttanut asemansa afronordisen taidemuodon lähettiläänä, luoden tiloja, joissa Afrikan diasporan lahjakkuudet Pohjoismaissa tunnustetaan ja voimaannutetaan. Makun taide ilmentää uskoa siihen, että jokaisella, taustasta riippumatta, on oikeus tavoitella mahdollisuuksia ja tulla osaksi yhteiskunnan sosiaalista ja kulttuurista kudelmaa. Tämä sitoutuminen yhteiseen edistymiseen tekee hänen työstään voimakkaan kannanoton yhtenäisyyden ja kulttuurisen kasvun puolesta globaalissa kontekstissa.</p><p>Taiteensa kautta Maku tutkii näitä dialogeja ja keskusteluja, jotka hämärtävät kulttuurin, monimuotoisuuden, monikulttuurisuuden ja yhtenäisyyden rajoja – käyttäen Afrikkaa lähtökohtanaan.</p><p>Kulttuurikeskus Caisan näyttelyiden viittomakielinen opastus 12.4.2025 13:00-14:00 / opas Aino Laiho</p>", "sv": "<p>Maku Dakar är en senegalesisk-finländsk konstnär vars verk fungerar som en bro mellan afrikanska och nordiska kulturer.</p><p>Makus konst berättar både personliga och kollektiva historier, som belyser vikten av mångfald, inkludering och gemensamma möjligheter. Hans djärva abstrakta arrangemang och detaljerade verk korsar geografiska och kulturella gränser och lyfter fram röster som ofta är marginaliserade. Hans verk hyllar den afrikanska elegansen och den mänskliga erfarenheten, samtidigt som de reflekterar över mångkulturalism, enighet och sammanhållningen i samhällen.</p><p>Han har etablerat sig som en ambassadör för den afro-nordiska konstformen och skapar utrymmen där talangerna hos den afrikanska diasporan i de nordiska länderna erkänns och stärks. Makus konst förkroppsligar tron på att alla, oavsett bakgrund, har rätt att ta vara på sina möjligheter och bli en del av samhällets sociala och kulturella väv. Detta engagemang för gemensamma framsteg gör hans arbete till ett kraftfullt ställningstagande för enighet och kulturell tillväxt i ett globalt sammanhang.</p><p>Genom sin konst utforskar Maku dessa dialoger och debatter som suddar ut gränserna för kultur, mångfald, multikulturalism och enighet – med Afrika som utgångspunkt.</p>", "en": "<p>Maku Dakar is a dynamic artist whose work serves as a bridge between African and Nordic cultures, particularly highlighting the Afro-Nordic experience.</p><p>As a Senegalese-Finnish painter living in Finland, his art acts as both a personal and collective narrative that speaks to the importance of diversity, inclusion, and the power of shared opportunities.</p><p>Through his bold abstract compositions and intricate details, Maku’s work transcends geographical and cultural borders, amplifying voices that are often marginalized. His visual artistry not only celebrates African elegance and human experiences but also reflects on multiculturalism, unity, and the interconnectedness of societies. He has established himself as an ambassador for the Afro-Nordic art form, creating spaces where African diaspora talents in the Nordic region are recognized and empowered.</p><p>Maku’s art embodies the belief that everyone, regardless of their background, deserves the chance to pursue opportunities and be woven into the socio-cultural fabric of society. This commitment to collective progress makes his work a powerful statement on fostering unity and cultural growth in a global context.</p><p>He is an ambassador of the Afro-Nordic art form, blending African and Nordic culture, and diversity through his visual artistry. Maku Highlights shadowed talents within the African diaspora in Nordics and amplifies the voices of the disenfranchised and the voiceless.</p><p>Maku's art tells a story of reaching for opportunities as a collective effort to create pathways, ensuring that everyone, regardless of background and ethnicity can actively pursue and benefit from society through the lines that connect us. This shared commitment enhances the cultural and socio-economic fabric, fostering a community where diverse talents are recognized and nurtured.</p><p>Through his art, Maku explores these dialogues and conversations that blur the lines of culture, diversity, multiculturalism, and unity—using Africa as his origin.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/48A7F86A1A15D7128519DC5EEA147CF3/Origins_dignity_and_equal_chances", "sv": "http://www.caisa.fi/sv/evenemang/event/48A7F86A1A15D7128519DC5EEA147CF3/Origins_dignity_and_equal_chances", "en": "http://www.caisa.fi/en/events/event/48A7F86A1A15D7128519DC5EEA147CF3/Origins_dignity_and_equal_chances" }, "provider": null, "short_description": { "fi": "Maku Dakar on senegalilais-suomalainen taiteilija, jonka työt toimivat sillanrakentajina Afrikan ja Pohjoismaiden kulttuurien välillä.", "sv": "Maku Dakar är en senegalesisk-finländsk konstnär vars verk fungerar som en bro mellan afrikanska och nordiska kulturer.", "en": "Maku Dakar is a dynamic artist whose work serves as a bridge between African and Nordic cultures, particularly highlighting the Afro-Nordic experience." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64951/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65407", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153697, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-08T12:14:26.826881Z", "last_modified_time": "2025-01-08T12:14:26.826896Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761673.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153697/?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-01-08T12:14:26.772367Z", "last_modified_time": "2025-04-30T11:14:05.001209Z", "date_published": null, "start_time": "2025-05-06T11:00:00Z", "end_time": "2025-05-06T13: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, "name": { "fi": "Desirée Saarela: Annanland – Seniornätverksevenemang", "sv": "Desirée Saarela: Annanland – Seniornätverksevenemang", "en": "Desirée Saarela: Annanland – Seniornätverksevenemang" }, "description": { "fi": "<p>Annanland on Toinen maa, kuin kaihoisa tunne jostakin muusta, paikasta tai ihmisestä. Muutoksesta parempaan, johonkin mistä ei vielä tiedäkään.</p><p>Kulkemisesta eteenpäin, kohti etsimänsä. Se on paikka, jossa saa uskoa ilman selityksiä, kuunnella sisäistä ääntään, kehittyä. Désiréen tuohon mystiseen maahan ovat siivittäneet muut taiteilijat töidensä, maalaustensa ja elämäntarinoidensa kautta. Kirjeet, joissa taiteilijat ovat avanneet ajatuksiaan ja tuntemuksiaan omin sanoin.</p><p>Désiréen kappaleet ammentavat kuvataiteesta ja sen herättämistä visuaalisista tunne-elämyksistä. Inspiraationlähteinä ovat esimerkiksi Tove Jansson, Vincent van Gogh, Gustav Klimt, Egon Schiele ja Marc Chagall. Jotta ymmärtäisimme ”ulkopuolista”, meidän on ensin ymmärrettävä itseämme – sitä mikä tekee meistä meidät. Matkalla uuteen ja tuntemattomaan teemme samalla matkaa myös sisimpäämme ja näemme itsemme kirkkaammin. Tätä kaikkea Annanland edustaa.</p><p>Désirée Saarela – laulu, kitara, cavaco<br>Digitaaliset gobeliinit, kuvitus ja animaatiot – Malin Skinnar, Ruotsi</p><p>Konsertti on ruotsinkielisen Senioriverkoston tapahtuma. Tapahtumassa on pullakahvit ja infotori. Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Huomaa, että metro ei kulje perille asti Vuosaareen ajalla 5.5.–29.9. johtuen korjaustöistä Vuosaaren ja Rastilan metroasemilla, mutta Itäkeskuksesta Vuosaareen kulkee lisälinja 99V metron aikataulujen mukaisesti!</p><p>Järj. Seniornätverket yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Annanland kan vara en plats, en känsla, en längtan, en förnimmelse, en människa, en tillvaro.</p><p>En förändring till det bättre, det okända, viljan att komma vidare, hitta det man letar efter.</p><p>Annanland kan vara att våga tro, det osagda, lyssna till rösten inuti, att utvecklas. Annanland är också det Désirée har upplevt i olika konstnärers arbeten, målningar och livshistorier samt brev där deras egna tankevärldar och liv öppnat sig direkt.</p><p>Konst och konstnärer som inspirerat Désirée att skapa och göra sånger utifrån deras visuella känslovärldar. Konstnärer som Tove Jansson, Vincent van Gogh, Gustav Klimt, Egon Schiele och Marc Chagall. För att kunna förstå det vi ser på ”utsidan”, ”utåt” så måste vi också våga blicka inåt och iaktta det vi har på insidan. Att bege sig av till nya platser brukar även kräva att vi reser i oss själva och allt detta blir till Annanland.</p><p>Désirée Saarela - sång, gitarr, cavaquinho<br>Visuella digitala gobelänger, konst och animation - Malin Skinnar, Sverige</p><p>Konserten är ett Seniornätverks-evenemang. Kaffeservering, infotorg. Fritt inträde, ingen förhandsanmälan.</p><p>Observera att metron inte går ända fram till Nordsjö under tiden 5.5-29.9 på grund av reparationsarbeten vid Nordsjö och Rastböle metrostationer, men det går extra insatta bussar 99V från Östra centrum till Nordsjö enligt metrons tidtabeller!</p><p>Arr. Seniornätverket i samarbete med Nordhuset.</p>", "en": "<p>Annanland (Otherland) can be a place, feeling, longing, inkling, person, being.</p><p>A change for the better, the unknown, the desire to move forward, to find what you are looking for. Annanland can be daring to believe, the unsaid, listening to your inner voice, developing. Annanland is also what Désirée has experienced in various artists’ work, paintings and life stories as well as letters that open up their thoughts and lives.</p><p>Art and artists are what inspired Désirée to create and write songs on the basis of their visual emotional worlds. Artists such as Tove Jansson, Vincent van Gogh, Gustav Klimt, Egon Schiele and Marc Chagall. To be able to understand what we see on the “outside”, “outwards” we have to look inwards and examine what we have on the inside. In order to go to new places, we usually have to travel inside ourselves, and this is what turns into Annanland.</p><p>Désirée Saarela – song, guitar, cavaquinho<br>Visual digital hangings, art and animation – Malin Skinnar, Sweden</p><p>The consert is a Seniornetwork-event in swedish. Also coffee and info-square. Free entry, no pre-booking in advance.</p><p>Please note that the metro will not run all the way to Vuosaari between May 5 and September 29 due to repair work at the Vuosaari and Rastila metro stations. However, replacement buses (line 99V) will run from Itäkeskus to Vuosaari according to the metro timetable!</p><p>Org. By Seniornätverket in cooperation with Vuotalo.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DC74902075D8E071E12323447A873E0F/Desir_e_Saarela_Annanland", "sv": "http://www.vuotalo.fi/sv/evenemang/event/DC74902075D8E071E12323447A873E0F/Desir_e_Saarela_Annanland", "en": "http://www.vuotalo.fi/en/events/event/DC74902075D8E071E12323447A873E0F/Desir_e_Saarela_Annanland" }, "provider": null, "short_description": { "fi": "Annanland on Toinen maa, kuin kaihoisa tunne jostakin muusta, paikasta tai ihmisestä. Muutoksesta parempaan, johonkin mistä ei vielä tiedäkään.", "sv": "Annanland kan vara en plats, en känsla, en längtan, en förnimmelse, en människa, en tillvaro.", "en": "Annanland (Otherland) can be a place, feeling, longing, inkling, person, being." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65407/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23beo4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490344, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-30T10:31:22.445359Z", "last_modified_time": "2025-04-30T10:31:22.445379Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/46805a7e-ec6c-45a3-a626-a65128d838aa.jpg", "cropping": "280,0,1000,720", "photographer_name": "Kuva Thomas Schmucker-Draehne Pixabaystä", "alt_text": "Kuvassa on Playstation 4 konsolin ohjain.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490344/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-04-30T10:44:53.666753Z", "last_modified_time": "2025-04-30T10:44:53.666769Z", "date_published": null, "start_time": "2025-05-24T09:00:00Z", "end_time": "2025-05-24T12: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, "name": { "fi": "Kirjastojen välisen FC 25 -turnauksen finaalipelit", "sv": "Finalen i FC 25:s turnering mellan biblioteken", "en": "FC 25 inter-library tournament finals" }, "description": { "fi": "<p>Tervetuloa seuraamaan kirjastojen välisen FC 25 -turnauksen finaalia Sellon kirjastoon. Turnauksessa otetaan selvää ketkä ovat Espoon taitavimmat pelaajat. Turnauksessa on oma sarja alakoululaisille ja 12-20-vuotiaille. Finaalipelit pelataan kirjaston lavalla. Tapahtumassa voit osallistua jalkapalloaiheiseen tietokilpailuun, sekä lainata jalkapalloaiheista aineistoa.</p>", "sv": "<p>Välkommen till finalen i FC 25-turneringen mellan biblioteken på Sellobiblioteket. I turneringen avgörs vilka som är de skickligaste spelarna i Esbo. Turneringen har en separat serie för lågstadiebarn och 12-20-åringar. Finalmatcherna spelas på bibliotekets scen. På evenemanget kan du delta i ett fotbollsfrågesport och låna fotbollsrelaterat material.</p>", "en": "<p>Welcome to the final of the FC 25 inter-library tournament at Sello Library. The tournament will find out who are the most skilful players in Espoo. The tournament has a separate series for primary school children and 12-20 year olds. The final games will be played on the library's stage. At the event, you can take part in a football quiz and borrow football-related material.</p>" }, "location_extra_info": { "fi": "Lava", "sv": "Stage", "en": "Stage" }, "provider_contact_info": null, "info_url": null, "provider": null, "short_description": { "fi": "Kirjastojen välisen FC 25 -turnauksen finaalipelit", "sv": "Finalen i FC 25:s turnering mellan biblioteken", "en": "FC 25 inter-library tournament finals" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23beo4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66093", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3885556", "sv": "https://www.lippu.fi/eventseries/name-3885556", "en": "https://www.lippu.fi/eventseries/name-3885556" }, "description": null, "price": { "fi": "17,80-38,90 €, kannatuslippu 65,60 €", "sv": "17,80-38,90 €, kannatuslippu 65,60 €", "en": "17,80-38,90 €, kannatuslippu 65,60 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 650570, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-30T09:14:08.664674Z", "last_modified_time": "2025-04-30T09:14:08.664693Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771474.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/650570/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-30T09:14:08.543526Z", "last_modified_time": "2025-04-30T09:14:08.784469Z", "date_published": null, "start_time": "2025-10-08T16: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, "name": { "fi": "KUMO x Flok x Kuvaja: KOLM3", "sv": "KUMO x Flok x Kuvaja: KOLM3", "en": "KUMO x Flok x Kuvaja: KOLM3" }, "description": { "fi": "<p>Suomalaisen a cappellan uuden sukupolven yhtyeet yhdessä</p><p><b>KUMO, Flok</b> ja <b>Kuvaja</b>, kolme suomalaista uuden sukupolven a cappella -huippuyhtyettä, yhdistävät voimansa ainutlaatuisessa konsertissa Savoy-teatterissa 8.10.2025. Ilta on todellista vokaalimusiikin juhlaa, kun kolme erilaista yhtyettä sulautuvat yhdeksi vaikuttavaksi kokonaisuudeksi. Lavalla vuorottelevat suurkokoonpano, yhtyeet, sekä vain tätä iltaa varten muodostetut ensemblet.</p><p><b>KUMO</b> tunnetaan kokeellisesta lähestymistavastaan, jossa a cappella -musiikki yhdistyy saumattomasti elektronisiin elementteihin ja pohjoismaisiin äänimaisemiin. <b>Flok</b> tuo konserttiin mukaansatempaavan pop-soundinsa, tarttuvat melodiat ja modernin otteen. <b>Kuvaja</b> taas tunnetaan herkistä ja syvällisistä tulkinnoistaan, joissa ajatus musiikin hoitavasta voimasta on taiteellisen työn keskiössä. Konsertissa omaleimaiset yhtyeet pääsevät loistamaan yksilöllisellä tyylillään, ja niiden risteyskohdassa syntyy jotain uutta ja ainutkertaista: <b>KOLM3</b>.</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>Nästa generation av finsk a cappella – tillsammans.</p><p><b>KUMO, Flok</b> och <b>Kuvaja</b> – tre av Finlands främsta a cappella-grupper ur den nya generationen – förenar sina krafter i en unik konsert på Savoyteatern den 8 oktober 2025. Det blir en sann hyllning till vokalmusiken när tre olika grupper smälter samman till en kraftfull helhet. På scenen växlas det mellan storensemble, varje grupp för sig, och specialensembler som skapats just för denna kväll.</p><p><b>KUMO</b> är kända för sitt experimentella uttryck där a cappella möter elektroniska element och nordiska ljudlandskap. <b>Flok</b> bidrar med sin medryckande popsound, sina starka melodier<br>och sin moderna känsla. <b>Kuvaja</b> är å andra sidan kända för sina känsliga och djupgående tolkningar, där tanken om musikens helande kraft står i centrum.<br>I den här konserten får varje grupp lysa med sitt unika sound – och där de möts uppstår något nytt och unikt: <b>KOLM3</b>.</p><p>Längd ca 2 h 30 min, inkl. paus</p><p>Parkett F18 servering av alkoholdrycker. Balkong T, ingen servering av alkoholdrycker.</p>", "en": "<p>The next generation of Finnish a cappella – together.</p><p><b>KUMO, Flok</b> and <b>Kuvaja</b>, three of Finland's top a cappella groups from the new generation, are joining forces for a unique concert at the Savoy Theatre on October 8, 2025. The evening will be a true celebration of vocal music as the three different groups merge into one powerful experience. On stage, there will be large ensembles, the groups themselves, and special ensembles formed just for this night.</p><p><b>KUMO</b> is known for its experimental approach, blending a cappella music seamlessly with electronic elements and Nordic soundscapes. <b>Flok</b> brings an engaging pop sound, catchy melodies, and a modern touch to the concert. <b>Kuvaja</b> is known for its sensitive and deep interpretations, where the idea of music's healing power is at the core of their artistic work. In this concert, each group will shine with its own sound — and where they meet, something new will be born: <b>KOLM3</b>.</p><p>Duration approx. 2 h 30 min, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/3FA9757B3CD09BE4A645D2FB426D3B99/KUMO_x_Flok_x_Kuvaja_KOLM3", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/3FA9757B3CD09BE4A645D2FB426D3B99/KUMO_x_Flok_x_Kuvaja_KOLM3", "en": "http://www.savoyteatteri.fi/en/events/event/3FA9757B3CD09BE4A645D2FB426D3B99/KUMO_x_Flok_x_Kuvaja_KOLM3" }, "provider": { "fi": "Helsinki a cappella ry", "sv": "Helsinki a cappella ry", "en": "Helsinki a cappella ry" }, "short_description": { "fi": "Suomalaisen a cappellan uuden sukupolven yhtyeet yhdessä", "sv": "Nästa generation av finsk a cappella – tillsammans.", "en": "The next generation of Finnish a cappella – together." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66093/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23bfaq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490363, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-04-30T07:58:11.687422Z", "last_modified_time": "2025-04-30T07:58:11.687436Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/ba1714a3-e7b6-43b9-a07a-e3f99fc3213c.jpg", "cropping": "80,0,560,480", "photographer_name": "", "alt_text": "Teos on Espoon kuvataidekoulun opiskelijan piirtämä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490363/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-30T08:08:17.614543Z", "last_modified_time": "2025-04-30T08:08:17.614561Z", "date_published": null, "start_time": "2025-05-02T05:00:00Z", "end_time": "2025-05-27T17: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, "name": { "fi": "Kurkistuksia lasten maailmaan: 5–18-vuotiaat kuvataidekoululaiset", "sv": "Konstutställning av Esbo konstskola", "en": "Art exhibition by Espoo school of art" }, "description": { "fi": "<p>Miltä lasten ja nuorten maailmassa näyttää? Miten he kertovat elämästään kuvallisesti? Millaisia mielikuvitusmaailmoita lapset keksivät? Entä millaisia huonekaluja tai robotteja lapset suunnittelisivat, jos saisivat itse päättää? </p><p><br></p><p>Näyttelyyn on koottu teoksia 5–18-vuotiailta Espoon kuvataidekoulun Espoonlahden opetuspisteen oppilailta. Teokset on toteutettu maalaten, piirtäen, rakennellen ja valokuvaten. </p><p><br></p><p>Teoksia yhdistävänä punaisena lankana on lasten ja nuorten näkemys ja kokemus maailmasta: miltä maailma näyttää lasten silmin, ja miten sitä voisi kehittää kiinnostavammaksi.</p><p><br></p><p>Espoon kuvataidekoulu tarjoaa kuvataiteen ja käsityön (muotoilun) perusopetusta 4–20-vuotiaille sekä kuviskerhoja alakoululaisille eri puolilla Espoota sijaitsevissa opetuspisteissä. Uusien oppilaiden hakuaika Kuviksen lukuvuoden 2025–2026 opetukseen on käynnissä! </p><p><br></p><p><a href=\"www.espoonkuvis.fi\">www.espoonkuvis.fi</a></p>", "sv": "<p>Utställningen består av verk av elever i åldern 5-18 år från Esbovikens konstskolas undervisningsgrupp. Välkommen till utställningen!</p>", "en": "<p>The exhibition consists of works by students aged 5-18 from the Espoonlahti region Art School teaching group. Welcome to the exhibition!</p>" }, "location_extra_info": { "fi": "Näyttelyseinä", "sv": "Näyttelyseinä", "en": "Näyttelyseinä" }, "provider_contact_info": null, "info_url": null, "provider": null, "short_description": { "fi": "Näyttelyyn on koottu teoksia 5–18-vuotiailta Espoon kuvataidekoulun Espoonlahden opetuspisteen oppilailta. Tervetuloa!", "sv": "Utställningen består av verk av elever i åldern 5-18 år från Esbovikens konstskolas undervisningsgrupp. Välkommen till utställningen!", "en": "The exhibition consists of works by students aged 5-18 from the Espoonlahti region Art School teaching group. Welcome to the exhibition!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bfaq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23bfru", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bgnq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490364, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-02-13T12:48:32.804889Z", "last_modified_time": "2025-02-13T12:48:32.804906Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/a8e8befa-8db0-4e2d-90fd-077c62d18b51.jpg", "cropping": "214,0,1066,853", "photographer_name": "Kuva TheAndrasBarta Pixabaystä", "alt_text": "Kuvassa lautapeli noppia ja pelinappuloita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490364/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-04-30T06:29:32.306138Z", "last_modified_time": "2025-04-30T06:29:32.306155Z", "date_published": null, "start_time": "2025-05-28T12:30:00Z", "end_time": "2025-05-28T15: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, "name": { "fi": "Pöytäroolipelikerho", "sv": "Bord Rollspelsklubb", "en": "Table Roleplaying Club" }, "description": { "fi": "<p>Tervetuloa tutustumaan ja uppoutumaan pöytäroolipelien maailmaan! Kerho on tarkoitettu 12-20 -vuotiaille nuorille, keskiviikkoisin klo 15.30-18 Pointissa.</p>", "sv": "<p>Välkommen att upptäcka och fördjupa dig i bordsrollspelens värld! Klubben är för ungdomar i åldern 12-20 år, onsdagar 15.30-18 på Pointti.</p>", "en": "<p>Welcome to discover and immerse yourself in the world of table role-playing games! The club is for young people aged 12-20, Wednesdays 15.30-18 at Pointti.</p>" }, "location_extra_info": { "fi": "Pointti", "sv": "Pointti", "en": "Pointti" }, "provider_contact_info": null, "info_url": null, "provider": { "fi": "Nuori Espoo", "sv": "Nuori Espoo", "en": "Nuori Espoo" }, "short_description": { "fi": "Pöytäroolipelikerho", "sv": "Bord Rollspelsklubb", "en": "Table Roleplaying Club" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bfru/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23bgaa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bgnq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490364, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-02-13T12:48:32.804889Z", "last_modified_time": "2025-02-13T12:48:32.804906Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/a8e8befa-8db0-4e2d-90fd-077c62d18b51.jpg", "cropping": "214,0,1066,853", "photographer_name": "Kuva TheAndrasBarta Pixabaystä", "alt_text": "Kuvassa lautapeli noppia ja pelinappuloita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490364/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-04-30T06:29:32.197399Z", "last_modified_time": "2025-04-30T06:29:32.197415Z", "date_published": null, "start_time": "2025-05-21T12:30:00Z", "end_time": "2025-05-21T15: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, "name": { "fi": "Pöytäroolipelikerho", "sv": "Bord Rollspelsklubb", "en": "Table Roleplaying Club" }, "description": { "fi": "<p>Tervetuloa tutustumaan ja uppoutumaan pöytäroolipelien maailmaan! Kerho on tarkoitettu 12-20 -vuotiaille nuorille, keskiviikkoisin klo 15.30-18 Pointissa.</p>", "sv": "<p>Välkommen att upptäcka och fördjupa dig i bordsrollspelens värld! Klubben är för ungdomar i åldern 12-20 år, onsdagar 15.30-18 på Pointti.</p>", "en": "<p>Welcome to discover and immerse yourself in the world of table role-playing games! The club is for young people aged 12-20, Wednesdays 15.30-18 at Pointti.</p>" }, "location_extra_info": { "fi": "Pointti", "sv": "Pointti", "en": "Pointti" }, "provider_contact_info": null, "info_url": null, "provider": { "fi": "Nuori Espoo", "sv": "Nuori Espoo", "en": "Nuori Espoo" }, "short_description": { "fi": "Pöytäroolipelikerho", "sv": "Bord Rollspelsklubb", "en": "Table Roleplaying Club" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bgaa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23bgnq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bfru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bgaa/?format=api" } ], "images": [ { "id": 1490364, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-02-13T12:48:32.804889Z", "last_modified_time": "2025-02-13T12:48:32.804906Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/a8e8befa-8db0-4e2d-90fd-077c62d18b51.jpg", "cropping": "214,0,1066,853", "photographer_name": "Kuva TheAndrasBarta Pixabaystä", "alt_text": "Kuvassa lautapeli noppia ja pelinappuloita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490364/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-04-30T06:29:31.301571Z", "last_modified_time": "2025-04-30T06:29:31.301589Z", "date_published": null, "start_time": "2025-05-07T12:30:00Z", "end_time": "2025-05-28T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pöytäroolipelikerho", "sv": "Bord Rollspelsklubb", "en": "Table Roleplaying Club" }, "description": { "fi": "<p>Tervetuloa tutustumaan ja uppoutumaan pöytäroolipelien maailmaan! Kerho on tarkoitettu 12-20 -vuotiaille nuorille, keskiviikkoisin klo 15.30-18 Pointissa.</p>", "sv": "<p>Välkommen att upptäcka och fördjupa dig i bordsrollspelens värld! Klubben är för ungdomar i åldern 12-20 år, onsdagar 15.30-18 på Pointti.</p>", "en": "<p>Welcome to discover and immerse yourself in the world of table role-playing games! The club is for young people aged 12-20, Wednesdays 15.30-18 at Pointti.</p>" }, "location_extra_info": { "fi": "Pointti", "sv": "Pointti", "en": "Pointti" }, "provider_contact_info": null, "info_url": null, "provider": { "fi": "Nuori Espoo", "sv": "Nuori Espoo", "en": "Nuori Espoo" }, "short_description": { "fi": "Pöytäroolipelikerho", "sv": "Bord Rollspelsklubb", "en": "Table Roleplaying Club" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bgnq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19667085", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3802086/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667085/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667085/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667085/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235446, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:17:07.867833Z", "last_modified_time": "2025-02-17T11:17:07.867850Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/dc/10/hkt-kaunotarja-hirviot222-tickets_342444_2945406_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235446/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:13.575641Z", "last_modified_time": "2025-04-30T06:16:32.619076Z", "date_published": null, "start_time": "2025-04-29T15: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, "name": { "fi": "Kaunotar Ja Hirviöt" }, "description": { "fi": "<p>Sinna Virtanen<br><strong>KAUNOTAR JA HIRVIÖT</strong></p><p>Kaunotar ja hirviöt on true crimesta ja mysteerinäytelmästä ammentava teos, joka sijoittuu piirrossatuelokuvista tuttuun vinksahtaneeseen fantasiakylään.</p><p>Näytelmä purkaa ja kertoo uudestaan kertomusta Kaunottaresta ja Hirviöstä, jonka ensimmäinen julkaistu versio on Gabrielle-Suzanne Barbot de Villeneuven vuodelta 1740.</p><p>Teos lainaa, varastaa ja väärentää eri versioita saduista yhdistellen söpöä ja makaaberia, kinkyä ja pikkusievää, pahaa ja enkelimäistä. Sadun eri versioiden alle piiloutuu tosimaailmassa tapahtunut erästä italialaista kyläyhteisöä vuonna 2012 järkyttänyt nuoren naisen raaka murhatapaus.</p><p>Teos tarkastelee draamanjanoamme sekä saduissa ja uutisissa toistuvia myrkyllisiä asetelmia.</p><p>Kaunotar ja hirviöt on eeppinen tutkielma surusta ja sen myymisestä. Esitys kysyy, voiko sadusta paeta menettämättä henkeään tai ainakin itseään.</p><p>Kaunotar ja hirviöt on palkitun näytelmäkirjailijan Sinna Virtasen (s.1987) kevyesti päivitetty kandidaatin näytelmä Teatterikorkeakoulusta vuodelta 2012.</p><p>Teoksen ohjaa Linda Wallgren (s.1988) yksi nuoren polven kiinnostavimmista ohjaajista, jonka edelliset työt on palkittu Tiedonjulkistamisen valtionpalkinnolla (2022) sekä Eino Kalima- ohjaajapalkinnolla (2024). Näyttämöllä Teatterikorkeakoulun näyttelijäntaiteen 3. vuosikurssi.</p><p>Rooleissa: Sonja Arffman, Heidi Finnberg, Elina Kanerva, Mikael Karvia, Väinö Lehtinen, Miriam Mekhane, Yosef Nousiainen, Rebecca Nugent, Iina Nyländen, Pablo Ounaskari, Milla Palin, Janika Suopanki Kirjailija: Sinna Virtanen</p><p>Ohjaaja: Linda Wallgren Lavastus: Sanna Levo<br>Pukusuunnittelu: Kaisa Savolainen (Aalto ARTS)<br>Valosuunnittelu: Aku Lahti<br>Äänisuunnittelu: Juri Jänis (TeaK, taiteellinen opinnäyte, TeM)<br>Naamioinnin suunnittelu: Henri Karjalainen</p>" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "provider_contact_info": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Sinna Virtanen KAUNOTAR JA HIRVIÖT Kaunotar ja hirviöt on true crimesta ja mysteerinäytelmästä ammentava teos, joka sijoittuu piirrossatuelokuvista tuttuun vink" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667085/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19569259", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3790487/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569259/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569259/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569259/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235448, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:17:13.489586Z", "last_modified_time": "2025-02-17T11:17:13.489604Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/agora_hkt_222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235448/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:13.463595Z", "last_modified_time": "2025-04-30T06:16:32.486654Z", "date_published": null, "start_time": "2025-04-29T15: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, "name": { "fi": "Agora - Kaksi Merenneitoa Tyhjässä Altaassa Ensi-Ilta" }, "description": { "fi": "<p> Minna Lund & työryhmä<br><strong>AGORA - KAKSI MERENNEITOA TYHJÄSSÄ ALTAASSA</strong></p><p> <br> Agora – kaksi merenneitoa tyhjässä altaassa on kuriton esitys, jossa lahjoituksena saadun patsaan julkistustilaisuus eskaloituu yleisön mukaansa tempaavaksi kyltymättömäksi vesileikiksi.</p><p> <br> Helsingin Kaupunginteatterin eteen on ilmestynyt tuntemattoman taiteilijan arvoituksellinen taidelahjoitus. Lahjoituksen myötä teatteriin on perustettu kiireen vilkkaa patsastoimikunta, jonka jäsenet ovat päättäneet pitää veistoksen ja pystyttää sen väliaikaisesti studio Pasilan näyttämölle. Veistoksen mielleyhtymät radikaalista ystävyydestä ovat kuitenkin uineet toimikunnan sydämiin, ja nyt toimikunta haluaa omistaa veistoksen Helsingin Kaupunginteatterin uskolliselle yleisölle</p><p> <br> <br> Kutsu: Lämpimästi tervetuloa Agora – kaksi merenneitoa tyhjässä altaassa -patsaan julkistustilaisuuteen</p><p> Pyydämme kunnioittaen Teitä, Helsingin Kaupunginteatterin arvovaltainen katsoja, läsnä olemaan julkistustilaisuudessa studio Pasilassa keväällä 2025. Luvassa on puheita, musiikkia, ja muita juhlallisuuksia.</p><p> Astukaa Agoralle ja tulkaa kohottamaan kanssamme taiteen ylitsevuotava malja!</p><p> Kyltymättöminä odotamme Teitä,</p><p> Patsastoimikunta:<br>Kari Arffman (teatterinjohtaja),<br>Leenamari Unho (kiinnitetty näyttelijä),<br>Riikka Thitz (Nykyesityksen näyttämön kuraattori)</p><p>*Agora (m.kreik. ἀγορά)<br>subst. kauppa-aukio tai kokoontumispaikka vars. kaupungeissa tm. asutuskeskuksissa; yl. aukio.</p><p> </p><p> Esiintyjät: Emelie Zilliacus, Salla Loper, Leenamari Unho</p><p> Ohjaaja: Minna Lund<br>Lavastaja: Riku Suvitie<br>Pukusuunnittelija: Ella Snellman<br>Valosuunnittelija: Tuomas Honkanen<br>Äänisuunnittelija: Axel Ridberg<br>Naamioinnin suunnittelu: Noora Laukkanen<br>Dramaturgi: Martta Jylhä</p>" }, "location_extra_info": { "fi": "Studio Pasila" }, "provider_contact_info": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Minna Lund & työryhmä AGORA - KAKSI MERENNEITOA TYHJÄSSÄ ALTAASSA Agora – kaksi merenneitoa tyhjässä altaassa on kuriton esitys, jossa lahjoituksena saadun pats" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19569259/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19350669", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748841/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350669/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350669/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350669/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235431, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:41.456387Z", "last_modified_time": "2025-02-17T11:16:41.456408Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/eyp-lp-222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235431/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:13.224084Z", "last_modified_time": "2025-04-30T06:16:32.351736Z", "date_published": null, "start_time": "2025-04-29T15: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, "name": { "fi": "Eikä Yksikään Pelastunut" }, "description": { "fi": "<p>Agatha Christie<br><strong>Eikä yksikään pelastunut</strong></p><p>Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri. Tehokas, hyvin rakennettu ja perinteinen jännitysnäytelmä on Agatha Christietä parhaimmillaan.</p><p>Agatha Christien klassikkodekkari Eikä yksikään pelastunut vie Devonin rannikolle Soldier Islandille, jonne kymmenen ihmistä on saanut kutsun. Kun seurue saapuu paikalle, ilmenee, että isäntäpari ei ole vielä saapunut. Takan reunalta löytyy vanha loru kymmenestä sotilaspojasta sekä kymmenen sotilaspatsasta.</p><p>Lorussa jokainen sotilaspoika kuolee, yksi kerrallaan. Pian käynnistyy äänilevy, jossa jokaista vierasta ja talon palvelijoita syytetään murhista.</p><p>Sitten seurueen jäseniä alkaa kuolla.</p><p>Jokaisen kuolemantapauksen yhteydessä häviää yksi kymmenestä posliinisesta sotilaspoikapatsaasta.</p><p>Kunnes jäljellä ei ole yhtäkään.</p><p>Karmivan kiehtova dekkari tarjoaa intensiivisen parituntisen Arena-näyttämöllä, joka on todistanut paikkansa jännitysnäytelmien ykkösnäyttämönä. Arena-näyttämön intiimissä tunnelmassa nautittiin supersuosittu Agatha Christien Hiirenloukku syksyllä 2023.</p><p>Rooleissa: Anna Ackerman, Jesse Gyllenbögel, Heidi Herala, Arttu Kapulainen, Juha Jokela, Santeri Kinnunen, Jouko Klemettilä, Pertti Koivula, Jari Pehkonen Kaisa Torkkel, Mikko Virtanen</p><p>Kirjailija: Agatha Christie<br>Suomentaja: Aino Piirola<br>Ohjaus: Sakari Hokkanen<br>Lavastus: Katariina Kirjavainen<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Jaana Nykänen<br>Dramaturgi: Sanna Niemeläinen</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br>Lipunvälittäjä: Lippupiste Oy<br></p>" }, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "provider_contact_info": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Agatha Christie Eikä yksikään pelastunut Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350669/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19036797", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036797/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036797/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036797/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.124713Z", "last_modified_time": "2025-02-17T11:16:42.124728Z", "name": "", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:13.112870Z", "last_modified_time": "2025-04-30T06:16:32.210014Z", "date_published": null, "start_time": "2025-04-29T15: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, "name": { "fi": "Moulin Rouge! Musikaali" }, "description": { "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Wilhelm Blomberg, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>", "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider_contact_info": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin," }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036797/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65944", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 643659, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-29T12:14:03.437842Z", "last_modified_time": "2025-04-29T12:14:03.437857Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769471.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/643659/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-29T12:14:03.325433Z", "last_modified_time": "2025-04-29T13:13:52.668362Z", "date_published": null, "start_time": "2025-06-06", "end_time": "2025-08-03", "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, "name": { "fi": "Terike Haapoja: Kaikkien eläinten työväenliike", "sv": "Terike Haapoja: Arbetarrörelsen för alla djur", "en": "Terike Haapoja: Labor Movement for All Animals" }, "description": { "fi": "<p>Vielä 1800-luvun lopulla sosialismi ja varhainen eläinoikeus- ja luonnonsuojeluaate kulkivat rinta rinnan.</p><p>Lajienvälinen solidaarisuus kuitenkin katkesi humanistisen tulkinnan ottaessa vallan vasemmistolaisessa perinteessä. Eläinsuojeluaate leimattiin porvariston harrastukseksi, ja teollistumisen myötä eläimet nähtiin osana tuotantovälineitä, joiden tuottaman lisäarvon hallinnasta vasemmisto kamppaili. 2000-luvulle tultaessa luonnon ja eläinten hyväksikäytön seuraukset ovat kaikkien nähtävillä.</p><p>Vasemmistolaisen politiikan ja lajienvälisyyden tunnustavan posthumanistisen ajattelun välillä vallitsee kuitenkin yhä kuilu, ensin mainitun keskittyessä ihmisten välisiin luokkakysymyksiin, ja jälkimmäisen ihmiskeskeisen ideologian kritiikkiin.</p><p>Kaikkien eläinten työväenliike uudelleenkirjoittaa työväenliikkeen historiaa monilajisen politiikan näkökulmasta. Minkälainen tarina on kapitalismin historia, jos toiset eläimet nähdään osana sorrettua työväenluokkaa? Miltä olisi näyttänyt työväenliike, jos eläinoikeusaate olisi ollut alusta saakka sen osa? Miltä näyttäisi nykyinen keskustelu ihmisen ja luonnon välisen yhteyden korjaamisesta, jos sen perustana olisi kapitalismikriittinen talousteoria?</p><p>Näyttely toimii avauksena monilajiselle työväenliikkeelle. Se käsittää kampanjajulisteita, bannereita ja Monilajisen Kommunistisen Manifestin, sekä monilajisen työväenliikkeen historiaa Suomessa 1850–1950 kartoittavan arkiston. Näyttelyn oheisohjelmassa keskustellaan nykyisen työväenliikkeen ja eläinoikeusliikkeen yhteyksistä ja eroista.</p><p>Kaikkien eläinten työväenliike on osa Terike Haapojan taide- ja tutkimushanketta [Against] Animal Capitalism. Hankkeessa kartoitetaan minkälainen rooli toislajisilla eläimillä on ollut kapitalistisen yhteiskuntajärjestelmän kehittymisessä, ja millä tavalla kapitalistinen yhteiskuntajärjestelmä tuottaa ihminen-eläin-erontekoa. Keskittymällä työn ruumiillisuuteen, työn teorioihin ja talouden mekanismeihin Animal Capitalism -projekti nostaa esiin uuden näkökulman lajienvälisten suhteiden rakentumiseen, ja tuottaa ympäristökriisin ratkaisemiselle välttämättömiä käsitteellisiä työkaluja monilajisen poliittisen toimijuuden hahmottamiseen.</p><p>Hanketta on tukenut Suomen Kulttuurirahasto, John Simon Guggenheim Foundation, sekä Koneen Säätiö.</p>", "sv": "<p>Ännu i slutet av 1800-talet gick socialism och tidiga djurrätts- och naturskyddstankar sida vid sida.</p><p>Solidariteten mellan arterna bröts dock då den humanistiska tolkningen tog över i vänsterns traditioner. Djurskyddsidéerna stämplades som borgerskapets hobby, och i och med industrialiseringen sågs djuren som en del av produktionsredskapen och vänstern kämpade om att hantera det mervärde de gav.</p><p>Nu på 2000-talet kan vi alla se följderna av utnyttjandet av natur och djur. Det finns dock ännu en klyfta mellan vänsterpolitiken och de posthumanistiska tankarna som identifierar arternas ömsesidighet. Arbetarrörelsen för alla djur skriver om arbetarrörelsens historia ur ett flerartigt politiskt perspektiv. Hur ser kapitalismens historia utom andra djur ses som en del av den nedtryckta arbetarklassen? Hur hade arbetarrörelsen sett utom djurens rättigheter varit en del av den ända från början? Hur skulle dagens debatt om att reparerar förbindelsen mellan människa och natur se ut om den hade grundat sig på en kapitalismkritisk ekonomisk teori?</p><p>Utställningen behandlar den flerartiga kapitalismens historia med en mural, planscher för Arbetarrörelsen för alla djur från början av 1900-talet samt med tidigare opublicerade arkivbilder från den flerartiga arbetarrörelsens historia. På programmet står även anföranden och diskussioner om skillnaderna och likheterna mellan arbetarrörelsen och djurrättsrörelsen.</p><p>Arbetarrörelsen för alla djur är en del av Terike Haaporjas konst - och forskningsprojekt [Against] Animal Capitalism. I projektet kartläggs vilken roll djur av andra arter har haft i utvecklingen av det kapitalistiska samhällssystemet och på vilket sätt det kapitalistiska samhällssystemet skapar en skillnad mellan människa och djur. Genom att fokusera på arbetets kroppslighet, arbetsteorier och ekonomins mekanismer lyfter projektet Animal Capitalism fram ett nytt perspektiv på hur relationerna mellan arter byggs upp och skapar nödvändiga begreppsliga verktyg för miljökrisens lösningar för att illustrera det flerartiga politiska aktörskapet.</p><p>Projektet har understötts av Finlands Kulturfond, John Simon Guggenheim Foundation och stiftelsen Koneen Säätiö</p>", "en": "<p>Movements for socialism and animal welfare developed side by side throughout the 19th century, connected by their critiques of capitalist exploitation in an increasingly urbanized and industrialized world.</p><p>The potential for interspecies solidarity was lost, however, when the socialist movement aligned itself with the humanist tradition and viewed nonhuman animals merely as means of production and objects of the class struggle, rather than as subjects of it. The animal welfare movement, on the other hand, became associated with the bourgeois class and its pet animals, while industrial-scale animal exploitation was pushed out of sight, to the outskirts of rapidly growing cities.</p><p>Today, the consequences of the exploitation of nature and nonhuman animals are impossible to ignore. Yet a void still exists between mainstream Left politics and posthumanist thought—the former typically focusing on human class struggle, the latter critiquing anthropocentric ideology.</p><p>Labor Movement for All Animals re-writes the history of the labor movement from the perspective of multispecies politics. What does the story of capitalism look like if other animals are seen as part of the oppressed working class? What would the historical labor struggle have looked like if the animal welfare movement had been a part of it? What would the discourse on repairing our relations with the more-than-human world look like if it were based on anti-capitalist economic critique?</p><p>The exhibition launches a campaign for a multispecies labor movement, presenting posters, banners, and a Multispecies Communist Manifesto. It also includes an archive of the history of the multispecies labor movement in Finland between 1850–1950. The exhibition is accompanied by a public program, inviting activists and thinkers to discuss the commonalities and differences between today’s Left politics and the animal liberation movement.</p><p>The exhibition is part of Terike Haapoja’s art and research project [Against] Animal Capitalism. The project explores the role of nonhuman animals in the rise of capitalism and examines how the humananimal division is constructed in capitalist society. It foregrounds theories of labor, value, and mechanisms of production, cultivating a lesser-explored area within multispecies studies.Through this, the project develops conceptual tools to strengthen alliances between movements, working toward a multispecies Left politics.</p><p>The project is supported by the John Simon Guggenheim Foundation, the Finnish Cultural Foundation, and the Kone Foundation.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/51999951939B1FEAA1FEDD07F37AF6CB/Terike_Haapoja_Kaikkien_elainten_tyovaenliike", "sv": "http://www.stoa.fi/sv/evenemang/event/51999951939B1FEAA1FEDD07F37AF6CB/Terike_Haapoja_Arbetarrorelsen_for_alla_djur", "en": "http://www.stoa.fi/en/events/event/51999951939B1FEAA1FEDD07F37AF6CB/Terike_Haapoja_Labor_Movement_for_All_Animals" }, "provider": null, "short_description": { "fi": "Vielä 1800-luvun lopulla sosialismi ja varhainen eläinoikeus- ja luonnonsuojeluaate kulkivat rinta rinnan.", "sv": "Ännu i slutet av 1800-talet gick socialism och tidiga djurrätts- och naturskyddstankar sida vid sida.", "en": "Movements for socialism and animal welfare developed side by side throughout the 19th century, connected by their critiques of capitalist exploitation in an increasingly urbanized and industrialized world." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65944/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:aglidijabq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:16/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api" } ], "created_time": "2025-04-29T12:59:02.589967Z", "last_modified_time": "2025-04-29T13:00:53.096855Z", "date_published": null, "start_time": "2025-04-30T07:00:00Z", "end_time": "2025-04-30T08: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": "2025-04-29T16:05:00+03:00", "enrolment_end_time": "2025-04-30T10:00:00+03:00", "local": false, "replaced_by": null, "name": { "fi": "Testi", "sv": "", "en": "" }, "description": { "fi": "<p>adfsd</p>\n", "sv": "", "en": "" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "", "sv": "", "en": "" }, "provider": null, "short_description": { "fi": "Testi", "sv": "", "en": "" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aglidijabq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26801, "next": "