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

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

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=57&publisher_ancestor=ahjo%3A00001
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 11836,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=58&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=56&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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777336.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "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>"
            },
            "name": {
                "fi": "Kino Helios: Huutamisen taito (12)",
                "sv": "Kino Helios: Huutamisen taito (12)",
                "en": "Kino Helios: Huutamisen taito (12)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777335.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "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>"
            },
            "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_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@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": [],
                    "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"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777366.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "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>"
            },
            "name": {
                "fi": "Kino Helios: Sisu 2 (16)",
                "sv": "Kino Helios: Sisu 2 (16)",
                "en": "Kino Helios: Sisu 2 (16)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777365.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "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>"
            },
            "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_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777297.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "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>"
            },
            "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_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777296.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "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>"
            },
            "name": {
                "fi": "Kino Helios: Huutamisen taito (12)",
                "sv": "Kino Helios: Huutamisen taito (12)",
                "en": "Kino Helios: Huutamisen taito (12)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67174/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/fabiofrizzi/",
                        "sv": "https://www.lippu.fi/artist/fabiofrizzi/",
                        "en": "https://www.lippu.fi/artist/fabiofrizzi/"
                    },
                    "description": null,
                    "price": {
                        "fi": "45-48 €",
                        "sv": "45-48 €",
                        "en": "45-48 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767709.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "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>"
            },
            "name": {
                "fi": "Fabio Frizzi – ”Frizzi 2 Fulci” (IT)",
                "sv": "Fabio Frizzi – ”Frizzi 2 Fulci” (IT)",
                "en": "Fabio Frizzi – ”Frizzi 2 Fulci” (IT)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Fullsteam Agency Oy",
                "sv": "Fullsteam Agency Oy",
                "en": "Fullsteam Agency Oy"
            },
            "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778434.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "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>"
            },
            "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_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67167/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778494.jpg",
                    "name": "",
                    "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,
            "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"
            },
            "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>"
            },
            "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_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67168/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778559.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "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>"
            },
            "name": {
                "fi": "Näyttelyesittely: Risto Vuorimies - LOVE-kuvia+",
                "sv": "Risto Vuorimies: LOVE-bilder+",
                "en": "Risto Vuorimies: LOVE Images+"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "26,90€/22.80€",
                        "sv": "26,90€/22.80€",
                        "en": "26,90€/22.80€"
                    }
                }
            ],
            "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",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768274.jpg",
                    "name": "",
                    "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,
            "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"
            },
            "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>"
            },
            "name": {
                "fi": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "sv": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "en": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "26,90€/22.80€",
                        "sv": "26,90€/22.80€",
                        "en": "26,90€/22.80€"
                    }
                }
            ],
            "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",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768273.jpg",
                    "name": "",
                    "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,
            "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"
            },
            "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>"
            },
            "name": {
                "fi": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "sv": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "en": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "26,90€/22.80€",
                        "sv": "26,90€/22.80€",
                        "en": "26,90€/22.80€"
                    }
                }
            ],
            "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",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768258.jpg",
                    "name": "",
                    "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,
            "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"
            },
            "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>"
            },
            "name": {
                "fi": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "sv": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "en": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "26.90€/22.80€",
                        "sv": "26.90€/22.80€",
                        "en": "26.90€/22.80€"
                    }
                }
            ],
            "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",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768252.jpg",
                    "name": "",
                    "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,
            "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"
            },
            "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>"
            },
            "name": {
                "fi": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "sv": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "en": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67093/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67090",
            "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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22 € / 17 €",
                        "sv": "22 € / 17 €",
                        "en": "22 € / 17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491038,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-08T13:13:28.740564Z",
                    "last_modified_time": "2025-10-08T13:13:28.740577Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776981.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491038/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-08T13:13:28.623732Z",
            "last_modified_time": "2025-10-24T06:13:31.260700Z",
            "date_published": null,
            "start_time": "2025-11-27T16: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,
            "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/FE00ED1F314EC856401F14C05928DB3C/Kinetic_Orchestra_Working_Class_Heroes_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/FE00ED1F314EC856401F14C05928DB3C/Kinetic_Orchestra_Working_Class_Heroes_",
                "en": "http://www.stoa.fi/en/events/event/FE00ED1F314EC856401F14C05928DB3C/Kinetic_Orchestra_Working_Class_Heroes_"
            },
            "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>"
            },
            "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_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67090/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66526",
            "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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/daniela-dowtowntrain-band/#calendar-start=2025-10",
                        "sv": "https://www.lippu.fi/artist/daniela-dowtowntrain-band/#calendar-start=2025-10",
                        "en": "https://www.lippu.fi/artist/daniela-dowtowntrain-band/#calendar-start=2025-10"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 20 €",
                        "sv": "24,80 € / 20 €",
                        "en": "24,80 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490705,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-09T11:14:14.707951Z",
                    "last_modified_time": "2025-09-09T11:14:14.707968Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774898.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490705/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-09T11:14:14.539515Z",
            "last_modified_time": "2025-10-23T14:12:03.405866Z",
            "date_published": null,
            "start_time": "2025-10-30T16: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,
            "short_description": {
                "fi": "Daniela & Downtown Train Bandin Suomen ensimmäinen Tom Waits -tribuutti sai siunauksensa itse herra Waitsilta.",
                "sv": "Daniela & Downtown Train Bands första Tom Waitstribut i Finland välsignades av självaste herr Waits.",
                "en": "Daniela & Downtown Train Band's first-ever Tom Waits tribute in Finland received the blessing of the man himself."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E172E4B6C26AA8B7652D5C1351463464/Daniela_Downtown_Train_Herra_Waitsin_jalanjaljilla",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E172E4B6C26AA8B7652D5C1351463464/Daniela_Downtown_Train_Band_pa_Herr_Waits_fotspar",
                "en": "http://www.kanneltalo.fi/en/events/event/E172E4B6C26AA8B7652D5C1351463464/Daniela_Downtown_Train_Band_In_the_Footsteps_of_Mr_Waits"
            },
            "description": {
                "fi": "<p>Daniela & Downtown Train Bandin Suomen ensimmäinen Tom Waits -tribuutti sai siunauksensa itse herra Waitsilta.</p><p>Kuusihenkinen Downtown Train Band muodostuu tunnetuista ja arvostetuista pitkän linjan muusikoista, joille juurimusiikki, psykedeelinen bluesrock ja avantgarde ovat yhteisiä nimittäjiä myös Tom Waitsin musiikin kanssa. <br> <br>Omaperäinen ja yllätyksellinen Waits on kyennyt koskettamaan merkittävää määrää ihmisiä, alakulttuureja ja taidepiirejä. Downtown Train Band on sovittanut Tom Waitsin lauluja uudelle tasolle, kuitenkin alkuperäistä kunnioittaen. Tribuuttialbumin kokonaisuus jakautuu vanhaan ja uuteen tuotantoon, jossa Waits tietoisesti hylkäsi jouset keskittyen kokeilevaan bluesiin, psykedeeliseen rockiin, maailmanmusiikkiin ja jopa rappiin. Keväällä 2025 ilmestynyt tribuutti on ainoa Tom Waits-albumijulkaisu Suomessa. <br> <br>Downtown Train Band tarjoaa konsertissaan herkkupaloja Waitsin uralta suomeksi, ruotsiksi sekä englanniksi. Erityistä on, että työryhmä on saanut luvan itseltään Tom Waitsilta kääntää hänen pari biisiään suomeksi. Nämä biisit, joiden käännöksestä vastaa Jarkko Martikainen, kuullaan myös luonnollisesti konsertissa. <br> <br>Tanssimeininkiä, svengiä, herkkyyttä, rajua latausta ja yllätyksellistä heittäytymistä on luvassa! <br> <br>Lavalla nähdään: <br>Daniela Fogelholm - laulu <br>Kepa Kettunen - lyömäsoittimet <br>Mikko Löytty -  sähköbasso <br>Jarkka Rissanen - kitara <br>Harri Taittonen - piano, Hammond-urut <br>Junnu Aaltonen - huilu <br>Arto Järvelä - viulu <br> <br>Kesto n.   1 h 45 min (sis. väliaika)</p>",
                "sv": "<p>Daniela & Downtown Train Bands första Tom Waitstribut i Finland välsignades av självaste herr Waits.</p><p>Den sexmanna Downtown Train Band består av kända och uppskattade musiker, som har rotmusik, psykedelisk bluesrock och avantgarde gemensamt utöver Tom Waits musik.</p><p>Den originella, teatrala och överraskande Waits har lyckats beröra väldigt många människor, subkulturer och konstkretsar. Som bäst är många av hans sånger rena crossover. Downtown Train Band har arrangerat Tom Waits låtar till en ny nivå, ändå med respekt för orginalversionen. Bandet kommit ut med ett tributalbum våren 2025 och på konserten får vi ta del av dessa låtar. Helheten är en blandning av gammalt och nytt, där Waits medvetet gick från stråkarna till experimentell blues, psykedelisk rock, världsmusik och till och med rap. Den kommande tributskivan är officiellt det enda Tom Waits albumsläppet i Finland. <br> <br>Det speciella är att bandet fått lova av självaste Mr Waits att översätta två av hans låtar till finska. Dessa två låtar i Jarkko Martikainens översättning får vi naturligtvis också höra på konserten. Downtown Train Band bjuder på en blandning av Waits godingar med låtar på både svenska finska och engelska. <br> <br>Teatralt, dansant, svängigt, känsligt, med en stark laddning och överraskande element utlovas! <br> <br>På scenen: <br>Daniela Fogelholm -sång <br>Jarkka Rissanen- gitarr <br>Kepa Kettunen - percussion <br>Mikko Löytty  - elbas <br>Harri Taittonen - piano, hammond B3, fender rhodes <br>Junnu Aaltonen - flöjt   <br>Arto Järvelä - violin</p><p>Längd ca 1 h 45 min (inkl. paus)</p>",
                "en": "<p>Daniela & Downtown Train Band's first-ever Tom Waits tribute in Finland received the blessing of the man himself.</p><p>Come and experience Tom Waits' music translated into Finnish!  <br>The Finnish lyrics are by Jarkko Martikainen and Juha Lehti. <br> <br>On stage: <br>Daniela Fogelholm - vocals <br>Jarkka Rissanen- gitar <br>Kepa Kettunen - percussions <br>Mikko Löytty  - base <br>Harri Taittonen - piano, hammond B3, fender rhodes <br>Junnu Aaltonen - flut <br>Arto Jöävelä - violin</p><p>Duration: approx. 1 h 45 min (incl. intermission)</p>"
            },
            "name": {
                "fi": "Daniela & Downtown Train Herra Waitsin jalanjäljillä",
                "sv": "Daniela & Downtown Train Band på Herr Waits fotspår",
                "en": "Daniela & Downtown Train Band In the Footsteps of Mr Waits"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66526/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66778",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/etnosoi-sounds-of-europe-dobrila-dorian-duo-mk-vuotalo-20396465/",
                        "sv": "https://www.lippu.fi/event/etnosoi-sounds-of-europe-dobrila-dorian-duo-mk-vuotalo-20396465/",
                        "en": "https://www.lippu.fi/event/etnosoi-sounds-of-europe-dobrila-dorian-duo-mk-vuotalo-20396465/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22 € / 17€",
                        "sv": "22 € / 17€",
                        "en": "22 € / 17€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1271734,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T12:14:25.464254Z",
                    "last_modified_time": "2025-07-16T12:14:25.464269Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775284.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1271734/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T12:14:25.295304Z",
            "last_modified_time": "2025-10-23T09:13:49.056256Z",
            "date_published": null,
            "start_time": "2025-10-31T16: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,
            "short_description": {
                "fi": "Tule kuuntelemaan perinteistä ja modernia makedonialaista musiikkia kiehtovalla tavalla yhdistävää Dobrila & Dorian Duoa!",
                "sv": "Kom och lyssna på Dobrila & Dorian Duo, en fascinerande kombination av traditionell och modern makedonsk musik!",
                "en": "Come and listen to Dobrila & Dorian Duo, who play a fascinating combination of traditional and modern Macedonian music!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/27199497D81866ECD2B00B14B982D89F/Sounds_of_Europe_Dobrila_Dorian_Duo_MK_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/27199497D81866ECD2B00B14B982D89F/Sounds_of_Europe_Dobrila_Dorian_Duo_MK_",
                "en": "http://www.vuotalo.fi/en/events/event/27199497D81866ECD2B00B14B982D89F/Sounds_of_Europe_Dobrila_Dorian_Duo_MK_"
            },
            "description": {
                "fi": "<p>Tule kuuntelemaan perinteistä ja modernia makedonialaista musiikkia kiehtovalla tavalla yhdistävää Dobrila & Dorian Duoa!</p><p><b>Lipputarjous</b><br>Nappaa kaveri mukaan konserttiin – kaksi lippua yhden hinnalla! <u><a href=\"https://www.lippu.fi/event/etnosoi-sounds-of-europe-dobrila-dorian-duo-mk-vuotalo-20396465/\">Tartu tarjoukseen lippu.fi:ssä.</a></u></p><p>Dobrila Grašeska ja Dorian Jovanović ovat pitkäaikaisia ystäviä ja yhteistyökumppaneita. He aloittivat yhteisen taiteellisen matkansa vuonna 2006 osana Čalgija Sound System -kvintettiä, joka on omistautunut perinteisen makedonialaiseen čalgija-musiikin säilyttämiselle. Vuonna 2020 he käynnistivät uuden projektin, Dobrila & Dorian Duon, joka sukeltaa makedonialaiseen perinteiseen musiikkiin radikaalilla käänteellä: kansanlauluja rekonstruoidaan modernin improvisaation, kokeilun ja hienovaraisten elektronisten tekstuurien avulla.<br> <br>Heidän debyyttialbuminsa Apokrif (SJF Records, 2021) on orgaaninen fuusio perinteestä ja innovaatiosta, hiljaisuudesta ja äänestä. Mestariteokseksi ylistetty albumi sisältää Dobrilan laulun, joka tulkitsee kansanmelodioita uudelleen – leikitellen tauoilla, kuiskauksilla ja melun purskeilla – samalla kun Dorian kerrostaa rytmejä looppien avulla ja kutoo improvisaatioita oud-luutullaan.<br> <br>Toinen albumi, Dobrila & Dorian Duo 2: Pile Šareno (SJF Records, 2023), jatkaa siitä mihin edellinen albumi päättyi. Nyt he syventävät \"minimalistista\" lähestymistapaansa laululooppeilla ja -prosessoreilla, luoden rohkeita uusia sävyjä ja äänimaisemia. Tuloksena on perinteistä musiikkia, joka on ladattu provosoivalla, tässä hetkessä hengittävällä energialla.</p><p><b>Global Music Ensemble </b><br>Sibelius-Akatemian Global Musicin koulutusohjelma tuo lavalle Global Music Ensemblen. Yhtye juhlistaa musiikillisen ja kulttuurisen monimuotoisuuden rikkautta ja esittää esiintyjiä eri puolilta maailmaa.<br> <br>Kesto: n. 120 min. sis. väliaika. <br>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p>",
                "sv": "<p>Kom och lyssna på Dobrila & Dorian Duo, en fascinerande kombination av traditionell och modern makedonsk musik!</p><p><b>Biljettkampanj</b><br>Ta med en vän på konserten – två biljetter till priset av en! <br><u><a href=\"https://www.lippu.fi/event/etnosoi-sounds-of-europe-dobrila-dorian-duo-mk-vuotalo-20396465/\">Utnyttja erbjudandet på lippu.fi.</a></u></p><p>Dobrila Grašeska och Dorian Jovanović är vänner och samarbetspartners sedan lång tid tillbaka. De inledde sin konstnärliga resa tillsammans 2006 som en del av kvintetten Čalgija Sound System, en grupp som ägnar sig åt att bevara traditionell makedonsk čalgija-musik. År 2020 lanserade de ett nytt projekt, Dobrila & Dorian Duo, som dyker ner i makedonsk traditionell musik med en radikal twist: folksångerna rekonstrueras genom modern improvisation, experiment och subtila elektroniska texturer.<br> <br>Deras debutalbum Apokrif (SJF Records, 2021) är en organisk fusion av tradition och innovation, tystnad och ljud. Albumet har hyllats som ett mästerverk och innehåller Dobrilas sång som omtolkar folkmelodier – lekfullt med pauser, viskningar och brus – medan Dorian lägger rytmer med loopar och väver improvisationer med sin oud-luta.<br> <br>Det andra albumet, Dobrila & Dorian Duo 2: Pile Šareno (SJF Records, 2023) tar vid där det förra albumet slutade. Nu fördjupar de sitt \"minimalistiska\" arbetssätt med sångslingor och -processorer och skapar nya djärva toner och ljudlandskap. Resultatet är traditionell musik laddad med provokativ energi som andas i stunden.</p><p><b>Global Music Ensemble</b><br>Inom Sibelius Akademins Global Music-utbildningsprogram intar Global Music Ensemble scenen. Ensemblen hyllar rikedomen i den musikaliska och kulturella mångfalden och förevisar artister från hela världen.</p><p>Längd: ca 120 min. inkl. paus. <br>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.</p>",
                "en": "<p>Come and listen to Dobrila & Dorian Duo, who play a fascinating combination of traditional and modern Macedonian music!</p><p><b>Ticket Offer</b><br>Bring a friend to the concert – two tickets for the price of one! <u><a href=\"https://www.lippu.fi/event/etnosoi-sounds-of-europe-dobrila-dorian-duo-mk-vuotalo-20396465/\">Get your tickets at lippu.fi.</a></u></p><p>Dobrila Grašeska and Dorian Jovanović are longtime friends and musical collaborators who began their artistic journey in 2006 as part of the quintet Čalgija Sound System, dedicated to preserving traditional Macedonian čalgija music. In 2020, they launched a new project, Dobrila & Dorian Duo, revisiting Macedonian traditional music with a radical twist: reconstructing folk songs through modern improvisation, experimentation, and subtle electronic textures.</p><p>Their debut album, Apokrif (SJF Records, 2021), is an organic fusion of tradition and innovation, silence and sound. Hailed as a masterpiece upon release, it features Dobrila’s vocals reimagining folk melodies—playing with pauses, whispers, and bursts of noise—while Dorian layers rhythms using loops, weaving improvisations on the oud.</p><p>The follow-up, Dobrila & Dorian Duo 2: Pile Šareno (SJF Records, 2023), pushes further. Here, they deepen their \"minimalist\" approach with vocal loops and vocal processors, crafting bold new tones and sonic landscapes. The result is traditional music recharged with provocative, contemporary energy.</p><p><b>Global Music Ensemble</b><br>The Sibelius Academy’s Global Music education programme brings the Global Music Ensemble to the stage. The ensemble celebrates the richness of musical and cultural diversity and features performers from around the world.</p><p>Duration: apx. 120 min. with intermission. <br>Club night, A-rights, refreshments provided by Café Pokkari, the doors will open at 17.30.</p>"
            },
            "name": {
                "fi": "Sounds of Europe: Dobrila & Dorian Duo (MK) – Etnosoi! / Vuotalo World Club",
                "sv": "Sounds of Europe: Dobrila & Dorian Duo (MK) – Etnosoi! / Vuotalo World Club",
                "en": "Sounds of Europe: Dobrila & Dorian Duo (MK) – Etnosoi! / Vuotalo World Club"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66778/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66657",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490804,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-16T12:13:10.700004Z",
                    "last_modified_time": "2025-09-16T12:13:10.700018Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775514.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490804/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-16T12:13:10.608873Z",
            "last_modified_time": "2025-10-22T11:13:51.555340Z",
            "date_published": null,
            "start_time": "2025-10-30",
            "end_time": "2025-11-16",
            "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,
            "short_description": {
                "fi": "Being Silly till the Day I Die on Stoan senioreiden sirkusryhmiä käsittelevä valokuvahanke.",
                "sv": "Being Silly till the Day I Die är ett fotoprojekt om de äldre cirkusgrupperna på Stoa, som har deltagit i avgiftsfria lektioner i en mängd olika cirkuskonster de senaste sex åren.",
                "en": "Being Silly till the Day I Die is a photography project about the elderly circus groups at Stoa, who have been participating in free lessons with a variety of Circus arts for the last six years."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/7E43D86B16B09085FDB22AC5B5B09310/Xavier_Locquet_Enrique_Salas_Being_Silly_till_the_Day_I_Die",
                "sv": "http://www.stoa.fi/sv/evenemang/event/7E43D86B16B09085FDB22AC5B5B09310/Xavier_Locquet_Enrique_Salas_Being_Silly_till_the_Day_I_Die",
                "en": "http://www.stoa.fi/en/events/event/7E43D86B16B09085FDB22AC5B5B09310/Xavier_Locquet_Enrique_Salas_Being_Silly_till_the_Day_I_Die"
            },
            "description": {
                "fi": "<p>Being Silly till the Day I Die on Stoan senioreiden sirkusryhmiä käsittelevä valokuvahanke.</p><p>Seniorit ovat osallistuneet ilmaisille erilaisia sirkustaitoja opettaville tunneille kuuden vuoden ajan.</p><p>Hanke koostuu vanhempien sukupolvien muotokuvista – vanhempien, isovanhempien, ystävien ja mentoreiden kuvista – ja kunnioittaa heidän tarinoitaan ja osallistumistaan Stoan sirkusryhmiin.</p><p>Hanke huipentuu näyttelyyn, jota varten Xavier \"Bambu\" Locquet on kuvannut kaikki osallistuneet seniorit. Locquet on paitsi kokenut valokuvaaja, myös muun muassa sirkustaiteilija, tanssija ja näyttelijä.</p><p>Hankkeen ohjaaja on Enrique \"Kike\" Salas, joka on johtanut Stoan sirkushankkeita jo yhdeksän vuoden ajan.</p>",
                "sv": "<p>Being Silly till the Day I Die är ett fotoprojekt om de äldre cirkusgrupperna på Stoa, som har deltagit i avgiftsfria lektioner i en mängd olika cirkuskonster de senaste sex åren.</p><p>Projektet består av porträtt av våra äldre – våra föräldrar, mor- och farföräldrar, vänner och mentorer – för att hedra deras historia och deltagande i Stoas circusgrupper.</p><p>Projektet kommer att kulminera i en utställning med alla våra äldre, fotograferade av den begåvade Xavier Locquet alias ”Bambu”, som är en erfaren fotograf och också bland annat cirkusartist, dansare och skådespelare.</p><p>Projektet leds av Enrique Salas, även känd som ”Kike”, som har lett cirkusprojekten på Stoa i Helsingfors de senaste nio åren.</p>",
                "en": "<p>Being Silly till the Day I Die is a photography project about the elderly circus groups at Stoa, who have been participating in free lessons with a variety of Circus arts for the last six years.</p><p>The project consists of portraits of our elders—our parents, grandparents, friends, and mentors—to honour their histories and participation in the Stoa Circus groups.</p><p>The project will culminate in an exhibition featuring all our elders photographed by the talented Xavier Locquet aka “Bambu”, an experienced Photographer but also a circus artist, dancer and actor among others.</p><p>The project is directed by Enrique Salas aka “Kike”, who has been leading the Circus projects at Stoa Helsinki for the last 9 years.</p>"
            },
            "name": {
                "fi": "Xavier Locquet & Enrique Salas: Being Silly till the Day I Die",
                "sv": "Xavier Locquet & Enrique Salas: Being Silly till the Day I Die",
                "en": "Xavier Locquet & Enrique Salas: Being Silly till the Day I Die"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66657/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67135",
            "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:288/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491076,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-10T14:14:11.200217Z",
                    "last_modified_time": "2025-10-10T14:14:11.200231Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778133.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491076/?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-10T14:14:11.010086Z",
            "last_modified_time": "2025-10-21T14:13:49.845110Z",
            "date_published": null,
            "start_time": "2025-10-25T10:30:00Z",
            "end_time": "2025-10-25T12: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,
            "short_description": {
                "fi": "Työpajat taiteilijan, tarinankertojan ja pyykkieläinten luojan Helga Stentzelin kanssa.",
                "sv": "Verkstäder med Helga Stentzel – Konstnär, berättare och skapare av klädstrecksdjur.",
                "en": "Workshops with Helga Stentzel – Artist, Storyteller, and Creator of the Clothesline Animals."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/0685958E16F32D954CA69F8B79C10A46/Luo_oma_pyykkiolentosi_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/0685958E16F32D954CA69F8B79C10A46/Skapa_dina_egna_tvattstrecksvarelser_",
                "en": "http://www.stoa.fi/en/events/event/0685958E16F32D954CA69F8B79C10A46/Create_Your_Own_Clothesline_Creatures_"
            },
            "description": {
                "fi": "<p>Työpajat taiteilijan, tarinankertojan ja pyykkieläinten luojan Helga Stentzelin kanssa.</p><p>Astu koko maailman rakastaman Clothesline Animals -sarjan luojan Helga Stentzelin mielikuvitukselliseen maailmaan.</p><p>Helgan teokset tunnetaan siitä, että ne muuttavat tavallisen pyykin iloisiksi ja persoonallisiksi hahmoiksi, ja ne ovatkin valloittaneet sydämiä ympäri maailman aina gallerianäyttelyistä julkisiin installaatioihin ja leikkisiin yhteistyöhankkeisiin.</p><p>Juhlistaakseen lokakuussa ensiesityksensä saavaa näytelmäämme Suomessa Helga kutsuu nyt niin lapset kuin aikuisetkin työpajoihin, joissa päästään luomaan omia pyykkieläimiä tai keksimään täysin uusia olentoja arkisista esineistä.</p><p>Työpajat:<br>• Pääse näkemään Helgan luovan prosessin taakse.<br>• Luo ohjatusti oma pyykkiolentosi vaatteiden, pyykkipoikien ja mielikuvituksen avulla.<br>• Koe leikkisä ympäristö, jossa luovuudella ei ole rajoja.<br>Miksi mukaan työpajaan?<br>• Hauskaa ja saavutettavaa tekemistä kaikenikäisille<br>• Harvinainen mahdollisuus oppia suoraan taiteilijalta<br>• Yhdessä tekemistä ja luovuuden jakamista muiden taiteesta innostuneiden kanssa.</p><p>Työpajoja on sekä koululaisille että perheille.</p><p>Työpajat koululaisille:<br>Ti 21.10. Klo 12-13 ja pe 24.10. Klo 12-13.<br>Ilmoittautumiset: hanna.westerholm@hel.fi</p><p>Työpajat perheille<br>Ke 22.10. Klo 16.30-18<br>La 25.10. Klo 13.30-15<br>Nonstop, vapaa pääsy.<br>Paikka: Stoan galleria</p><p>Ikäsuositus: alakoululuokille ja perheille<br>Kesto: 60 min-90 min<br>Kieli: englanti<br>Maksuton.</p>",
                "sv": "<p>Verkstäder med Helga Stentzel – Konstnär, berättare och skapare av klädstrecksdjur.</p><p>Stig in den fantasifulla världen som skapats av Helga Stentzel – konstnären bakom den globalt älskade serien Clothesline Animals.</p><p>Helga är känd för att förvandla vardagstvätt till glada, karaktärsfulla varelser och har erövrat hjärtan över hela världen i sina galleriutställningar, offentliga installationer och lekfulla samarbeten.</p><p>För att fira premiären av vår nya pjäs i Finland i oktober bjuder Helga in både barn och vuxna att delta i en serie praktiska verkstäder där vi skapar egna klädstrecksdjur eller hittar på helt nya varelser av hushållsföremål.</p><p>Verkstadsaktiviteter:<br>• En titt bakom kulisserna på Helgas kreativa process<br>• Instruerat skapande av din egen tvättbaserade varelse med hjälp av kläder, klädnypor och fantasi<br>• En lekfull miljö där kreativiteten inte har några gränser<br>Varför ska man delta?<br>• Verkstaden är rolig och tillgänglig för alla åldrar<br>• En sällsynt möjlighet att lära sig direkt av konstnären<br>• Få kontakt med andra entusiaster och dela magin i att skapa konst.</p><p>Det finns workshops för både skolbarn och familjer.</p><p>Workshops för skolbarn:<br>Tis 21.10. 12-13 och fre 24.10. 12-13.<br>Anmälan: hanna.westerholm@hel.fi</p><p>Workshops för familjer<br>Ons 22.10. 16.30-18<br>Lör 25.10. 13:30-15<br>Fri entré utan avbrott.</p><p>Plats: Stoa Galleri<br>Längd: 60 min-90 min<br>Språk: Engelska</p>",
                "en": "<p>Workshops with Helga Stentzel – Artist, Storyteller, and Creator of the Clothesline Animals.</p><p>Step into the imaginative world of Helga Stentzel, the artist behind the globally beloved Clothesline Animals series.</p><p>Known for transforming everyday laundry into joyful, characterful creatures, Helga’s work has captured hearts around the world—from gallery exhibitions to public installations and playful collaborations.</p><p>Now, to celebrate the premiere of our new play in Finland this October, Helga invites both children and adults to join a series of hands-on workshops where you’ll create your own clothesline animals or dream up entirely new beings from household items.</p><p>Workshop Activities:<br>• A behind-the-scenes look at Helga’s creative process<br>• Guided creation of your own laundry-based creature using clothes, pegs, and imagination<br>• A playful environment where creativity has no limits<br>Why Join?<br>• Fun and accessible for all ages<br>• A rare opportunity to learn directly from the artist<br>• Connect with fellow enthusiasts and share in the magic of creating art.</p><p>There are workshops for both school children and families.</p><p>Workshops for school children:<br>Tue 21.10. 12-13 and Fri 24.10. 12-13.<br>Registration: hanna.westerholm@hel.fi</p><p>Workshops for families<br>Wed 22.10. 16.30-18<br>Sat 25.10. 13:30-15<br>Nonstop, free admission.</p><p>Venue: Stoa Gallery<br>Duration: 60 min-90 min<br>Language: English</p>"
            },
            "name": {
                "fi": "Luo oma pyykkiolentosi! – työpaja perheille",
                "sv": "Skapa dina egna tvättstrecksvarelser! – workshop för familjer",
                "en": "Create Your Own Clothesline Creatures! – workshop for families"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67135/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67154",
            "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:288/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491075,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-10T14:14:09.850731Z",
                    "last_modified_time": "2025-10-10T14:14:09.850789Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778132.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491075/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-10T14:14:09.669371Z",
            "last_modified_time": "2025-10-21T14:13:48.931842Z",
            "date_published": null,
            "start_time": "2025-10-24T09:00:00Z",
            "end_time": "2025-10-24T10: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,
            "short_description": {
                "fi": "Työpajat taiteilijan, tarinankertojan ja pyykkieläinten luojan Helga Stentzelin kanssa.",
                "sv": "Verkstäder med Helga Stentzel – Konstnär, berättare och skapare av klädstrecksdjur.",
                "en": "Workshops with Helga Stentzel – Artist, Storyteller, and Creator of the Clothesline Animals."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/DC8451C262CB4F9D96C58BD8E9DB5232/Luo_oma_pyykkiolentosi_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/DC8451C262CB4F9D96C58BD8E9DB5232/Skapa_dina_egna_tvattstrecksvarelser_",
                "en": "http://www.stoa.fi/en/events/event/DC8451C262CB4F9D96C58BD8E9DB5232/Create_Your_Own_Clothesline_Creatures_"
            },
            "description": {
                "fi": "<p>Työpajat taiteilijan, tarinankertojan ja pyykkieläinten luojan Helga Stentzelin kanssa.</p><p>Astu koko maailman rakastaman Clothesline Animals -sarjan luojan Helga Stentzelin mielikuvitukselliseen maailmaan.</p><p>Helgan teokset tunnetaan siitä, että ne muuttavat tavallisen pyykin iloisiksi ja persoonallisiksi hahmoiksi, ja ne ovatkin valloittaneet sydämiä ympäri maailman aina gallerianäyttelyistä julkisiin installaatioihin ja leikkisiin yhteistyöhankkeisiin.</p><p>Juhlistaakseen lokakuussa ensiesityksensä saavaa näytelmäämme Suomessa Helga kutsuu nyt niin lapset kuin aikuisetkin työpajoihin, joissa päästään luomaan omia pyykkieläimiä tai keksimään täysin uusia olentoja arkisista esineistä.</p><p><b>Työpajat:</b><br>• Pääse näkemään Helgan luovan prosessin taakse.<br>• Luo ohjatusti oma pyykkiolentosi vaatteiden, pyykkipoikien ja mielikuvituksen avulla.<br>• Koe leikkisä ympäristö, jossa luovuudella ei ole rajoja.<br><b>Miksi mukaan työpajaan? </b><br>• Hauskaa ja saavutettavaa tekemistä kaikenikäisille<br>• Harvinainen mahdollisuus oppia suoraan taiteilijalta<br>• Yhdessä tekemistä ja luovuuden jakamista muiden taiteesta innostuneiden kanssa.</p><p>Työpajoja on sekä koululaisille että perheille.</p><p>Työpajat koululaisille:<br>Ti 21.10. Klo 12-13 ja pe 24.10. Klo 12-13.<br>Ilmoittautumiset: hanna.westerholm@hel.fi</p><p>Työpajat perheille<br>Ke 22.10. Klo 16.30-18<br>La 25.10. Klo 13.30-15<br>Nonstop, vapaa pääsy.<br>Paikka: Stoan galleria</p><p>Ikäsuositus: alakoululuokille ja perheille<br>Kesto: 60 min-90 min<br>Kieli: englanti<br>Maksuton.</p>",
                "sv": "<p>Verkstäder med Helga Stentzel – Konstnär, berättare och skapare av klädstrecksdjur.</p><p>Stig in den fantasifulla världen som skapats av Helga Stentzel – konstnären bakom den globalt älskade serien Clothesline Animals.</p><p>Helga är känd för att förvandla vardagstvätt till glada, karaktärsfulla varelser och har erövrat hjärtan över hela världen i sina galleriutställningar, offentliga installationer och lekfulla samarbeten.</p><p>För att fira premiären av vår nya pjäs i Finland i oktober bjuder Helga in både barn och vuxna att delta i en serie praktiska verkstäder där vi skapar egna klädstrecksdjur eller hittar på helt nya varelser av hushållsföremål.</p><p>Verkstadsaktiviteter:<br>• En titt bakom kulisserna på Helgas kreativa process<br>• Instruerat skapande av din egen tvättbaserade varelse med hjälp av kläder, klädnypor och fantasi<br>• En lekfull miljö där kreativiteten inte har några gränser<br>Varför ska man delta?<br>• Verkstaden är rolig och tillgänglig för alla åldrar<br>• En sällsynt möjlighet att lära sig direkt av konstnären<br>• Få kontakt med andra entusiaster och dela magin i att skapa konst.</p><p>Det finns workshops för både skolbarn och familjer.</p><p>Workshops för skolbarn:<br>Tis 21.10. 12-13 och fre 24.10. 12-13.<br>Anmälan: hanna.westerholm@hel.fi</p><p>Workshops för familjer<br>Ons 22.10. 16.30-18<br>Lör 25.10. 13:30-15<br>Fri entré utan avbrott.</p><p>Plats: Stoa Galleri<br>Längd: 60 min-90 min<br>Språk: Engelska</p>",
                "en": "<p>Workshops with Helga Stentzel – Artist, Storyteller, and Creator of the Clothesline Animals.</p><p>Step into the imaginative world of Helga Stentzel, the artist behind the globally beloved Clothesline Animals series.</p><p>Known for transforming everyday laundry into joyful, characterful creatures, Helga’s work has captured hearts around the world—from gallery exhibitions to public installations and playful collaborations.</p><p>Now, to celebrate the premiere of our new play in Finland this October, Helga invites both children and adults to join a series of hands-on workshops where you’ll create your own clothesline animals or dream up entirely new beings from household items.</p><p>Workshop Activities:<br>• A behind-the-scenes look at Helga’s creative process<br>• Guided creation of your own laundry-based creature using clothes, pegs, and imagination<br>• A playful environment where creativity has no limits<br>Why Join?<br>• Fun and accessible for all ages<br>• A rare opportunity to learn directly from the artist<br>• Connect with fellow enthusiasts and share in the magic of creating art.</p><p>There are workshops for both school children and families.</p><p>Workshops for school children:<br>Tue 21.10. 12-13 and Fri 24.10. 12-13.<br>Registration: hanna.westerholm@hel.fi</p><p>Workshops for families<br>Wed 22.10. 16.30-18<br>Sat 25.10. 13:30-15<br>Nonstop, free admission.</p><p>Venue: Stoa Gallery<br>Duration: 60 min-90 min<br>Language: English</p>"
            },
            "name": {
                "fi": "Luo oma pyykkiolentosi! – työpaja koululaisille",
                "sv": "Skapa dina egna tvättstrecksvarelser! – workshop för skolbarn",
                "en": "Create Your Own Clothesline Creatures! – workshop for schoolchildren"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67154/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}