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=187®istration__remaining_attendee_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=188®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=186®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "espoo_le:agmk22736u", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2274ke/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 153109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-11-28T12:44:29.503562Z", "last_modified_time": "2024-11-28T12:44:29.503581Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png", "cropping": "0,0,1920,1920", "photographer_name": "Espoon kaupunki", "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153109/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-05-08T07:34:39.063624Z", "last_modified_time": "2025-05-08T07:34:39.063641Z", "date_published": null, "start_time": "2025-05-27T13:00:00Z", "end_time": "2025-05-27T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "info_url": null, "short_description": { "fi": "Tervetuloa perhepajaan askartelemaan ja oppimaan ompelemista sekä tutustumaan kirjaston tarjoamiin välineisiin", "sv": "Välkommen till en familjeworkshop för att lära dig virka och sy och utforska de verktyg som biblioteket har att erbjuda", "en": "Welcome to Workshop for learning crochet, sewing, and to know about our library free offers" }, "provider": null, "name": { "fi": "Perhepaja", "sv": "Workshop för familjer", "en": "Workshop for Families" }, "provider_contact_info": null, "description": { "fi": "<p>Tervetuloa perhepajaan askartelemaan ja oppimaan ompelemista sekä tutustumaan kirjaston tarjoamiin välineisiin kuten saumuri, vinyylileikkuri ja 3D-tulostin.</p><p>Paja on ilmainen. Puhumme suomea, arabia ja englantia. Voit ottaa myös lapsesi mukaan.</p>", "sv": "<p>Välkommen till våra familjeverkstäder för pyssla och lära dig sy, samt bekanta dig med de redskap som biblioteket har att erbjuda, såsom symaskin, vinylskärare och 3D-skrivare.</p><p>Workshopen är kostnadsfri. Vi talar finska, arabiska och engelska. Det kostar ingenting att delta. Du kan också ta med dig ditt barn.</p>", "en": "<p>Welcome to our family workshops where you can make crafts, learn to sew, and to learn about our appliences for example sewing machine, vinyl cutter, and 3D-printers. The workshop language is in Finnish, English and Arabic, and is free of charge. Children are welcome to join together with their parents.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22736u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2274ke", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22rntq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227224/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2273he/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2273su/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22736u/?format=api" } ], "images": [ { "id": 153109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-11-28T12:44:29.503562Z", "last_modified_time": "2024-11-28T12:44:29.503581Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png", "cropping": "0,0,1920,1920", "photographer_name": "Espoon kaupunki", "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153109/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-05-08T07:34:38.078833Z", "last_modified_time": "2025-05-08T07:34:38.078850Z", "date_published": null, "start_time": "2025-05-27T13:00:00Z", "end_time": "2025-07-22T15: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, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "info_url": null, "short_description": { "fi": "Tervetuloa perhepajaan askartelemaan ja oppimaan ompelemista sekä tutustumaan kirjaston tarjoamiin välineisiin", "sv": "Välkommen till en familjeworkshop för att lära dig virka och sy och utforska de verktyg som biblioteket har att erbjuda", "en": "Welcome to Workshop for learning crochet, sewing, and to know about our library free offers" }, "provider": null, "name": { "fi": "Perhepaja", "sv": "Workshop för familjer", "en": "Workshop for Families" }, "provider_contact_info": null, "description": { "fi": "<p>Tervetuloa perhepajaan askartelemaan ja oppimaan ompelemista sekä tutustumaan kirjaston tarjoamiin välineisiin kuten saumuri, vinyylileikkuri ja 3D-tulostin.</p><p>Paja on ilmainen. Puhumme suomea, arabia ja englantia. Voit ottaa myös lapsesi mukaan.</p>", "sv": "<p>Välkommen till våra familjeverkstäder för pyssla och lära dig sy, samt bekanta dig med de redskap som biblioteket har att erbjuda, såsom symaskin, vinylskärare och 3D-skrivare.</p><p>Workshopen är kostnadsfri. Vi talar finska, arabiska och engelska. Det kostar ingenting att delta. Du kan också ta med dig ditt barn.</p>", "en": "<p>Welcome to our family workshops where you can make crafts, learn to sew, and to learn about our appliences for example sewing machine, vinyl cutter, and 3D-printers. The workshop language is in Finnish, English and Arabic, and is free of charge. Children are welcome to join together with their parents.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2274ke/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19777514", "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": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19777514/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19777514/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19777514/?affiliate=ADV&language=en" } } ], "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:16.978000Z", "last_modified_time": "2025-05-07T23:15:41.142470Z", "date_published": null, "start_time": "2025-05-07T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "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" }, "short_description": { "fi": "Agatha Christie Eikä yksikään pelastunut Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri." }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "Eikä Yksikään Pelastunut" }, "provider_contact_info": null, "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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19777514/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19667088", "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": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667088/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667088/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667088/?affiliate=ADV&language=en" } } ], "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:16.845764Z", "last_modified_time": "2025-05-07T23:15:40.993273Z", "date_published": null, "start_time": "2025-05-07T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "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" }, "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" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "Kaunotar Ja Hirviöt" }, "provider_contact_info": null, "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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667088/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19569262", "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": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569262/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569262/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569262/?affiliate=ADV&language=en" } } ], "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:16.724404Z", "last_modified_time": "2025-05-07T23:15:40.875269Z", "date_published": null, "start_time": "2025-05-07T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Studio Pasila" }, "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" }, "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" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "Agora - Kaksi Merenneitoa Tyhjässä Altaassa" }, "provider_contact_info": null, "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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19569262/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19036799", "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": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036799/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036799/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036799/?affiliate=ADV&language=en" } } ], "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:16.615957Z", "last_modified_time": "2025-05-07T23:15:40.752979Z", "date_published": null, "start_time": "2025-05-07T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "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" }, "short_description": { "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin," }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "Moulin Rouge! Musikaali" }, "provider_contact_info": null, "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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036799/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65680", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "39,90-205,60 €", "en": "39,90-205,60 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/3843699", "en": "https://www.lippu.fi/eventseries/3843699" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 280531, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-28T12:14:50.869042Z", "last_modified_time": "2025-02-28T12:14:50.869064Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765722.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/280531/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-28T12:14:50.810312Z", "last_modified_time": "2025-05-07T14:12:35.774994Z", "date_published": null, "start_time": "2025-05-13T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/3061E8DBA01F92DE9C78635A5D2958CA/Natalia_Osipova-_Force_of_Nature_", "en": "http://www.savoyteatteri.fi/en/events/event/3061E8DBA01F92DE9C78635A5D2958CA/Natalia_Osipova-_Force_of_Nature_" }, "short_description": { "fi": "Ylimaallinen Natalia Osipova tuo “Force of Nature” -balettiteoksen Helsinkiin", "en": "Divine Natalia Osipova Brings the Grand Ballet Program \"Force of Nature\" to Helsinki" }, "provider": { "fi": "Winstag Production OÜ", "en": "Winstag Production OÜ" }, "name": { "fi": "Natalia Osipova- Force of Nature", "en": "Natalia Osipova- Force of Nature" }, "provider_contact_info": null, "description": { "fi": "<p>Ylimaallinen Natalia Osipova tuo “Force of Nature” -balettiteoksen Helsinkiin</p><p>Lontoon kuninkaallisen baletin pääballeriina, jonka The Independent on nimennyt maailman tavoitelluimmaksi balleriinaksi, on jo esittänyt \"Force of Nature\" -teoksen molemmin puolin Atlanttia. Tämä ainutlaatuinen esitys yhdistää klassisen baletin monimutkaisen varvastyöskentelyn ja koreografiat, jotka ovat luoneet osa maailman parhaista aikamme koreografeista. Osipova esiintyy yhdessä Yhdistyneen kuningaskunnan ja Yhdysvaltojen muiden soolotanssijoiden kanssa.</p><p>Osipova on jäljittelemätön. Hänen tekniikkansa on ainutlaatuinen ja taiteellisesti hän on hämmästyttävän viehättävä. Jo ennen kuin hän oli valmistunut Moskovan valtion koreografiakorkeakoulusta, balettiympyröissä puhuttiin hänen uskomattoman korkeista hypyistään. Bolshoi-teatterin balettiryhmän jäseneksi päästyään hän esitti kahdeksan sooloroolia ensimmäisellä kaudellaan. Elävänä kuin elohopea ja nopeana kuin salama hän vaikutti säteilevän lämpöä heti astuessaan lavalle. \"Villikissa!\", Osipova sanoo muistellessaan uransa alkua. \"Luonnonvoima,\" sanovat ne, jotka näkivät hänet tuolloin.</p><p>\"Pyydä, lainaa tai varasta liput!\" oli The Guardianin reaktio Osipovan häikäisevään Lontoon -debyyttiin. Tapahtuma sijoittuu vuoteen 2007, jolloin Britannian pääkaupunki sai vieraakseen Bolshoi-teatterin. Alexei Ratmanski, teatterin silloinen balettimestari, käytti voittokorttinsa valitessaan Osipovan Kitriksi Don Quijotessa. Menestys oli täydellinen.</p><p>2010-luvun alussa Osipovasta oli tullut yksi maailman kirkkain ja suosituin balleriina. Pariisin, Milanon, Berliinin ja New Yorkin suurimmat teatterit tavoittelivat häntä. Jokaisesta uudesta roolista - oli se sitten Giselle, Kitri tai nykyaikainen sankaritar – tuli suuri tapahtuma. Hänen taiteellisuutensa inspiroi joitakin parhaista nykykoreografeista, kuten Alexei Ratmanskya, Arthur Pitaa, Akram Khania ja Sidi Larbi Cherkaouta.</p><p>Vuonna 2013 Osipova allekirjoitti pysyvän sopimuksen Lontoon kuninkaallisen baletin kanssa, jossa hän esiintyy edelleen tänä päivänä.</p><p>Osipovan lahjakkuus on tuonut hänelle lukuisia kansainvälisiä palkintoja, kuten Kansallisia tanssipalkintoja ja Benois de la Danse -palkinnon. Vuonna 2018 brittiläinen ohjaaja Gerald Fox teki hänestä dokumentin Force of Nature. Natalia tarjoaa katsauksen hänen elämäänsä ja työhönsä kulissien takana sekä harjoituksiin Medusa -teoksen parissa aina hänen esitykseensä klassisessa baletissa La Bayadère.</p><p>Neljä vuotta myöhemmin Osipova loi oman 'Luonnon voimat' -baletti-illan, joka on ennennäkemättömän kaunis ja monimutkainen. Tässä esityksessä hän kunnioittaa ikonisia, esimerkillisiä ja keskenään täysin erilaisia roolejaan — klassisesta pas de deux'sta 'Merirosvosta' yhdessä kollegansa, Kuninkaallisen baletin ensitanssijan Marcelino Sambén kanssa Marius Petipan koreografiassa aina Alexei Ratmanskyn Sibeliuksen musiikkiin säveltämään 'Surullinen valssi' -miniatyyriin, joka on luotu erityisesti hänelle. Osipova esittää ensi-illassa 'Gravity’s Orphan' -teoksen, jonka hän on luonut yhdessä Jason Kittelbergerin kanssa, sekä laajan koreografisen triptyykin 'Ashes', jossa on mukana neljä tanssijaa. Illan päättää Mihail Fokinin ikoninen miniatyyri 'Kuoleva joutsen' Saint-Saënsin musiikkiin, jonka Osipova esittää yksin — jäähyväinen, rukous, muisto. Hänen ilmiömäisen uransa aikana, kuten hänen elämänkertojansa ovat laskeneet, Osipova on esittänyt 172 roolia, joten valinnanvaraa riitti.</p><p>Osipovan esitystä 13. toukokuuta Savoy-teatterissa kannattaa tulla katsomaan ainakin nähdäkseen hänen vertaansa vailla olevat fouetté-hyppynsä, jotka ovat vähintäänkin maailman parhaita. Force of Nature tarjoaa kuitenkin paljon enemmän kuin pelkkiä teknisiä ihmeitä: se tarjoaa yleisölle suuren taide-elämyksen ja ymmärrystä siitä, mitä tarkoittaa olla todellinen 2000-luvun balettitähti.</p><p>Kesto n. 2 h, sisältää väliajan.</p>", "en": "<p>Divine Natalia Osipova Brings the Grand Ballet Program \"Force of Nature\" to Helsinki</p><p>The prima ballerina of the Royal Ballet in London, hailed by The Independent as the most sought-after ballerina in the world, has already showcased \"Force of Nature\" on both sides of the Atlantic. This one-of-a-kind performance blends complex pointe work in classical ballet with numbers choreographed by some of the most outstanding contemporary choreographers. Osipova will be joined by her fellow soloists from the UK and the US.</p><p>Osipova is inimitable. Her technique is unique, and her artistic charm is astonishing. Even before she had completed her studies at the Moscow State Academy of Choreography, the ballet world was already abuzz with talk of her incredible, soaring jumps. Accepted into the Bolshoi Theatre as a corps de ballet member, she performed eight solo roles in her very first season there. Lively as quicksilver and swift as lightning, she seemed to radiate heat as soon as she appeared on stage. \"Wildcat!\" Osipova says, recalling the beginning of her career. \"A force of nature,\" say those who saw her at that time.</p><p>\"Beg, borrow, or steal tickets!\" was the reaction of The Guardian to Osipova’s dazzling London debut. The event took place in 2007, when the British capital welcomed the Bolshoi Theatre. Alexei Ratmansky, the company’s chief ballet master at the time, played his trump card by casting Osipova as Kitri in Don Quixote. The triumph was complete.</p><p>By the early 2010s, Osipova had become one of the most brilliant and in-demand ballerinas in the world. The major theaters of Paris, Milan, Berlin, and New York sought her out. Every new role—whether it be Giselle, Kitri, or a contemporary heroine—turned into a major event. Her artistry inspires some of the best modern choreographers, including Alexei Ratmansky, Arthur Pita, Akram Khan, and Sidi Larbi Cherkaoui.</p><p>In 2013, Osipova signed a permanent contract with the Royal Ballet in London, where she continues to perform to this day.</p><p>Osipova’s talent has earned her numerous international awards, including the National Dance Awards and the Benois de la Danse prize. In 2018, British director Gerald Fox made a documentary about her, Force of Nature. Natalia, offering a behind-the-scenes glimpse into her life and work, from rehearsals for Medusa to her performance in the classical ballet La Bayadère.</p><p>Four years later, Osipova has created her own Forces of Nature — an evening of unprecedented beauty and complexity. Here, she pays tribute to her signature, benchmark roles, which are as stylistically diverse as they are iconic — from the classical Le Corsaire pas de deux with Royal Ballet principal Marcelino Sambé, choreographed by Marius Petipa, to Alexei Ratmansky’s lyrical miniature Valse Triste, set to music by Sibelius and created especially for her. Osipova presents the world premiere of Gravity’s Orphan, a collaboration with Jason Kittelberger, as well as the expansive choreographic triptych Ashes, featuring four dancers. The evening concludes with the cult classic The Dying Swan by Mikhail Fokine, set to music by Saint-Saëns — a solo performed by Osipova as farewell, plea, and memory. Over the course of her phenomenal career, Osipova has performed 172 roles, as her biographers have counted — so there was certainly much to choose from.</p><p>Attending Osipova’s performance on May 13th at the Savoy Theatre is worth it, if only to witness her unparalleled fouettés—arguably the best in the world. But Force of Nature offers much more than mere technical marvels: it provides audiences with an encounter with great art and the chance to understand what it means to be a true ballet étoile of the 21st century.</p><p>Duration about 2 h, including intermission</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65680/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65366", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "17 € / 9 €", "sv": "17 € / 9 €", "en": "17 € / 9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/klubb-ankdamm-improvision-song-contest-2025-vuotalo-19615808/", "sv": "https://www.lippu.fi/event/klubb-ankdamm-improvision-song-contest-2025-vuotalo-19615808/", "en": "https://www.lippu.fi/event/klubb-ankdamm-improvision-song-contest-2025-vuotalo-19615808/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153642, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-02T09:15:55.409919Z", "last_modified_time": "2025-01-02T09:15:55.409938Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761680.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153642/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-02T09:15:55.378752Z", "last_modified_time": "2025-05-07T13:13:53.353803Z", "date_published": null, "start_time": "2025-05-10T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AF2D4051D22614498E6D630983F2E1C4/Teater_Stjarnfall_Improvision_Song_Contest_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/AF2D4051D22614498E6D630983F2E1C4/Teater_Stjarnfall_Improvision_Song_Contest_", "en": "http://www.vuotalo.fi/en/events/event/AF2D4051D22614498E6D630983F2E1C4/Teater_Stjarnfall_Improvision_Song_Contest_" }, "short_description": { "fi": "Suomen jännittävin iskelmäkilpailu palaa Vuotaloon! Stjärnfall on improvisaatioryhmä, joka luo upeita, hulluja ja ihastuttavan viihdyttäviä musiikkinumeroita.", "sv": "Finlands mest hisnande schlagertävling återvänder till Nordhuset!", "en": "Finland's most thrilling schlager competition returns to Vuotalo!" }, "provider": null, "name": { "fi": "Teater Stjärnfall – Improvision Song Contest – Klubb Ankdamm", "sv": "Teater Stjärnfall – Improvision Song Contest – Klubb Ankdamm", "en": "Teater Stjärnfall – Improvision Song Contest – Klubb Ankdamm" }, "provider_contact_info": null, "description": { "fi": "<p>Suomen jännittävin iskelmäkilpailu palaa Vuotaloon! Stjärnfall on improvisaatioryhmä, joka luo upeita, hulluja ja ihastuttavan viihdyttäviä musiikkinumeroita.</p><p>Improvisio-iltana jännitys kasvaa ja kaikki lavalla ja yleisössä ovat innoissaan! Haluaisitko olla mukana äänestämässä voittajaa Improvision Song Coenteistä 2025:ssä? Silloin toivotamme sinut tervetulleeksi! <br> <br>Klubi-ilta, Café Pokkari vastaa tarjoilusta, ovet avataan klo 17.30. <br>Kesto: noin 2 t, sis. väliajan.Tapahtuma on monikielinen ruotsi-englanti-suomi.</p><p>Liput à 17 € / 9 € osoitteesta lippu.fi:stä tai lipunmyyntiautomaatilta ovelta.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Alle 18-vuotiaat huoltajan seurassa. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-19738815/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Finlands mest hisnande schlagertävling återvänder till Nordhuset!</p><p>Stjärnfall är improvisationsgruppen som för fulla hus och full hals skapar glamorösa, galna och underbart underhållande musiknummer. En helkväll då spänningen stiger och alla på scenen och i publiken är taggade. Vill du vara med och rösta fram vinnaren i Improvision Song Contest 2025? Då önskar vi dig välkommen! <br> <br>Klubb-kväll, A-rättigheter, Café Pokkari svarar för serveringen, dörrarna öppnas kl. 17.30. <br>Längd: ca. 2h inkl. paus. Evenemanget är mångspråkigt svenska-finska-engelska.</p><p>Biljetter à 17 € / 9 € via Lippu.fi eller från biljettautomaten vid dörren.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-19738815/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Finland's most thrilling schlager competition returns to Vuotalo!</p><p>Stjärnfall is an improvisation group that creates splendid, crazy, and delightfully entertaining musical numbers. On this Improvision night, the excitement builds, and everyone on stage and in the audience is thrilled! Would you like to be part of voting for the winner of Improvision Song Contest 2025? Then we welcome you! <br> <br>Club night, Café Pokkari takes care of the refreshments, starting from 5:30 PM. Duration: about 2 hours, including intermission. The event is multilingual Swedish-English-Finnish.</p><p>Tickets at 17 € / 9 € from lippu.fi or from the ticket machine at the door.</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-19738815/?affiliate=FSF\">HERE</a></u></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65366/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65367", "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:32/?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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "18 € / 10,30 €", "sv": "18 € / 10,30 €", "en": "18 € / 10,30 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/vapaa-tanssikoulu-vapaan-tanssikoulun-kevaetnaeytoekset-2025-vuotalossa-vuotalo-19566937/", "sv": "https://www.lippu.fi/event/vapaa-tanssikoulu-vapaan-tanssikoulun-kevaetnaeytoekset-2025-vuotalossa-vuotalo-19566937/", "en": "https://www.lippu.fi/event/vapaa-tanssikoulu-vapaan-tanssikoulun-kevaetnaeytoekset-2025-vuotalossa-vuotalo-19566937/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153643, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-02T10:14:26.070741Z", "last_modified_time": "2025-01-02T10:14:26.070760Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761789.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153643/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-02T10:14:26.021061Z", "last_modified_time": "2025-05-07T12:13:37.335596Z", "date_published": null, "start_time": "2025-05-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, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8FCB3E93B8D439FDC2472D06847746CE/Vapaan_Tanssikoulun_kevatnaytokset_2025", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8FCB3E93B8D439FDC2472D06847746CE/Vapaa_Tanssikoulus_varforestallningar_2025", "en": "http://www.vuotalo.fi/en/events/event/8FCB3E93B8D439FDC2472D06847746CE/Dance_school_Vapaa_s_spring_shows_2025" }, "short_description": { "fi": "Tervetuloa Vuotaloon katsomaan Vapaan Tanssikoulun kevätnäytöksiä!", "sv": "Välkommen till Nordhuset för att se Vapaa Tanssikoulus vårföreställningar!", "en": "Welcome to Vuotalo to see Dance school Vapaa’s spring shows!" }, "provider": null, "name": { "fi": "Vapaan Tanssikoulun kevätnäytökset 2025", "sv": "Vapaa Tanssikoulus vårföreställningar 2025", "en": "Dance school Vapaa’s spring shows 2025" }, "provider_contact_info": null, "description": { "fi": "<p>Tervetuloa Vuotaloon katsomaan Vapaan Tanssikoulun kevätnäytöksiä!</p><p>Vapaa Tanssikoulu on tanssitaiteen perusopetusta antava tanssikoulu, joka toimii Itä-Helsingin alueella. Tanssikoulumme järjestää joka kevät oppilasnäytökset, joissa esiintyy eri ikäisiä oppilaitamme. Tule mukaan nauttimaan liikkeestä, vauhdista ja esiintymisen ilosta!</p><p>Kesto: n. 60 min</p>", "sv": "<p>Välkommen till Nordhuset för att se Vapaa Tanssikoulus vårföreställningar!</p><p>Vapaa Tanssikoulu är en dansskola som ger grundläggande dansundervisning i östra Helsingfors. Vår dansskola ordnar varje vår elevföreställningar där våra elever i olika åldrar uppträder. Kom med och njut av rörelse, fart och glädje som uppträdandet ger!</p><p>Längd: cirka 60 min.</p>", "en": "<p>Welcome to Vuotalo to see Dance school Vapaa’s spring shows!</p><p>Dance school Vapaa provides basic dance art education, operating in the Eastern Helsinki area. Every spring, our dance school organises student showcases featuring our students of various ages. Come and enjoy the movement, pace and the joy of performing!</p><p>Duration: approx. 60 min</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65367/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64830", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24,80 € / 18 €", "sv": "24,80 € / 18 €", "en": "24,80 € / 18 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/malmitalo/eid-al-fitr-juhlakonsertti-solistina-mais-harb-3764237/", "sv": "https://www.lippu.fi/artist/malmitalo/eid-al-fitr-juhlakonsertti-solistina-mais-harb-3764237/", "en": "https://www.lippu.fi/artist/malmitalo/eid-al-fitr-juhlakonsertti-solistina-mais-harb-3764237/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152933, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-01T15:16:52.429715Z", "last_modified_time": "2024-11-01T15:16:52.429806Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760393.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152933/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-01T15:16:52.390899Z", "last_modified_time": "2025-05-07T12:13:29.822226Z", "date_published": null, "start_time": "2025-03-29T18:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8D540546FA780A4A383E90679FC9285F/Mais_Harb_SYR_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8D540546FA780A4A383E90679FC9285F/Mais_Harb_SYR_", "en": "http://www.malmitalo.fi/en/events/event/8D540546FA780A4A383E90679FC9285F/Mais_Harb_SYR_" }, "short_description": { "fi": "Nauti unohtumattomasta illasta Lähi-idän musiikin parissa maailmankuulun Mais Harbin johdolla.", "sv": "Det är dags att förbereda sig för slutet av Ramadan, månaden av fasta och reflektion!", "en": "Enjoy an unforgettable evening filled with music from Middle East, sung by the world-renowned Mais Harb" }, "provider": null, "name": { "fi": "Mais Harb (SYR) – ميس حرب (سوريا)", "sv": "Mais Harb (SYR) – ميس حرب (سوريا)", "en": "Mais Harb (SYR) – ميس حرب (سوريا)" }, "provider_contact_info": null, "description": { "fi": "<p>Nauti unohtumattomasta illasta Lähi-idän musiikin parissa maailmankuulun Mais Harbin johdolla.</p><p>On aika valmistautua Ramadanin kuukauden, paaston ja pohdiskelun ajan, päättymiseen! Illan aikana esiintymässä on itämainen orkesteri Mais Harbin johdolla, jonka vangitseva ääni on soinut konserttilavoilla ympäri maailmaa. <br> <br><i>Huom! Konsertin ajankohta ja esiintyjien tiedot ovat päivittyneet.</p><p>Aiemmin ostetut liput käyvät sellaisenaan konserttiin, mutta lippurahoja voi myös hakea takaisin. Lippurahojen palautuksia voi hakea 29.4.2025 mennessä tämän verkkolinkin kautta: <a href=\"https://web.lippu.fi/palautus/\">web.lippu.fi/palautus</a></p><p>Liput voi myös palauttaa postitse osoitteeseen:<br>Lippupiste Oy / ”Tapahtuman nimi” palautus<br>Kansikatu 5<br>33100 Tampere</i><br> <br>Tässä konsertissa syyrialainen Mais Harb saa seurakseen joukon paikallisia muusikoita, jotka tulevat eri taustoista. Mais Harb esittää valikoiman lauluja Syyriasta, Irakista, Libanonista, Egyptistä ja muista Lähi-idän maista. Jokainen laulu kertoo oman tarinansa ja vie kuulijan kulttuurimatkalle, tuoden esille alueen rikkaan ja monipuolisen musiikillisen perinnön.</p><p>Euroopan ja Lähi-idän lavoilla esiintynyt Mais Harb tunnetaan voimakkaasta äänestään sekä kyvystään koskettaa yleisöä arabimusiikin kauneuden kautta. Ilta tarjoaa erityisen tilaisuuden kokea hänen taitonsa ja arabialaisen musiikin ajattomat melodiat yhteen kietoutuneina, täynnä tunnetta ja yhteisöllisyyttä.</p><p><b>Esiintyjät:</b><br>Mais Harb – laulu<br>Rashid Hlel – viulu<br>Merve Abdurrahmani – piano<br>Mehrnoosh Zolfaghari – santoor<br>Khashayar Eshkevari – altokamancha<br>Hadi Hrekes – perkussiot<br>Lauri Salokoski – basso</p><p>Älä missaa tätä mahdollisuutta sukeltaa Lähi-idän musiikin ytimeen ja juhlistaa pian päättyvää Ramadania juhlailtana, joka on täynnä iloa, yhteenkuuluvuutta ja musiikin lumoa. <br> <br>Kesto: 1 h</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/eventseries/name-3819434/?affiliate=FSF\">täältä</a></u>.</p><p>ميس حرب (سوريا)</p>", "sv": "<p>Det är dags att förbereda sig för slutet av Ramadan, månaden av fasta och reflektion!</p><p>Under denna kväll får vi njuta av oförglömlig musik från hela Mellanöstern, ledd av den världsberömda Mais Harb, vars fängslande röst har ekat på konsertscener världen över.</p><p>Obs! Konsertens tidpunkt och information om artisterna har uppdaterats.</p><p>I denna konsert får den syriska sångerskan Mais Harb sällskap av en grupp lokala musiker med olika bakgrunder. Hon kommer att framföra ett urval av sånger från Syrien, Irak, Libanon, Egypten och andra länder i Mellanöstern. Varje sång berättar sin egen historia och tar lyssnaren med på en kulturell resa som lyfter fram regionens rika och mångsidiga musikaliska arv.</p><p>Mais Harb, som har uppträtt på scener i Europa och Mellanöstern, är känd för sin kraftfulla röst och sin förmåga att beröra publiken genom den arabiska musikens skönhet. Denna kväll erbjuder en unik möjlighet att uppleva hennes konstnärskap och den arabiska musikens tidlösa melodier, sammanvävda med känsla och gemenskap.</p><p><b>Medverkande:</b><br>Mais Harb – sång<br>Rashid Hlel – fiol<br>Merve Abdurrahmani – piano<br>Mehrnoosh Zolfaghari – santoor<br>Khashayar Eshkevari – altkamancha<br>Hadi Hrekes – slagverk<br>Lauri Salokoski – bas</p><p>Missa inte denna möjlighet att fördjupa dig i Mellanösterns musik och fira den snart avslutade Ramadan med en festlig kväll fylld av glädje, gemenskap och musikens magi.</p><p>Längd: 1 timme</p><p><a>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/eventseries/name-3819434/?affiliate=FSF\">här</a></u></p><p>ميس حرب (سوريا)</p>", "en": "<p>Enjoy an unforgettable evening filled with music from Middle East, sung by the world-renowned Mais Harb</p><p>It’s time to prepare for the end of Ramadan, the month of fasting and reflection! Free admission for young people between 7 and 19 with The Helsinki Youth Services membership card.</p><p>During this evening, we will enjoy unforgettable music from across the Middle East, led by the world-renowned Mais Harb, whose captivating voice has graced concert stages worldwide.</p><p><i>Note! The concert schedule and performer details have been updated.</p><p>Previously purchased tickets are valid as they are for the concert, but you can also request a refund.<br>Ticket refunds can be requested by April 29, 2025, via the following online link:<br><u><a href=\"https://web.lippu.fi/palautus/\">web.lippu.fi/palautus</a></u></p><p>Alternatively, tickets can also be returned by mail to the following address:<br>Lippupiste Oy / \"Event name\" refund<br>Kansikatu 5<br>33100 Tampere</i></p><p>In this concert, Syrian singer Mais Harb will be joined by a group of local musicians from diverse backgrounds. She will perform a selection of songs from Syria, Iraq, Lebanon, Egypt, and other Middle Eastern countries. Each song tells its own story, taking the listener on a cultural journey and showcasing the region’s rich and diverse musical heritage.</p><p>Having performed on stages across Europe and the Middle East, Mais Harb is known for her powerful voice and her ability to touch audiences through the beauty of Arabic music. This evening offers a unique opportunity to experience her artistry and the timeless melodies of Arabic music, woven together with deep emotion and a sense of community.</p><p><b>Performers:</b><br>Mais Harb – vocals<br>Rashid Hlel – violin<br>Merve Abdurrahmani – piano<br>Mehrnoosh Zolfaghari – santoor<br>Khashayar Eshkevari – alto kamancheh<br>Hadi Hrekes – percussion<br>Lauri Salokoski – bass</p><p>Don’t miss this opportunity to dive into the heart of Middle Eastern music and celebrate the approaching end of Ramadan with a festive evening full of joy, togetherness, and the magic of music.</p><p>Duration: 1 hour</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <a href=\"https://www.lippu.fi/en/eventseries/name-3819434/?affiliate=FSF\">here</a></p><p>ميس حرب (سوريا)</p>", "ar": "<p>حان الوقت للاستعداد لنهاية شهر رمضان، شهر الصيام والتأمل! خلال هذه الأمسية، سنستمتع بموسيقى لا تُنسى من مختلف أنحاء الشرق الأوسط، بقيادة الفنانة العالمية ميس حرب، التي أبهرت الجماهير بصوتها الآسر على مسارح العالم.</p><p>ملاحظة! تم تحديث جدول الحفل وتفاصيل المشاركين.</p><p>في هذا الحفل، ستنضم المغنية السورية ميس حرب إلى مجموعة من الموسيقيين المحليين من خلفيات متنوعة. ستؤدي مجموعة مختارة من الأغاني من سوريا، العراق، لبنان، مصر، ودول أخرى في الشرق الأوسط. تحكي كل أغنية قصة خاصة بها، وتأخذ المستمع في رحلة ثقافية تعكس التراث الموسيقي الغني والمتنوع للمنطقة.</p><p>بعد أدائها على مسارح في جميع أنحاء أوروبا والشرق الأوسط، تُعرف ميس حرب بصوتها القوي وقدرتها على ملامسة قلوب الجمهور من خلال جمال الموسيقى العربية. توفر هذه الأمسية فرصة فريدة للاستمتاع بفنها وسحر الألحان العربية الخالدة، الممزوجة بالمشاعر العميقة وروح المجتمع.</p><p>المشاركون :<br>ميس حرب :غناء <br>رشيد هلال : كمان <br>ميرفي عبد الرحماني : بيانو <br>ميهرنوش ذوالفقاري : سانتور <br>خشايار إشكيڤاري : ألتو كمنجة <br>هادي حريقص : إيقاع <br>لاوري سالوكوسكي : بايز غيتار</p><p>لا تفوِّت هذه الفرصة للغوص في قلب الموسيقى الشرق أوسطية والاحتفال باقتراب نهاية رمضان بسهرة مليئة بالفرح والتواصل وسحر الموسيقى.</p><p>المدة: ساعة واحدة</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64830/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2274vy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490348, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-07T12:11:59.753656Z", "last_modified_time": "2025-05-07T12:11:59.753672Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/511c08a1-b47d-4411-8d01-2bb02ec0eae1.jpg", "cropping": "315,0,1125,810", "photographer_name": "Ilkka Saastamoinen", "alt_text": "Jukka Viikilä istuu kädet rennosti polviin nojaten, ja katsoo kameraan. Kuvassa myös pyöreä logo, jossa kaksi tikku-ukkoa lyö käsiä yhteen, heidän ympärillään on teksti: Asiakastoive toteutettu.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490348/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-07T12:13:17.206557Z", "last_modified_time": "2025-05-07T12:13:17.206572Z", "date_published": "2025-05-07T11:53:00Z", "start_time": "2025-09-25T15:00:00Z", "end_time": "2025-09-25T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kaija", "sv": "Kaija", "en": "Kaija" }, "info_url": null, "short_description": { "fi": "Kirjailijavieraanamme on Jukka Viikilä", "sv": "Vår Författargäst är Jukka Viikilä.", "en": "Our Author guest is Jukka Viikilä." }, "provider": null, "name": { "fi": "Kirjailijavieraana Jukka Viikilä", "sv": "Författargäst: Jukka Viikilä", "en": "Author Guest: Jukka Viikilä" }, "provider_contact_info": null, "description": { "fi": "<p>Kirjailijavieraana Tapiolan kirjaston Lukupiirin jäsenten toivomana <strong>Jukka Viikilä</strong>!</p>", "sv": "<p>Jukka Viikilä som gästförfattare. Önskemålet om en gäst framfördes av läsgruppen vid Hagalunds bibliotek.</p>", "en": "<p>Jukka Viikilä as a guest author. A wish for a guest was made by the Reading Group of Tapiola Library.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2274vy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66013", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "29-35 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/name-20147715" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 546547, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-16T10:14:42.189710Z", "last_modified_time": "2025-04-16T10:14:42.189730Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769728.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/546547/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-16T10:14:42.153932Z", "last_modified_time": "2025-05-07T10:14:01.271558Z", "date_published": null, "start_time": "2025-10-04T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/83DCE376AF86602C6C858B774ECD8D29/Kopi_Kallio_Huono_suoritus_K-18" }, "short_description": { "fi": "Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus." }, "provider": { "fi": "JL-Komediapaja Oy" }, "name": { "fi": "Köpi Kallio: Huono suoritus K-18 – Loppuunmyyty! / Sold out!" }, "provider_contact_info": null, "description": { "fi": "<p>Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.</p><p><i>Huono suoritus</i> on särmikäs summaus kolmekymppisen radio- ja tv-tähden tähänastisesta elämästä ja parhaista stand up -jutuista.</p><p>Tässä esityksessä mustaa huumoria huokuvat ja paikoin kohtuuttomuuksiin yltyvät vitsit saavat lisäpotkua Köpille itselleen tapahtuneesta pysäyttävästä tarinasta.</p><p>Mitä tarvitaan, että ihminen pysähtyy, lopettaa oman elämänsä suorittamisen ja keskittyy nauttimaan hetkestä? Siihen tarvitaan <i>Huono suoritus</i>.</p><p>Jokaisen shown alussa <i>Huonon suorituksen</i> “virallisena valvojana” ja erikoisvieraana esiintyy <b><i>Kovan viikon ilta</b></i> -ohjelmasta tuttu stand up -koomikko <b>Jukka Lindström</b>.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Ikäraja: K-18</p><p>Permanto K18 anniskelualue. Parvella ei anniskelua.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66013/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2275bm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p2901/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22766m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490340, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T05:36:53.127637Z", "last_modified_time": "2025-05-05T05:36:53.127652Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/23d629c6-7609-43ed-b05e-23605445200e.png", "cropping": "75,0,360,285", "photographer_name": "", "alt_text": "eläkeleikäisiä ihmisiä venyttelemässä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490340/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-05-07T10:01:03.034092Z", "last_modified_time": "2025-05-07T10:01:03.034110Z", "date_published": null, "start_time": "2025-06-17T07:00:00Z", "end_time": "2025-06-17T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "info_url": null, "short_description": { "fi": "Senioriliikunta jatkuu kirjastossavielä kesäkuun lopulle asti tiistaisin. ", "sv": "Seniorgympan fortsätter på biblioteket ända till slutet av juni på tisdagar", "en": "Senior exercise classes will continue at the library on Tuesdays until the end of June." }, "provider": null, "name": { "fi": "Kesän tuolijumpat", "sv": "Sommarens stolgympa ", "en": "Summer Chair Exercises" }, "provider_contact_info": null, "description": { "fi": "<p>Tuolijumppa 45 min</p>", "sv": "<p>Stolgympa 45 min</p><p><br></p>", "en": "<p> Chair Exercise 45 min</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2275bm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2275ny", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p2901/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22766m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490340, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T05:36:53.127637Z", "last_modified_time": "2025-05-05T05:36:53.127652Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/23d629c6-7609-43ed-b05e-23605445200e.png", "cropping": "75,0,360,285", "photographer_name": "", "alt_text": "eläkeleikäisiä ihmisiä venyttelemässä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490340/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-05-07T10:01:02.778429Z", "last_modified_time": "2025-05-07T10:01:02.778446Z", "date_published": null, "start_time": "2025-06-10T07:00:00Z", "end_time": "2025-06-10T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "info_url": null, "short_description": { "fi": "Senioriliikunta jatkuu kirjastossavielä kesäkuun lopulle asti tiistaisin. ", "sv": "Seniorgympan fortsätter på biblioteket ända till slutet av juni på tisdagar", "en": "Senior exercise classes will continue at the library on Tuesdays until the end of June." }, "provider": null, "name": { "fi": "Kesän tuolijumpat", "sv": "Sommarens stolgympa ", "en": "Summer Chair Exercises" }, "provider_contact_info": null, "description": { "fi": "<p>Tuolijumppa 45 min</p>", "sv": "<p>Stolgympa 45 min</p><p><br></p>", "en": "<p> Chair Exercise 45 min</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2275ny/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2275z4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p2901/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22766m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490340, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T05:36:53.127637Z", "last_modified_time": "2025-05-05T05:36:53.127652Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/23d629c6-7609-43ed-b05e-23605445200e.png", "cropping": "75,0,360,285", "photographer_name": "", "alt_text": "eläkeleikäisiä ihmisiä venyttelemässä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490340/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-05-07T10:01:02.473560Z", "last_modified_time": "2025-05-07T10:01:02.473579Z", "date_published": null, "start_time": "2025-06-03T07:00:00Z", "end_time": "2025-06-03T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "info_url": null, "short_description": { "fi": "Senioriliikunta jatkuu kirjastossavielä kesäkuun lopulle asti tiistaisin. ", "sv": "Seniorgympan fortsätter på biblioteket ända till slutet av juni på tisdagar", "en": "Senior exercise classes will continue at the library on Tuesdays until the end of June." }, "provider": null, "name": { "fi": "Kesän tuolijumpat", "sv": "Sommarens stolgympa ", "en": "Summer Chair Exercises" }, "provider_contact_info": null, "description": { "fi": "<p>Tuolijumppa 45 min</p>", "sv": "<p>Stolgympa 45 min</p><p><br></p>", "en": "<p> Chair Exercise 45 min</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2275z4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2276f4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p2901/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22766m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490340, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T05:36:53.127637Z", "last_modified_time": "2025-05-05T05:36:53.127652Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/23d629c6-7609-43ed-b05e-23605445200e.png", "cropping": "75,0,360,285", "photographer_name": "", "alt_text": "eläkeleikäisiä ihmisiä venyttelemässä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490340/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-05-07T10:01:01.987373Z", "last_modified_time": "2025-05-07T10:01:01.987392Z", "date_published": null, "start_time": "2025-05-27T07:00:00Z", "end_time": "2025-05-27T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "info_url": null, "short_description": { "fi": "Senioriliikunta jatkuu kirjastossavielä kesäkuun lopulle asti tiistaisin. ", "sv": "Seniorgympan fortsätter på biblioteket ända till slutet av juni på tisdagar", "en": "Senior exercise classes will continue at the library on Tuesdays until the end of June." }, "provider": null, "name": { "fi": "Kesän tuolijumpat", "sv": "Sommarens stolgympa ", "en": "Summer Chair Exercises" }, "provider_contact_info": null, "description": { "fi": "<p>Tuolijumppa 45 min</p>", "sv": "<p>Stolgympa 45 min</p><p><br></p>", "en": "<p> Chair Exercise 45 min</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2276f4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2276sm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p2901/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22766m/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490340, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T05:36:53.127637Z", "last_modified_time": "2025-05-05T05:36:53.127652Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/23d629c6-7609-43ed-b05e-23605445200e.png", "cropping": "75,0,360,285", "photographer_name": "", "alt_text": "eläkeleikäisiä ihmisiä venyttelemässä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490340/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-05-07T10:01:01.053191Z", "last_modified_time": "2025-05-07T10:01:01.053210Z", "date_published": null, "start_time": "2025-05-20T07:00:00Z", "end_time": "2025-05-20T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "info_url": null, "short_description": { "fi": "Senioriliikunta jatkuu kirjastossavielä kesäkuun lopulle asti tiistaisin. ", "sv": "Seniorgympan fortsätter på biblioteket ända till slutet av juni på tisdagar", "en": "Senior exercise classes will continue at the library on Tuesdays until the end of June." }, "provider": null, "name": { "fi": "Kesän tuolijumpat", "sv": "Sommarens stolgympa ", "en": "Summer Chair Exercises" }, "provider_contact_info": null, "description": { "fi": "<p>Tuolijumppa 45 min</p>", "sv": "<p>Stolgympa 45 min</p><p><br></p>", "en": "<p> Chair Exercise 45 min</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2276sm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22766m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p2901/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2275bm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2275ny/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2275z4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2276f4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2276sm/?format=api" } ], "images": [ { "id": 1490340, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-05T05:36:53.127637Z", "last_modified_time": "2025-05-05T05:36:53.127652Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/23d629c6-7609-43ed-b05e-23605445200e.png", "cropping": "75,0,360,285", "photographer_name": "", "alt_text": "eläkeleikäisiä ihmisiä venyttelemässä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490340/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-05-07T10:00:59.621391Z", "last_modified_time": "2025-05-07T10:00:59.621405Z", "date_published": null, "start_time": "2025-05-13T07:00:00Z", "end_time": "2025-06-17T07:45: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, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "info_url": null, "short_description": { "fi": "Senioriliikunta jatkuu kirjastossavielä kesäkuun lopulle asti tiistaisin. ", "sv": "Seniorgympan fortsätter på biblioteket ända till slutet av juni på tisdagar", "en": "Senior exercise classes will continue at the library on Tuesdays until the end of June." }, "provider": null, "name": { "fi": "Kesän tuolijumpat", "sv": "Sommarens stolgympa ", "en": "Summer Chair Exercises" }, "provider_contact_info": null, "description": { "fi": "<p>Tuolijumppa 45 min</p>", "sv": "<p>Stolgympa 45 min</p><p><br></p>", "en": "<p> Chair Exercise 45 min</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22766m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64885", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749354/#tab=", "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749354/#tab=", "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749354/#tab=" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 155155, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-16T14:15:40.080191Z", "last_modified_time": "2025-01-16T14:15:40.080219Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760655.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/155155/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-16T14:15:40.055042Z", "last_modified_time": "2025-05-07T08:13:35.675622Z", "date_published": null, "start_time": "2025-05-20T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/1C5DB5AE9976548F6A0CD9E97E307979/KINO_CAISA_Decolonial_Lenses_15_", "sv": "http://www.caisa.fi/sv/evenemang/event/1C5DB5AE9976548F6A0CD9E97E307979/KINO_CAISA_Decolonial_Lenses_15_", "en": "http://www.caisa.fi/en/events/event/1C5DB5AE9976548F6A0CD9E97E307979/KINO_CAISA_Decolonial_Lenses_15_" }, "short_description": { "fi": "Tule mukaan Kino Caisan Feminist Film Experiments-elokuvaklubiin! Toinen FFE-näytös sisältää kolme elokuvaa.", "sv": "I serien Feminist Film Experiments ställs frågan hur vi kan arbeta tillsammans på ett kreativt sätt för att belysa orättvisor och föreställa oss världen på ett annat sätt.", "en": "Feminist Film Experiments is a series of film screenings which asks how we work together creatively to highlight injustice and imagine the world otherwise." }, "provider": null, "name": { "fi": "KINO CAISA: Decolonial Lenses (15) – Feminist Film Experiments", "sv": "KINO CAISA: Decolonial Lenses (15) – Feminist Film Experiments", "en": "KINO CAISA: Decolonial Lenses (15) – Feminist Film Experiments" }, "provider_contact_info": null, "description": { "fi": "<p>Tule mukaan Kino Caisan Feminist Film Experiments-elokuvaklubiin! Toinen FFE-näytös sisältää kolme elokuvaa.</p><p>Näytökset kunnioittavat feminististä luovuutta yli sukupolvien ja tuovat esille elokuvia, jotka tutkivat ja haastavat edelleen ajankohtaisia epäoikeudenmukaisuuksia.</p><p>Elokuvat on valittu Cinenovan feministisestä elokuvakokoelmasta, ja ne ulottuvat 1970-luvulta 2000-luvun alkuun eri konteksteissa (Jamaika, Yhdysvallat ja Sri Lanka, muiden muassa).</p><p>Elokuvat käsittelevät sukupuolen, rodun, seksuaalisuuden ja yhteisön esityksiä ja kysyvät, miten voimme työskennellä (ja leikkiä) kuvitellaksemme toisenlaisen maailman.</p><p><b>DECOLONIAL LENSES | Näytöksen elokuvat</b></p><p><b>Back Inside Herself</b><br>Described by S. Pearl Sharp as “a visual poem on identity”, Back Inside Herself shows a Black woman finding her own sense of self and rejecting hegemonic societal expectations of who she should be and how she should behave. <br>S. Pearl Sharp (USA, 1984, 4 mins)</p><p><b>Memory Tracks</b> <br>A tribute to African-American women activists, whose violent actions were often characterised as being the result of mental illness. <br>Jamika Ajalon (USA, 1997, 7 mins)</p><p><b>A Song of Ceylon</b> <br>This non-narrative film presents multiple tableaus that address colonial histories, gender and the body. Its title, which is derived from the documentary by Basil Wright and John Grierson, evokes an erased country, while the soundtrack stages an interpretation of a Sri Lankan ritual of spirit possession and cure.<br>Laleen Jayamanne (Australia, 1985, 51 mins)</p><p>Kieli: englanti, ei suomenkielisiä tekstityksiä<br>Ikäsuositus: yli 15-vuotiaat</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 15–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kino-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19750718/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>I serien Feminist Film Experiments ställs frågan hur vi kan arbeta tillsammans på ett kreativt sätt för att belysa orättvisor och föreställa oss världen på ett annat sätt.</p><p>Kom med i filmklubben Feminist Film Experiments, som inkluderar tre filmvisningar på Kino Caisa!</p><p>Visningarna hyllar feministisk kreativitet över generationerna, och visar filmer som utforskar och utmanar orättvisor som fortfarande är aktuella. Filmerna är valts ut ur Cinenovas feministiska filmsamling och sträcker sig från 1970-talet till början av 2000-talet i olika sammanhang (bland annat Jamaica, USA och Sri Lanka).</p><p>Filmerna behandlar framställningar av kön, ras, sexualitet och gemenskap och frågar hur vi kan arbeta (och leka) för att föreställa oss en annorlunda värld. I slutet av serien ordnar vi en paneldiskussion, där vi tillsammans reflekterar över filmerna.</p><p><b>Program:</b><br>13.5. Queering the Frame<br>20.5. Decolonial Lenses<br>27.5. Gender at Work</p><p>Som presentatör fungerar Adalmiina Erkkola, en kulturproducent baserad i Helsingfors, som är intresserad av filmens politiska potential. Hon är också programledare för radioprogrammet No Man's Land på IDA Helsinki.</p><p>Språk: engelska, inga undertexter på finska <br>Diskussion: Engelska, plus tecknad engelska (tbc) <br>Åldersrekommendation: över 15 år</p><p>Cinenova grundades år 1991 genom en sammanslagning av två feministiska film- och videodistributörer, Circles och Cinema of Women. Båda hade inlett sin verksamhet år 1979. Cinenovas samling består av mer än 400 verk, inklusive konstnärliga rörliga bildverk, narrativa filmer, dokumentärer och utbildningsvideor, som har producerats mellan 1910 och 2000.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 15–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kino-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19750718/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Feminist Film Experiments is a series of film screenings which asks how we work together creatively to highlight injustice and imagine the world otherwise.</p><p>Honouring feminist creativity across generations, Feminist Film Experiments brings you films from the past which explore representations of women and structures of oppression. <br>Engaging with discourses of gender, race, sexuality and community, these filmmakers ask how we work (and play) to imagine the world otherwise. <br>The films are sourced from Cinenova’s feminist film collection, ranging from the 1970s to the early 2000s across contexts.</p><p><b>DECOLONIAL LENSES | Films</b></p><p><b>Back Inside Herself</b><br> S. Pearl Sharp (USA, 1984, 4 mins, English subtitles)<br>Described by S. Pearl Sharp as “a visual poem on identity”, Back Inside Herself shows a Black woman finding her own sense of self and rejecting hegemonic societal expectations of who she should be and how she should behave.</p><p><b>Memory Tracks</b> <br>Jamika Ajalon (USA, 1997, 7 mins)<br>A tribute to African-American women activists, whose violent actions were often characterised as being the result of mental illness.</p><p><b>A Song of Ceylon</b><br>Laleen Jayamanne (Australia, 1985, 51 mins, English subtitles)<br>This non-narrative film presents multiple tableaus that address colonial histories, gender and the body. Its title, which is derived from the documentary by Basil Wright and John Grierson, evokes an erased country, while the soundtrack stages an interpretation of a Sri Lankan ritual of spirit possession and cure.</p><p>The programme is presented by <b>Adalmiina Erkkola</b>, a Helsinki-based cultural producer interested in the political potential of film. They also host the No Man’s Land radio show at IDA Helsinki.</p><p><b>Cinenova</b> was founded in 1991 following the merger of two feminist film and video distributors, Circles and Cinema of Women, each formed in 1979. Cinenova distributes over 400 titles including artists’ moving image, narrative cinema, documentary and educational videos produced between the 1910s and 2000s. For more, visit: https://cinenova.org/</p><p>Language: English, no Finnish subtitles <br>Age recommendation: 15+</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 15–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kino-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19750718/?affiliate=FSF\">HERE</a></u></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64885/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64884", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749353/#tab=", "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749353/#tab=", "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749353/#tab=" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 155154, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-16T14:15:38.816172Z", "last_modified_time": "2025-01-16T14:15:38.816201Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760651.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/155154/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-16T14:15:38.778996Z", "last_modified_time": "2025-05-07T08:13:34.211262Z", "date_published": null, "start_time": "2025-05-13T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/5937FE89681AECAB3FC405A00AFE7C40/KINO_CAISA_Queering_the_Frame_15_", "sv": "http://www.caisa.fi/sv/evenemang/event/5937FE89681AECAB3FC405A00AFE7C40/KINO_CAISA_Queering_the_Frame_15_", "en": "http://www.caisa.fi/en/events/event/5937FE89681AECAB3FC405A00AFE7C40/KINO_CAISA_Queering_the_Frame_15_" }, "short_description": { "fi": "Tule mukaan Kino Caisan Feminist Film Experiments-elokuvaklubiin! Ensimmäinen FFE-näytös sisältää viisi lyhytelokuvaa.", "sv": "I serien Feminist Film Experiments ställs frågan hur vi kan arbeta tillsammans på ett kreativt sätt för att belysa orättvisor och föreställa oss världen på ett annat sätt.", "en": "Join us for Feminist Film Experiments - three evenings of film screenings at Kino Caisa!" }, "provider": null, "name": { "fi": "KINO CAISA: Queering the Frame (15) – Feminist Film Experiments", "sv": "KINO CAISA: Queering the Frame (15) – Feminist Film Experiments", "en": "KINO CAISA: Queering the Frame (15) – Feminist Film Experiments" }, "provider_contact_info": null, "description": { "fi": "<p>Tule mukaan Kino Caisan Feminist Film Experiments-elokuvaklubiin! Ensimmäinen FFE-näytös sisältää viisi lyhytelokuvaa.</p><p>Näytökset kunnioittavat feminististä luovuutta yli sukupolvien ja tuovat esille elokuvia, jotka tutkivat ja haastavat edelleen ajankohtaisia epäoikeudenmukaisuuksia.</p><p>Elokuvat on valittu Cinenovan feministisestä elokuvakokoelmasta, ja ne ulottuvat 1970-luvulta 2000-luvun alkuun eri konteksteissa (Jamaika, Yhdysvallat ja Sri Lanka, muiden muassa).</p><p>Elokuvat käsittelevät sukupuolen, rodun, seksuaalisuuden ja yhteisön esityksiä ja kysyvät, miten voimme työskennellä (ja leikkiä) kuvitellaksemme toisenlaisen maailman.</p><p>Esittelijänä toimii Adalmiina Erkkola, Helsingissä toimiva kulttuurituottaja, joka on kiinnostunut elokuvan poliittisesta potentiaalista. Hän juontaa myös No Man’s Land -radio-ohjelmaa IDA Helsingissä.</p><p><b>QUEERING THE FRAME | Näytöksen elokuvat</b></p><p><b>17 Rooms (Or What Lesbians Do in Bed)</b><br>What do lesbians do in bed? With a star-studded soundtrack, we're shown women doing everything in bed from knitting and drinking tea to having raucous pillow-fights. <br>Caz Sheldon (UK, 1985, 10 mins).</p><p><b>Burden of Dykes</b> <br>Hilarious send-up of psychoanalytical propaganda films, illustrating every absurd cliché about the 'lesbian nature' and raising issues of self-representation and media production. <br>Anne Chamberlain (UK, 1995, 8 mins)</p><p><b>Chaahath (Desire)</b> <br>The film's central theme of desire/passion is deeply embedded in a culture which is given its own voice through the beat of the clay pot used in North India. <br>Lily Gupta (UK, 1996, 4 mins)</p><p><b>Blue Diary</b> <br>This experimental narrative tells the melancholy story of a young dyke pining over a one-night stand with a straight girl. <br>Jenni Olson (USA, 1997, 6 mins).</p><p><b>Loss of Heat</b><br>Focusing on two parallel lesbian relationships this film reflects the reality of living with an 'invisible' disability, challenging preconceived notions of the illness to reveal how it operates outside the epileptic fit on a daily basis.<br>Noski Deville (UK, 1994, 20 mins)</p><p>Kieli: englanti, ei suomenkielisiä tekstityksiä <br>Ikäsuositus: yli 15-vuotiaat</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 15–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kino-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19750719/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>", "sv": "<p>I serien Feminist Film Experiments ställs frågan hur vi kan arbeta tillsammans på ett kreativt sätt för att belysa orättvisor och föreställa oss världen på ett annat sätt.</p><p>Kom med i filmklubben Feminist Film Experiments, som inkluderar tre filmvisningar på Kino Caisa!</p><p>Visningarna hyllar feministisk kreativitet över generationerna, och visar filmer som utforskar och utmanar orättvisor som fortfarande är aktuella. Filmerna är valts ut ur Cinenovas feministiska filmsamling och sträcker sig från 1970-talet till början av 2000-talet i olika sammanhang (bland annat Jamaica, USA och Sri Lanka).</p><p>Filmerna behandlar framställningar av kön, ras, sexualitet och gemenskap och frågar hur vi kan arbeta (och leka) för att föreställa oss en annorlunda värld. I slutet av serien ordnar vi en paneldiskussion, där vi tillsammans reflekterar över filmerna.</p><p><b>Program:</b><br>13.5. Queering the Frame<br>20.5. Decolonial Lenses<br>27.5. Gender at Work</p><p>Som presentatör fungerar Adalmiina Erkkola, en kulturproducent baserad i Helsingfors, som är intresserad av filmens politiska potential. Hon är också programledare för radioprogrammet No Man's Land på IDA Helsinki.</p><p>Språk: engelska, inga undertexter på finska <br>Diskussion: Engelska<br>Åldersrekommendation: över 15 år</p><p>Cinenova grundades år 1991 genom en sammanslagning av två feministiska film- och videodistributörer, Circles och Cinema of Women. Båda hade inlett sin verksamhet år 1979. Cinenovas samling består av mer än 400 verk, inklusive konstnärliga rörliga bildverk, narrativa filmer, dokumentärer och utbildningsvideor, som har producerats mellan 1910 och 2000.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 15–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kino-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19750719/?affiliate=FSF#tab=\">HÄR</a></u></p>", "en": "<p>Join us for Feminist Film Experiments - three evenings of film screenings at Kino Caisa!</p><p>Honouring feminist creativity across generations, we bring you films from the past which explore and challenge injustices still in the present. The films are sourced from Cinenova’s feminist film collection, ranging from the 1970s to the early 2000s across contexts (Jamaica, USA & Sri Lanka, among others).</p><p>Engaging with representations of gender, race, sexuality and community, these filmmakers ask how we work (and play) to imagine the world otherwise.</p><p>The programme is presented by Adalmiina Erkkola, a Helsinki-based cultural producer interested in the political potential of film. They also host the No Man’s Land radio show at IDA Helsinki.</p><p><b>QUEERING THE FRAME | Films</b></p><p><b>17 Rooms (Or What Lesbians Do in Bed)</b><br>What do lesbians do in bed? With a star-studded soundtrack, we're shown women doing everything in bed from knitting and drinking tea to having raucous pillow-fights. <br>Caz Sheldon (UK, 1985, 10 mins).</p><p><b>Burden of Dykes</b> <br>Hilarious send-up of psychoanalytical propaganda films, illustrating every absurd cliché about the 'lesbian nature' and raising issues of self-representation and media production. <br>Anne Chamberlain (UK, 1995, 8 mins)</p><p><b>Chaahath (Desire)</b> <br>The film's central theme of desire/passion is deeply embedded in a culture which is given its own voice through the beat of the clay pot used in North India. <br>Lily Gupta (UK, 1996, 4 mins)</p><p><b>Blue Diary</b> <br>This experimental narrative tells the melancholy story of a young dyke pining over a one-night stand with a straight girl. <br>Jenni Olson (USA, 1997, 6 mins).</p><p><b>Loss of Heat</b><br>Focusing on two parallel lesbian relationships this film reflects the reality of living with an 'invisible' disability, challenging preconceived notions of the illness to reveal how it operates outside the epileptic fit on a daily basis.<br>Noski Deville (UK, 1994, 20 mins, English subtitles)</p><p>Language: English, no Finnish subtitles <br>Age recommendation: 15+</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 15–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kino-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19750719/?affiliate=FSF#tab=\">HERE</a></u></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64884/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26873, "next": "