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

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

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

See the result

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

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

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

See the result

event/?start=now&end=today

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

event/?suitable_for=12,14

See the result

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

See the result

event/?publisher_ancestor=ahjo:00001

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

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

See the result

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

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&page=2&publisher_ancestor=ahjo%3A00001
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 10857,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=3&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:67175",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-huutamisen-taito-4013988/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-huutamisen-taito-4013988/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-huutamisen-taito-4013988/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491158,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-23T10:12:12.482941Z",
                    "last_modified_time": "2025-10-23T10:12:12.482951Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777336.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491158/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-23T10:12:12.435417Z",
            "last_modified_time": "2025-10-27T09:13:18.644070Z",
            "date_published": null,
            "start_time": "2025-11-12T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: Huutamisen taito (12)",
                "sv": "Kino Helios: Huutamisen taito (12)",
                "en": "Kino Helios: Huutamisen taito (12)"
            },
            "provider": null,
            "description": {
                "fi": "<p>Anu tapaa vastaanotollaan säännöllisesti Heloisaa, joka aina rakastuessaan alkaa kärsiä julmista ja piinaavista pakkoajatuksista rakastettuaan kohtaan.</p><p>Heloisan kieroutunut psyyke kiehtoo Anua tavalla, jota hän ei täysin ymmärrä – ammatillisesti ja henkilökohtaisesti. Mutta eräänä päivänä Heloisa yllättäen lopettaa terapian. Juhannusjuhlat ystäväpariskunnan kanssa keskeytyvät, kun Anun poika Antti saapuu paikalle uuden tyttöystävänsä kanssa – joka on Heloisa. Anu joutuu kohtaamaan omat rajansa sekä Heloisan terapiasuhteeseen liittyvät kipeät muistot, jotka paljastavat heidän välilleen syntyneen pakkomielteisen siteen, joka on vaarassa tuhota kaiken.</p><p>Ikäraja: 12<br>Kesto: 82 min<br>Ensi-ilta: 31.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Anu tapaa vastaanotollaan säännöllisesti Heloisaa, joka aina rakastuessaan alkaa kärsiä julmista ja piinaavista pakkoajatuksista rakastettuaan kohtaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1978DE19DBEFA4F611A6A7B1327099FD/Kino_Helios_Huutamisen_taito_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1978DE19DBEFA4F611A6A7B1327099FD/Kino_Helios_Huutamisen_taito_12_",
                "en": "http://www.malmitalo.fi/en/events/event/1978DE19DBEFA4F611A6A7B1327099FD/Kino_Helios_Huutamisen_taito_12_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67175/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67183",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4013994/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4013994/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4013994/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491161,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-23T12:12:09.441341Z",
                    "last_modified_time": "2025-10-23T12:12:09.441352Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777335.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491161/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-23T12:12:09.395051Z",
            "last_modified_time": "2025-10-27T09:13:18.203051Z",
            "date_published": null,
            "start_time": "2025-11-12T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: Springsteen: Deliver Me from Nowhere (12)",
                "sv": "Kino Helios: Springsteen: Deliver Me from Nowhere (12)",
                "en": "Kino Helios: Springsteen: Deliver Me from Nowhere (12)"
            },
            "provider": null,
            "description": {
                "fi": "<p>Elokuva kertoo Bruce Springsteenin vuoden 1982 Nebraska-albumin tekemisestä aikana, jolloin Springsteen oli vielä menestyspaineiden ja menneisyyden haamujen kanssa painiskeleva nuori muusikko, joka sinnitteli maailmanlaajuisen supertähteyden kynnyksellä.</p><p>Springsteenin asunnon makuuhuoneessa New Jerseyssä neliraitanauhurilla äänitetty albumi merkitsi käännekohtaa hänen elämässään, ja sitä pidetään edelleen yhtenä Springsteenin ajattomimmista teoksista — se on karu ja tunnelmaltaan aavemainen akustinen levy, jolla kadonneet sielut etsivät syytä uskoa tulevaan.</p><p>Ikäraja: 12<br>Kesto: 120 min<br>Ensi-ilta: 31.10.2025</p><p>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "short_description": {
                "fi": "Elokuva kertoo Bruce Springsteenin vuoden 1982 Nebraska-albumin tekemisestä aikana, jolloin Springsteen oli vielä menestyspaineiden ja menneisyyden haamujen kanssa painiskeleva nuori muusikko, joka sinnitteli maailmanlaajuisen supertähteyden kynnyksellä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/095961F03E5425E94319D58B214AA307/Kino_Helios_Springsteen_Deliver_Me_from_Nowhere_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/095961F03E5425E94319D58B214AA307/Kino_Helios_Springsteen_Deliver_Me_from_Nowhere_12_",
                "en": "http://www.malmitalo.fi/en/events/event/095961F03E5425E94319D58B214AA307/Kino_Helios_Springsteen_Deliver_Me_from_Nowhere_12_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67183/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67199",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sisu-2-4013998/#calendar-start=2025-11",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sisu-2-4013998/#calendar-start=2025-11",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sisu-2-4013998/#calendar-start=2025-11"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491167,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-23T13:13:56.128084Z",
                    "last_modified_time": "2025-10-23T13:13:56.128102Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777366.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491167/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-23T13:13:56.013408Z",
            "last_modified_time": "2025-10-27T09:13:17.348973Z",
            "date_published": null,
            "start_time": "2025-11-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: Sisu 2 (16)",
                "sv": "Kino Helios: Sisu 2 (16)",
                "en": "Kino Helios: Sisu 2 (16)"
            },
            "provider": null,
            "description": {
                "fi": "<p>Sisu 2 on täydellä rähinällä eteenpäin vyöryvä toimintaelokuva, joka on jatkoa aina kansainväliseksi hitiksi asti nousseelle ykkösosalle Sisu.</p><p>Aatami Korpi, “mies, joka ei suostu kuolemaan” (Jorma Tommila), palaa kotikonnuilleen neuvostomiehityksen alaiseen Karjalaan, purkaa talonsa, lastaa sen kuormurin kyytiin ja päättää vakaasti panna pirttinsä taas pystyyn Suomen puolelle.</p><p>Kun tieto Aatamin rajan ylityksestä leviää, palaa hänen perheensä surmannut partisaanien komentaja (Stephen Lang) hoitamaan jo legendan maineen saaneen suomalaisen sotilaan pois päiviltä.</p><p>Ikäraja: 16<br>Kesto: 90 min<br>Ensi-ilta: 22.10.2025</p><p>Kieli: suomi, englanti<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Sisu 2 on täydellä rähinällä eteenpäin vyöryvä toimintaelokuva, joka on jatkoa aina kansainväliseksi hitiksi asti nousseelle ykkösosalle Sisu."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2DDC1ACDC7B48EED31AE746FAD146BA0/Kino_Helios_Sisu_2_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2DDC1ACDC7B48EED31AE746FAD146BA0/Kino_Helios_Sisu_2_16_",
                "en": "http://www.malmitalo.fi/en/events/event/2DDC1ACDC7B48EED31AE746FAD146BA0/Kino_Helios_Sisu_2_16_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67199/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67193",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-ella-ja-kaverit-operaatio-saukko-4013996/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-ella-ja-kaverit-operaatio-saukko-4013996/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-ella-ja-kaverit-operaatio-saukko-4013996/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491166,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-23T13:13:55.727199Z",
                    "last_modified_time": "2025-10-23T13:13:55.727214Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777365.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491166/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-23T13:13:55.597320Z",
            "last_modified_time": "2025-10-27T09:13:17.192521Z",
            "date_published": null,
            "start_time": "2025-11-08T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: Ella ja kaverit – Operaatio Saukko (S)",
                "sv": "Kino Helios: Ella ja kaverit – Operaatio Saukko (S)",
                "en": "Kino Helios: Ella ja kaverit – Operaatio Saukko (S)"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kun Ella luokkakavereineen lähetetään Opettajan johdolla metsäretkelle suorittamaan rästiin jääneitä koulutehtäviä, he kohtaavat kokonaan uudenlaiset ystävät, nimittäin luonnonsuojelualueella asuvan hirmu söpön saukkoperheen.</p><p>Samalla metsässä kuitenkin mellestää myös ihan toisenlainen otus: lasten vanha tuttu, ovela liikemies Isä Yksi, joka aikoo jyrätä koko metsän uuden lomakeskuksensa tieltä. Soppaa ilmestyvät hämmentämään myös salaperäinen erämies Huntteri, pyöräilyyn hurahtanut Rehtori Piippu ja oudosti Opettajaa muistuttava jättisaukko. Edessä on hulvaton luontoseikkailu, kun Ella ja kaverit päättävät estää liikemiehen juonen ja pelastaa sekä metsän että saukot!</p><p>Ikäraja: S<br>Kesto: 74 min<br>Ensi-ilta: 10.10.2025</p><p>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Kun Ella luokkakavereineen lähetetään Opettajan johdolla metsäretkelle suorittamaan rästiin jääneitä koulutehtäviä, he kohtaavat kokonaan uudenlaiset ystävät, nimittäin luonnonsuojelualueella asuvan hirmu söpön saukkoperheen."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CDDB634728C20965898AB8543CD1C943/Kino_Helios_Ella_ja_kaverit_Operaatio_Saukko_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CDDB634728C20965898AB8543CD1C943/Kino_Helios_Ella_ja_kaverit_Operaatio_Saukko_S_",
                "en": "http://www.malmitalo.fi/en/events/event/CDDB634728C20965898AB8543CD1C943/Kino_Helios_Ella_ja_kaverit_Operaatio_Saukko_S_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67193/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67182",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4013994/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4013994/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4013994/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491160,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-23T12:12:08.691432Z",
                    "last_modified_time": "2025-10-23T12:12:08.691442Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777297.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491160/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-23T12:12:08.631430Z",
            "last_modified_time": "2025-10-27T09:13:16.389554Z",
            "date_published": null,
            "start_time": "2025-11-07T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: Springsteen: Deliver Me from Nowhere (12)",
                "sv": "Kino Helios: Springsteen: Deliver Me from Nowhere (12)",
                "en": "Kino Helios: Springsteen: Deliver Me from Nowhere (12)"
            },
            "provider": null,
            "description": {
                "fi": "<p>Elokuva kertoo Bruce Springsteenin vuoden 1982 Nebraska-albumin tekemisestä aikana, jolloin Springsteen oli vielä menestyspaineiden ja menneisyyden haamujen kanssa painiskeleva nuori muusikko, joka sinnitteli maailmanlaajuisen supertähteyden kynnyksellä.</p><p>Springsteenin asunnon makuuhuoneessa New Jerseyssä neliraitanauhurilla äänitetty albumi merkitsi käännekohtaa hänen elämässään, ja sitä pidetään edelleen yhtenä Springsteenin ajattomimmista teoksista — se on karu ja tunnelmaltaan aavemainen akustinen levy, jolla kadonneet sielut etsivät syytä uskoa tulevaan.</p><p>Ikäraja: 12<br>Kesto: 120 min<br>Ensi-ilta: 31.10.2025</p><p>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "short_description": {
                "fi": "Elokuva kertoo Bruce Springsteenin vuoden 1982 Nebraska-albumin tekemisestä aikana, jolloin Springsteen oli vielä menestyspaineiden ja menneisyyden haamujen kanssa painiskeleva nuori muusikko, joka sinnitteli maailmanlaajuisen supertähteyden kynnyksellä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1F6C7FC70FAC92A29CFFF1E5FB0CA74B/Kino_Helios_Springsteen_Deliver_Me_from_Nowhere_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1F6C7FC70FAC92A29CFFF1E5FB0CA74B/Kino_Helios_Springsteen_Deliver_Me_from_Nowhere_12_",
                "en": "http://www.malmitalo.fi/en/events/event/1F6C7FC70FAC92A29CFFF1E5FB0CA74B/Kino_Helios_Springsteen_Deliver_Me_from_Nowhere_12_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67182/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67174",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-huutamisen-taito-4013988/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-huutamisen-taito-4013988/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-huutamisen-taito-4013988/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491157,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-23T10:12:11.558760Z",
                    "last_modified_time": "2025-10-23T10:12:11.558769Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777296.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491157/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-23T10:12:11.485229Z",
            "last_modified_time": "2025-10-27T09:13:16.054845Z",
            "date_published": null,
            "start_time": "2025-11-07T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: Huutamisen taito (12)",
                "sv": "Kino Helios: Huutamisen taito (12)",
                "en": "Kino Helios: Huutamisen taito (12)"
            },
            "provider": null,
            "description": {
                "fi": "<p>Anu tapaa vastaanotollaan säännöllisesti Heloisaa, joka aina rakastuessaan alkaa kärsiä julmista ja piinaavista pakkoajatuksista rakastettuaan kohtaan.</p><p>Heloisan kieroutunut psyyke kiehtoo Anua tavalla, jota hän ei täysin ymmärrä – ammatillisesti ja henkilökohtaisesti. Mutta eräänä päivänä Heloisa yllättäen lopettaa terapian. Juhannusjuhlat ystäväpariskunnan kanssa keskeytyvät, kun Anun poika Antti saapuu paikalle uuden tyttöystävänsä kanssa – joka on Heloisa. Anu joutuu kohtaamaan omat rajansa sekä Heloisan terapiasuhteeseen liittyvät kipeät muistot, jotka paljastavat heidän välilleen syntyneen pakkomielteisen siteen, joka on vaarassa tuhota kaiken.</p><p>Ikäraja: 12<br>Kesto: 82 min<br>Ensi-ilta: 31.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Anu tapaa vastaanotollaan säännöllisesti Heloisaa, joka aina rakastuessaan alkaa kärsiä julmista ja piinaavista pakkoajatuksista rakastettuaan kohtaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7C56C05DF4C53A17B3E0E718EDBB94CF/Kino_Helios_Huutamisen_taito_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7C56C05DF4C53A17B3E0E718EDBB94CF/Kino_Helios_Huutamisen_taito_12_",
                "en": "http://www.malmitalo.fi/en/events/event/7C56C05DF4C53A17B3E0E718EDBB94CF/Kino_Helios_Huutamisen_taito_12_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67174/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67171",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sorry-baby-4013982/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sorry-baby-4013982/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sorry-baby-4013982/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491153,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-23T09:13:50.391522Z",
                    "last_modified_time": "2025-10-23T09:13:50.391540Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777332.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491153/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-23T09:13:50.232438Z",
            "last_modified_time": "2025-10-27T09:13:15.288610Z",
            "date_published": null,
            "start_time": "2025-11-05T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: Sorry, baby (12)",
                "sv": "Kino Helios: Sorry, baby (12)",
                "en": "Kino Helios: Sorry, baby (12)"
            },
            "provider": null,
            "description": {
                "fi": "<p>Agnes on kokenut menneisyydessään trauman.</p><p>Silti elämä jatkuu – ainakin kaikilla muilla hänen ympärillään. Kun Agnesin luo saapuu kylään hänen hyvä ystävänsä, joka on suuren elämänmuutoksen keskellä, Agnes alkaa vähitellen ymmärtää, kuinka paikoilleen hän on jäänyt ja ryhtyy etsimään keinoja päästä eteenpäin.</p><p>Ikäraja: 12<br>Kesto: 103 min<br>Ensi-ilta: 31.10.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "short_description": {
                "fi": "Agnes on kokenut menneisyydessään trauman."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/97C6FB438E836E781D0189E736005E91/Kino_Helios_Sorry_baby_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/97C6FB438E836E781D0189E736005E91/Kino_Helios_Sorry_baby_12_",
                "en": "http://www.malmitalo.fi/en/events/event/97C6FB438E836E781D0189E736005E91/Kino_Helios_Sorry_baby_12_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67171/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65898",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "45-48 €",
                        "sv": "45-48 €",
                        "en": "45-48 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/fabiofrizzi/",
                        "sv": "https://www.lippu.fi/artist/fabiofrizzi/",
                        "en": "https://www.lippu.fi/artist/fabiofrizzi/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 459072,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-03T12:13:32.035385Z",
                    "last_modified_time": "2025-04-03T12:13:32.035400Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767709.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/459072/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-03T12:13:31.995840Z",
            "last_modified_time": "2025-10-27T09:13:13.077108Z",
            "date_published": null,
            "start_time": "2025-10-28T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Fabio Frizzi – ”Frizzi 2 Fulci” (IT)",
                "sv": "Fabio Frizzi – ”Frizzi 2 Fulci” (IT)",
                "en": "Fabio Frizzi – ”Frizzi 2 Fulci” (IT)"
            },
            "provider": {
                "fi": "Fullsteam Agency Oy",
                "sv": "Fullsteam Agency Oy",
                "en": "Fullsteam Agency Oy"
            },
            "description": {
                "fi": "<p>Pitkän ja ansiokkaan uran elokuvamusiikin parissa tehnyt italialainen säveltäjä Fabio Frizzi saapuu lokakuussa konsertoimaan Suomeen. Viimeksi vuonna 2014 Suomessa esiintynyt Frizzi nähdään yhtyeensä kera Helsingin Savoy-teatterissa tiistaina 28. lokakuuta.</p><p>Bolognassa vuonna 1951 syntynyt Frizzi tunnetaan erityisesti 70-luvun tuotannostaan sekä yhteistyöstään muun muassa Sergio Martinon, Lamberto Bavan ja Bruno Corbuccin kaltaisten maineikkaiden italialaisten elokuvaohjaajien kanssa. Erityisasemassa Frizzin tuotannossa on kuitenkin jo pitkään ollut niin kutsutun gorekauhun kummisedän Lucio Fulcin elokuviin säveltämä musiikki. Frizzin tunnetuimpiin teoksiin lukeutuvatkin <i>Seven Notes In Black-, Zombi 2-, City of the Living Dead-, Cat In The Brain-, The Beyond-</i> ja <i>Manhattan Baby </i>-elokuvien tunnussävelmät. Frizzi on urallaan ansainnut suitsutusta myös esimerkiksi Quentin Tarantinolta, tämän sisällytettyä <i>Seven Notes In Blackin</i> teemaa <i>Kill Bill</i> -elokuvaansa.</p><p>Vuodesta 2013 lähtien Frizzi on kiertänyt maailmaa nyt Suomeenkin palaavan ”Frizzi 2 Fulci” -kiertuekonseptinsa tiimoilta. Tällä kertaa illan aikana kuullaan Zombie-elokuvan musiikin lisäksi kattava läpileikkaus Frizzin ja Fulcin yhteistyöaikojen tuotannosta.</p><p>Fabio Frizzi – ”Frizzi 2 Fulci” (IT)<br>Zombie Composer’s Cut -live</p><p>Illan avaa Levinsky, syntetisaattorimusiikkiskenessä vuodesta 2018 vaikuttanut helsinkiläisartisti. Levinsky on vienyt ilmaisuaan entistä progressiivisempaan ja elokuvallisempaan suuntaan juuri julkaistulla kolmannella “Fathoms”-albumillaan. Savoyssa kuullaan erikoissetti, jossa elokuvalliset teemat ja äänimaisemat kietoutuvat yhteen Levinskyn tunnistettavan elektronisen soundin kanssa.</p><p>18:00 ovet<br>18:30-19:00 Levinsky <br>19:00- 19:30 väliaika<br>19:30 Fabio Frizzi</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>",
                "sv": "<p>Den italienska kompositören Fabio Frizzi har en lång och framstående karriär inom filmmusik bakom sig och kommer till Finland i oktober. Frizzi, som senast uppträdde i Finland 2014, uppträder med sitt band på Savoy-teatern i Helsingfors tisdagen den 28 oktober.</p><p>Frizzi föddes i Bologna 1951 och är mest känd för sin produktion under 1970-talet och sina samarbeten med kända italienska filmregissörer som till exempel Sergio Martino, Lamberto Bava och Bruno Corbucci. Musiken som komponerades till filmer av Lucio Fulci, den så kallade gorefilmens gudfader, har dock länge haft en särskild roll i Frizzis produktion. Till Frizzis mest kända verk hör ledmotiven till Seven Notes In Black, Zombie 2, City of the Living Dead, Cat In The Brain, The Beyond och Manhattan Baby. Under sin karriär har Frizzi också fått erkännanden av till exempel Quentin Tarantino, efter att denne inkluderat Seven Notes In Black-temat i sin film Kill Bill.</p><p>Sedan 2013 har Frizzi turnerat världen runt med sitt turnékoncept \"Frizzi 2 Fulci\", och nu återvänder han till Finland. Den här gången kommer kvällen att innehålla förutom musik från filmen Zombie, även en omfattande översikt över Frizzis och Fulcis gemensamma produktion.</p><p>Fabio Frizzi – ”Frizzi 2 Fulci” (IT)<br>Zombie Composer’s Cut-live</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>18:00 doors <br>18:30-19:00  support Levinsky <br>19:00- 19:30  change over<br>19:30 Fabio Frizzi</p>",
                "en": "<p>Italian composer Fabio Frizzi, who has had a long and distinguished career in film music, will arrive in Finland in October to hold a concert. Frizzi, who last performed in Finland in 2014, will perform with his band at the Savoy Theatre in Helsinki on Tuesday 28 October.</p><p>Born in Bologna in 1951, Frizzi is best known for his work in the 1970s and his collaborations with renowned Italian film directors such as Sergio Martino, Lamberto Bava and Bruno Corbucci. However, the music composed for the films of Lucio Fulci, the ‘godfather of gore horror’, has long played a special role in Frizzi's production. Frizzi's best-known works include the theme melodies for the films Seven Notes In Black, Zombi 2, City of the Living Dead, Cat In The Brain, The Beyond and Manhattan Baby. Frizzi's career has also earned him praise from famous names such as Quentin Tarantino, after the director incorporated part of the theme of Seven Notes In Black into his film Kill Bill.</p><p>Since 2013, Frizzi has been touring the world with his “Frizzi 2 Fulci” tour concept, now returning to Finland. This time, in addition to music from the film Zombie, the evening will feature a comprehensive overview of Frizzi's and Fulci's collaborative production.</p><p>Fabio Frizzi – ”Frizzi 2 Fulci” (IT)<br>Zombie Composer's Cut live performance</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>18:00 doors <br>18:30-19:00  support Levinsky <br>19:00- 19:30  change over<br>19:30 Fabio Frizzi</p>"
            },
            "short_description": {
                "fi": "Pitkän ja ansiokkaan uran elokuvamusiikin parissa tehnyt italialainen säveltäjä Fabio Frizzi saapuu lokakuussa konsertoimaan Suomeen. Viimeksi vuonna 2014 Suomessa esiintynyt Frizzi nähdään yhtyeensä kera Helsingin Savoy-teatterissa tiistaina 28. lokakuuta.",
                "sv": "Den italienska kompositören Fabio Frizzi har en lång och framstående karriär inom filmmusik bakom sig och kommer till Finland i oktober. Frizzi, som senast uppträdde i Finland 2014, uppträder med sitt band på Savoy-teatern i Helsingfors tisdagen den 28 oktober.",
                "en": "Italian composer Fabio Frizzi, who has had a long and distinguished career in film music, will arrive in Finland in October to hold a concert. Frizzi, who last performed in Finland in 2014, will perform with his band at the Savoy Theatre in Helsinki on Tuesday 28 October."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9D5B8A275E7CAAF80BBB2666374036EA/Fabio_Frizzi_Frizzi_2_Fulci_IT_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/9D5B8A275E7CAAF80BBB2666374036EA/Fabio_Frizzi_Frizzi_2_Fulci_IT_",
                "en": "http://www.savoyteatteri.fi/en/events/event/9D5B8A275E7CAAF80BBB2666374036EA/Fabio_Frizzi_Frizzi_2_Fulci_IT_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65898/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67167",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491195,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-27T08:13:32.362147Z",
                    "last_modified_time": "2025-10-27T08:13:32.362163Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778434.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491195/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-27T08:13:32.229913Z",
            "last_modified_time": "2025-10-27T09:13:10.830704Z",
            "date_published": null,
            "start_time": "2025-10-24",
            "end_time": "2026-01-10",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Peru ja sen ihmeellinen luonto – Valokuvanäyttely",
                "sv": "Peru and its wonderful nature – Photography exhibition",
                "en": "Peru and its wonderful nature – Photography exhibition"
            },
            "provider": null,
            "description": {
                "fi": "<p>Näyttely on esittelee perulaisten suojelualueilla vartijoina, tutkijoina tai tiedonkerääjinä toimivien valokuvaajien kuvia</p><p>Peru on yksi maailman monimuotoisimmista maista, ja suuri osa sen luonnonrikkauksista sijaitsee 77 kansallisesti hallinnoidulla luonnonsuojelualueella, jotka kattavat tällä hetkellä yli 17 % maan pinta-alasta. Peru onkin Latinalaisen Amerikan ja Karibian alueen kymmenenneksi suurin luonnonsuojelualueiden pinta-alaltaan. <br> <br>Suojellut luonnonalueet ovat paikkoja, joissa ihmiset, heidän kulttuurinsa ja luonto yhdistyvät harmonisesti yhden idean ympärille: säilyttää tärkein osa luonnonperintöämme. Perussa valtion suojeltujen luonnonalueiden kansallisella virastolla (SERNANP) on tehtävä suojella näiden alueiden suurta biologista monimuotoisuutta ja upeita maisemia sekä edistää luonnonvarojen kestävää käyttöä paikallisen väestön hyödyksi. <br> <br>Näyttely ”Peru ja sen ihmeellinen luonto” on kooste SERNANP:n kokoelmasta ”Perun luonnonsuojelualueet - Biodiversiteetti ja maisemat”. Se koostuu 20 kuvasta, jotka ovat perulaisten valokuvaajien ottamia. He työskentelevät näillä suojelualueilla vartijoina, tutkijoina tai tiedonkerääjinä ja ovat tutkineet niitä perusteellisesti. <br> <br>Lisäksi näyttelyyn kuuluu 23 kuvaa perulaisilta valokuvaajilta Ernesto Pinto Bazurco Rittleriltä, José Álvarez Blasilta, Oscar Zemartilta ja Kukka-Maria Ahokkasilta (Suomi), jotka ovat anteliaasti lahjoittaneet teoksia henkilökohtaisista kokoelmistaan.</p><p>Näyttely on ollut esillä Helsingissä, Tallinnassa ja Riiassa kesäkuusta 2025 lähtien.</p><p>23.10.2025 – 10.1.2026 osa kokoelmasta palaa Suomeen Perun Suomen-suurlähetystön, Annantalon ja Kahvila Naperon yhteistyön ansiosta. Tätä tilaisuutta varten on valittu 16 kuvaa, jotka kaikki keskittyvät Perun eläimistöön. <br> <br>Peru on kaikenlaisen elämän maa, jossa aavikot kohtaavat meren, vuoret koskettavat pilviä ja joet mutkittelevat loputtoman viidakon läpi. Tällä valtavalla alueella elää hämmästyttävä määrä erilaisia eläimiä. Andien kondorin lennosta lumisten vuorenhuippujen yllä jaguarin hiljaiseen liitoon Amazonin sademetsässä, valaiden ja merileijonien leikkisästä tanssista rannikolla kolibrien surinaan pilvimetsässä – Perun eläimistö ilmentää sekä runsautta että tasapainoa. Jokainen ekosysteemi, korkealta punalta rannikon aavikolle ja syvälle sademetsään, tarjoaa suojan ainutlaatuisille lajeille, joita ei löydy mistään muualta maapallolta, mikä tekee Perusta yhden planeetan suurimmista biodiversiteetin suojelualueista.<br> <br>Toivomme, että näiden kuvien avulla kaikki voivat oppia lisää maamme upeaan luontoon kuuluvista upeista lajeista.</p>",
                "en": "<p>Peru is considered one of the most megadiverse countries in the world and a large part of this natural wealth can be found in its 77 nationally administered protected natural areas, which currently cover more than 17% of the national territory, making it the tenth country in Latin America and the Caribbean with the largest protected surface area.</p><p>Protected natural areas are spaces where people, their culture and nature come together harmoniously in a single idea: to preserve the most important part of our natural heritage. In Peru, the National Service of Natural Areas Protected by the State (SERNANP) has the mission to protect<br>the great biological diversity and the marvellous landscapes found in them, as well as to promote the sustainable use of natural resources for the benefit of local populations.</p><p>The exhibition “Peru and its wonderful nature” is a compilation of the collection “Nature Reserves of Peru. Biodiversity and landscapes” of SERNANP, consisting of 20 images by different Peruvian photographers who work in these protected areas as rangers, researchers or data collectors and<br>have explored them thoroughly.<br>In addition, 23 images by Peruvian photographers Ernesto Pinto Bazurco Rittler, José Álvarez Blas, Oscar Zemarti, and Kukka-Maria Ahokkas (Finland)— who have generously donated works from their personal collections— also form part of the exhibition.</p><p>Since June of 2025, the exhibition has been on display in Helsinki, Tallinn and Riga. From 23rd October 2025 to 10th January 2026, part of the collection returns to Finland, thanks to a joint<br>collaboration between the Embassy of Peru in Finland, Annantalo and Kahvila Napero. For this<br>ocassion, a selection of 16 pictures has been made, all centered around Peruvian fauna.</p><p>Peru is a land of life in every form, where deserts meet the ocean, mountains touch the clouds, and rivers weave through endless jungle. Across this vast geography, an astonishing variety of animals thrive. From the flight of the Andean condor over snow peaks to the silent glide of the jaguar<br>through the Amazon, from the playful dance of whales and sea lions along the coast to the hum of hummingbirds in the cloud forest, Peruvian fauna embodies both abundance and balance. Each ecosystem, from the high puna to the coastal desert and the deep rainforest, shelters unique species found nowhere else on Earth, making Peru one of the planet’s greatest sanctuaries of biodiversity.</p><p>We hope that through these pictures, everyone can learn more about the magnificent species that are part of our country’s wonderful nature.</p>"
            },
            "short_description": {
                "fi": "Näyttely on esittelee perulaisten suojelualueilla vartijoina, tutkijoina tai tiedonkerääjinä toimivien valokuvaajien kuvia",
                "en": "Peru is considered one of the most megadiverse countries in the world and a large part of this natural wealth can be found in its 77 nationally administered protected natural areas, which currently cover more than 17% of the national territory, making it the tenth country in Latin America and the Caribbean with the largest protected surface area."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E743E531BB65F8B45D810A5C4440AFEF/Peru_ja_sen_ihmeellinen_luonto",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/E743E531BB65F8B45D810A5C4440AFEF/Peru_and_its_wonderful_nature_",
                "en": "http://www.annantalo.fi/en/events/event/E743E531BB65F8B45D810A5C4440AFEF/Peru_and_its_wonderful_nature_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67167/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65098",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "22,4 € / ryhmä",
                        "sv": "22,4 € / ryhmä",
                        "en": "22,4 € / ryhmä"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=annantalo",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=annantalo",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=annantalo"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490542,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-27T08:13:51.128255Z",
                    "last_modified_time": "2025-08-27T08:13:51.128272Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763874.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490542/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-08-27T08:13:50.976603Z",
            "last_modified_time": "2025-10-27T08:13:15.708730Z",
            "date_published": null,
            "start_time": "2025-10-28T14:00:00Z",
            "end_time": "2025-11-01T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "UNETON",
                "sv": "UNETON (Sömnlös)",
                "en": "UNETON (Sleepless)"
            },
            "provider": null,
            "description": {
                "fi": "<p>Suosittu pakopeli Uneton palaa taas Annantaloon!</p><p>Pakopelissä seurataan tarinaa, ratkotaan siihen liittyviä hauskoja ja haastavia pulmatehtäviä sekä avataan lukkoja. Pelissä riittää pähkäiltävää aikuisillekin. Kaiken keskiössä on yhteistyö!</p><p>Mitä ihmisen mielelle käy, jos se ei saa koskaan unta? Mitä jos hereillä oleva mieli jumittuu ikuiseen painajaiseen? Pyhäinpäivään sijoittuva peli sukeltaa kummallisiin unikuviin. Uneton on jännittävä seikkailu läpi levottoman mielen maisemien. Matkalla sukelletaan ajatusten, tieteen ja taiteen maailmoihin ja etsitään apua tilanteeseen. Keksikää keino päästä jälleen levolliseen uneen, ennen kuin mieli hajoaa lopullisesti!</p><p>Peli sisältää jännittäviä tilanteita. Peliä pelataan oman perheen/ryhmän kanssa. Peliä pelaa samaan aikaan useampi ryhmä.</p><p>Peli tapahtuu viitenä päivänä 28.10.–1.11.2025 (ma-pe klo 16–21 ja la klo 11.40–15). Lähtöjä on 20 min. välein.</p><p>Pelin kokonaiskesto: enintään 60 min<br>Ikäsuositus: 10+<br>Kieli: suomi<br>Liput: 20 €/ryhmä (+palvelumaksu) | Lippu.fi <b>lipunmyynti alkaa ma 22.9. klo 16</b></p><p>_</p><p>Pelisuunnittelu: Maaria Klemetti yhteistyössä Annantalon kanssa<br>Työryhmä: Harri Piispanen, Karoliina Helminen ja Maaria Klemetti<br>Valo- ja äänisuunnittelu, lavastus: Nicolas Salo ja Jukka Järvi<br>Puvustus: Niina Huovinen<br>Tuotanto: Annantalo / Harri Piispanen</p>",
                "sv": "<p>Det populära flyktspelet Uneton återvänder till Annegården!</p><p>Det populära flyktspelet Uneton (Sömnlös) återvänder till Annegården!</p><p>I flyktspelet följer man med en berättelse, löser anknytande roliga och utmanande problem och öppnar lås.</p><p>Spelet innehåller även huvudbry för vuxna. Nyckeln ligger i samarbete!</p><p>Vad händer med människans hjärna om man aldrig får sömn? Tänk om det vakna sinnet fastnar i en evig mardröm? Spelet ordnas på allhelgonadagen och dyker in märkliga drömbilder. Sömnlös är ett spännande äventyr genom ett landskap av oroliga sinnen. På resan fördjupar vi oss i tankarnas, vetenskapens och konstens världar och söker efter hjälp för situationen. Kom på ett sätt att återgå till en vilsam sömn innan sinnet bryts ner för gott!</p><p>Spelet innehåller spännande situationer. Spelet spelas med din egen familj/grupp. Spelet spelas av flera grupper samtidigt.</p><p>Spelets längd; högst 60 min<br>Åldersrekommendation: 10+<br>Språk: finska<br>Biljetter 20 € | Lippu.fi</p><p>_</p><p>Speldesign: Maaria Klemetti i samarbete med Annegården<br>Arbetsgrupp: Harri Piispanen, Karoliina Helminen och Maaria Klemetti<br>Ljus- och ljuddesign: Nicolas Salo och Jukka Järvi<br>Kostymer: Niina Huovinen</p>",
                "en": "<p>Popular escape room Uneton is back at Annantalo!</p><p>In this escape room game, you follow a story, solve fun and challenging puzzles, and open locks.</p><p>There is plenty to make even adults think in the game. Working together is what it’s all about!</p><p>What happens to the human mind if it never sleeps? What if you were to get stuck in a never-ending waking nightmare? Set on All Saints' Day, the game dives into strange dreams. Sleepless is an exciting adventure through a restless mindscape. Along the way, you will dive into the worlds of thought, science and art, to seek help for the situation. Find a way to get back to restful sleep before your mind finally breaks down!</p><p>The game is . You play the game with your own family/group. Several groups play the game simultaneously.</p><p>Total duration of the game: up to 60 min<br>Age recommendation: 10+<br>Language: Finnish<br>Tickets € 20 group ticket | Lippu.fi (available at the end of September)<br>_</p><p>Game design: Maaria Klemetti in collaboration with Annantalo<br>Working group: Harri Piispanen, Karoliina Helminen and Maaria Klemetti<br>Light and sound design: Nicolas Salo and Jukka Järvi<br>Costumes: Niina Huovinen</p>"
            },
            "short_description": {
                "fi": "Suosittu pakopeli Uneton palaa taas Annantaloon!",
                "sv": "Det populära flyktspelet Uneton återvänder till Annegården!",
                "en": "Popular escape room Uneton is back at Annantalo!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DE6C0A41B3C45215A1A4F00FBE1F5CE5/UNETON",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/DE6C0A41B3C45215A1A4F00FBE1F5CE5/UNETON_Somnlos_",
                "en": "http://www.annantalo.fi/en/events/event/DE6C0A41B3C45215A1A4F00FBE1F5CE5/UNETON_Sleepless_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65098/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67168",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491182,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-24T08:13:26.552973Z",
                    "last_modified_time": "2025-10-24T08:13:26.552987Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778494.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491182/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-24T08:13:26.412084Z",
            "last_modified_time": "2025-10-25T07:13:14.902898Z",
            "date_published": null,
            "start_time": "2025-11-08T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Hinni-Hiiren omaoma päivä",
                "sv": "Hinni-Hiiren omaoma päivä",
                "en": "Hinni the Mouse’s Very Own Day – Interactive Musical Theatre Performance"
            },
            "provider": null,
            "description": {
                "fi": "<p>Hinni-Hiiri soittaa kavereilleen ja toivoo saavansa leikkiseuraa. Kukaan ei ehdi kuitenkaan leikkimään hänen kanssaan! Tulossa siis tylsä päivä vai onko sittenkään?</p><p>Vuorovaikutteinen, vähäsanainen musiikkiteatteriesitys Hinni-Hiiren omaoma -päivästä ja siitä kuinka yksinkin voi keksiä kaikenlaista hauskaa. Kun ei jää maahan makaamaan, voi tapahtua ihan mitä vaan!</p><p>Osallistavan musiikkiteatteriesityksen aikana yleisö saa osallistua pienten laulujen laulamiseen, lorutteluun, kehosoitinten soittamiseen ja liikkumiseen sekä tutustua hauskoihin rytmisoittimiin ja poikkihuiluun yhdessä uteliaan ja innokkaan Hinni-Hiiren kanssa.</p><p>Maksuton esitys on vähäsanainen ja sopii kaiken kielisille, myös erityislapsille!</p><p>Ei ennakkoilmoittautumista. Paikat täytetään saapumisjärjestyksessä.<br>Kieli: suomi ja englanti (esityksen seuraaminen ei vaadi kielten osaamista)<br>Ikäsuositus: 0–7-vuotiaat aikuisen kanssa, mutta kaiken ikäiset tervetulleita!<br>Kesto: 40 min</p><p>Esiintyjä: Musiikkiteatteriesiintyjä, musiikkikasvatuskouluttaja, huilisti Tuuli Paasolainen</p><p>Auditorio<br>Vapaa pääsy</p>",
                "en": "<p>Hinni the mouse calls her friends and tries to find someone to play with. No one has time to play! She is going to have a boring day ahead... or is she?</p><p>This interactive musical theatre performance with few words presents Hinni the mouse's very own day and how to come up with ideas of having fun even without a friend around. Get a move on and anything can happen!</p><p>During the performance, the audience can participate in singing, rhyming, playing body instruments and moving around, while also getting to know fun percussion instruments and flute, together with the curious and enthusiastic mouse, Hinni.</p><p>The performance is suitable for all kids regardless of language and special needs!</p><p>Language: Finnish and English (also easy to follow without any language knowledge) <br>Aimed at: 0-7-year-old children with an accompanying adult, but everybody is welcome!<br>Duration: 40 minutes</p><p>Performer: Tuuli Paasolainen, music theatre- performer, music education-trainer, flutist.                               www.tuulipaasolainen.fi<br>Organizer: City of Helsinki, kotohanke</p>"
            },
            "short_description": {
                "fi": "Hinni-Hiiri soittaa kavereilleen ja toivoo saavansa leikkiseuraa. Kukaan ei ehdi kuitenkaan leikkimään hänen kanssaan! Tulossa siis tylsä päivä vai onko sittenkään?",
                "en": "Hinni the mouse calls her friends and tries to find someone to play with. No one has time to play! She is going to have a boring day ahead... or is she?"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E86446727B31890C14E39DE26A9E7874/Hinni-Hiiren_omaoma_paiva",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E86446727B31890C14E39DE26A9E7874/Hinni-Hiiren_omaoma_paiva",
                "en": "http://www.kanneltalo.fi/en/events/event/E86446727B31890C14E39DE26A9E7874/Hinni_the_Mouse_s_Very_Own_Day_Interactive_Musical_Theatre_Performance"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67168/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66616",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "20€ / 7 €",
                        "sv": "20€ / 7 €",
                        "en": "20€ / 7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kulttuurikeskus-caisa-white-lies-kulttuurikeskus-caisa-20375171/",
                        "sv": "https://www.lippu.fi/event/kulttuurikeskus-caisa-white-lies-kulttuurikeskus-caisa-20375171/",
                        "en": "https://www.lippu.fi/event/kulttuurikeskus-caisa-white-lies-kulttuurikeskus-caisa-20375171/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1162436,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-02T08:13:47.057289Z",
                    "last_modified_time": "2025-07-02T08:13:47.057304Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775116.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1162436/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-02T08:13:46.963277Z",
            "last_modified_time": "2025-10-24T09:13:19.410810Z",
            "date_published": null,
            "start_time": "2025-10-29T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "white lies – Disembodying whiteness -hankkeen työryhmä",
                "sv": "white lies – Arbetsgruppen för projektet Disembodying whiteness",
                "en": "white lies – Disembodying whiteness project working group"
            },
            "provider": null,
            "description": {
                "fi": "<p>white lies -esitys on paradokseihin eksynyt yrityksemme paljastaa ja romuttaa valkoisuuden valtaa kehoissamme ja näyttämöillämme.</p><p>white lies -esitys on paradokseihin eksynyt yritys paljastaa ja romuttaa valkoisuuden valtaa kehoissamme ja näyttämöillämme.</p><p>white lies on kehontaiteellinen näyttämöesitys, joka penkoo esiin valkoisuuden varaan rakennetun “kulttuurin” kuonaa ja sepitelmää kehoistamme, tarinoistamme ja näyttämöistämme. Näkymättömäksi tekeytyvä valkoisuus ja sen väkivaltaiset valtahierarkiat pyritään sysäämään päivänvaloon ja paljastamaan kaikessa kauheudessaan.</p><p>Teoksen tekijät ovat nuorehkoja queereja esityksentekijöitä, joita yhdistää into taiteen tekemiseen ja poliittisen vaikuttamiseen.</p><p>Taiteilijat: <b>Maikki Palm, noia kekoni-kattelus , <br>Iiris Laisi, M.K. Baijukya</b><br>Koollekutsuja: <b>Samuli Emery</b><br>Ulkoiset silmät: <b>Matilda Cobanli, Samuli Emery, Ahmad Baba</b><br>Valosuunnittelu: <b>Aija Hammarsten</b><br>Äänisuunnittelu: <b>nori kin & Masha Kolegova</b><br>Köyrittären puku:<b> Viktor Beloff, noia kekoni-kattelus</b></p><p>Ikäsuositus: 15+ <br>Tapahtuman kieli: suomi ja englanti</p><p>Sisältöhuomio: esitys sisältää viittauksia kauhuun, väkivaltaan ja rasistisiin rakenteisiin.</p>",
                "sv": "<p>Föreställningen white lies är ett paradoxalt försök att avslöja och förstöra vithetens makt i våra kroppar och på våra scener.</p><p>white lies är en kroppskonstnärlig scenföreställning som gör sitt bästa för att avslöja det skrattretande i vithetens fuskverk. Föreställningen gräver upp skräpet från en ”kultur”, som bygger på vithet, från våra kroppar, berättelser och arenor.</p><p>Man försöker kasta ut vitheten som låtsas vara osynlig i dagsljuset och avslöja den i all dess fasa. Utöver kritiken av de existerande makthierarkierna strävar verket white lies efter att i stället för dem föreslå meningsfullare och livskraftigare, uppriktiga former av samvaro.</p><p>Konstnärerna är unga, vita, queera föreställningsskapare som förenas av en passion för att arbeta i de många skärningspunkterna mellan konst och politisk påverkan.</p><p>Artister: M.K. Baijukya, Matilda Cobanli, Samuli Emery, Noia Kekoni, Iiris Laisi, Maikki Palm</p><p>Åldersrekommendation: +15<br>Evenemangets språk: finska och engelska <br>Notera om innehållet: föreställningen innehåller referenser till skräck, våld och rasistiska strukturer.</p>",
                "en": "<p>The ‘white lies’ performance is our attempt, lost in paradoxes, to expose and demolish the power of whiteness in our bodies and on our stages.</p><p>white lies is a physical stage performance that tries its best to expose the ridiculousness of the fabrication of whiteness. The performance digs up the dross of a “culture” built on whiteness from our bodies, our stories and our stages. The aim is to shove whiteness feigning invisibility into the daylight and expose it in all of its horror. In addition to critiquing existing power hierarchies, the work seeks to propose better and more vital, sincere forms of coexistence to replace them.</p><p>The artists are relatively young white queer performers who are united by a passion for working at the many intersections of art and political influencing.  <br> <br>Artists: M.K. Baijukya, Matilda Cobanli, Samuli Emery, Noia Kekoni, Iiris Laisi, Maikki Palm</p><p>Recommended age: 15+ <br>Language of the event: Finnish and English as needed</p><p>Content note: the performance contains references to horror, violence and racist structures</p>"
            },
            "short_description": {
                "fi": "white lies -esitys on paradokseihin eksynyt yrityksemme paljastaa ja romuttaa valkoisuuden valtaa kehoissamme ja näyttämöillämme.",
                "sv": "Föreställningen white lies är ett paradoxalt försök att avslöja och förstöra vithetens makt i våra kroppar och på våra scener.",
                "en": "The ‘white lies’ performance is our attempt, lost in paradoxes, to expose and demolish the power of whiteness in our bodies and on our stages."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/C1B411BD5947A8494D0C8768CB1EF40E/white_lies",
                "sv": "http://www.caisa.fi/sv/evenemang/event/C1B411BD5947A8494D0C8768CB1EF40E/white_lies",
                "en": "http://www.caisa.fi/en/events/event/C1B411BD5947A8494D0C8768CB1EF40E/white_lies"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66616/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67206",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491181,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-24T08:13:22.611069Z",
                    "last_modified_time": "2025-10-24T08:13:22.611083Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778559.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491181/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-24T08:13:22.312842Z",
            "last_modified_time": "2025-10-24T09:13:18.852823Z",
            "date_published": null,
            "start_time": "2025-10-29T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Näyttelyesittely: Risto Vuorimies - LOVE-kuvia+",
                "sv": "Risto Vuorimies: LOVE-bilder+",
                "en": "Risto Vuorimies: LOVE Images+"
            },
            "provider": null,
            "description": {
                "fi": "<p>Risto Vuorimies esittelee näyttelynsä ke 29.10. klo 17.30. Kesto noin tunti. Vapaa pääsy.</p><p>Legendaarisen valokuvaaja Risto Vuorimiehen näyttely Kanneltalon galleriassa esittelee ikonisia musiikkikuvia Suomesta.</p><p>Risto Vuorimies aloitti Love Records -levy-yhtiön kannentekijänä keväällä 1973. Aluksi suunniteltiin Hurriganesin ensimmäinen levynkansi Rock'n'Roll All Night Long. Samaan aikaan Vuorimies valokuvasi Rauli Badding Somerjoen Muotokuva 1 -levynkannen kuvan, jossa mies nojailee baaripöytään pienessä Hämeentien kahvilassa. Tästä eteenpäin Vuorimies teki kolmen vuoden ajan muutamia, myöhemmin varsin merkittäviksi muodostuneita levyjen kansia, mm. Hurriganesin Roadrunnerin.</p><p>Isokynä, Kojo, Badding, Maijanen, Tolonen ja monet muut 1970-luvulla esiintymisensä aloittaneet suomalaisen nuorisomusiikin edustajat ovat saavuttaneet jo seitsemänkympin iän. Siis ne, jotka elävät. Näiden kuvien kuvausaikoina sekä valokuvaaja että muusikot olivat noin kaksikymppisiä. Vuorimiehen mukaan on ollut mielenkiintoista selailla vanhoja filminegatiiveja, jotka ovat erittäin hyvässä kunnossa ja järjestyksessä hänen mapeissaan. Niistä Vuorimies on saanut nykytekniikalla valmistettua tämän LOVE-kuvia valokuvanäyttelyn. Hurriganes, Tasavallan Presidentti, Wigwam, Dave, Alatalo ja muut tuon ajan Love-artistit näyttävät tyylikkäiltä ja jopa historiallisilta seinälle ripustettuina.</p><p>Kamera on merkittävä dokumentoinnin väline. Ilman 1970-luvun kuvamuistoja moni tuskin muistaisi näiden taiteilijoiden ilmeitä ja olemuksia, vaikka ne ääninä eri medioissa keskuuteemme tänä päivänä tunkeutuvatkin. Mustavalkoinen valokuva kertoo elämän sävyistä ja sävelmistä</p><p>Tuoreimpana aineistona valokuvaaja esittelee vuosien 1973–76 Hurriganes-aiheisen kokoelman, joka perustuu uuteen kirjaan Hurriganes – Pyörremyrsky. Sen lisäksi näyttelyyn on lisätty joukko kuvia Wigwamista sekä Dave Lindholmista.<br>Näyttelyä ovat tukeneet Taiteen edistämiskeskus, Vapriikki-museo sekä Kuusankoskitalo.</p><p>Risto Vuorimies on valokuvaaja, muusikko ja musiikkitoimittaja.</p><p>1970-luvun alussa Vuorimies opiskeli valokuvausta Tukholmassa. Opiskelutoverinsa Ben Kailan kanssa Vuorimies kuvasi tuolloin ruotsinsuomalaisia maahanmuuttajia. Itsenäisyyspäivänä 1972 kuvista koottiin Vanhalle ylioppilastalolle näyttely ja parikymmentä vuotta myöhemmin tehtiin valokuvateos Siirtosuomalainen (Musta Taide, 1994), joka toi tekijöille valokuvataiteen valtionpalkinnon.</p><p>Vuorimies on suuri kuubalaisen musiikin ystävä, ja hän on laulanut ja soittanut Septeto Son -yhtyeessä sekä tehnyt radio-ohjelmia nimellä Papá Montero.</p>",
                "sv": "<p>Risto Vuorimies presenterar sin utställning onsdagen den 29 oktober kl. 17:30. Utställningen varar cirka en timme. Fri entré.</p><p>Den legendariska fotografen Risto Vuorimies utställning i Gamlasgårdens galleri förevisar ikoniska musikbilder från Finland.</p><p>Risto Vuorimies började som pärmbildsdesigner på skivbolaget Love Records våren 1973. Först designades skivomslaget till Hurriganes första skiva, Rock’n’Roll All Night Long. Samtidigt fotograferade Vuorimies omslagsbilden till Rauli ”Badding” Somerjokis album Muotokuva 1, där han lutar sig mot ett bord i ett litet café på Tavastvägen. Efteråt under tre års tid designade Vuorimies några skivomslag som senare blev synnerligen betydande, bl.a. Hurriganes Roadrunner.</p><p>Isokynä, Kojo, Badding, Maijanen, Tolonen och många andra representanter för den finländska ungdomsmusiken som inledde sina karriärer på 1970-talet har redan uppnått sjuttio års ålder. Alltså de som lever. När fotografierna togs var både fotografen och musikerna tjugo-någonting. Enligt Vuorimies har det varit intressant att bläddra bland gamla filmnegativ som är i mycket gott skick och i bra ordning i hans mappar. Av dessa har Vuorimies med dagens teknik tillverkat den här fotoutställningen LOVE-bilder. Hurriganes, Tasavallan Presidentti, Wigwam, Dave, Alatalo och många andra av den tidens Love-artister ser stiliga och rent av historiska ut uppe på väggen.</p><p>Kameran är ett viktigt redskap för dokumentering. Utan fotografiska minnen från 1970-talet skulle få komma ihåg dessa artisters ansiktsuttryck och väsen, även om de som ljud fortfarande finns bland oss även idag. Ett svartvitt fotografi berättar om livets nyanser och melodier.</p><p>Som nyaste material presenterar fotografen 1973–76 års Hurriganes-samling som baserar sig på den nya boken Hurriganes – Pyörremyrsky. Utställningen har dessutom utökats med bilder på Wigwam och Dave Lindholm.</p><p>Utställningen har understötts av Centret för konstfrämjande, Vapriikki-museet och Kuusankoskitalo.</p><p>Risto Vuorimies är fotograf, musiker och musikredaktör.</p><p>I början av 1970-talet studerade Vuorimies fotografering i Stockholm. Med sin studiekamrat Ben Kaila fotograferade Vuorimies då svenskfinländska invandrare. På självständighetsdagen 1972 sammanställdes en utställning på Gamla studenthuset och cirka tjugo år senare skapades fotografiverket Siirtosuomalainen (Musta Taide, 1994), som gav upphovsmännen statspriset i fotokonst.</p><p>Vuorimies är en stor vän av kubansk musik och har sjungit och spelat i Septeto Son-bandet och gjort radioprogram under namnet Papá Montero.</p>",
                "en": "<p>Risto Vuorimies will present his exhibition on Wed 29 October at 5:30 pm. Duration approximately one hour. Free admission.</p><p>The exhibition by legendary photographer Risto Vuorimies at Kanneltalo's gallery showcases iconic music photographs from Finland.</p><p>Risto Vuorimies began working as a cover designer for the record label Love Records in spring 1973. One of his first projects was designing the album cover for Hurriganes' debut Rock'n'Roll All Night Long. At the same time, Vuorimies photographed the cover image for Rauli Badding Somerjoki's album Muotokuva 1, in which the artist is leaning against a bar table in a small café on Hämeentie. From that point on, Vuorimies spent three years creating a number of covers for albums that would later become highly influential, including Hurriganes' Roadrunner.</p><p>Artists like Isokynä, Kojo, Badding, Maijanen, Tolonen and many others who began performing in the 1970s as part of Finland's youth music scene have now reached their seventies. That is, those who are still alive. At the time these photos were taken, both the photographer and the musicians were in their twenties. According to Vuorimies, it has been fascinating to browse through the old film negatives, which are in excellent condition and neatly organised in his binders. Using modern technology, Vuorimies has produced this LOVE Images+ photo exhibition from those negatives. Hurriganes, Tasavallan Presidentti, Wigwam, Dave, Alatalo and other Love artists from that era appear stylish, even historic, when displayed on the gallery walls.</p><p>The camera is an essential tool for documentation. Without the photographic memories of the 1970s, many would hardly remember the faces and presence of these artists, even though their voices still reach us through various media today. A black-and-white photo tells the story of the tones and melodies of life.</p><p>As his most recent material, the photographer presents a Hurriganes-themed collection from 1973–1976, based on the new book Hurriganes – Pyörremyrsky (\"Hurriganes – Whirlwind\"). In addition, the exhibition includes a selection of photographs of Wigwam and Dave Lindholm.</p><p>The exhibition has been supported by the Arts Promotion Centre Finland, the Vapriikki Museum Centre and Kuusankoskitalo.</p><p>Risto Vuorimies is a photographer, musician and music journalist.</p><p>In the early 1970s, he studied photography in Stockholm. Together with his fellow student Ben Kaila, Vuorimies photographed Finnish immigrants living in Sweden. On Finnish Independence Day in 1972, these photographs were exhibited at the Old Student House in Helsinki, and about twenty years later they were published in the photo book Siirtosuomalainen (Musta Taide, 1994), which earned the authors the State Prize for Photographic Art.</p><p>Vuorimies is a great admirer of Cuban music; he has sung and played in the band Septeto Son and produced radio programmes under the name Papá Montero.</p>"
            },
            "short_description": {
                "fi": "Risto Vuorimies esittelee näyttelynsä ke 29.10. klo 17.30. Kesto noin tunti. Vapaa pääsy.",
                "sv": "Risto Vuorimies presenterar sin utställning onsdagen den 29 oktober kl. 17:30. Utställningen varar cirka en timme. Fri entré.",
                "en": "Risto Vuorimies will present his exhibition on Wed 29 October at 5:30 pm. Duration approximately one hour. Free admission."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7068226E91E1991E6EE6E0D8FB3748E5/Nayttelyesittely_Risto_Vuorimies_-_LOVE-kuvia_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7068226E91E1991E6EE6E0D8FB3748E5/Risto_Vuorimies_LOVE-bilder_",
                "en": "http://www.kanneltalo.fi/en/events/event/7068226E91E1991E6EE6E0D8FB3748E5/Risto_Vuorimies_LOVE_Images_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67206/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67096",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "26,90€/22.80€",
                        "sv": "26,90€/22.80€",
                        "en": "26,90€/22.80€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "sv": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "en": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490955,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-30T11:13:36.475234Z",
                    "last_modified_time": "2025-09-30T11:13:36.475245Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768274.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490955/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-30T11:13:36.373744Z",
            "last_modified_time": "2025-10-24T09:13:17.342719Z",
            "date_published": null,
            "start_time": "2025-10-25T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "sv": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "en": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).</p><p>Esitys tuo meidät raakaan maailmaan kahden palkkamurhaajan (Ben ja Gus) odotellessa keikkaa kellarihuoneessa. Tunteet kuohuvat, jännitys ja hermostuneisuus on kuin sumuna huoneessa. Ruokahissi tuo viestin vai tuoko?</p><p>Esitystila on esteetön.<br> <br>Esitys ei sovi aivan pienemmille (K12)<br>Kesto: 1 tunti 10 minuuttia, ei väliaikaa</p><p>Esitys suomeksi.</p>",
                "sv": "<p>Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).</p><p>Föreställningen tar oss in i den brutala värld där två torpeder (Ben och Gus) väntar på ett jobb i ett källarrum. Känslorna svallar, spänningar och nervositet ligger som en dimma i rummet. För hissen med sig ett meddelande eller inte?</p><p>Föreställningslokalen är tillgänglig.<br>Föreställningen är inte riktigt lämplig för yngre barn (F 12)<br>Längd: 1h10m, ingen paus</p><p>Föreställningen är på finska.</p>",
                "en": "<p>The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008).</p><p>The play brings us into the brutal world of two hitmen (Ben and Gus) waiting for an assignment in a basement room. Emotions are running high, with tension and nervousness filling the room like a dense fog. The dumb waiter brings a message, or does it?</p><p>The venue is accessible.<br>The performance is not suitable for younger children (age limit 12).<br>Duration: 1 h 10 min, without intermission</p><p>The play is performed in Finnish.</p>"
            },
            "short_description": {
                "fi": "Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).",
                "sv": "Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).",
                "en": "The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008)."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/354B960BC03B5970A4F08BD4A1539E2B/Teatteri_IHME_Ruokahissi",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/354B960BC03B5970A4F08BD4A1539E2B/Teatteri_IHME_Ruokahissi",
                "en": "http://www.vuotalo.fi/en/events/event/354B960BC03B5970A4F08BD4A1539E2B/Teatteri_IHME_Ruokahissi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67096/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67095",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "26,90€/22.80€",
                        "sv": "26,90€/22.80€",
                        "en": "26,90€/22.80€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "sv": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "en": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490954,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-30T11:13:36.070398Z",
                    "last_modified_time": "2025-09-30T11:13:36.070409Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768273.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490954/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-30T11:13:35.964901Z",
            "last_modified_time": "2025-10-24T09:13:17.072447Z",
            "date_published": null,
            "start_time": "2025-10-25T12:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "sv": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "en": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).</p><p>Esitys tuo meidät raakaan maailmaan kahden palkkamurhaajan (Ben ja Gus) odotellessa keikkaa kellarihuoneessa. Tunteet kuohuvat, jännitys ja hermostuneisuus on kuin sumuna huoneessa. Ruokahissi tuo viestin vai tuoko?</p><p>Esitystila on esteetön.<br> <br>Esitys ei sovi aivan pienemmille (K12)<br>Kesto: 1 tunti 10 minuuttia, ei väliaikaa.</p><p>Esitys suomeksi.</p>",
                "sv": "<p>Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).</p><p>Föreställningen tar oss in i den brutala värld där två torpeder (Ben och Gus) väntar på ett jobb i ett källarrum. Känslorna svallar, spänningar och nervositet ligger som en dimma i rummet. För hissen med sig ett meddelande eller inte?</p><p>Föreställningslokalen är tillgänglig.<br>Föreställningen är inte riktigt lämplig för yngre barn (F 12)<br>Längd: 1h10m, ingen paus</p><p>Föreställningen är på finska.</p>",
                "en": "<p>The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008).</p><p>The play brings us into the brutal world of two hitmen (Ben and Gus) waiting for an assignment in a basement room. Emotions are running high, with tension and nervousness filling the room like a dense fog. The dumb waiter brings a message, or does it?</p><p>The venue is accessible.<br>The performance is not suitable for younger children (age limit 12).<br>Duration: 1 h 10 min, without intermission</p><p>The play is performed in Finnish.</p>"
            },
            "short_description": {
                "fi": "Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).",
                "sv": "Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).",
                "en": "The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008)."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EE87FE8F42ECADBA747EC9C49A32C91C/Teatteri_IHME_Ruokahissi",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/EE87FE8F42ECADBA747EC9C49A32C91C/Teatteri_IHME_Ruokahissi",
                "en": "http://www.vuotalo.fi/en/events/event/EE87FE8F42ECADBA747EC9C49A32C91C/_Teatteri_IHME_Ruokahissi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67095/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67094",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "26,90€/22.80€",
                        "sv": "26,90€/22.80€",
                        "en": "26,90€/22.80€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "sv": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "en": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490953,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-30T11:13:35.067251Z",
                    "last_modified_time": "2025-09-30T11:13:35.067263Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768258.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490953/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-30T11:13:34.965729Z",
            "last_modified_time": "2025-10-24T09:13:16.126108Z",
            "date_published": null,
            "start_time": "2025-10-24T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "sv": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "en": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).</p><p>Esitys tuo meidät raakaan maailmaan kahden palkkamurhaajan (Ben ja Gus) odotellessa keikkaa kellarihuoneessa. Tunteet kuohuvat, jännitys ja hermostuneisuus on kuin sumuna huoneessa. Ruokahissi tuo viestin vai tuoko?</p><p>Esitystila on esteetön.<br> <br>Esitys ei sovi aivan pienemmille (K12)<br>Kesto: 1 tunti 10 minuuttia, ei väliaikaa</p><p>Esitys suomeksi.</p>",
                "sv": "<p>Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).</p><p>Föreställningen tar oss in i den brutala värld där två torpeder (Ben och Gus) väntar på ett jobb i ett källarrum. Känslorna svallar, spänningar och nervositet ligger som en dimma i rummet. För hissen med sig ett meddelande eller inte?</p><p>Föreställningslokalen är tillgänglig.<br>Föreställningen är inte riktigt lämplig för yngre barn (F 12)<br>Längd: 1h10m, ingen paus</p><p>Föreställningen är på finska.</p>",
                "en": "<p>The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008).</p><p>The play brings us into the brutal world of two hitmen (Ben and Gus) waiting for an assignment in a basement room. Emotions are running high, with tension and nervousness filling the room like a dense fog. The dumb waiter brings a message, or does it?</p><p>The venue is accessible.<br>The performance is not suitable for younger children (age limit 12).<br>Duration: 1 h 10 min, without intermission</p><p>The play is performed in Finnish.</p>"
            },
            "short_description": {
                "fi": "Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).",
                "sv": "Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).",
                "en": "The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008)."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BCC167649DFDC32B8F8147C8756A13FA/Teatteri_IHME_Ruokahissi",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/BCC167649DFDC32B8F8147C8756A13FA/Teatteri_IHME_Ruokahissi",
                "en": "http://www.vuotalo.fi/en/events/event/BCC167649DFDC32B8F8147C8756A13FA/Teatteri_IHME_Ruokahissi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67094/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67093",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "26.90€/22.80€",
                        "sv": "26.90€/22.80€",
                        "en": "26.90€/22.80€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "sv": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "en": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490952,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-30T11:13:34.386871Z",
                    "last_modified_time": "2025-09-30T11:13:34.386882Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768252.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490952/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-30T11:13:34.273282Z",
            "last_modified_time": "2025-10-24T09:13:15.579467Z",
            "date_published": null,
            "start_time": "2025-10-23T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "sv": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "en": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).</p><p>Esitys tuo meidät raakaan maailmaan kahden palkkamurhaajan (Ben ja Gus) odotellessa keikkaa kellarihuoneessa. Tunteet kuohuvat, jännitys ja hermostuneisuus on kuin sumuna huoneessa. Ruokahissi tuo viestin vai tuoko?</p><p>Esitystila on esteetön. <br>Esitys ei sovi aivan pienemmille (K. 12)<br>Kesto: 1h10, ei väliaika</p><p>Esitys suomeksi.</p>",
                "sv": "<p>Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).</p><p>Föreställningen tar oss in i den brutala värld där två torpeder (Ben och Gus) väntar på ett jobb i ett källarrum. Känslorna svallar, spänningar och nervositet ligger som en dimma i rummet. För hissen med sig ett meddelande eller inte?</p><p>Föreställningslokalen är tillgänglig.<br>Föreställningen är inte riktigt lämplig för yngre barn (F 12)<br>Längd: 1h10m, ingen paus</p><p>Föreställningen är på finska.</p>",
                "en": "<p>The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008).</p><p>The play brings us into the brutal world of two hitmen (Ben and Gus) waiting for an assignment in a basement room. Emotions are running high, with tension and nervousness filling the room like a dense fog. The dumb waiter brings a message, or does it?</p><p>The venue is accessible.<br>The performance is not suitable for younger children (age limit 12).<br>Duration: 1 h 10 min, without intermission</p><p>The play is performed in Finnish.</p>"
            },
            "short_description": {
                "fi": "Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).",
                "sv": "Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).",
                "en": "The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008)."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1866BD2970F14E10F68B063BAC2CCBAD/Teatteri_IHME_Ruokahissi",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1866BD2970F14E10F68B063BAC2CCBAD/Teatteri_IHME_Ruokahissi",
                "en": "http://www.vuotalo.fi/en/events/event/1866BD2970F14E10F68B063BAC2CCBAD/Teatteri_IHME_Ruokahissi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67093/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66581",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490980,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-02T07:13:38.065458Z",
                    "last_modified_time": "2025-10-02T07:13:38.065472Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775032.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490980/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-02T07:13:37.949393Z",
            "last_modified_time": "2025-10-24T07:12:21.914387Z",
            "date_published": null,
            "start_time": "2025-11-22T11:00:00Z",
            "end_time": "2025-11-22T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Koko perheen taidepäivä – Lapsen oikeuksien viikko",
                "sv": "Hela familjens konstdag – Veckan för barnets rättigheter",
                "en": "A day of art for the whole family – Children’s Rights Week"
            },
            "provider": null,
            "description": {
                "fi": "<p>Lapsen oikeuksien viikon perhepäivässä on luvassa valloittavaa nukketeatteria ja musiikin pyörteitä niin pienille kuin isommillekin!</p><p>Nyt juhlitaan lapsen oikeuksia! Tehdas teatteri tuo eläinmaailman ihmeet perheen pienimpien ulottuville, ja We Jazz kutsuu kaiken ikäiset jammailemaan hyvän musiikin tahdissa. Uulun sanattomassa muskarissa päästään itsekin musisoimaan, ja Stoan aulasta löytyy hauska miniperhe-työpaja. Taitavat kasvomaalaajamme loihtivat kävijöille eläimellistä ilmettä.</p><p><b>Päivän ohjelma:</b><br>klo 13 ja 15 Tehdas teatteri: Eläköön eläimet (ennakkoilmoittautuminen, ks. tapahtuma)<br>klo 14 We Jazz: Mattsson / Herrala / Kallio <br>klo 13.15 Sanaton muskari<br>klo 13-16 Miniperhe-työpaja<br>klo 13-15.45 Kasvomaalausta</p><p><b>We Jazz -lastenkonsertti</b><br>Nuoren polven saksofonistilahjakkuus Oona Mattsson kohtaa Suomen jazzkentän veteraanikompin, basisti Ville Herralan ja rumpali Mika Kallion.<br>Kesällä debytoineen Mattsson / Herrala / Kallio -trion ohjelmisto koostuu tarkoin valituista jazzhistorian helmistä, herkästi ja vapaasti tulkittuina.</p><p><b>Sanaton muskari</b><br>Sanaton muskari on esitys, jossa lapset ja perheet voivat kokea monipuolisesti musiikkia. Pedagogiikka perustuu sanattomiin lauluihin ja loruihin, eli toiminta soveltuu kaikille äidinkielestä riippumatta.</p><p>Sanaton muskari sopii myös heille, joilla on kehitysvaikeuksia tai haasteita motoriikan kanssa. Tässä pedagogiikassa musiikkia opitaan kuin äidinkieltä - ensin kuunnellaan, sitten kokeillaan. Musiikkia ja rytmiä aistitaan yhdessä liikkumalla, toistamalla ja vertaamalla ryhmässä.</p><p>Ohjaaja: Paloma Català Parga<br>Ikäsuositus 0–10 vuotta, pienimmät aikuisen seurassa.<br>Mukaan mahtuu max 25 lasta, lisäksi heidän aikuisensa.<br>Kesto 40 min.</p><p><b>Miniperhe-työpaja</b><br>Perheitä on erilaisia, ja jokainen perheenjäsen on aivan omanlaisensa.  Millaisia hassuja, värikkäitä tai ihania tyyppejä kuuluu sinun perheeseesi? Tule luomaan oma miniatyyriperhe! Nuket syntyvät puutikuista, liimasta, kierrätyslangoista ja mielikuvituksesta.</p><p>Ohjaaja: Chloé Mahy-Hulkko<br>Kielet: suomi, ranska, englanti</p><p>Puotinkylän Valtti pitää Stoan aulassa herkkukioskia, josta löytyy herkkuja pientä korvausta vastaan.</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Familjedagen under Veckan för barnens rättigheter kommer att bjuda på fängslande dockteater och musikaliska virvelvindar för både stora och små!</p><p>Familjedagen under Veckan för barnens rättigheter kommer att bjuda på fängslande dockteater och musikaliska virvelvindar för både stora och små!</p><p>Låt oss fira barnens rättigheter! Tehdas teatteri har med sig djurvärldens underverk till de små i familjen och We Jazz bjuder in alla åldrar att jamma loss till bra musik. Du kan själv skapa musik i Uulus ordlösa musiklekskola, och det finns en rolig mini-familjeverkstad i Stoas aula. Våra duktiga ansiktsmålare målar djurliga bilder på besökarna.</p><p>Dagens program<br>kl. 13 och 15 Tehdas teatteri: Eläköön eläimet (föranmälan, se evenemang)<br>14:00 We Jazz: Mattsson / Herrala / Kallio <br>kl. 13.15 Ordlös musiklekskola<br>kl. 13–16 mini-familjeverkstad<br>kl. 13–15.45 Ansiktsmålning</p><p>Ordlös musiklekskola<br>Den ordlösa musiklekskolan är en föreställning där barn och familjer kan uppleva musik på olika sätt. Pedagogiken bygger på icke-verbala sånger och berättelser, vilket innebär att aktiviteterna passar alla, oavsett modersmål.</p><p>Men ordlösa musiklekskolan är också lämplig för personer med utvecklingsstörning eller motoriska utmaningar. Denna pedagogik lär ut musik som ett modersmål – först lyssnar du, sedan försöker du. Musik och rytm upplevs tillsammans genom att man rör sig, upprepar och jämför i en grupp.</p><p>Regi: Paloma Català Parga<br>Rekommenderad ålder 0–10 år, de yngsta tillsammans med en vuxen.<br>Det finns en maximal kapacitet på 25 barn, plus deras vuxna.<br>Längd 40 min.</p><p>Mini-familjeverkstad<br>Familjer är olika och alla familjemedlemmar är olika. Vad finns det för roliga, färgstarka eller underbara människor i din familj? Kom och skapa din egen minifamilj! Dockorna är tillverkade av träfibrer, lim, återvunnet garn och fantasi.</p><p>Regi: Chloé Mahy-Hulkko<br>Språk: finska, franska, engelska</p><p>Puotinkylän Valtti har ett delikatesstånd i lobbyn på Stoa, där du kan köpa godsaker för en liten slant.</p><p>Fritt inträde.</p>",
                "en": "<p>This day of art for the whole family in Children's Rights Week features captivating puppetry and captivating music for young and old alike!</p><p>Let's celebrate the rights of the child! Independent theatre Tehdas Teatteri introduces the littlest audience members to the wonders of the animal world, while We Jazz invites people of all ages to jam out to good music. Culture Cooperative Uulu’s wordless music playschool lets children make music themselves, and there will also be a fun mini-family workshop in the Stoa lobby. Participants looking for a more animalistic look can turn to our skilled face painters.</p><p>The day’s programme:<br>13.00 and 15.00 Tehdas Teatteri: Eläköön eläimet (Hooray for animals) (advance registration, see event)<br>14.00 We Jazz: Mattsson / Herrala / Kallio<br>13.15 Wordless music playschool<br>13.00–16.00 Mini-family workshop<br>13.00–15.45 Face painting</p><p>Wordless music playschool<br>The wordless music playschool is a performance that allows children and families to experience music in a variety of ways. The pedagogy is based on wordless songs and rhymes, which means that the activities are suitable for everyone, regardless of their mother tongue.</p><p>The wordless music playschool is also suitable for those with developmental disabilities or motor challenges. This pedagogy teaches music like a mother tongue – first you listen, then you try it yourself. Music and rhythm are sensed together by moving, repeating and comparing in a group.</p><p>Instructor: Paloma Català Parga<br>Age recommendation: 0–10 years; the youngest participants should be accompanied by an adult.<br>Maximum capacity: 25 children, plus their adults.<br>Duration: 40 min</p><p>Mini-family workshop<br>There are different kinds of families, and each family member is also different. What kind of funny, colourful or lovely people are in your family? Come and create your own miniature family! The miniatures are made with wooden sticks, glue, recycled yarn and imagination.</p><p>Instructor: Chloé Mahy-Hulkko<br>Languages: Finnish, French, English</p><p>Puotinkylän Valtti will be running a kiosk in the Stoa lobby, where you can purchase treats for a small fee.</p><p>Free entry.</p>"
            },
            "short_description": {
                "fi": "Lapsen oikeuksien viikon perhepäivässä on luvassa valloittavaa nukketeatteria ja musiikin pyörteitä niin pienille kuin isommillekin!",
                "sv": "Familjedagen under Veckan för barnens rättigheter kommer att bjuda på fängslande dockteater och musikaliska virvelvindar för både stora och små!",
                "en": "This day of art for the whole family in Children's Rights Week features captivating puppetry and captivating music for young and old alike!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/E0A32708B8DFF3B97D6B59F403C76FF4/Koko_perheen_taidepaiva_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/E0A32708B8DFF3B97D6B59F403C76FF4/Hela_familjens_konstdag",
                "en": "http://www.stoa.fi/en/events/event/E0A32708B8DFF3B97D6B59F403C76FF4/A_day_of_art_for_the_whole_family"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66581/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67142",
            "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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "22 € / 17 €",
                        "sv": "22 € / 17 €",
                        "en": "22 € / 17 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/en/artist/kinetic-orchestra/",
                        "sv": "https://www.lippu.fi/en/artist/kinetic-orchestra/",
                        "en": "https://www.lippu.fi/en/artist/kinetic-orchestra/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491042,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-08T13:13:31.650984Z",
                    "last_modified_time": "2025-10-08T13:13:31.650995Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773715.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491042/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-08T13:13:31.566242Z",
            "last_modified_time": "2025-10-24T06:13:33.965663Z",
            "date_published": null,
            "start_time": "2025-12-03T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Kinetic Orchestra: Working Class Heroes – ENSI-ILTA",
                "sv": "Kinetic Orchestra: Working Class Heroes – PREMIÄR",
                "en": "Kinetic Orchestra: Working Class Heroes – PREMIERE"
            },
            "provider": null,
            "description": {
                "fi": "<p>Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.</p><p>Teoksen hahmot ovat fiktiivisiä, mutta heidän kokemuksensa ulkopuolisuudesta ja intohimonsa kyseenalaistamisesta voivat tuntua tutuilta monelle, joka on omistautunut jollekin fyysiselle tekemiselle. <br> <br>Tanssijat: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin sekä vaihtuvassa roolissa Anni Koivusalo, Malla Aaltonen ja Riikka Lyra<br>Konsepti: Jarkko Mandelin<br>Koreografia: Tanssijat ja Jarkko Mandelin<br>Äänisuunnittelu ja sävellys: Janne Hast<br>Pukusuunnittelu: Maria Siren<br>Valosuunnittelu: Niila Rantala<br>Tuotanto: Kinetic Orchestra</p><p>Genre: tanssi<br>Kesto: n. 45 min.<br>Kieli: sanaton</p><p><b>Valtuusto 150 v-etu</b> <br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!  <br> <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811519/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.</p><p>Figurerna i verket är fiktiva men deras erfarenheter om utanförskap och sin passion för ifrågasättande kan kännas bekanta för många som engagerat sig åt någon fysisk syssla. <br> <br>Dansare: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin samt i växlande roll Anni Koivusalo, Malla Aaltonen och Riikka Lyra<br>Koncept: Jarkko Mandelin<br>Koreografi: dansare och Jarkko Mandelin<br>Ljudplanering och tonsättning: Janne Hast<br>Kostymdesign: Maria Siren<br>Ljusplanering: Niila Rantala<br>Produktion: Kinetic Orchestra</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811519/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Working Class Heroes is a story of funny guys who both work and create art with their bodies.</p><p>The characters in the work are fictional, but their experiences of being outsiders and questioning their passions may seem familiar to many who are dedicated to doing something physical. <br> <br>Dancers: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin. In alternating roles: Anni Koivusalo, Malla Aaltonen and Riikka Lyra<br>Concept: Jarkko Mandelin<br>Choreography: Dancers and Jarkko Mandelin<br>Sound design and composition: Janne Hast<br>Costume design: Maria Siren<br>Lighting design: Niila Rantala<br>Production: Kinetic Orchestra</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811519/?affiliate=FSF\">HERE</a></u></p>"
            },
            "short_description": {
                "fi": "Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.",
                "sv": "Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.",
                "en": "Working Class Heroes is a story of funny guys who both work and create art with their bodies."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/39B2EF06F1A927B4837D5AEBA7B6C826/Kinetic_Orchestra_Working_Class_Heroes_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/39B2EF06F1A927B4837D5AEBA7B6C826/Kinetic_Orchestra_Working_Class_Heroes_",
                "en": "http://www.stoa.fi/en/events/event/39B2EF06F1A927B4837D5AEBA7B6C826/Kinetic_Orchestra_Working_Class_Heroes_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67142/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67141",
            "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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "22 € / 17 €",
                        "sv": "22 € / 17 €",
                        "en": "22 € / 17 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/en/artist/kinetic-orchestra/",
                        "sv": "https://www.lippu.fi/en/artist/kinetic-orchestra/",
                        "en": "https://www.lippu.fi/en/artist/kinetic-orchestra/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491041,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-08T13:13:31.097666Z",
                    "last_modified_time": "2025-10-08T13:13:31.097678Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773714.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491041/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-08T13:13:31.006521Z",
            "last_modified_time": "2025-10-24T06:13:33.447136Z",
            "date_published": null,
            "start_time": "2025-12-02T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Kinetic Orchestra: Working Class Heroes – ENSI-ILTA",
                "sv": "Kinetic Orchestra: Working Class Heroes – PREMIÄR",
                "en": "Kinetic Orchestra: Working Class Heroes – PREMIERE"
            },
            "provider": null,
            "description": {
                "fi": "<p>Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.</p><p>Teoksen hahmot ovat fiktiivisiä, mutta heidän kokemuksensa ulkopuolisuudesta ja intohimonsa kyseenalaistamisesta voivat tuntua tutuilta monelle, joka on omistautunut jollekin fyysiselle tekemiselle. <br> <br>Tanssijat: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin sekä vaihtuvassa roolissa Anni Koivusalo, Malla Aaltonen ja Riikka Lyra<br>Konsepti: Jarkko Mandelin<br>Koreografia: Tanssijat ja Jarkko Mandelin<br>Äänisuunnittelu ja sävellys: Janne Hast<br>Pukusuunnittelu: Maria Siren<br>Valosuunnittelu: Niila Rantala<br>Tuotanto: Kinetic Orchestra</p><p>Genre: tanssi<br>Kesto: n. 45 min.<br>Kieli: sanaton</p><p><b>Valtuusto 150 v-etu</b> <br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!  <br> <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811519/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.</p><p>Figurerna i verket är fiktiva men deras erfarenheter om utanförskap och sin passion för ifrågasättande kan kännas bekanta för många som engagerat sig åt någon fysisk syssla. <br> <br>Dansare: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin samt i växlande roll Anni Koivusalo, Malla Aaltonen och Riikka Lyra<br>Koncept: Jarkko Mandelin<br>Koreografi: dansare och Jarkko Mandelin<br>Ljudplanering och tonsättning: Janne Hast<br>Kostymdesign: Maria Siren<br>Ljusplanering: Niila Rantala<br>Produktion: Kinetic Orchestra</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811519/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Working Class Heroes is a story of funny guys who both work and create art with their bodies.</p><p>The characters in the work are fictional, but their experiences of being outsiders and questioning their passions may seem familiar to many who are dedicated to doing something physical. <br> <br>Dancers: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin. In alternating roles: Anni Koivusalo, Malla Aaltonen and Riikka Lyra<br>Concept: Jarkko Mandelin<br>Choreography: Dancers and Jarkko Mandelin<br>Sound design and composition: Janne Hast<br>Costume design: Maria Siren<br>Lighting design: Niila Rantala<br>Production: Kinetic Orchestra</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811519/?affiliate=FSF\">HERE</a></u></p>"
            },
            "short_description": {
                "fi": "Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.",
                "sv": "Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.",
                "en": "Working Class Heroes is a story of funny guys who both work and create art with their bodies."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/228E90F09714D6E7DDE09C8C239FD45B/Kinetic_Orchestra_Working_Class_Heroes_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/228E90F09714D6E7DDE09C8C239FD45B/Kinetic_Orchestra_Working_Class_Heroes_",
                "en": "http://www.stoa.fi/en/events/event/228E90F09714D6E7DDE09C8C239FD45B/Kinetic_Orchestra_Working_Class_Heroes_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67141/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}