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
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
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 normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_super_event=true&page=81
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=82", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=80" }, "data": [ { "id": "kulke:69464", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/" }, "price": { "fi": "20 / 7 €", "sv": "20 / 7 €", "en": "20 / 7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385263, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:55.530810Z", "last_modified_time": "2026-06-18T11:13:55.530822Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795580.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385263/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:55.431023Z", "last_modified_time": "2026-08-24T12:23:05.065732Z", "date_published": null, "start_time": "2026-10-25T13:00:00Z", "end_time": "2026-10-25T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Transpoli on temppurata", "sv": "Transpoli on temppurata", "en": "Transpoli on temppurata" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.", "sv": "I den spelifierade samtida cirkusföreställningen visar sig transpolikliniken vara en hinderbana där man, trots att man klarat flera hinder, kan tvingas tillbaka till startrutan.", "en": "In this gamified contemporary circus performance, the gender identity clinic turns out to be an obstacle course where you may find yourself back at square one despite having overcome numerous obstacles." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/61F22D72D923D0503C59A1EA5F7ACCDA/Transpoli_on_temppurata", "sv": "http://www.caisa.fi/sv/evenemang/event/61F22D72D923D0503C59A1EA5F7ACCDA/Transpoli_on_temppurata", "en": "http://www.caisa.fi/en/events/event/61F22D72D923D0503C59A1EA5F7ACCDA/Transpoli_on_temppurata" }, "description": { "fi": "<p>Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.</p><p>Sanalla transpoli viitataan HUSin ja TAYSin sukupuoli-identiteetin tutkimuspoliklinikoihin. Esitys simuloi transpoliprosessia ja avaa terveydenhuollon epätasa-arvoisia rakenteita ja transpolien vallankäyttöä pelin ja sirkuksen keinoin.</p><p>Esitykseen voi osallistua pelaajana tai katsojana. Katsomosta seurataan pelaajien etenemistä tai juuttumista transpolin temppuradalla.</p><p>Pelaajille puolestaan arvotaan hahmo, joka perustuu todellisiin Transpolitiikka-kollektiivin keräämiin ja julkaisemiin anonyymeihin transpolitarinoihin. Hahmoista tiedetään ikäluokka, sukupuoli-identiteetti, mahdolliset liitännäisdiagnoosit, sekä muut mahdolliset transpoliprosessia estävät tekijät, kuten vaikkapa lihavuus. Pelaajat voivat päästä etenemään temppuradalla sujuvasti tai saada jäähyjä, tai jopa tulla lähetetyksi lähtöruutuun, kuten todellisuuden transpolillakin.</p><p>Pelaajapaikkoja on 10: jos haluat mukaan pelaajana, varaa lippusi ajoissa! Pelaajaliput eivät sovi liikuntarajoitteisille. Pelaajalipun lunastaneiden olisi hyvä olla paikalla 30 minuuttia ennen esitystä perehdytystä varten.</p><p>Huomaathan, että esitys voi olla ahdistava henkilöille, joilla on käynnissä tai takanaan oma transpoliprosessi, tai muuten aihepiiriin liittyviä negatiivisia kokemuksia. Esityksessä käsiteltävät teemat, kuten medikaalinen vallankäyttö, voivat aiheuttaa ahdistusta.</p><p>Ikäsuositus: 16 + <br>Esityksen kieli: suomi</p><p>Rae Reinvall: konseptointi, sirkustaiteilija <br>Pihla Aarnisalo: sirkustaiteilija <br>Marjukka Mykkänen: sirkustaiteilija <br>Pihla Lehtinen: pelitaiteilija <br>Stella Massa: runot, äänisuunnittelu, freestyle jalkapallo</p>", "sv": "<p>I den spelifierade samtida cirkusföreställningen visar sig transpolikliniken vara en hinderbana där man, trots att man klarat flera hinder, kan tvingas tillbaka till startrutan.</p><p>Med 'transpoli' avses mottagningarna för könsidentitetsutredningar vid HUS och TAYS. Föreställningen simulerar processen vid mottagningarna och belyser de ojämlika strukturerna inom hälso- och sjukvården samt mottagningarnas maktutövning med hjälp av spel och cirkus. <br> <br>Besökarna kan delta i föreställningen som spelare eller åskådare. Från läktaren följer åskådarna spelarnas framfart eller hur de fastnar på transpoliklinikens hinderbana. <br> <br>Spelarna tilldelas i sin tur en karaktär som bygger på verkliga, anonyma berättelser från transpolikliniken som samlats in och publicerats av kollektivet Transpolitiikka. Man känner till karaktärernas åldersgrupp, könsidentitet, eventuella tilläggsdiagnoser samt andra faktorer som kan hindra processen vid transpolikliniken, såsom till exempel fetma. Spelarna kan ta sig fram smidigt på hinderbanan, få straff eller till och med skickas tillbaka till startrutan, precis som på verklighetens transpoliklinik. <br> <br>Det finns tio spelarplatser: Om du vill vara med som spelare, se till att boka din biljett i god tid! Spelarbiljetterna är inte lämpliga för personer med funktionsnedsättning. De som har löst ut en spelarbiljett ska vara på plats 30 minuter före föreställningen för en genomgång. <br> <br>Biljetter: 20/7 €, på lippu.fi</p><p>Observera att föreställningen kan upplevas som påfrestande för personer som befinner sig mitt i eller har genomgått en egen transpoliklinikprocess, eller som på annat sätt har negativa erfarenheter kopplade till ämnet. De teman som tas upp i föreställningen, till exempel medicinsk maktutövning, kan väcka ångest.</p><p>Åldersrekommendation: 16+ <br>Föreställningens språk: finska <br> <br><b>Rae Reinvall</b>: konceptutveckling, cirkusartist <br><b>Pihla Aarnisalo</b>: cirkusartist <br><b>Marjukka Mykkänen</b>: cirkusartist <br><b>Pihla Lehtinen</b>: spelkonstnär <br><b>Stella Massa</b>: dikter, ljuddesign, freestylefotboll</p>", "en": "<p>In this gamified contemporary circus performance, the gender identity clinic turns out to be an obstacle course where you may find yourself back at square one despite having overcome numerous obstacles.</p><p>The term ‘transpoli’ refers to the gender identity research outpatient clinics of HUS and TAYS. The performance simulates the gender identity clinic process and explores the unequal structures within the healthcare system and the use of power by the clinics through a game and circus. <br> <br>You can take part in the performance as a player or a spectator. From the stands, spectators watch as the players make their way along – or get stuck on – a gender identity clinic obstacle course. <br> <br>The players, on the other hand, are assigned a character at random, based on real, anonymous gender identity clinic stories collected and published by the Transpolitiikka collective. The following details are known about the characters: their age group, gender identity, any associated diagnoses, and other potential factors that may hinder the clinic process, such as obesity. Players can progress smoothly along the obstacle course or receive penalties, or even be sent back to the start, just like at real-life gender identity clinics. <br> <br>The game has 10 places for players: if you would like to take part as a player, reserve your ticket in good time! The player tickets are not suitable for people with reduced mobility. Those with a player ticket should arrive 30 minutes before the performance for a briefing. <br> <br>Tickets: €20/7 via lippu.fi.</p><p>Please be aware that this performance may be distressing for people who are currently undergoing or have undergone their own gender identity clinic process, or who have had negative experiences related to this subject matter. The themes explored in the performance, such as the use of medical power, may cause anxiety.</p><p>Recommended age: 16+ <br>Performance language: Finnish <br> <br><b>Rae Reinvall</b>: concept development, circus artist <br><b>Pihla Aarnisalo</b>: circus artist <br><b>Marjukka Mykkänen</b>: circus artist <br><b>Pihla Lehtinen</b>: game artist <br><b>Stella Massa</b>: poetry, sound design, freestyle football</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69464/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69463", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/" }, "price": { "fi": "20 / 7 €", "sv": "20 / 7 €", "en": "20 / 7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385262, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:55.160445Z", "last_modified_time": "2026-06-18T11:13:55.160461Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795579.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385262/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:55.071938Z", "last_modified_time": "2026-08-24T12:23:04.781079Z", "date_published": null, "start_time": "2026-10-24T15:00:00Z", "end_time": "2026-10-24T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Transpoli on temppurata", "sv": "Transpoli on temppurata", "en": "Transpoli on temppurata" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.", "sv": "I den spelifierade samtida cirkusföreställningen visar sig transpolikliniken vara en hinderbana där man, trots att man klarat flera hinder, kan tvingas tillbaka till startrutan.", "en": "In this gamified contemporary circus performance, the gender identity clinic turns out to be an obstacle course where you may find yourself back at square one despite having overcome numerous obstacles." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/FE6441CE7CBDF12CB0DADB108203F360/Transpoli_on_temppurata", "sv": "http://www.caisa.fi/sv/evenemang/event/FE6441CE7CBDF12CB0DADB108203F360/Transpoli_on_temppurata", "en": "http://www.caisa.fi/en/events/event/FE6441CE7CBDF12CB0DADB108203F360/Transpoli_on_temppurata" }, "description": { "fi": "<p>Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.</p><p>Sanalla transpoli viitataan HUSin ja TAYSin sukupuoli-identiteetin tutkimuspoliklinikoihin. Esitys simuloi transpoliprosessia ja avaa terveydenhuollon epätasa-arvoisia rakenteita ja transpolien vallankäyttöä pelin ja sirkuksen keinoin.</p><p>Esitykseen voi osallistua pelaajana tai katsojana. Katsomosta seurataan pelaajien etenemistä tai juuttumista transpolin temppuradalla.</p><p>Pelaajille puolestaan arvotaan hahmo, joka perustuu todellisiin Transpolitiikka-kollektiivin keräämiin ja julkaisemiin anonyymeihin transpolitarinoihin. Hahmoista tiedetään ikäluokka, sukupuoli-identiteetti, mahdolliset liitännäisdiagnoosit, sekä muut mahdolliset transpoliprosessia estävät tekijät, kuten vaikkapa lihavuus. Pelaajat voivat päästä etenemään temppuradalla sujuvasti tai saada jäähyjä, tai jopa tulla lähetetyksi lähtöruutuun, kuten todellisuuden transpolillakin.</p><p>Pelaajapaikkoja on 10: jos haluat mukaan pelaajana, varaa lippusi ajoissa! Pelaajaliput eivät sovi liikuntarajoitteisille. Pelaajalipun lunastaneiden olisi hyvä olla paikalla 30 minuuttia ennen esitystä perehdytystä varten.</p><p>Huomaathan, että esitys voi olla ahdistava henkilöille, joilla on käynnissä tai takanaan oma transpoliprosessi, tai muuten aihepiiriin liittyviä negatiivisia kokemuksia. Esityksessä käsiteltävät teemat, kuten medikaalinen vallankäyttö, voivat aiheuttaa ahdistusta.</p><p>Ikäsuositus: 16 + <br>Esityksen kieli: suomi</p><p>Rae Reinvall: konseptointi, sirkustaiteilija <br>Pihla Aarnisalo: sirkustaiteilija <br>Marjukka Mykkänen: sirkustaiteilija <br>Pihla Lehtinen: pelitaiteilija <br>Stella Massa: runot, äänisuunnittelu, freestyle jalkapallo</p>", "sv": "<p>I den spelifierade samtida cirkusföreställningen visar sig transpolikliniken vara en hinderbana där man, trots att man klarat flera hinder, kan tvingas tillbaka till startrutan.</p><p>Med 'transpoli' avses mottagningarna för könsidentitetsutredningar vid HUS och TAYS. Föreställningen simulerar processen vid mottagningarna och belyser de ojämlika strukturerna inom hälso- och sjukvården samt mottagningarnas maktutövning med hjälp av spel och cirkus. <br> <br>Besökarna kan delta i föreställningen som spelare eller åskådare. Från läktaren följer åskådarna spelarnas framfart eller hur de fastnar på transpoliklinikens hinderbana. <br> <br>Spelarna tilldelas i sin tur en karaktär som bygger på verkliga, anonyma berättelser från transpolikliniken som samlats in och publicerats av kollektivet Transpolitiikka. Man känner till karaktärernas åldersgrupp, könsidentitet, eventuella tilläggsdiagnoser samt andra faktorer som kan hindra processen vid transpolikliniken, såsom till exempel fetma. Spelarna kan ta sig fram smidigt på hinderbanan, få straff eller till och med skickas tillbaka till startrutan, precis som på verklighetens transpoliklinik. <br> <br>Det finns tio spelarplatser: Om du vill vara med som spelare, se till att boka din biljett i god tid! Spelarbiljetterna är inte lämpliga för personer med funktionsnedsättning. De som har löst ut en spelarbiljett ska vara på plats 30 minuter före föreställningen för en genomgång. <br> <br>Biljetter: 20/7 €, på lippu.fi</p><p>Observera att föreställningen kan upplevas som påfrestande för personer som befinner sig mitt i eller har genomgått en egen transpoliklinikprocess, eller som på annat sätt har negativa erfarenheter kopplade till ämnet. De teman som tas upp i föreställningen, till exempel medicinsk maktutövning, kan väcka ångest.</p><p>Åldersrekommendation: 16+ <br>Föreställningens språk: finska <br> <br><b>Rae Reinvall</b>: konceptutveckling, cirkusartist <br><b>Pihla Aarnisalo</b>: cirkusartist <br><b>Marjukka Mykkänen</b>: cirkusartist <br><b>Pihla Lehtinen</b>: spelkonstnär <br><b>Stella Massa</b>: dikter, ljuddesign, freestylefotboll</p>", "en": "<p>In this gamified contemporary circus performance, the gender identity clinic turns out to be an obstacle course where you may find yourself back at square one despite having overcome numerous obstacles.</p><p>The term ‘transpoli’ refers to the gender identity research outpatient clinics of HUS and TAYS. The performance simulates the gender identity clinic process and explores the unequal structures within the healthcare system and the use of power by the clinics through a game and circus. <br> <br>You can take part in the performance as a player or a spectator. From the stands, spectators watch as the players make their way along – or get stuck on – a gender identity clinic obstacle course. <br> <br>The players, on the other hand, are assigned a character at random, based on real, anonymous gender identity clinic stories collected and published by the Transpolitiikka collective. The following details are known about the characters: their age group, gender identity, any associated diagnoses, and other potential factors that may hinder the clinic process, such as obesity. Players can progress smoothly along the obstacle course or receive penalties, or even be sent back to the start, just like at real-life gender identity clinics. <br> <br>The game has 10 places for players: if you would like to take part as a player, reserve your ticket in good time! The player tickets are not suitable for people with reduced mobility. Those with a player ticket should arrive 30 minutes before the performance for a briefing. <br> <br>Tickets: €20/7 via lippu.fi.</p><p>Please be aware that this performance may be distressing for people who are currently undergoing or have undergone their own gender identity clinic process, or who have had negative experiences related to this subject matter. The themes explored in the performance, such as the use of medical power, may cause anxiety.</p><p>Recommended age: 16+ <br>Performance language: Finnish <br> <br><b>Rae Reinvall</b>: concept development, circus artist <br><b>Pihla Aarnisalo</b>: circus artist <br><b>Marjukka Mykkänen</b>: circus artist <br><b>Pihla Lehtinen</b>: game artist <br><b>Stella Massa</b>: poetry, sound design, freestyle football</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69463/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69462", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/" }, "price": { "fi": "20 / 7 €", "sv": "20 / 7 €", "en": "20 / 7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385261, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:54.708118Z", "last_modified_time": "2026-06-18T11:13:54.708133Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795578.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385261/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:54.615643Z", "last_modified_time": "2026-08-24T12:23:04.171335Z", "date_published": null, "start_time": "2026-10-23T16:00:00Z", "end_time": "2026-10-23T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Transpoli on temppurata", "sv": "Transpoli on temppurata", "en": "Transpoli on temppurata" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.", "sv": "I den spelifierade samtida cirkusföreställningen visar sig transpolikliniken vara en hinderbana där man, trots att man klarat flera hinder, kan tvingas tillbaka till startrutan.", "en": "In this gamified contemporary circus performance, the gender identity clinic turns out to be an obstacle course where you may find yourself back at square one despite having overcome numerous obstacles." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/12B0E3F07BFE2BD73B3B71E93DA085AF/Transpoli_on_temppurata", "sv": "http://www.caisa.fi/sv/evenemang/event/12B0E3F07BFE2BD73B3B71E93DA085AF/Transpoli_on_temppurata", "en": "http://www.caisa.fi/en/events/event/12B0E3F07BFE2BD73B3B71E93DA085AF/Transpoli_on_temppurata" }, "description": { "fi": "<p>Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.</p><p>Sanalla transpoli viitataan HUSin ja TAYSin sukupuoli-identiteetin tutkimuspoliklinikoihin. Esitys simuloi transpoliprosessia ja avaa terveydenhuollon epätasa-arvoisia rakenteita ja transpolien vallankäyttöä pelin ja sirkuksen keinoin.</p><p>Esitykseen voi osallistua pelaajana tai katsojana. Katsomosta seurataan pelaajien etenemistä tai juuttumista transpolin temppuradalla.</p><p>Pelaajille puolestaan arvotaan hahmo, joka perustuu todellisiin Transpolitiikka-kollektiivin keräämiin ja julkaisemiin anonyymeihin transpolitarinoihin. Hahmoista tiedetään ikäluokka, sukupuoli-identiteetti, mahdolliset liitännäisdiagnoosit, sekä muut mahdolliset transpoliprosessia estävät tekijät, kuten vaikkapa lihavuus. Pelaajat voivat päästä etenemään temppuradalla sujuvasti tai saada jäähyjä, tai jopa tulla lähetetyksi lähtöruutuun, kuten todellisuuden transpolillakin.</p><p>Pelaajapaikkoja on 10: jos haluat mukaan pelaajana, varaa lippusi ajoissa! Pelaajaliput eivät sovi liikuntarajoitteisille. Pelaajalipun lunastaneiden olisi hyvä olla paikalla 30 minuuttia ennen esitystä perehdytystä varten.</p><p>Huomaathan, että esitys voi olla ahdistava henkilöille, joilla on käynnissä tai takanaan oma transpoliprosessi, tai muuten aihepiiriin liittyviä negatiivisia kokemuksia. Esityksessä käsiteltävät teemat, kuten medikaalinen vallankäyttö, voivat aiheuttaa ahdistusta.</p><p>Ikäsuositus: 16 + <br>Esityksen kieli: suomi</p><p>Rae Reinvall: konseptointi, sirkustaiteilija <br>Pihla Aarnisalo: sirkustaiteilija <br>Marjukka Mykkänen: sirkustaiteilija <br>Pihla Lehtinen: pelitaiteilija <br>Stella Massa: runot, äänisuunnittelu, freestyle jalkapallo</p>", "sv": "<p>I den spelifierade samtida cirkusföreställningen visar sig transpolikliniken vara en hinderbana där man, trots att man klarat flera hinder, kan tvingas tillbaka till startrutan.</p><p>Med 'transpoli' avses mottagningarna för könsidentitetsutredningar vid HUS och TAYS. Föreställningen simulerar processen vid mottagningarna och belyser de ojämlika strukturerna inom hälso- och sjukvården samt mottagningarnas maktutövning med hjälp av spel och cirkus. <br> <br>Besökarna kan delta i föreställningen som spelare eller åskådare. Från läktaren följer åskådarna spelarnas framfart eller hur de fastnar på transpoliklinikens hinderbana. <br> <br>Spelarna tilldelas i sin tur en karaktär som bygger på verkliga, anonyma berättelser från transpolikliniken som samlats in och publicerats av kollektivet Transpolitiikka. Man känner till karaktärernas åldersgrupp, könsidentitet, eventuella tilläggsdiagnoser samt andra faktorer som kan hindra processen vid transpolikliniken, såsom till exempel fetma. Spelarna kan ta sig fram smidigt på hinderbanan, få straff eller till och med skickas tillbaka till startrutan, precis som på verklighetens transpoliklinik. <br> <br>Det finns tio spelarplatser: Om du vill vara med som spelare, se till att boka din biljett i god tid! Spelarbiljetterna är inte lämpliga för personer med funktionsnedsättning. De som har löst ut en spelarbiljett ska vara på plats 30 minuter före föreställningen för en genomgång. <br> <br>Biljetter: 20/7 €, på lippu.fi</p><p>Observera att föreställningen kan upplevas som påfrestande för personer som befinner sig mitt i eller har genomgått en egen transpoliklinikprocess, eller som på annat sätt har negativa erfarenheter kopplade till ämnet. De teman som tas upp i föreställningen, till exempel medicinsk maktutövning, kan väcka ångest.</p><p>Åldersrekommendation: 16+ <br>Föreställningens språk: finska <br> <br><b>Rae Reinvall</b>: konceptutveckling, cirkusartist <br><b>Pihla Aarnisalo</b>: cirkusartist <br><b>Marjukka Mykkänen</b>: cirkusartist <br><b>Pihla Lehtinen</b>: spelkonstnär <br><b>Stella Massa</b>: dikter, ljuddesign, freestylefotboll</p>", "en": "<p>In this gamified contemporary circus performance, the gender identity clinic turns out to be an obstacle course where you may find yourself back at square one despite having overcome numerous obstacles.</p><p>The term ‘transpoli’ refers to the gender identity research outpatient clinics of HUS and TAYS. The performance simulates the gender identity clinic process and explores the unequal structures within the healthcare system and the use of power by the clinics through a game and circus. <br> <br>You can take part in the performance as a player or a spectator. From the stands, spectators watch as the players make their way along – or get stuck on – a gender identity clinic obstacle course. <br> <br>The players, on the other hand, are assigned a character at random, based on real, anonymous gender identity clinic stories collected and published by the Transpolitiikka collective. The following details are known about the characters: their age group, gender identity, any associated diagnoses, and other potential factors that may hinder the clinic process, such as obesity. Players can progress smoothly along the obstacle course or receive penalties, or even be sent back to the start, just like at real-life gender identity clinics. <br> <br>The game has 10 places for players: if you would like to take part as a player, reserve your ticket in good time! The player tickets are not suitable for people with reduced mobility. Those with a player ticket should arrive 30 minutes before the performance for a briefing. <br> <br>Tickets: €20/7 via lippu.fi.</p><p>Please be aware that this performance may be distressing for people who are currently undergoing or have undergone their own gender identity clinic process, or who have had negative experiences related to this subject matter. The themes explored in the performance, such as the use of medical power, may cause anxiety.</p><p>Recommended age: 16+ <br>Performance language: Finnish <br> <br><b>Rae Reinvall</b>: concept development, circus artist <br><b>Pihla Aarnisalo</b>: circus artist <br><b>Marjukka Mykkänen</b>: circus artist <br><b>Pihla Lehtinen</b>: game artist <br><b>Stella Massa</b>: poetry, sound design, freestyle football</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69462/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69461", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/" }, "price": { "fi": "20 / 7 €", "sv": "20 / 7 €", "en": "20 / 7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385260, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:54.240014Z", "last_modified_time": "2026-06-18T11:13:54.240031Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795577.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385260/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:54.151723Z", "last_modified_time": "2026-08-24T12:23:03.591135Z", "date_published": null, "start_time": "2026-10-22T16:00:00Z", "end_time": "2026-10-22T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Transpoli on temppurata", "sv": "Transpoli on temppurata", "en": "Transpoli on temppurata" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.", "sv": "I den spelifierade samtida cirkusföreställningen visar sig transpolikliniken vara en hinderbana där man, trots att man klarat flera hinder, kan tvingas tillbaka till startrutan.", "en": "In this gamified contemporary circus performance, the gender identity clinic turns out to be an obstacle course where you may find yourself back at square one despite having overcome numerous obstacles." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/AE18C57C8FCBAE90C2F0F5F94F7F331E/Transpoli_on_temppurata", "sv": "http://www.caisa.fi/sv/evenemang/event/AE18C57C8FCBAE90C2F0F5F94F7F331E/Transpoli_on_temppurata", "en": "http://www.caisa.fi/en/events/event/AE18C57C8FCBAE90C2F0F5F94F7F331E/Transpoli_on_temppurata" }, "description": { "fi": "<p>Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.</p><p>Sanalla transpoli viitataan HUSin ja TAYSin sukupuoli-identiteetin tutkimuspoliklinikoihin. Esitys simuloi transpoliprosessia ja avaa terveydenhuollon epätasa-arvoisia rakenteita ja transpolien vallankäyttöä pelin ja sirkuksen keinoin.</p><p>Esitykseen voi osallistua pelaajana tai katsojana. Katsomosta seurataan pelaajien etenemistä tai juuttumista transpolin temppuradalla.</p><p>Pelaajille puolestaan arvotaan hahmo, joka perustuu todellisiin Transpolitiikka-kollektiivin keräämiin ja julkaisemiin anonyymeihin transpolitarinoihin. Hahmoista tiedetään ikäluokka, sukupuoli-identiteetti, mahdolliset liitännäisdiagnoosit, sekä muut mahdolliset transpoliprosessia estävät tekijät, kuten vaikkapa lihavuus. Pelaajat voivat päästä etenemään temppuradalla sujuvasti tai saada jäähyjä, tai jopa tulla lähetetyksi lähtöruutuun, kuten todellisuuden transpolillakin.</p><p>Pelaajapaikkoja on 10: jos haluat mukaan pelaajana, varaa lippusi ajoissa! Pelaajaliput eivät sovi liikuntarajoitteisille. Pelaajalipun lunastaneiden olisi hyvä olla paikalla 30 minuuttia ennen esitystä perehdytystä varten.</p><p>Huomaathan, että esitys voi olla ahdistava henkilöille, joilla on käynnissä tai takanaan oma transpoliprosessi, tai muuten aihepiiriin liittyviä negatiivisia kokemuksia. Esityksessä käsiteltävät teemat, kuten medikaalinen vallankäyttö, voivat aiheuttaa ahdistusta.</p><p>Ikäsuositus: 16 + <br>Esityksen kieli: suomi</p><p>Rae Reinvall: konseptointi, sirkustaiteilija <br>Pihla Aarnisalo: sirkustaiteilija <br>Marjukka Mykkänen: sirkustaiteilija <br>Pihla Lehtinen: pelitaiteilija <br>Stella Massa: runot, äänisuunnittelu, freestyle jalkapallo</p>", "sv": "<p>I den spelifierade samtida cirkusföreställningen visar sig transpolikliniken vara en hinderbana där man, trots att man klarat flera hinder, kan tvingas tillbaka till startrutan.</p><p>Med 'transpoli' avses mottagningarna för könsidentitetsutredningar vid HUS och TAYS. Föreställningen simulerar processen vid mottagningarna och belyser de ojämlika strukturerna inom hälso- och sjukvården samt mottagningarnas maktutövning med hjälp av spel och cirkus. <br> <br>Besökarna kan delta i föreställningen som spelare eller åskådare. Från läktaren följer åskådarna spelarnas framfart eller hur de fastnar på transpoliklinikens hinderbana. <br> <br>Spelarna tilldelas i sin tur en karaktär som bygger på verkliga, anonyma berättelser från transpolikliniken som samlats in och publicerats av kollektivet Transpolitiikka. Man känner till karaktärernas åldersgrupp, könsidentitet, eventuella tilläggsdiagnoser samt andra faktorer som kan hindra processen vid transpolikliniken, såsom till exempel fetma. Spelarna kan ta sig fram smidigt på hinderbanan, få straff eller till och med skickas tillbaka till startrutan, precis som på verklighetens transpoliklinik. <br> <br>Det finns tio spelarplatser: Om du vill vara med som spelare, se till att boka din biljett i god tid! Spelarbiljetterna är inte lämpliga för personer med funktionsnedsättning. De som har löst ut en spelarbiljett ska vara på plats 30 minuter före föreställningen för en genomgång. <br> <br>Biljetter: 20/7 €, på lippu.fi</p><p>Observera att föreställningen kan upplevas som påfrestande för personer som befinner sig mitt i eller har genomgått en egen transpoliklinikprocess, eller som på annat sätt har negativa erfarenheter kopplade till ämnet. De teman som tas upp i föreställningen, till exempel medicinsk maktutövning, kan väcka ångest.</p><p>Åldersrekommendation: 16+ <br>Föreställningens språk: finska <br> <br><b>Rae Reinvall</b>: konceptutveckling, cirkusartist <br><b>Pihla Aarnisalo</b>: cirkusartist <br><b>Marjukka Mykkänen</b>: cirkusartist <br><b>Pihla Lehtinen</b>: spelkonstnär <br><b>Stella Massa</b>: dikter, ljuddesign, freestylefotboll</p>", "en": "<p>In this gamified contemporary circus performance, the gender identity clinic turns out to be an obstacle course where you may find yourself back at square one despite having overcome numerous obstacles.</p><p>The term ‘transpoli’ refers to the gender identity research outpatient clinics of HUS and TAYS. The performance simulates the gender identity clinic process and explores the unequal structures within the healthcare system and the use of power by the clinics through a game and circus. <br> <br>You can take part in the performance as a player or a spectator. From the stands, spectators watch as the players make their way along – or get stuck on – a gender identity clinic obstacle course. <br> <br>The players, on the other hand, are assigned a character at random, based on real, anonymous gender identity clinic stories collected and published by the Transpolitiikka collective. The following details are known about the characters: their age group, gender identity, any associated diagnoses, and other potential factors that may hinder the clinic process, such as obesity. Players can progress smoothly along the obstacle course or receive penalties, or even be sent back to the start, just like at real-life gender identity clinics. <br> <br>The game has 10 places for players: if you would like to take part as a player, reserve your ticket in good time! The player tickets are not suitable for people with reduced mobility. Those with a player ticket should arrive 30 minutes before the performance for a briefing. <br> <br>Tickets: €20/7 via lippu.fi.</p><p>Please be aware that this performance may be distressing for people who are currently undergoing or have undergone their own gender identity clinic process, or who have had negative experiences related to this subject matter. The themes explored in the performance, such as the use of medical power, may cause anxiety.</p><p>Recommended age: 16+ <br>Performance language: Finnish <br> <br><b>Rae Reinvall</b>: concept development, circus artist <br><b>Pihla Aarnisalo</b>: circus artist <br><b>Marjukka Mykkänen</b>: circus artist <br><b>Pihla Lehtinen</b>: game artist <br><b>Stella Massa</b>: poetry, sound design, freestyle football</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69461/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69458", "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:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/" }, "price": { "fi": "20 / 7 €", "sv": "20 / 7 €", "en": "20 / 7 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385259, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:53.713136Z", "last_modified_time": "2026-06-18T11:13:53.713153Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795576.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385259/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:53.588763Z", "last_modified_time": "2026-08-24T12:23:03.095510Z", "date_published": null, "start_time": "2026-10-21T16:00:00Z", "end_time": "2026-10-21T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Transpoli on temppurata | Ensi-ilta", "sv": "Transpoli on temppurata | Premiere", "en": "Transpoli on temppurata | Premiere" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.", "sv": "I den spelifierade samtida cirkusföreställningen visar sig transpolikliniken vara en hinderbana där man, trots att man klarat flera hinder, kan tvingas tillbaka till startrutan.", "en": "In this gamified contemporary circus performance, the gender identity clinic turns out to be an obstacle course where you may find yourself back at square one despite having overcome numerous obstacles." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/0F257B1DA36DE4C4D34DFFA60E259140/Transpoli_on_temppurata_Ensi-ilta", "sv": "http://www.caisa.fi/sv/evenemang/event/0F257B1DA36DE4C4D34DFFA60E259140/Transpoli_on_temppurata_Premiere", "en": "http://www.caisa.fi/en/events/event/0F257B1DA36DE4C4D34DFFA60E259140/Transpoli_on_temppurata_Premiere" }, "description": { "fi": "<p>Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.</p><p>Sanalla transpoli viitataan HUSin ja TAYSin sukupuoli-identiteetin tutkimuspoliklinikoihin. Esitys simuloi transpoliprosessia ja avaa terveydenhuollon epätasa-arvoisia rakenteita ja transpolien vallankäyttöä pelin ja sirkuksen keinoin.</p><p>Esitykseen voi osallistua pelaajana tai katsojana. Katsomosta seurataan pelaajien etenemistä tai juuttumista transpolin temppuradalla.</p><p>Pelaajille puolestaan arvotaan hahmo, joka perustuu todellisiin Transpolitiikka-kollektiivin keräämiin ja julkaisemiin anonyymeihin transpolitarinoihin. Hahmoista tiedetään ikäluokka, sukupuoli-identiteetti, mahdolliset liitännäisdiagnoosit, sekä muut mahdolliset transpoliprosessia estävät tekijät, kuten vaikkapa lihavuus. Pelaajat voivat päästä etenemään temppuradalla sujuvasti tai saada jäähyjä, tai jopa tulla lähetetyksi lähtöruutuun, kuten todellisuuden transpolillakin.</p><p>Pelaajapaikkoja on 10: jos haluat mukaan pelaajana, varaa lippusi ajoissa! Pelaajaliput eivät sovi liikuntarajoitteisille. Pelaajalipun lunastaneiden olisi hyvä olla paikalla 30 minuuttia ennen esitystä perehdytystä varten.</p><p>Huomaathan, että esitys voi olla ahdistava henkilöille, joilla on käynnissä tai takanaan oma transpoliprosessi, tai muuten aihepiiriin liittyviä negatiivisia kokemuksia. Esityksessä käsiteltävät teemat, kuten medikaalinen vallankäyttö, voivat aiheuttaa ahdistusta.</p><p>Ikäsuositus: 16 + <br>Esityksen kieli: suomi</p><p>Rae Reinvall: konseptointi, sirkustaiteilija <br>Pihla Aarnisalo: sirkustaiteilija <br>Marjukka Mykkänen: sirkustaiteilija <br>Pihla Lehtinen: pelitaiteilija <br>Stella Massa: runot, äänisuunnittelu, freestyle jalkapallo</p>", "sv": "<p>I den spelifierade samtida cirkusföreställningen visar sig transpolikliniken vara en hinderbana där man, trots att man klarat flera hinder, kan tvingas tillbaka till startrutan.</p><p>Med 'transpoli' avses mottagningarna för könsidentitetsutredningar vid HUS och TAYS. Föreställningen simulerar processen vid mottagningarna och belyser de ojämlika strukturerna inom hälso- och sjukvården samt mottagningarnas maktutövning med hjälp av spel och cirkus. <br> <br>Besökarna kan delta i föreställningen som spelare eller åskådare. Från läktaren följer åskådarna spelarnas framfart eller hur de fastnar på transpoliklinikens hinderbana. <br> <br>Spelarna tilldelas i sin tur en karaktär som bygger på verkliga, anonyma berättelser från transpolikliniken som samlats in och publicerats av kollektivet Transpolitiikka. Man känner till karaktärernas åldersgrupp, könsidentitet, eventuella tilläggsdiagnoser samt andra faktorer som kan hindra processen vid transpolikliniken, såsom till exempel fetma. Spelarna kan ta sig fram smidigt på hinderbanan, få straff eller till och med skickas tillbaka till startrutan, precis som på verklighetens transpoliklinik. <br> <br>Det finns tio spelarplatser: Om du vill vara med som spelare, se till att boka din biljett i god tid! Spelarbiljetterna är inte lämpliga för personer med funktionsnedsättning. De som har löst ut en spelarbiljett ska vara på plats 30 minuter före föreställningen för en genomgång. <br> <br>Biljetter: 20/7 €, på lippu.fi</p><p>Observera att föreställningen kan upplevas som påfrestande för personer som befinner sig mitt i eller har genomgått en egen transpoliklinikprocess, eller som på annat sätt har negativa erfarenheter kopplade till ämnet. De teman som tas upp i föreställningen, till exempel medicinsk maktutövning, kan väcka ångest.</p><p>Åldersrekommendation: 16+ <br>Föreställningens språk: finska <br> <br><b>Rae Reinvall</b>: konceptutveckling, cirkusartist <br><b>Pihla Aarnisalo</b>: cirkusartist <br><b>Marjukka Mykkänen</b>: cirkusartist <br><b>Pihla Lehtinen</b>: spelkonstnär <br><b>Stella Massa</b>: dikter, ljuddesign, freestylefotboll</p>", "en": "<p>In this gamified contemporary circus performance, the gender identity clinic turns out to be an obstacle course where you may find yourself back at square one despite having overcome numerous obstacles.</p><p>The term ‘transpoli’ refers to the gender identity research outpatient clinics of HUS and TAYS. The performance simulates the gender identity clinic process and explores the unequal structures within the healthcare system and the use of power by the clinics through a game and circus. <br> <br>You can take part in the performance as a player or a spectator. From the stands, spectators watch as the players make their way along – or get stuck on – a gender identity clinic obstacle course. <br> <br>The players, on the other hand, are assigned a character at random, based on real, anonymous gender identity clinic stories collected and published by the Transpolitiikka collective. The following details are known about the characters: their age group, gender identity, any associated diagnoses, and other potential factors that may hinder the clinic process, such as obesity. Players can progress smoothly along the obstacle course or receive penalties, or even be sent back to the start, just like at real-life gender identity clinics. <br> <br>The game has 10 places for players: if you would like to take part as a player, reserve your ticket in good time! The player tickets are not suitable for people with reduced mobility. Those with a player ticket should arrive 30 minutes before the performance for a briefing. <br> <br>Tickets: €20/7 via lippu.fi.</p><p>Please be aware that this performance may be distressing for people who are currently undergoing or have undergone their own gender identity clinic process, or who have had negative experiences related to this subject matter. The themes explored in the performance, such as the use of medical power, may cause anxiety.</p><p>Recommended age: 16+ <br>Performance language: Finnish <br> <br><b>Rae Reinvall</b>: concept development, circus artist <br><b>Pihla Aarnisalo</b>: circus artist <br><b>Marjukka Mykkänen</b>: circus artist <br><b>Pihla Lehtinen</b>: game artist <br><b>Stella Massa</b>: poetry, sound design, freestyle football</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69458/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69489", "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: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/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385321, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-24T08:13:48.162415Z", "last_modified_time": "2026-06-24T08:13:48.162435Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790972.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385321/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-24T08:13:48.051326Z", "last_modified_time": "2026-08-24T12:23:01.083312Z", "date_published": null, "start_time": "2026-10-14", "end_time": "2026-10-18", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Cinemaissí: Latin American Film Festival – Kino Caisa", "sv": "Cinemaissí: Latin American Film Festival – Kino Caisa", "en": "Cinemaissí: Latin American Film Festival – Kino Caisa" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Cinemaissí esittää kiinnostavaa, ajatuksia herättävää ja omaperäistä latinalaisamerikkalaista elokuvataidetta Suomessa.", "sv": "Cinemaissí visar intressant, tankeväckande och originell latinamerikansk filmkonst i Finland.", "en": "Cinemaissí promotes appealing, thought-provoking, and novel Latin American cinema in Finland." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/238F475B3752DFAECA30F60A6B8E3630/Cinemaiss_Latin_American_Film_Festival", "sv": "http://www.caisa.fi/sv/evenemang/event/238F475B3752DFAECA30F60A6B8E3630/Cinemaiss_Latin_American_Film_Festival", "en": "http://www.caisa.fi/en/events/event/238F475B3752DFAECA30F60A6B8E3630/Cinemaiss_Latin_American_Film_Festival" }, "description": { "fi": "<p>Cinemaissí esittää kiinnostavaa, ajatuksia herättävää ja omaperäistä latinalaisamerikkalaista elokuvataidetta Suomessa.</p><p>Elokuvanäytösten, keskustelujen ja muiden kohtaamisten kautta festivaali tarjoaa foorumin latinalaisamerikkalaisen kulttuurin, politiikan ja yhteiskunnan esittelylle. Se tuo esille latinalaisamerikkalaisia ja karibialaisia nykyelokuvia sekä nousevilta että tunnetuilta ohjaajilta.</p><p>Jo kahden vuosikymmenen ajan Cinemaissí on luonut ainutlaatuista kulttuuritilaa, joka vahvistaa vuoropuhelua Suomen ja Latinalaisen Amerikan välillä, kuin myös Espanjan ja Portugalin kanssa, joiden yhteiset kielet ja kulttuurisiteet rikastuttavat festivaalin puitteita. Kolmannelle vuosikymmenelleen lähtevän Cinemaissín tavoitteena on edistää integraatiota ja empatiaa kulttuurin kautta sekä tuoda Latinalainen Amerikka näkyväksi ja lähestyttäväksi suomalaisessa kontekstissa.</p><p>Festivaalista on tullut vakiintunut osa Helsingin kulttuuritarjontaa – ei ainoastaan latinalaisamerikkalaisille yhteisöille, vaan myös suomalaiselle yleisölle ja muille kansainvälisille yhteisöille.</p><p>Yksityiskohtainen ohjelma ja lippujen myyntitiedot päivitetään <u><a> href=\"https://www.cinemaissi.com/\">Cinemaissín verkkosivuille</u></a>.</p>", "sv": "<p>Cinemaissí visar intressant, tankeväckande och originell latinamerikansk filmkonst i Finland.</p><p>Genom filmvisningar, diskussioner och andra möten erbjuder festivalen ett forum för att presentera den latinamerikanska kulturen och politiken samt det latinamerikanska samhället. Festivalen lyfter fram samtida filmer från Latinamerika och Karibien, både av nya och etablerade regissörer.</p><p>Redan i två decennier har Cinemaissí skapat en unik kulturell mötesplats som stärker dialogen mellan Finland och Latinamerika, liksom med Spanien och Portugal, vars gemensamma språk och kulturella band berikar festivalens ramar. Cinemaissí, som nu går in på sitt tredje årtionde, har som mål att främja integration och empati genom kultur samt att göra Latinamerika synligt och tillgängligt i ett finskt sammanhang.</p><p>Festivalen har blivit en etablerad del av Helsingfors kulturutbud – inte bara för latinamerikanska gemenskaper, utan också för den finska publiken och andra internationella gemenskaper.</p><p>Det detaljerade programmet och information om biljettförsäljningen uppdateras på <u><a href=\"https://www.cinemaissi.com/\">Cinemaissís webbplats (på engelska)</u></a>.</p>", "en": "<p>Cinemaissí promotes appealing, thought-provoking, and novel Latin American cinema in Finland.</p><p>Through film screenings, conversations, and other encounters, the festival offers a platform for the exhibition of Latin American culture, politics, and society. It showcases contemporary films from Latin America and the Caribbean by both emerging and renowned directors.</p><p>For two decades, Cinemaissí has created a unique cultural space that strengthens dialogue between Finland and Latin America, as well as with Spain and Portugal, whose shared languages and cultural ties enrich the festival’s framework. As we embark on our third decade, Cinemaissí’s goal is to promote integration and empathy through culture, making Latin America visible and relatable within the Finnish context.</p><p>The festival has become an established part of Helsinki’s cultural offer, not only for Latin American communities but also for Finnish audiences and other international communities.</p><p>The detailed programme and ticket sales information will be updated on the <u><a>href=\"https://www.cinemaissi.com/\">Cinemaissí website</u></a>.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69489/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69250", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/risa-only-bones-2-0-stoa-21708632/", "sv": "https://www.lippu.fi/event/risa-only-bones-2-0-stoa-21708632/", "en": "https://www.lippu.fi/event/risa-only-bones-2-0-stoa-21708632/" }, "price": { "fi": "22 / 17 €", "sv": "22 / 17 €", "en": "22 / 17 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384957, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T06:13:48.201003Z", "last_modified_time": "2026-06-05T06:13:48.201018Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792293.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384957/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-05T06:13:47.998368Z", "last_modified_time": "2026-08-24T12:22:46.157414Z", "date_published": null, "start_time": "2026-09-03T15:00:00Z", "end_time": "2026-09-03T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "RISA: Only Bones 2.0 | Ensi-ilta", "sv": "RISA: Only Bones 2.0 | Premiär", "en": "RISA: Only Bones 2.0 | Premiere" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Kehollisen ilmaisun ihmeellisyyttä juhliva nykysirkusteos vie katsojan matkalle näkemään yli totuttujen raamien.", "sv": "Denna samtida cirkusföreställning, som hyllar det fysiska uttryckets förunderlighet, tar åskådaren med på en resa bortom de invanda ramarna.", "en": "This contemporary circus production celebrates the wonder of physical expression and takes the audience on a journey that looks beyond the familiar boundaries." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F68351C5857D39C0F5434607186C6637/RISA_Only_Bones_2_0_Ensi-ilta", "sv": "http://www.stoa.fi/sv/evenemang/event/F68351C5857D39C0F5434607186C6637/RISA_Only_Bones_2_0_Premiar", "en": "http://www.stoa.fi/en/events/event/F68351C5857D39C0F5434607186C6637/RISA_Only_Bones_2_0_Premiere" }, "description": { "fi": "<p>Kehollisen ilmaisun ihmeellisyyttä juhliva nykysirkusteos vie katsojan matkalle näkemään yli totuttujen raamien.</p><p>Teos pohtii aikaamme, joka tuntuu muuttuneen takaperoiseksi kuin ihmisyyden degeneraatio. Kaikki tavoittelevat lopullista täyttymystä: sitä hetkeä, kun ponnistus päättyy ja kaikki on viimein valmista. Päämäärään päästäkseen kävelemme toistemme yli kuin eläimet, seurauksista piittaamatta.</p><p>Monitahoinen esitys leikittelee valon ja varjon rajamailla, tapaillen fyysisyyden äärirajoja. Akrobatia ja tanssi sulautuvat yhdeksi hengittäväksi kokonaisuudeksi, joka on yhtä aikaa virtuoosinen ja paljas; keho, tila ja valo synnyttävät lavalle kokonaisen maailman.</p><p>Only Bones-soolokonsepti on <b>Thom Moncktonin</b> kehittämä minimalistinen fyysisen teatterin projekti, joka pohjautuu annettuihin parametreihin, jotka kukin taiteilija voi halutessaan joko rikkoa tai toteuttaa. Alkuperäisenä ohjeena on: \"vain yksi valo, ei kerrontaa, ei lavasteita, ei rekvisiittaa, ei tekstiä ja kaikki rajoitetussa tilassa\". Taiteilijat jäävät sitten omien taitojensa kanssa luomaan oman ainutlaatuisen maailmansa konseptin sisällä.</p><p>Ikäsuositus: 10 +<br>Kesto: n. 60 min.</p><p><b>Työryhmä:</b><br>Ohjaus ja lavalla: Riia Kivimäki & Saku Mäkelä<br>Äänisuunnittelija: Hanna Mikander<br>Valosuunnittelija: Jere Mönkkönen<br>Konsepti: Thom Monckton<br>Esitystä on tukenut: Svenska kulturfonden, Taiteen edistämiskeskus, Subtopia ja Cirko-Uuden Sirkuksen Keskus.<br>Yhteistuotanto: RISA ja Stoa</p><p><b>RISA: Riia Kivimäki</b> ja <b>Saku Mäkelä</b> ovat kansainvälisesti palkittuja tanssi- ja sirkustaiteilijoita Helsingistä. Yhdessä he ovat kehittäneet ainutlaatuisen ja omaleimaisen liikekielen, jossa pariakrobatia ja tanssi yhdistyvät ennenäkemättömällä tavalla. He luovat poikkitaiteellisia nykytaideteoksia, jotka rikkovat genrejen sisäisiä ja välisiä sääntöjä sekä rajoituksia.</p><p>Heidän edellinen kokoillan teoksensa <i>GLG</i> sai kiitosta, niin yleisöltä kuin kriitikoilta. <a href=\"https://www.riiasaku.com\"><u>Voit lukea heistä lisää RISA:n nettisivuilta</u></a>.</p><p><b>Jere Mönkkönen</b> on valosuunnittelija ja tekninen tuottaja. Hän on valosuunnittelijana Suomen kansainvälisesti menestyneimpiä näyttämötaiteiden saralla ja hänen teoksiaan on nähty yli 40 maassa. Suomessa Mönkkösen teoksia on nähty suurimmilla kotimaisilla näyttämöillä ja teattereissa (mm. Helsingin Kaupunginteatteri, Turun Kaupunginteatteri, Kansallisteatteri, Kansallisooppera). Hän on ollut merkittävässä roolissa kehittämässä suomalaista nykysirkusta niin Suomessa kuin kansainvälisestikin. Hän on laajasti kiinnostunut näyttämötaiteista, keskittyen erityisesti sirkuksen sekä visuaalisen- ja esineteatterin maailmoihin. Valosuunnittelijana häntä ensisijaisesti kiinnostaa tukea työstettävän teoksen ydinsanomaa: olkoon se sitten kannanotto, kerrottava tarina tai puhtaasti esteettinen elämys.</p><p><b>Hanna Mikander</b> on kokenut äänisuunnittelija ja tehnyt äänisuunnittelun noin 50 esitykseen. Hän on myös säveltänyt, sovittanut ja tuottanut musiikkia useisiin tuotantoihin, kuten <i>Förgät mig</i> (2025), <i>Fröken Julie</i> (2024), <i>Ronja Rövardotter</i> (2023) ja <i>Själarnas ö</i> (2022). Hän työskentelee Svenska Teaternissa talon suunnittelijana ja on vieraillut suunnittelijana mm. Kulturhuset Stadsteaternissa Tukholmassa, Viiruksessa, Åbo Svenska Teaternissa, Lilla Teaternissa ja Sirius Teaternissa.</p><p><b>Nostoja RISAn edellisen teoksen <i>GLG</i> arvioista:</b></p><p><i>”Saku Mäkelän ja Riia Kivimäen teos on akrobaattinen duetto. Se osaa hyödyntää kaikki dueton mahdollisuudet syvästä eroottisesta yhteen kietoutumisesta siihen henkeäsalpaavaan täydelliseen keskinäiseen luottamukseen, mitä pariakrobatia vaatii.”</i><br>Maria Säkö, Helsingin Sanomat, 3.3.2022</p><p><i>”Se mikä GLG:stä tekee illan ehkä taiteellisesti täysipainoisimman esityksen, on Kivimäen ja Mäkelän huikea taitavuus ja upeasti toteuttama pari- ja ilma-akrobatian sekä tanssin liitto. Tässä esityksessä akrobatia ei ole vain taitavasti toteutettuja temppuja ja liikkeitä, vaan tarinan ja tunteiden kerronta- ja ilmaisukeino.”</i> <br>Annikki Al</p>", "sv": "<p>Denna samtida cirkusföreställning, som hyllar det fysiska uttryckets förunderlighet, tar åskådaren med på en resa bortom de invanda ramarna.</p><p>Verket reflekterar över vår tid, som verkar ha blivit bakvänd, precis som en degeneration av mänskligheten. Alla strävar efter den slutgiltiga uppfyllelsen: det ögonblick då ansträngningen tar slut och allt äntligen är klart. För att nå vårt mål trampar vi på varandra som djur, utan att bry oss om konsekvenserna. <br> <br>Den mångfacetterade föreställningen leker med gränserna mellan ljus och skugga, och utforskar fysikens yttersta gränser. Akrobatik och dans smälter samman till en levande helhet som är både virtuos och avskalad; kroppen, rummet och ljuset skapar en hel värld på scenen.</p><p>Soloprojektet Only Bones är ett minimalistiskt projekt inom fysisk teater som har utvecklats av <b>Thom Monckton</b>. Det bygger på givna parametrar som varje konstnär kan välja att antingen bryta mot eller följa. Den ursprungliga instruktionen lyder ”endast en lampa, ingen berättelse, inga kulisser, inga rekvisita, ingen text och allt i ett begränsat utrymme”. Konstnärerna får sedan, med hjälp av sina egna färdigheter, skapa sin egen unika värld inom ramen för konceptet.</p><p>Åldersrekommendation: 10+ <br>Längd: ca 60 min.</p><p><b>Arbetsgrupp:</b> <br>Regi och på scenen: Riia Kivimäki och Saku Mäkelä <br>Ljuddesigner: Hanna Mikander <br>Ljusdesigner: Jere Mönkkönen <br>Koncept: Thom Monckton <br>Föreställningen har fått stöd av: Svenska kulturfonden, Centret för konstfrämjande, Subtopia och Cirko – Centrum för nycirkus. <br>Samproduktion: RISA och Stoa</p><p><b>RISA: Riia Kivimäki</b> och <b>Saku Mäkelä</b> är internationellt prisbelönade dans- och cirkusartister från Helsingfors. Tillsammans har de utvecklat ett unikt och egenartat rörelsespråk, där parakrobatik och dans förenas på ett helt nytt sätt. De skapar tvärkonstnärliga samtida konstverk som bryter mot reglerna och begränsningarna både inom och mellan olika genrer.</p><p>Deras förra helaftonsföreställning <i>GLG</i> fick beröm både från publiken och kritikerna. <a href=\"https://www.riiasaku.com\"><u>Du kan läsa mer om dem på RISA:s webbplats (på engelska)</u></a>.</p><p><b>Jere Mönkkönen</b> är ljusdesigner och teknisk producent. Som ljusdesigner är han en av Finlands mest framgångsrika inom scenkonsten på internationell nivå, och hans verk har visats i över 40 länder. I Finland har Mönkkönens verk satts upp på de största scenerna och teatrarna (bland annat Helsingfors stadsteater, Åbo stadsteater, Nationalteatern och Nationaloperan). Han har spelat en viktig roll i utvecklingen av den finska samtida cirkusen, såväl i Finland som internationellt. Han har ett brett intresse för scenkonst, med särskilt fokus på cirkus samt visuell teater och objektteater. Som ljusdesigner är han främst intresserad av att förstärka kärnbudskapet i det verk han arbetar med: oavsett om det handlar om ett ställningstagande, en berättelse eller en rent estetisk upplevelse.</p><p><b>Hanna Mikander</b> är en erfaren ljuddesigner som har arbetat med ljuddesign för cirka 50 föreställningar. Hon har dessutom komponerat, arrangerat och producerat musik till flera produktioner, bland annat <i>Förgät mig</i> (2025), <i>Fröken Julie</i> (2024), <i>Ronja Rövardotter</i> (2023) och <i>Själarnas ö</i> (2022). Hon arbetar som husets planerare vid Svenska Teatern och har som planerare också gästat bland annat Kulturhuset Stadsteatern i Stockholm, Viirus, Åbo Svenska Teatern, Lilla Teatern och Sirius Teatern.</p><p><b>Utdrag ur recensionerna av RISA:s föregående verk <i>GLG</i>:</b></p><p><i>”Saku Mäkeläs och Riia Kivimäkis verk är en akrobatisk duett. Den utnyttjar alla möjligheter som en duett erbjuder – från en djup, erotisk sammanflätning till det hisnande, fullkomliga ömsesidiga förtroende som parakrobatik kräver.”</i> <br>Maria Säkö, Helsingin Sanomat 3.3.2022</p>", "en": "<p>This contemporary circus production celebrates the wonder of physical expression and takes the audience on a journey that looks beyond the familiar boundaries.</p><p>The work reflects on our times, which seem to have taken a step backwards, as if humanity were in a state of degeneration. Everyone is striving for the ultimate fulfilment: that moment when the struggle ends and everything is finally complete. To reach our goal, we trample over one another like animals, without a care for the consequences.</p><p>This multifaceted performance plays on the boundary between light and shadow, exploring the very limits of physicality. Acrobatics and dance merge into a single, breathing whole that is at once virtuosic and bare; the body, the space and light bring a whole world to life on stage.</p><p>The ‘Only Bones’ solo concept is a minimalist physical theatre project developed by <b>Thom Monckton</b>, based on set parameters which each artist is free to either break or follow as they wish. The original instructions are “just one light, no narration, no set, no props, no text, and everything in a confined space”. The artists are then left to use their own skills to create their own unique worlds within the concept.</p><p>Recommended age: 10+ <br>Duration: roughly 60 min <br> <br><b>Creative team:</b> <br>Direction and performance: Riia Kivimäki & Saku Mäkelä <br>Sound design: Hanna Mikander <br>Lighting design: Jere Mönkkönen <br>Concept: Thom Monckton <br>The performance has been supported by: The Swedish Cultural Foundation, Art Promotion Centre Finland, Subtopia and Cirko – Centre for New Circus. <br>Co-production: RISA and Stoa</p><p><b>RISA: Riia Kivimäki</b> and <b>Saku Mäkelä</b> are internationally acclaimed dance and circus artists from Helsinki. Together, they have developed a unique and distinctive movement language in which partner acrobatics and dance are combined in an unprecedented way. They create interdisciplinary works of contemporary art that break the rules and boundaries within and between genres.</p><p>Their previous full-length production, <i>GLG</i>, was praised by both audiences and critics. <a href=\"https://www.riiasaku.com\"><u>You can read more about them on the RISA website</u></a>. <br> <br><b>Jere Mönkkönen</b> is a lighting designer and technical producer. As a lighting designer, he is one of Finland’s most internationally successful figures in the performing arts, and his work has been seen in over 40 countries. In Finland, Mönkkönen’s works have been featured on the most significant stages in theatres (including the Helsinki City Theatre, the Turku City Theatre, the National Theatre and the National Opera). He has played a significant role in developing Finnish contemporary circus both in Finland and internationally. He has a wide-ranging interest in the performing arts, focusing particularly on the worlds of circus, visual theatre and object theatre. As a lighting designer, his primary interest is in supporting the core message of the work being worked on, be it a statement, a story to be told or a purely aesthetic experience.</p><p><b>Hanna Mikander</b> is an experienced sound designer who has provided sound design for around 50 productions. She has also composed, arranged and produced music for numerous productions, such as <i>Förgät mig</i> (2025), <i>Fröken Julie</i> (2024), <i>Ronja Rövardotter</i> (2023) and <i>Själarnas ö</i> (2022). She works as an in-house designer at Svenska Teatern and has worked as a guest designer at venues including Kulturhuset Stadsteatern in Stockholm, Viirus, Åbo Svenska Teatern, Lilla Teatern and Sirius Teatern.</p><p><b>Highlights from reviews of RISA’s previous work, <i>GLG</i>:</b></p><p><i>“Saku Mäkelä and Riia Kivimäki’s work is an acrobatic duet. It knows how to make the most of all the possibilities offered by a duet, from a deep, erotic intertwining to that breathtaking, absolute mutual trust that partner acrobatics demands.”</i> <br>Maria Säkö, Helsingin Sanomat, 3 March 2022</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69250/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68496", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/yso:p22193/?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": [], "info_url": { "fi": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684821/", "sv": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684821/", "en": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684821/" }, "price": { "fi": "24,80 / 20 €", "sv": "24,80 / 20 €", "en": "24,80 / 20 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384798, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T11:13:53.625111Z", "last_modified_time": "2026-06-01T11:13:53.625125Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789942.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384798/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T11:13:53.498589Z", "last_modified_time": "2026-08-24T12:22:44.018369Z", "date_published": null, "start_time": "2026-08-28T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Agit-Cirk: RapuRequiem | Ensi-ilta", "sv": "Agit-Cirk: RapuRequiem | Premiär", "en": "Agit-Cirk: RapuRequiem | Premiere" }, "location_extra_info": null, "provider_contact_info": null, "short_description": { "fi": "Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys.", "sv": "En dystopisk resa mot en förlorad kultur. RapuRequiem är en föreställning som kombinerar talteater och samtida cirkus.", "en": "A dystopian journey towards a lost culture. RapuRequiem (‘Crab Requiem’) is a performance that combines spoken theatre and contemporary circus." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/44F3939BF48017A10AE888068D8370F6/Agit-Cirk_RapuRequiem_Ensi-ilta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/44F3939BF48017A10AE888068D8370F6/Agit-Cirk_RapuRequiem_Premiar", "en": "http://www.kanneltalo.fi/en/events/event/44F3939BF48017A10AE888068D8370F6/Agit-Cirk_RapuRequiem_Premiere" }, "description": { "fi": "<p>Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys.</p><p>Absurdissa, runollisessa ja fyysisessä teoksessa sukelletaan dystooppisen scifin avulla nykyajan ja nykyihmisen analyysiin. Mitä jos lähes kaikki tuhoutuisi ja jäljelle jäävä länsimainen kulttuurihistoria olisi yhden kännykän ja muistisairaan esitystaiteilijaryhmän varassa?</p><p>Katastrofista selviytyneet taiteilijat muistavat vain palasia romahdusta edeltäneeltä ajalta. Yksi niistä on kaikkialla vaikuttanut sosiaalinen media, toinen entistä hullumpien johtajien fanaattinen ja absurdi puhetulva ja kolmas ihmisten piittaamattomuus lisääntyvästä ekologisesta ja inhimillisestä tuhosta. Yksityisiä ja yleisiä muistoja leimaa toisaalta materiaalinen runsaus, toisaalta jäytävä yksinäisyys, kasvava epätasa-arvo, globaalin solidaarisuuden puute ja ydinasepelko.</p><p>Ryhmän suuri tehtävä on säilyttää ne rippeet, joita suomalaisen taiteen historiasta on yhä jäljellä. Päämääränä on pohjoisen huhuttu paratiisi, jossa ilma on yhä siedettävän viileää ja ravintoa riittää kaikille. Siellä suomalaisen kulttuurin voisi herättää uudelleen henkiin, vaikka kollektiivinen muistinmenetys asettaa haasteita heidän pyhälle etsinnälleen.</p><p>Ikäsuositus +12<br> <br>Tuotanto: Agit-Cirk ja Kanneltalo<br>Esiintyjät: Jenni Lehtinen, Youssef Alkhatib, Ulla Raitio, Sasu Peistola<br>Käsikirjoitus ja Ohjaus: Jussi Moila<br>Valosuunnittelu: June Horton-White<br>Äänisuunnittelu: Antero Huttunen, konsultointi Petteri Rajanti<br>Pukusuunnittelu: Kaisa Kemikoski<br>Koreografia, joukkokohtaukset: Natasha Lommi <br>Valokuvat: Johanna Julia Portraits<br>Alkuperäinen konsepti ja suunnittelu: Sasu Peistola, Jenni Lehtinen, Ulla Raitio, Jari Virman, Henry Hanikka, Juha Tuisku<br>Tukijat: Jenny ja Antti Wihurin Rahasto, Taide ja Kulttuurivirasto (Taike), Suomen Kulttuurirahasto, Cirko - Uuden Sirkuksen keskus, Sirkussali</p>", "sv": "<p>En dystopisk resa mot en förlorad kultur. RapuRequiem är en föreställning som kombinerar talteater och samtida cirkus.</p><p>I detta absurda, poetiska och fysiska verk dyker vi med hjälp av dystopisk science fiction ned i en analys av nutiden och den moderna människan. Tänk om nästan allt skulle gå under och den västerländska kulturhistorien som återstod skulle hänga på en enda mobiltelefon och en grupp scenkonstnärer med minnesstörningar?</p><p>De konstnärer som överlevde katastrofen minns bara fragment från tiden före kollapsen. En av dem är de sociala medierna som påverkat allt och alla, en annan det fanatiska och absurda ordflödet från allt galnare ledare, och den tredje människors likgiltighet inför den tilltagande ekologiska och mänskliga förstörelsen. Både privata och allmänna minnen präglas å ena sidan av materiellt överflöd, å andra sidan av en gnagande ensamhet, växande ojämlikhet, brist på global solidaritet och rädsla för kärnvapen. <br> <br>Gruppens stora uppgift är att bevara de spillror som fortfarande finns kvar av den finska konsthistorien. Målet är det omtalade paradiset i norr, där luften fortfarande är behagligt sval och det finns tillräckligt med mat åt alla. Där skulle den finska kulturen kunna återupplivas, även om den kollektiva minnesförlusten innebär utmaningar för deras heliga sökande.</p><p>Åldersrekommendation: 12 +</p><p>Produktion: Agit-Cirk och Gamlasgården <br>På scenen: Jenni Lehtinen, Youssef Alkhatib, Ulla Raitio, Sasu Peistola <br>Manus och regi: Jussi Moila <br>Ljusdesign: June Horton-White <br>Ljuddesign: Antero Huttunen med konsultation av Petteri Rajanti <br>Kostymdesign: Kaisa Kemikoski <br>Koreografi, gruppscener: Natasha Lommi<br>Fotografier: Johanna Julia Portraits <br>Ursprungligt koncept och planering: Sasu Peistola, Jenni Lehtinen, Ulla Raitio, Jari Virman, Henry Hanikka, Juha Tuisku <br>Sponsorer: Jenny och Antti Wihuris fond, Konst- och kulturmyndigheten (Taike), Finska kulturfonden, Cirko – Centrum för nycirkus, Sirkussali</p>", "en": "<p>A dystopian journey towards a lost culture. RapuRequiem (‘Crab Requiem’) is a performance that combines spoken theatre and contemporary circus.</p><p>This absurd, poetic and physical work delves into an analysis of the modern world and modern humanity through dystopian sci-fi. What if almost everything were to be destroyed, and the remaining Western cultural history were to depend on a single mobile phone and a group of performance artists suffering from a memory disorder?</p><p>The artists who survived the disaster can only recall fragments of the time before the collapse. One of these is the pervasive influence of social media; another is the fanatical and absurd torrent of rhetoric spouted by increasingly deranged leaders; and the third is people’s indifference to the increasing ecological and human devastation. On the one hand, the private and collective memories are characterised by material abundance and, on the other hand, by gnawing loneliness, increasing inequality, a lack of global solidarity and the fear of nuclear weapons.</p><p>The group’s grand mission is to preserve what little remains of the history of Finnish art. Their destination is the much-rumoured paradise in the north, where the air is still tolerably cool and there is enough food to go around. There, they could revive Finnish culture, even though their collective amnesia poses challenges to their sacred quest.</p><p>Age recommendation: 12 +</p><p>Production: Agit-Cirk and Kanneltalo <br>Performers: Jenni Lehtinen, Youssef Alkhatib, Ulla Raitio, Sasu Peistola <br>Script and direction: Jussi Moila <br>Lighting design: June Horton-White <br>Sound design: Antero Huttunen, consulting by Petteri Rajanti<br>Costume design: Kaisa Kemikoski <br>Coreography, group scenes: Natasha Lommi<br>Photos: Johanna Julia Portraits <br>Original concept and design: Sasu Peistola, Jenni Lehtinen, Ulla Raitio, Jari Virman, Henry Hanikka, Juha Tuisku <br>Supporters: The Jenny and Antti Wihuri Foundation, the Finnish Arts and Culture Agency, the Finnish Cultural Foundation, Cirko – Centre for New Circus, Sirkussali</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68496/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5ock7bu", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?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": "2026-08-06T11:44:34.821822Z", "last_modified_time": "2026-08-24T12:08:13.260978Z", "date_published": null, "start_time": "2026-12-19T13:30:00Z", "end_time": "2026-12-19T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5ock7bu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5ock7pe", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?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": "2026-08-06T11:44:34.713000Z", "last_modified_time": "2026-08-24T12:08:13.224895Z", "date_published": null, "start_time": "2026-12-12T13:30:00Z", "end_time": "2026-12-12T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5ock7pe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5ock73m", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?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": "2026-08-06T11:44:34.596005Z", "last_modified_time": "2026-08-24T12:08:13.189731Z", "date_published": null, "start_time": "2026-12-05T13:30:00Z", "end_time": "2026-12-05T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5ock73m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5oclaji", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?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": "2026-08-06T11:44:34.483528Z", "last_modified_time": "2026-08-24T12:08:13.153600Z", "date_published": null, "start_time": "2026-11-28T13:30:00Z", "end_time": "2026-11-28T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclaji/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5oclawa", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?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": "2026-08-06T11:44:34.378712Z", "last_modified_time": "2026-08-24T12:08:13.061796Z", "date_published": null, "start_time": "2026-11-21T13:30:00Z", "end_time": "2026-11-21T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclawa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5oclbcq", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?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": "2026-08-06T11:44:34.267056Z", "last_modified_time": "2026-08-24T12:08:13.024546Z", "date_published": null, "start_time": "2026-11-14T13:30:00Z", "end_time": "2026-11-14T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclbcq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5oclbpe", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?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": "2026-08-06T11:44:34.164831Z", "last_modified_time": "2026-08-24T12:08:12.985256Z", "date_published": null, "start_time": "2026-11-07T13:30:00Z", "end_time": "2026-11-07T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclbpe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5oclb3u", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?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": "2026-08-06T11:44:34.060168Z", "last_modified_time": "2026-08-24T12:08:12.950821Z", "date_published": null, "start_time": "2026-10-31T13:30:00Z", "end_time": "2026-10-31T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclb3u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5oclciq", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?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": "2026-08-06T11:44:33.913088Z", "last_modified_time": "2026-08-24T12:08:12.914832Z", "date_published": null, "start_time": "2026-10-24T12:30:00Z", "end_time": "2026-10-24T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclciq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5oclcu4", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?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": "2026-08-06T11:44:33.769135Z", "last_modified_time": "2026-08-24T12:08:12.872188Z", "date_published": null, "start_time": "2026-10-17T12:30:00Z", "end_time": "2026-10-17T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclcu4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5ocldca", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?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": "2026-08-06T11:44:33.664390Z", "last_modified_time": "2026-08-24T12:08:12.835341Z", "date_published": null, "start_time": "2026-10-10T12:30:00Z", "end_time": "2026-10-10T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5ocldca/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5ocldpe", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7aqq/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5oclgxm/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-06T11:39:34.022431Z", "last_modified_time": "2026-08-06T11:39:34.022446Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d4eb4d08-9247-4577-a625-70a60a6b2622.png", "name": "", "cropping": "140,0,1274,1135", "photographer_name": "", "alt_text": "Teksti lasten elokuva ja kuva popcornista, juomamukista ja filmistä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385717/?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": "2026-08-06T11:44:33.556062Z", "last_modified_time": "2026-08-24T12:08:12.799661Z", "date_published": null, "start_time": "2026-10-03T12:30:00Z", "end_time": "2026-10-03T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten elokuva", "sv": "Barnfilm", "en": "Children's movie" }, "location_extra_info": { "fi": "Paja", "sv": "Paja-verkstäder", "en": "Makerspace" }, "provider_contact_info": null, "short_description": { "fi": "Lasten elokuva joka lauantai kirjastossa. ", "sv": "Barnfilm varje lördag på biblioteket. ", "en": "Children's movie every Saturday at the library. " }, "info_url": null, "description": { "fi": "<p>Lasten elokuva kirjaston pajassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on suomenkielellä. Elokuva on suomenkielellä. </p><p>Elokuvan ikäraja on enintään K-7. </p>", "sv": "<p>Barnfilm i bibliotekets paja-verkstäder. Ta med egen dryck och snacks! Filmen är på finska. </p><p>Filmens åldersgräns är högst 7 år (K-7). </p>", "en": "<p>Children's movie in the library's Makerspace every Saturday at 12 pm. Bring your own drinks and snacks! The movie is in Finnish. The age limit for a film is seven or less. </p><p>Welcome to the movie!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5ocldpe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }