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&hide_recurring_children=true&page=197
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 21738,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=198",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=196"
    },
    "data": [
        {
            "id": "kulke:65399",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153689,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-07T10:13:22.925085Z",
                    "last_modified_time": "2025-01-07T10:13:22.925099Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758523.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153689/?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-01-07T10:13:22.904366Z",
            "last_modified_time": "2025-04-10T08:13:16.551147Z",
            "date_published": null,
            "start_time": "2025-02-24T07:15:00Z",
            "end_time": "2025-05-26T07: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": "Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/5F2AACA07A6B1D4E46409C42BD5381FA/Tanssi_ja_leikki",
                "sv": "http://www.caisa.fi/sv/evenemang/event/5F2AACA07A6B1D4E46409C42BD5381FA/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/5F2AACA07A6B1D4E46409C42BD5381FA/The_dance_and_play"
            },
            "description": {
                "fi": "<p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä aikuisensa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan.</p><p>Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. <br>  <br>Työpaja perustuu amerikkalaisen tanssitaiteilija Alito Alessin kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta. <br> <br>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p><b>HUOM! Tanssi ja leikki -työpajaa ei järjestetä maanantaina 31.3.2025 ja 21.4.2025</b><br>  <br><b>Osallistuminen</b> <br>Tanssi ja leikki- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä. <br> <br>Tila: Maissi <br>Kielet: Suomi (English, Russian and Spanish if needed) <br>Ohjaaja: Vera Lapitskaya</p>",
                "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p>OBS! Dans- och lekverkstaden anordnas inte måndag 31.3. och 21.4.</p><p><b>Deltagande:</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska och spanska vid behov)</p>",
                "en": "<p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way.</p><p>The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p>NOTE! The dance and play workshop will not be organized on Monday 31.3. and 21.4.</p><p><b>Participation:</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together. You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän aikuisilleen",
                "sv": "Dans och lek – Verkstaden för småbarn",
                "en": "The dance and play – Workshop for toddlers and their parents"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65399/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65180",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3764093",
                        "sv": "https://www.lippu.fi/eventseries/name-3764093",
                        "en": "https://www.lippu.fi/eventseries/name-3764093"
                    },
                    "description": null,
                    "price": {
                        "fi": "29-39 €",
                        "sv": "29-39 €",
                        "en": "29-39 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153297,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-05T16:14:26.635357Z",
                    "last_modified_time": "2024-12-05T16:14:26.635375Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764231.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153297/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-05T16:14:26.607152Z",
            "last_modified_time": "2025-04-09T12:14:29.747621Z",
            "date_published": null,
            "start_time": "2025-04-26T16: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": "Euroopan blueshuippuihin kuuluva Pepe Ahlqvist on kansainvälisesti tunnettu ja arvostettu bluesmuusikko. Lähes viisikymmentä vuotta kestäneellä uralla tehdyt menestyksekkäät äänitteet sekä vuosien varrella heitetyt yli 6000 keikkaa ovat taanneet vakaan suosion läpi vuosien.",
                "sv": "Pepe Ahlqvist är en internationellt känd och respekterad bluesmusiker, som räknas bland de främsta i Europa. De framgångsrika inspelningarna och över 6 000 spelningar under den nästan femtio år långa karriären har garanterat en stadig popularitet genom åren.",
                "en": "Pepe Ahlqvist, one of the top blues musicians in Europe, is an internationally known and respected blues musician. Successful recordings made over a career spanning nearly fifty years, as well as more than 6,000 gigs over the years, have ensured steady popularity throughout the years."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CC6C4FF384753DA7C486D78FF8AF1D2C/Blues_and_more_at_Savoy_Pepe_Joel_Ahlqvist_ja_Jussu_Poyhonen_Trio",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/CC6C4FF384753DA7C486D78FF8AF1D2C/Blues_and_more_at_Savoy_Pepe_Joel_Ahlqvist_ja_Jussu_Poyhonen_Trio",
                "en": "http://www.savoyteatteri.fi/en/events/event/CC6C4FF384753DA7C486D78FF8AF1D2C/Blues_and_more_at_Savoy_Pepe_Joel_Ahlqvist_ja_Jussu_Poyhonen_Trio"
            },
            "description": {
                "fi": "<p>Euroopan blueshuippuihin kuuluva Pepe Ahlqvist on kansainvälisesti tunnettu ja arvostettu bluesmuusikko. Lähes viisikymmentä vuotta kestäneellä uralla tehdyt menestyksekkäät äänitteet sekä vuosien varrella heitetyt yli 6000 keikkaa ovat taanneet vakaan suosion läpi vuosien.</p><p><b>Pepe Ahlqvist</b> sai elämäntyöpalkinnon Finnish Blues Awards -tapahtumassa Helsingissä 14. tammikuuta 2017. Finnish Blues Awards -palkintojen saajat valitaan alan vaikuttajien keskuudessa. Prosessiin osallistuu yli 300 muusikkoa, keikkajärjestäjää, toimittajaa ja muuta aktiivia ympäri Suomen. Pepe palkittiin urasta, joka levittäytyy viiden vuosikymmenen ajalle. Viime vuosina Pepe on tehnyt keikkaa myös poikansa Joelin kanssa.</p><p><b>Joel Ahlqvist</b> on vuonna 1997 syntynyt kitaristi, laulaja-lauluntekijä ja huuliharpisti. Joel opiskeli aluksi klassista kitaraa ja jatkoi opiskelua Helsingin Pop & Jazz Konservatoriossa. Hänet tunnetaan myös Hip hop/Rap piireissä nimellä ''PHDS'' biisin tekijänä sekä tuottajana. Joel on mukana myös erilaisissa bändiprojekteissa.</p><p>Pepe ja Joel valittiin edustamaan Suomea International Blues Challenge tapahtumaan Memphisiin USA:han vuonna 2017.</p><p><b>Jussu Pöyhönen</b> tunnetaan parhaiten yli 30 -vuotisesta urastaan Suurlähettiläät -yhtyeen nokkamiehenä. Emman voittaneen ja useampia kulta- ja platinalevyjä myyneen bändin lukuisten klassikkobiisien (mm. <i>Elokuun 11., Pitääxunaina?, Kuka pysäyttäisi kellot?, Maailman laidalla, Kun Tänään Lähden</i> ja <i>Mitä miehen tulee olla?</i>) lisäksi Jussu on tehnyt kolme soololevyä, viimeisimpänä keväällä 2023 julkaistu <i>Pinnalla</i> (Sonymusic Finland), josta radioon nousseita biisejä ovat olleet mm. <i>Pinnalla, Sydämessä Matkustaja</i> ja <i>Ootko Siinä Vielä Sitten Kun</i>, joka sai koskettavan ensiesityksensä MTV3:n Laulu Rakkaudelle -ohjelmassa helmikuussa 2023.<br>Savoy-teatterissa Jussu esiintyy oman bändinsä kanssa. Repertuaariin kuuluu niin monet Suurlähettiläät -suosikit kuin mielenkiintoisimmat uudet biisitkin. Karismaattisena esiintyjänä ja notkeaäänisenä laulajana tunnetun Jussun esiintymiset ovat vangitsevia ja päättyvät lähes poikkeuksetta yhteislauluun.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>***</p><p>Blues and more at Savoy -konsertin (8.2.2025) liput käyvät sellaisenaan lauantaina 26.4.2025 klo 19 alkavaan konserttiin. Lippuja ei tarvitse vaihtaa.</p>",
                "sv": "<p>Pepe Ahlqvist är en internationellt känd och respekterad bluesmusiker, som räknas bland de främsta i Europa. De framgångsrika inspelningarna och över 6 000 spelningar under den nästan femtio år långa karriären har garanterat en stadig popularitet genom åren.</p><p>Pepe Ahlqvist belönades med ett pris för sitt livsarbete vid evenemanget Finnish Blues Awards i Helsingfors den 14 januari 2017. Vinnarna av Finnish Blues Awards utses av en panel bestående av inflytelserika personer inom branschen. I processen deltar mer än 300 musiker, arrangörer av spelningar, journalister och andra aktiva från hela Finland. Pepe belönades för en karriär som sträcker sig över fem decennier. På senare år har Pepe även uppträtt med sin son Joel.</p><p>Joel Ahlqvist är en gitarrist, sångare och låtskrivare och munspelare född 1997. Joel studerade först klassisk gitarr och fortsatte sedan sina studier vid Pop & Jazz Konservatoriet i Helsingfors. Han är också känd som låtskrivare och producent i Hip hop/Rap-kretsar under namnet “PHDS”. Joel är också med i olika bandprojekt.</p><p>År 2017 valdes Pepe och Joel ut att representera Finland vid International Blues Challenge i Memphis, USA.</p><p>Jussu Pöyhönen är mest känd för sin 30-åriga karriär som frontman för bandet Suurlähettiläät. Bandet har belönats med ett Emma-pris och sålt flera guld- och platinaalbum. Utöver bandets talrika klassiker (bland annat Elokuun 11, Pitääxunaina?, Kuka pysäyttäisi kellot?, Maailman laidalla, Kun Tänään Lähden och Mitä miehen tulee olla?), har Jussu har gjort tre soloalbum, varav det senaste, Pinnalla (Sonymusic Finland), släpptes våren 2023. Låtar från albumet som spelats i radio inkluderar Pinnalla, Sydämessä Matkustaja och Ootko Siinä Vielä Sitten Kun, som fick en rörande premiär i programmet Laulu Rakkaudelle på MTV3 i februari 2023.<br>På Savoy-teatern uppträder Jussu med sitt eget band. Repertoaren innehåller många av Suurlähettilääts favoriter och spännande nya låtar. Jussu är känd för sin scenkarisma och sin smidiga röst, och hans framträdanden är fängslande och slutar nästan alltid med allsång.</p><p>Längd ca 2 h, inklusive paus</p><p>Parkett F18 servering av alkoholdrycker. Balkong ingen åldersgräns, ingen servering av alkoholdrycker</p><p>***</p><p>Biljetterna till konserten Blues and more at Savoy (8.2.2025) gäller som sådana för konserten som börjar söndag 26.4.2025 kl. 19. Det finns inget behov av att byta biljetter.</p>",
                "en": "<p>Pepe Ahlqvist, one of the top blues musicians in Europe, is an internationally known and respected blues musician. Successful recordings made over a career spanning nearly fifty years, as well as more than 6,000 gigs over the years, have ensured steady popularity throughout the years.</p><p>Pepe Ahlqvist was awarded the Lifetime Achievement Award at the Finnish Blues Awards even in Helsinki on 14 January 2017. The winners of the Finnish Blues Awards are selected among influencers in the music industry. More than 300 musicians, gig organisers, journalists and other active people from all over Finland participate in the process. Pepe was rewarded for a career that spans five decades. In recent years, Pepe has also done a gig with his son Joel.</p><p>Joel Ahlqvist is a guitarist, singer-songwriter and harmonica player born in 1997. Joel initially studied classical guitar and continued his studies at the Helsinki Pop & Jazz Conservatory. He is also known in Hip Hop/Rap circles as the author and producer of the song “PHDS”. Joel is also involved in various band projects.</p><p>Pepe and Joel were selected to represent Finland in the International Blues Challenge in Memphis, USA in 2017.</p><p>Jussu Pöyhönen is best known for his over 30-year career as a frontman for the band Suurlähettiläät. The band, which has won Emma and sold several gold and platinum albums, has a number of classic songs (e.g. Elokuu 11., Pitääxunaina?, Kuka pysäyttäisi kellot?, Maailman laidalla, Kun Tänään Lähden and Mitä miehen tulee olla?), and Jussu has also made three solo albums, the latest of which was Pinnalla, published in spring 2023 (Sonymusic Finland), from which songs played on the radio include Pinnalla, Sydämessä Matkustaja and Ootko Siinä Vielä Sitten Kun, which received its touching premiere on MTV3’s Laulu Rakkaudelle programme in February 2023.<br>At the Savoy Theatre, Jussu will perform with his own band. The repertoire includes many Suurlähettiläät favourites as well as the most interesting new songs. Known as a charismatic performer and flexibly-voiced singer, Jussu’s performances are captivating and almost invariably end with a sing-along.</p><p>Duration: approx. 2 h, including an intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. Balcony, no age limit, a non-licensed area.</p><p>***</p><p>The tickets for the Blues and more at Savoy concert (8 February 2025) are valid as such for the concert starting at 7 pm on Saturday 26 April 2025 No need to change tickets.</p>"
            },
            "name": {
                "fi": "Blues and more at Savoy: Pepe & Joel Ahlqvist ja Jussu Pöyhönen Trio",
                "sv": "Blues and more at Savoy: Pepe & Joel Ahlqvist ja Jussu Pöyhönen Trio",
                "en": "Blues and more at Savoy: Pepe & Joel Ahlqvist ja Jussu Pöyhönen Trio"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "General Bass",
                "sv": "General Bass",
                "en": "General Bass"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65180/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65991",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/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"
                },
                {
                    "@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": 498195,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T11:14:27.847487Z",
                    "last_modified_time": "2025-04-09T11:14:27.847503Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769660.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/498195/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-04-09T11:14:27.819305Z",
            "last_modified_time": "2025-04-09T11:14:27.910888Z",
            "date_published": null,
            "start_time": "2025-05-17T09: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": "Tule tutustumaan Annantalon oppilastyönäyttelyyn!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/39B44B7D33E0BDC3A05FACA4DA11BFA7/Avoin_nayttelyopastus_Huudetaanko_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/39B44B7D33E0BDC3A05FACA4DA11BFA7/Avoin_nayttelyopastus_Huudetaanko_",
                "en": "http://www.annantalo.fi/en/events/event/39B44B7D33E0BDC3A05FACA4DA11BFA7/Avoin_nayttelyopastus_Huudetaanko_"
            },
            "description": {
                "fi": "<p>Tule tutustumaan Annantalon oppilastyönäyttelyyn!</p><p>Lastenkulttuurin juhlaviikolla lapset pääsevät ääneen! Tule kuulemaan, kun näyttelyn nuoret taiteilijat kertovat teoksistaan ja niiden työstämisestä.</p><p>Huudetaanko? on taidenäyttely, joka kutsuu sinut pohtimaan ääntä eri näkökulmista. Mistä ääni syntyy, miten se vaikuttaa meihin ja millä tavoin ääntä voi käyttää itsensä ilmaisemiseen? Näyttely jatkaa syyskaudella 2024 Annantalolla alkanutta tutkimusmatkaa äänen maailmaan. Esillä on sekä Annantalon oppilasryhmien että ammattitaiteilijoiden teoksia.</p><p>Opastuksen kesto on noin 30min.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Kieli: suomi</p><p>Lastenkulttuurin juhlaviikkoa juhlistetaan Annantalolla 12.–18.5.2025.</p>"
            },
            "name": {
                "fi": "Avoin näyttelyopastus: Huudetaanko?",
                "sv": "Avoin näyttelyopastus: Huudetaanko?",
                "en": "Avoin näyttelyopastus: Huudetaanko?"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65991/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65132",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/3786074",
                        "sv": "https://www.lippu.fi/eventseries/3786074",
                        "en": "https://www.lippu.fi/eventseries/3786074"
                    },
                    "description": null,
                    "price": {
                        "fi": "17-54 €",
                        "sv": "17-54 €",
                        "en": "17-54 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153377,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-10T17:15:46.486096Z",
                    "last_modified_time": "2024-12-10T17:15:46.486115Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763506.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153377/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-29T14:14:11.152819Z",
            "last_modified_time": "2025-04-09T11:14:24.821970Z",
            "date_published": null,
            "start_time": "2025-05-01T13: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": "Hiljattain edesmennyt laulaja-näyttelijä, kaatumisen Suomen mestari, jalkapalloilija, nyrkkeilijä ja biljardihai Vesa-Matti Loiri oli jazzmies henkeen ja vereen. Lempimusiikistaan ja parhaista bändeistä Veskulla oli yhtä vahvat näkemykset kuin Uunolla kerman ja sokerin määrästä kahvissa.",
                "sv": "Den nyligen bortgångne sångaren och skådespelaren Vesa-Matti Loiri, finsk mästare på att falla, fotbollsspelare, boxare och biljardhaj, var en jazzman till kropp, liv och själ. Då det gällde favoritmusik och de bästa banden hade Vesku lika starka åsikter som Uuno hade om mängden grädde och socker i sitt kaffe.",
                "en": "The recently deceased singer/actor, the Finnish champion of falling, footballer, boxer and pool shark Vesa-Matti Loiri was a jazzman in spirit and blood. About his favourite music and the best bands, Vesku had as strong views as film character Uuno Turhapuro on the amount of cream and sugar in coffee."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/16EF53EB003FC6DAFCA2F00AACBA753C/Savoyn_vappu_Vesku_Jazzmies",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/16EF53EB003FC6DAFCA2F00AACBA753C/Forsta_maj_pa_Savoy_Vesku_Jazzmannen",
                "en": "http://www.savoyteatteri.fi/en/events/event/16EF53EB003FC6DAFCA2F00AACBA753C/Savoy_s_May_Day_Vesku_Jazzman"
            },
            "description": {
                "fi": "<p>Hiljattain edesmennyt laulaja-näyttelijä, kaatumisen Suomen mestari, jalkapalloilija, nyrkkeilijä ja biljardihai Vesa-Matti Loiri oli jazzmies henkeen ja vereen. Lempimusiikistaan ja parhaista bändeistä Veskulla oli yhtä vahvat näkemykset kuin Uunolla kerman ja sokerin määrästä kahvissa.</p><p>Vappupäivänä Savoy-teatterissa esiintyvän superkokoonpanon kantavina voimina toimivat Veskun lempimuusikot <b>Lenni-Kalle Taipale</b> ja <b>Kalle Torniainen</b>, jotka yhtyeineen muotoilevat ikimuistoisen konsertin Loirin rakastamien jazzbiisien ympärille. Konsertissa kuullaan versiot mm. Chick Corean <i>Spain</i> ja Weather Reportin <i>Birdland</i>.kappaleista Solistiksi kappaleita tulkitsemaan saadaan myös upea <b>Arja Saijonmaa</b>.</p><p>Kalle Torniainen – rummut<br>Lenni-Kalle Taipale – piano ja koskettimet<br>Osmo Ikonen – basso ja laulu<br>Marzi Nyman – kitara<br>Jukka Eskola – trumpetti<br>Pope Puolitaival – saksofoni ja huilu<br>Arja Saijonmaa – laulu</p><p>Kesto n. 2 h sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>Tarjolla myös Vapun brunssipaketit – Nauti herkullinen vappubrunssi ennen konserttia Ravintola Minne Garden & Loungessa.</p><p><b>Show & Brunssi -lippu</b> (93 €) sisältää pääsylipun sekä vappubrunssin.</p><p><i>Brunssi on katettu Savoy-teatterin ravintola Minne Gardenissa kaksi tuntia ennen esityksen alkua.<br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).<br>Brunssin hinta ei sisällä juomia</i></p><p>Lisätiedot, erikoisruokavaliot, juomatilaukset ja yli 20 hengen Brunssi -ryhmävaraukset: terhi.grohn@sunbornevents.fi</p>",
                "sv": "<p>Den nyligen bortgångne sångaren och skådespelaren Vesa-Matti Loiri, finsk mästare på att falla, fotbollsspelare, boxare och biljardhaj, var en jazzman till kropp, liv och själ. Då det gällde favoritmusik och de bästa banden hade Vesku lika starka åsikter som Uuno hade om mängden grädde och socker i sitt kaffe.</p><p>De bärande krafterna i superensemblen som uppträder på Savoy-teatern på första maj är Veskus favoritmusiker Lenni-Kalle Taipale och Kalle Torniainen, som tillsammans med sitt band skapar en minnesvärd konsert kring de jazzlåtar Loiri älskade. På konserten får vi bland annat höra Chick Coreas Spain och Weather Reports Birdland. Vi får även höra den underbara Arja Saijonmaa tolka sångerna som solist.</p><p>Kalle Torniainen – trummor<br>Lenni-Kalle Taipale – piano och keyboard<br>Osmo Ikonen – bas och sång<br>Marzi Nyman – gitarr<br>Jukka Eskola – trumpet<br>Pope Puolitaival – saxofon och flöjt<br>Arja Saijonmaa – sång</p><p>Längd ca 2 h, inklusive paus</p><p>Parkett F18 servering av alkoholdrycker. Balkong ingen åldersgräns, ingen servering av alkoholdrycker</p><p>Vi erbjuder även ett Första maj-brunchpaket – Njut av en utsökt Första maj-brunch före konserten på restaurang Minne Garden & Lounge.</p><p>Show & Brunch-biljetten (93 euro) inkluderar en entrébiljett och Första maj-brunch.</p><p>Brunchen serveras på Savoy-teaterns restaurang Minne Garden två timmar före föreställningen.<br>Specialdieter kan tillgodoses genom förhandsbeställning (senast 3 dagar före föreställningen). <br>Brunchpriset inkluderar inte drycker</p><p>För mer information, specialdieter, dryckesbeställningar och gruppbokningar av brunsch för fler än 20 personer: terhi.grohn@sunbornevents.fi</p>",
                "en": "<p>The recently deceased singer/actor, the Finnish champion of falling, footballer, boxer and pool shark Vesa-Matti Loiri was a jazzman in spirit and blood. About his favourite music and the best bands, Vesku had as strong views as film character Uuno Turhapuro on the amount of cream and sugar in coffee.</p><p>The super assembly performing at the Savoy Theatre on May Day will be powered by Vesku’s favourite musicians Lenni-Kalle Taipale and Kalle Torniainen, who will give a memorable concert around the jazz songs that Loiri loved. The concert will feature, among others, Chick Corean Spain and Weather Report’s Birdland. Some of the songs will be interpreted by the gorgeous Arja Saijonmaa.</p><p>Kalle Torniainen – drums<br>Lenni-Kalle Taipale – piano and keyboards<br>Osmo Ikonen – bass and vocals<br>Marzi Nyman – guitar<br>Jukka Eskola – trumpet<br>Pope Puolitaival – saxophone and flute<br>Arja Saijonmaa – vocals</p><p>Duration: approx. 2 h, including an intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. Balcony, no age limit, a non-licensed area.</p><p>Also on offer are May Day brunch packages – Enjoy a delicious May Day brunch before the concert at Restaurant Minne Garden & Lounge.</p><p>Show & Brunch ticket (€93) includes the entrance ticket and the May Day brunch.</p><p>The brunch is set in the restaurant Minne Garden at the Savoy Theatre two hours before the performance begins.<br>Special diets are taken into account upon pre-order (latest 3 days before the performance).<br>Brunch price does not include drinks</p><p>Additional information, special diets, drink orders and Brunch group reservations for more than 20 people: terhi.grohn@sunbornevents.fi</p>"
            },
            "name": {
                "fi": "Savoyn vappu: Vesku – Jazzmies – Lenni-Kalle Taipale & Kalle Torniainen Band, feat. Arja Saijonmaa",
                "sv": "Första maj på Savoy: Vesku – Jazzmannen – Lenni-Kalle Taipale & Kalle Torniainen Band, feat. Arja Saijonmaa",
                "en": "Savoy’s May Day: Vesku – Jazzman – Lenni-Kalle Taipale & Kalle Torniainen Band, feat. Arja Saijonmaa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri",
                "sv": "Savoy-teatern",
                "en": "Savoy Theatre"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65132/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66009",
            "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: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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 497911,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T10:13:29.825869Z",
                    "last_modified_time": "2025-04-09T10:13:29.825882Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759097.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497911/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-04-09T10:13:29.814058Z",
            "last_modified_time": "2025-04-09T10:13:29.867003Z",
            "date_published": null,
            "start_time": "2025-05-10T12: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": "Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2778967AA8981C43D944BBDF1499662A/Minecraft_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2778967AA8981C43D944BBDF1499662A/Minecraft_7_",
                "en": "http://www.malmitalo.fi/en/events/event/2778967AA8981C43D944BBDF1499662A/Minecraft_7_"
            },
            "description": {
                "fi": "<p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi.</p><p>Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen.</p><p>Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa.</p><p>Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Ikäraja: 7<br>Kesto: 101 min<br>Ensi-ilta: 04.04.2025<br>Kieli: puhuttu suomeksi</p>"
            },
            "name": {
                "fi": "Minecraft (7) – Kino Helios",
                "sv": "Minecraft (7) – Kino Helios",
                "en": "Minecraft (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66009/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66012",
            "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-orenda-3872783/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 497909,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T10:13:29.433288Z",
                    "last_modified_time": "2025-04-09T10:13:29.433301Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759094.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497909/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-09T10:13:29.418704Z",
            "last_modified_time": "2025-04-09T10:13:29.467343Z",
            "date_published": null,
            "start_time": "2025-05-09T12: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": "Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EE22CDC3FAF63264849593E1F3F08D25/Orenda_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EE22CDC3FAF63264849593E1F3F08D25/Orenda_7_",
                "en": "http://www.malmitalo.fi/en/events/event/EE22CDC3FAF63264849593E1F3F08D25/Orenda_7_"
            },
            "description": {
                "fi": "<p>Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta.</p><p>Suomen kansainvälisesti juhlituimpiin ohjaajiin kuuluva Pirjo Honkasalo (mm. Betoniyö, Melancholian 3 huonetta) tekee henkeäsalpaavan paluun uutuudellaan Orenda. Kaksi voimakastahtoista naista (Alma Pöysti ja Pirkko Saisio) kohtaavat maagisissa saaristomaisemissa.</p><p>Kumpaakin kuristaa syyllisyys menetetystä miehestä, jonka muisto kietoo heidät yhteen. Mitä levoton oopperalaulaja ja äkkiväärä pappi toisistaan oikein hakevat?</p><p>Pirkko Saision käsikirjoituksen arvoituksellisessa vireessä soi elämän näkymätön voima, orenda.</p><p>Ikäraja: 7<br>Kesto: 118 min<br>Ensi-ilta: 17.04.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Orenda (7) – Kino Helios",
                "sv": "Orenda (7) – Kino Helios",
                "en": "Orenda (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66012/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66008",
            "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: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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 497907,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T10:13:28.376110Z",
                    "last_modified_time": "2025-04-09T10:13:28.376127Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759088.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497907/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-04-09T10:13:28.363322Z",
            "last_modified_time": "2025-04-09T10:13:28.414860Z",
            "date_published": null,
            "start_time": "2025-05-03T12: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": "Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3B2B623C7E0DAABC9167FA78D7CA2D7A/Minecraft_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3B2B623C7E0DAABC9167FA78D7CA2D7A/Minecraft_7_",
                "en": "http://www.malmitalo.fi/en/events/event/3B2B623C7E0DAABC9167FA78D7CA2D7A/Minecraft_7_"
            },
            "description": {
                "fi": "<p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi.</p><p>Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen.</p><p>Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa.</p><p>Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Ikäraja: 7<br>Kesto: 101 min<br>Ensi-ilta: 04.04.2025<br>Kieli: puhuttu suomeksi</p>"
            },
            "name": {
                "fi": "Minecraft (7) – Kino Helios",
                "sv": "Minecraft (7) – Kino Helios",
                "en": "Minecraft (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66008/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66011",
            "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-orenda-3872783/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 497906,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T10:13:28.178320Z",
                    "last_modified_time": "2025-04-09T10:13:28.178345Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759086.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497906/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-09T10:13:28.163998Z",
            "last_modified_time": "2025-04-09T10:13:28.214969Z",
            "date_published": null,
            "start_time": "2025-05-02T15: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": "Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E6A5EA9534FFBA6408FF5322A51A214F/Orenda_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E6A5EA9534FFBA6408FF5322A51A214F/Orenda_7_",
                "en": "http://www.malmitalo.fi/en/events/event/E6A5EA9534FFBA6408FF5322A51A214F/Orenda_7_"
            },
            "description": {
                "fi": "<p>Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta.</p><p>Suomen kansainvälisesti juhlituimpiin ohjaajiin kuuluva Pirjo Honkasalo (mm. Betoniyö, Melancholian 3 huonetta) tekee henkeäsalpaavan paluun uutuudellaan Orenda. Kaksi voimakastahtoista naista (Alma Pöysti ja Pirkko Saisio) kohtaavat maagisissa saaristomaisemissa.</p><p>Kumpaakin kuristaa syyllisyys menetetystä miehestä, jonka muisto kietoo heidät yhteen. Mitä levoton oopperalaulaja ja äkkiväärä pappi toisistaan oikein hakevat?</p><p>Pirkko Saision käsikirjoituksen arvoituksellisessa vireessä soi elämän näkymätön voima, orenda.</p><p>Ikäraja: 7<br>Kesto: 118 min<br>Ensi-ilta: 17.04.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Orenda (7) – Kino Helios",
                "sv": "Orenda (7) – Kino Helios",
                "en": "Orenda (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66011/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66007",
            "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: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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 497904,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T10:13:27.458128Z",
                    "last_modified_time": "2025-04-09T10:13:27.458141Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759079.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497904/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-04-09T10:13:27.444063Z",
            "last_modified_time": "2025-04-09T10:13:27.504051Z",
            "date_published": null,
            "start_time": "2025-04-26T12: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": "Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8DE576A27027CCD9EC4E62415ED4EC9F/Minecraft_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8DE576A27027CCD9EC4E62415ED4EC9F/Minecraft_7_",
                "en": "http://www.malmitalo.fi/en/events/event/8DE576A27027CCD9EC4E62415ED4EC9F/Minecraft_7_"
            },
            "description": {
                "fi": "<p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi.</p><p>Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen.</p><p>Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa.</p><p>Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Ikäraja: 7<br>Kesto: 101 min<br>Ensi-ilta: 04.04.2025<br>Kieli: puhuttu suomeksi</p>"
            },
            "name": {
                "fi": "Minecraft (7) – Kino Helios",
                "sv": "Minecraft (7) – Kino Helios",
                "en": "Minecraft (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66007/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66010",
            "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-orenda-3872783/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 497903,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T10:13:27.080715Z",
                    "last_modified_time": "2025-04-09T10:13:27.080729Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759077.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497903/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-09T10:13:27.065115Z",
            "last_modified_time": "2025-04-09T10:13:27.115258Z",
            "date_published": null,
            "start_time": "2025-04-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": "Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D7C7954F1D4121A36771C87E1AA055D7/Orenda_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D7C7954F1D4121A36771C87E1AA055D7/Orenda_7_",
                "en": "http://www.malmitalo.fi/en/events/event/D7C7954F1D4121A36771C87E1AA055D7/Orenda_7_"
            },
            "description": {
                "fi": "<p>Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta.</p><p>Suomen kansainvälisesti juhlituimpiin ohjaajiin kuuluva Pirjo Honkasalo (mm. Betoniyö, Melancholian 3 huonetta) tekee henkeäsalpaavan paluun uutuudellaan Orenda. Kaksi voimakastahtoista naista (Alma Pöysti ja Pirkko Saisio) kohtaavat maagisissa saaristomaisemissa.</p><p>Kumpaakin kuristaa syyllisyys menetetystä miehestä, jonka muisto kietoo heidät yhteen. Mitä levoton oopperalaulaja ja äkkiväärä pappi toisistaan oikein hakevat?</p><p>Pirkko Saision käsikirjoituksen arvoituksellisessa vireessä soi elämän näkymätön voima, orenda.</p><p>Ikäraja: 7<br>Kesto: 118 min<br>Ensi-ilta: 17.04.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Orenda (7) – Kino Helios",
                "sv": "Orenda (7) – Kino Helios",
                "en": "Orenda (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66010/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65999",
            "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-flow-3872758/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-flow-3872758/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-flow-3872758/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 497619,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T09:13:26.598035Z",
                    "last_modified_time": "2025-04-09T09:13:26.598047Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759098.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497619/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-09T09:13:26.584298Z",
            "last_modified_time": "2025-04-09T09:13:26.630929Z",
            "date_published": null,
            "start_time": "2025-05-10T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Flow on lumoavasti animoitu, tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa. Parhaan animaation Oscar-voittaja.",
                "sv": "Flow är en förtrollande animerad, känslosam äventyrsfilm där djuren verkligen får bete sig som i naturen. Vinnare av Oscar för bästa animerade film.",
                "en": "Flow is a beautifully animated, emotional adventure film where animals are truly allowed to behave as they do in nature."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F6BC51E1000A48597091B7F0696C1642/Flow_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F6BC51E1000A48597091B7F0696C1642/Flow_7_",
                "en": "http://www.malmitalo.fi/en/events/event/F6BC51E1000A48597091B7F0696C1642/Flow_7_"
            },
            "description": {
                "fi": "<p>Flow on lumoavasti animoitu, tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa. Parhaan animaation Oscar-voittaja.</p><p>Rohkea kissa kohtaa suuren hyökyaallon. Kissa pelastautuu veneeseen iloisen koiran, väsyneen kapybaran, ilkikurisen makin ja äkäisen linnun kanssa. Eläimet tekevät seikkailuntäyteisen matkan läpi upean luonnon ja salaperäisten kaupunkien – uuden vieraan maailman, jossa yhteistyö ja ystävyys ovat tärkeintä.</p><p>Dialogittomassa elokuvassa korostuu musiikki, joka on osittain työstetty Suomessa! Fantastinen elokuvakokemus sekä lapsille että aikuisille on hukutettu suurimpiin kansainvälisiin palkintoihin, kruununa parhaan animaation Oscar.</p><p>Ikäraja: 7<br>Kesto: 85 min<br>Ensi-ilta: 28.03.2025</p><p>Tekstitys: ei puhuttua dialogia</p>",
                "sv": "<p>Flow är en förtrollande animerad, känslosam äventyrsfilm där djuren verkligen får bete sig som i naturen. Vinnare av Oscar för bästa animerade film.</p><p>En modig katt möter en stor tsunami. Katten räddar sig i en båt tillsammans med en glad hund, en trött kapybara, en busig maki och en arg fågel. Djuren gör en äventyrlig resa genom storslagen natur och mystiska städer – en ny och främmande värld där samarbete och vänskap är det viktigaste.</p><p>I den dialoglösa filmen står musiken i centrum – och delar av den är skapad i Finland! En fantastisk filmupplevelse för både barn och vuxna, överöst med de största internationella priserna, med en Oscar för bästa animerade film som kronan på verket.</p><p>Åldersgräns: 7 år<br>Längd: 85 min<br>Textning: ingen talad dialog</p>",
                "en": "<p>Flow is a beautifully animated, emotional adventure film where animals are truly allowed to behave as they do in nature.</p><p>A brave cat faces a massive tsunami. The cat escapes in a boat with a cheerful dog, a tired capybara, a mischievous lemur, and a grumpy bird. Together, the animals embark on an adventure through breathtaking nature and mysterious cities – a strange new world where cooperation and friendship matter most.</p><p>In this dialogue-free film, music takes the spotlight – and part of it was crafted in Finland! A fantastic cinematic experience for both children and adults, showered with top international awards, crowned by the Oscar for Best Animated Feature.</p><p>Age rating: 7<br>Duration: 85 min<br>Subtitles: no spoken dialogue</p>"
            },
            "name": {
                "fi": "Flow (7) – Kino Helios",
                "sv": "Flow (7) – Kino Helios",
                "en": "Flow (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65999/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66002",
            "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-black-bag-3872765/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 497618,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T09:13:25.853228Z",
                    "last_modified_time": "2025-04-09T09:13:25.853242Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759092.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497618/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-09T09:13:25.841104Z",
            "last_modified_time": "2025-04-09T09:13:25.889964Z",
            "date_published": null,
            "start_time": "2025-05-07T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Vakoiludraama kahdesta legendaarisesta tiedustelupalvelun agentista: George Woodhousesta ja hänen vaimostaan Kathrynistä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0F066BFACC3E4DFA9245DF21574F361/Black_Bag_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D0F066BFACC3E4DFA9245DF21574F361/Black_Bag_12_",
                "en": "http://www.malmitalo.fi/en/events/event/D0F066BFACC3E4DFA9245DF21574F361/Black_Bag_12_"
            },
            "description": {
                "fi": "<p>Vakoiludraama kahdesta legendaarisesta tiedustelupalvelun agentista: George Woodhousesta ja hänen vaimostaan Kathrynistä.</p><p>Ohjaaja Steven Soderberghin uusi elokuva Black Bag on tiivistunnelmainen vakoiludraama. Elokuva kertoo kahdesta legendaarisesta tiedustelupalvelun agentista, George Woodhousesta ja hänen rakkaasta vaimostaan Kathrynistä.</p><p>Kun Kathrynia epäillään maanpetoksesta, George joutuu äärimmäiseen koetukseen – hänen on päätettävä, ollako lojaali vaimolleen vai kotimaalleen.</p><p>Pääosissa: Cate Blanchett ja Michael Fassbender</p><p>Ikäraja: 12<br>Kesto: 94 min<br>Ensi-ilta: 17.04.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Black Bag (12) – Kino Helios",
                "sv": "Black Bag (12) – Kino Helios",
                "en": "Black Bag (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66002/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66001",
            "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-black-bag-3872765/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 497617,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T09:13:25.283108Z",
                    "last_modified_time": "2025-04-09T09:13:25.283160Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759089.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-09T09:13:25.266610Z",
            "last_modified_time": "2025-04-09T09:13:25.317324Z",
            "date_published": null,
            "start_time": "2025-05-03T15: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": "Vakoiludraama kahdesta legendaarisesta tiedustelupalvelun agentista: George Woodhousesta ja hänen vaimostaan Kathrynistä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6B62AFDC0C965026949C9133F57E5EE0/Black_Bag_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6B62AFDC0C965026949C9133F57E5EE0/Black_Bag_12_",
                "en": "http://www.malmitalo.fi/en/events/event/6B62AFDC0C965026949C9133F57E5EE0/Black_Bag_12_"
            },
            "description": {
                "fi": "<p>Vakoiludraama kahdesta legendaarisesta tiedustelupalvelun agentista: George Woodhousesta ja hänen vaimostaan Kathrynistä.</p><p>Ohjaaja Steven Soderberghin uusi elokuva Black Bag on tiivistunnelmainen vakoiludraama. Elokuva kertoo kahdesta legendaarisesta tiedustelupalvelun agentista, George Woodhousesta ja hänen rakkaasta vaimostaan Kathrynistä.</p><p>Kun Kathrynia epäillään maanpetoksesta, George joutuu äärimmäiseen koetukseen – hänen on päätettävä, ollako lojaali vaimolleen vai kotimaalleen.</p><p>Pääosissa: Cate Blanchett ja Michael Fassbender</p><p>Ikäraja: 12<br>Kesto: 94 min<br>Ensi-ilta: 17.04.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Black Bag (12) – Kino Helios",
                "sv": "Black Bag (12) – Kino Helios",
                "en": "Black Bag (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66001/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65998",
            "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-flow-3872758/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-flow-3872758/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-flow-3872758/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 497616,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T09:13:24.994946Z",
                    "last_modified_time": "2025-04-09T09:13:24.994958Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759085.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497616/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-09T09:13:24.978899Z",
            "last_modified_time": "2025-04-09T09:13:25.036264Z",
            "date_published": null,
            "start_time": "2025-05-02T12: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": "Flow on lumoavasti animoitu, tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa. Parhaan animaation Oscar-voittaja.",
                "sv": "Flow är en förtrollande animerad, känslosam äventyrsfilm där djuren verkligen får bete sig som i naturen. Vinnare av Oscar för bästa animerade film.",
                "en": "Flow is a beautifully animated, emotional adventure film where animals are truly allowed to behave as they do in nature."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/02E46E6BFFFB5ECC5800F012DB5FA597/Flow_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/02E46E6BFFFB5ECC5800F012DB5FA597/Flow_7_",
                "en": "http://www.malmitalo.fi/en/events/event/02E46E6BFFFB5ECC5800F012DB5FA597/Flow_7_"
            },
            "description": {
                "fi": "<p>Flow on lumoavasti animoitu, tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa. Parhaan animaation Oscar-voittaja.</p><p>Rohkea kissa kohtaa suuren hyökyaallon. Kissa pelastautuu veneeseen iloisen koiran, väsyneen kapybaran, ilkikurisen makin ja äkäisen linnun kanssa. Eläimet tekevät seikkailuntäyteisen matkan läpi upean luonnon ja salaperäisten kaupunkien – uuden vieraan maailman, jossa yhteistyö ja ystävyys ovat tärkeintä.</p><p>Dialogittomassa elokuvassa korostuu musiikki, joka on osittain työstetty Suomessa! Fantastinen elokuvakokemus sekä lapsille että aikuisille on hukutettu suurimpiin kansainvälisiin palkintoihin, kruununa parhaan animaation Oscar.</p><p>Ikäraja: 7<br>Kesto: 85 min<br>Ensi-ilta: 28.03.2025</p><p>Tekstitys: ei puhuttua dialogia</p>",
                "sv": "<p>Flow är en förtrollande animerad, känslosam äventyrsfilm där djuren verkligen får bete sig som i naturen. Vinnare av Oscar för bästa animerade film.</p><p>En modig katt möter en stor tsunami. Katten räddar sig i en båt tillsammans med en glad hund, en trött kapybara, en busig maki och en arg fågel. Djuren gör en äventyrlig resa genom storslagen natur och mystiska städer – en ny och främmande värld där samarbete och vänskap är det viktigaste.</p><p>I den dialoglösa filmen står musiken i centrum – och delar av den är skapad i Finland! En fantastisk filmupplevelse för både barn och vuxna, överöst med de största internationella priserna, med en Oscar för bästa animerade film som kronan på verket.</p><p>Åldersgräns: 7 år<br>Längd: 85 min<br>Textning: ingen talad dialog</p>",
                "en": "<p>Flow is a beautifully animated, emotional adventure film where animals are truly allowed to behave as they do in nature.</p><p>A brave cat faces a massive tsunami. The cat escapes in a boat with a cheerful dog, a tired capybara, a mischievous lemur, and a grumpy bird. Together, the animals embark on an adventure through breathtaking nature and mysterious cities – a strange new world where cooperation and friendship matter most.</p><p>In this dialogue-free film, music takes the spotlight – and part of it was crafted in Finland! A fantastic cinematic experience for both children and adults, showered with top international awards, crowned by the Oscar for Best Animated Feature.</p><p>Age rating: 7<br>Duration: 85 min<br>Subtitles: no spoken dialogue</p>"
            },
            "name": {
                "fi": "Flow (7) – Kino Helios",
                "sv": "Flow (7) – Kino Helios",
                "en": "Flow (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65998/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66000",
            "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-black-bag-3872765/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 497615,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T09:13:23.665878Z",
                    "last_modified_time": "2025-04-09T09:13:23.665891Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759074.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497615/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-09T09:13:23.639887Z",
            "last_modified_time": "2025-04-09T09:13:23.703524Z",
            "date_published": null,
            "start_time": "2025-04-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": "Vakoiludraama kahdesta legendaarisesta tiedustelupalvelun agentista: George Woodhousesta ja hänen vaimostaan Kathrynistä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A0FBABD9AE85BDC5B520389EF47B8BEA/Black_Bag_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A0FBABD9AE85BDC5B520389EF47B8BEA/Black_Bag_12_",
                "en": "http://www.malmitalo.fi/en/events/event/A0FBABD9AE85BDC5B520389EF47B8BEA/Black_Bag_12_"
            },
            "description": {
                "fi": "<p>Vakoiludraama kahdesta legendaarisesta tiedustelupalvelun agentista: George Woodhousesta ja hänen vaimostaan Kathrynistä.</p><p>Ohjaaja Steven Soderberghin uusi elokuva Black Bag on tiivistunnelmainen vakoiludraama. Elokuva kertoo kahdesta legendaarisesta tiedustelupalvelun agentista, George Woodhousesta ja hänen rakkaasta vaimostaan Kathrynistä.</p><p>Kun Kathrynia epäillään maanpetoksesta, George joutuu äärimmäiseen koetukseen – hänen on päätettävä, ollako lojaali vaimolleen vai kotimaalleen.</p><p>Pääosissa: Cate Blanchett ja Michael Fassbender</p><p>Ikäraja: 12<br>Kesto: 94 min<br>Ensi-ilta: 17.04.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Black Bag (12) – Kino Helios",
                "sv": "Black Bag (12) – Kino Helios",
                "en": "Black Bag (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66000/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65997",
            "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-flow-3872758/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-flow-3872758/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-flow-3872758/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 497614,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T09:13:22.942512Z",
                    "last_modified_time": "2025-04-09T09:13:22.942526Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759064.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497614/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-09T09:13:22.893607Z",
            "last_modified_time": "2025-04-09T09:13:23.009041Z",
            "date_published": null,
            "start_time": "2025-04-16T12: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": "Flow on lumoavasti animoitu, tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa. Parhaan animaation Oscar-voittaja.",
                "sv": "Flow är en förtrollande animerad, känslosam äventyrsfilm där djuren verkligen får bete sig som i naturen. Vinnare av Oscar för bästa animerade film.",
                "en": "Flow is a beautifully animated, emotional adventure film where animals are truly allowed to behave as they do in nature."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E2C412E106AEFDE92EDA39C0609754D2/Flow_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E2C412E106AEFDE92EDA39C0609754D2/Flow_7_",
                "en": "http://www.malmitalo.fi/en/events/event/E2C412E106AEFDE92EDA39C0609754D2/Flow_7_"
            },
            "description": {
                "fi": "<p>Flow on lumoavasti animoitu, tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa. Parhaan animaation Oscar-voittaja.</p><p>Rohkea kissa kohtaa suuren hyökyaallon. Kissa pelastautuu veneeseen iloisen koiran, väsyneen kapybaran, ilkikurisen makin ja äkäisen linnun kanssa. Eläimet tekevät seikkailuntäyteisen matkan läpi upean luonnon ja salaperäisten kaupunkien – uuden vieraan maailman, jossa yhteistyö ja ystävyys ovat tärkeintä.</p><p>Dialogittomassa elokuvassa korostuu musiikki, joka on osittain työstetty Suomessa! Fantastinen elokuvakokemus sekä lapsille että aikuisille on hukutettu suurimpiin kansainvälisiin palkintoihin, kruununa parhaan animaation Oscar.</p><p>Ikäraja: 7<br>Kesto: 85 min<br>Ensi-ilta: 28.03.2025</p><p>Tekstitys: ei puhuttua dialogia</p>",
                "sv": "<p>Flow är en förtrollande animerad, känslosam äventyrsfilm där djuren verkligen får bete sig som i naturen. Vinnare av Oscar för bästa animerade film.</p><p>En modig katt möter en stor tsunami. Katten räddar sig i en båt tillsammans med en glad hund, en trött kapybara, en busig maki och en arg fågel. Djuren gör en äventyrlig resa genom storslagen natur och mystiska städer – en ny och främmande värld där samarbete och vänskap är det viktigaste.</p><p>I den dialoglösa filmen står musiken i centrum – och delar av den är skapad i Finland! En fantastisk filmupplevelse för både barn och vuxna, överöst med de största internationella priserna, med en Oscar för bästa animerade film som kronan på verket.</p><p>Åldersgräns: 7 år<br>Längd: 85 min<br>Textning: ingen talad dialog</p>",
                "en": "<p>Flow is a beautifully animated, emotional adventure film where animals are truly allowed to behave as they do in nature.</p><p>A brave cat faces a massive tsunami. The cat escapes in a boat with a cheerful dog, a tired capybara, a mischievous lemur, and a grumpy bird. Together, the animals embark on an adventure through breathtaking nature and mysterious cities – a strange new world where cooperation and friendship matter most.</p><p>In this dialogue-free film, music takes the spotlight – and part of it was crafted in Finland! A fantastic cinematic experience for both children and adults, showered with top international awards, crowned by the Oscar for Best Animated Feature.</p><p>Age rating: 7<br>Duration: 85 min<br>Subtitles: no spoken dialogue</p>"
            },
            "name": {
                "fi": "Flow (7) – Kino Helios",
                "sv": "Flow (7) – Kino Helios",
                "en": "Flow (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65997/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65917",
            "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-sata-litraa-sahtia-3872759/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3872759/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3872759/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 465234,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-04T11:13:31.743202Z",
                    "last_modified_time": "2025-04-04T11:13:31.743216Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759080.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/465234/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-04T11:13:31.730109Z",
            "last_modified_time": "2025-04-09T08:14:19.420954Z",
            "date_published": null,
            "start_time": "2025-04-26T15: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": "100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9E6193D9376DFF29D28C3F3BFC7EC51F/Sata_litraa_sahtia_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9E6193D9376DFF29D28C3F3BFC7EC51F/Sata_litraa_sahtia_12_",
                "en": "http://www.malmitalo.fi/en/events/event/9E6193D9376DFF29D28C3F3BFC7EC51F/Sata_litraa_sahtia_12_"
            },
            "description": {
                "fi": "<p>100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!</p><p>Siskokset Pirkko (Elina Knihtilä) ja Taina (Pirjo Lonka) ovat jatkaneet sukunsa pitkää perinnettä sahdin valmistajina. Kylällä jokainen haluaa osansa maineikkaasta juomasta, vaikka maksukykyä ei aina löytyisikään. Yllättäen kotikonnuille tekee paluun sisarustrion kolmas - Päivi (Ria Kataja), ja tilaa siskoiltaan häihinsä ei enempää eikä vähempää kuin sata litraa sahtia. Pirkko ja Taina panevat tuumasta toimeen täydellisen satsin valmistamiseksi. Pelissä on sekä perhesuhteet että maine.</p><p>Prosessiin kuuluva maistelu kuitenkin venähtää, ja Sysmän kulta hulahtaa kokonaisuudessaan itse panijoiden sekä kyläläisten kitusiin. Pian häihin on enää alle kaksi vuorokautta aikaa, ja siskosten on keksittävä keino miten toimittaa juhliin luvatut sahdit. Alkaa taistelu aikaa vastaan, ja tilanteen korjaamiseksi käytetään kaikki mahdolliset keinot.</p><p>Ikäraja: 12<br>Kesto: 88 min.<br>Ensi-ilta: 28.03.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Sata litraa sahtia (12) – Kino Helios",
                "sv": "Sata litraa sahtia (12) – Kino Helios",
                "en": "Sata litraa sahtia (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65917/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65920",
            "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-sata-litraa-sahtia-3872759/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3872759/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3872759/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 465233,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-04T11:13:30.824441Z",
                    "last_modified_time": "2025-04-04T11:13:30.824453Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759073.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/465233/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-04T11:13:30.811671Z",
            "last_modified_time": "2025-04-09T08:14:18.424651Z",
            "date_published": null,
            "start_time": "2025-04-23T12: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": "100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7F586C2B4483761717E66E13EDDE5003/Sata_litraa_sahtia_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7F586C2B4483761717E66E13EDDE5003/Sata_litraa_sahtia_12_",
                "en": "http://www.malmitalo.fi/en/events/event/7F586C2B4483761717E66E13EDDE5003/Sata_litraa_sahtia_12_"
            },
            "description": {
                "fi": "<p>100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!</p><p>Siskokset Pirkko (Elina Knihtilä) ja Taina (Pirjo Lonka) ovat jatkaneet sukunsa pitkää perinnettä sahdin valmistajina. Kylällä jokainen haluaa osansa maineikkaasta juomasta, vaikka maksukykyä ei aina löytyisikään. Yllättäen kotikonnuille tekee paluun sisarustrion kolmas - Päivi (Ria Kataja), ja tilaa siskoiltaan häihinsä ei enempää eikä vähempää kuin sata litraa sahtia. Pirkko ja Taina panevat tuumasta toimeen täydellisen satsin valmistamiseksi. Pelissä on sekä perhesuhteet että maine.</p><p>Prosessiin kuuluva maistelu kuitenkin venähtää, ja Sysmän kulta hulahtaa kokonaisuudessaan itse panijoiden sekä kyläläisten kitusiin. Pian häihin on enää alle kaksi vuorokautta aikaa, ja siskosten on keksittävä keino miten toimittaa juhliin luvatut sahdit. Alkaa taistelu aikaa vastaan, ja tilanteen korjaamiseksi käytetään kaikki mahdolliset keinot.</p><p>Ikäraja: 12<br>Kesto: 88 min.<br>Ensi-ilta: 28.03.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Sata litraa sahtia (12) – Kino Helios",
                "sv": "Sata litraa sahtia (12) – Kino Helios",
                "en": "Sata litraa sahtia (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65920/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65919",
            "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-sata-litraa-sahtia-3872759/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3872759/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3872759/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 465232,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-04T11:13:30.352890Z",
                    "last_modified_time": "2025-04-04T11:13:30.352904Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759065.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/465232/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-04T11:13:30.325474Z",
            "last_modified_time": "2025-04-09T08:14:17.867343Z",
            "date_published": null,
            "start_time": "2025-04-16T15: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": "100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/21ACBA557838B3CB9A440F06BE10C29D/Sata_litraa_sahtia_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/21ACBA557838B3CB9A440F06BE10C29D/Sata_litraa_sahtia_12_",
                "en": "http://www.malmitalo.fi/en/events/event/21ACBA557838B3CB9A440F06BE10C29D/Sata_litraa_sahtia_12_"
            },
            "description": {
                "fi": "<p>100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!</p><p>Siskokset Pirkko (Elina Knihtilä) ja Taina (Pirjo Lonka) ovat jatkaneet sukunsa pitkää perinnettä sahdin valmistajina. Kylällä jokainen haluaa osansa maineikkaasta juomasta, vaikka maksukykyä ei aina löytyisikään. Yllättäen kotikonnuille tekee paluun sisarustrion kolmas - Päivi (Ria Kataja), ja tilaa siskoiltaan häihinsä ei enempää eikä vähempää kuin sata litraa sahtia. Pirkko ja Taina panevat tuumasta toimeen täydellisen satsin valmistamiseksi. Pelissä on sekä perhesuhteet että maine.</p><p>Prosessiin kuuluva maistelu kuitenkin venähtää, ja Sysmän kulta hulahtaa kokonaisuudessaan itse panijoiden sekä kyläläisten kitusiin. Pian häihin on enää alle kaksi vuorokautta aikaa, ja siskosten on keksittävä keino miten toimittaa juhliin luvatut sahdit. Alkaa taistelu aikaa vastaan, ja tilanteen korjaamiseksi käytetään kaikki mahdolliset keinot.</p><p>Ikäraja: 12<br>Kesto: 88 min.<br>Ensi-ilta: 28.03.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Sata litraa sahtia (12) – Kino Helios",
                "sv": "Sata litraa sahtia (12) – Kino Helios",
                "en": "Sata litraa sahtia (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65919/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65590",
            "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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 214518,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-11T13:14:05.674393Z",
                    "last_modified_time": "2025-02-11T13:14:05.674408Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759563.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/214518/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-11T13:14:05.645331Z",
            "last_modified_time": "2025-04-08T14:14:26.006374Z",
            "date_published": null,
            "start_time": "2025-04-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": "Huhtikuun Flyygelikuussa luvassa on kamarimusiikin huumaa!",
                "sv": "På Flyygelikuu-konserten i april utlovas kammarmusikens charm!",
                "en": "April’s Flyygelikuu has the thrill of chamber music!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/58C10F0DC11F4CF6E24EF383C8424176/Trio_Maija_Vaisanen_Pekko_Pulakka_Jussi_Vahala",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/58C10F0DC11F4CF6E24EF383C8424176/Trio_Maija_Vaisanen_Pekko_Pulakka_Jussi_Vahala",
                "en": "http://www.vuotalo.fi/en/events/event/58C10F0DC11F4CF6E24EF383C8424176/Trio_Maija_Vaisanen_Pekko_Pulakka_Jussi_Vahala"
            },
            "description": {
                "fi": "<p>Huhtikuun Flyygelikuussa luvassa on kamarimusiikin huumaa!</p><p>Flyygelin ympärille kokoontuvat pianisti Maija Väisäsen kanssa viulisti Pekko Pulakka sekä sellisti Jussi Vähälä. Konsertin pääteos on ranskalaisen romantiikan ajan säveltäjän Louise Farrencin harvoin kuultu, intohimoinen ja virtuoosinen pianotrio d-molli op 34.</p><p>Ohjelma:<br>Franz Schubert: Notturno Es-duuri pianolle, viululle ja sellolle D.897<br>Louise Farrenc: Pianotrio no 2 d-molli op. 34<br>1.\tAndante. Allegro<br>2.\tTema con variazioni. Andante semplice <br>3.\tFinale : Allegro</p><p>Maija Väisänen on Sibelius-Akatemiasta ja Lontoon Guildhall Schoolista valmistunut pianisti, joka toimii Villa Salmenrannan Kesäkonserttien ja Vuotalon Flyygelikuun taiteellisena johtajana sekä pianonsoiton tuntiopettajana Taideyliopiston Sibelius-Akatemiassa.</p><p>Pekko Pulakka on Suomen kansallisoopperan orkesterin 1. konserttimestari. Hän on opiskellut Sibelius-Akatemiassa ja Viuluakatemiassa sekä suorittanut Cremonassa Stauffer-akatemian konserttimestarikoulutuksen. Pulakka on palkittu vuonna 2015 Kuopion viulukilpailussa 2. palkinnolla.</p><p>Jussi Vähälä toimii Suomen Kansallisoopperan I soolosellistinä. Vähälä opiskeli Sibelius-Akatemiassa ja hän on esiintynyt kaikilla merkittävillä kamarimusiikkifestivaaleilla Suomessa sekä solistina muun muassa Helsingin Kaupunginorkesterin ja Kansallisoopperan orkesterin kanssa. Vähälä kuuluu Total Cello Ensemble-selloyhtyeeseen. Vähälän soitin on Emil Aaltosen säätiön omistama Giovanni Tononi 1600-luvulta.</p><p>Vapaa pääsy</p>",
                "sv": "<p>På Flyygelikuu-konserten i april utlovas kammarmusikens charm!</p><p>Runt flygeln samlas pianist Maija Väisänen med violinist Pekko Pulakka och cellist Jussi Vähälä. Konsertens huvudverk är den passionerade och virtuosa pianotrion d-moll op 34 som hörs sällan. Pianotrion är komponerad av den franska romantiska kompositören Louise Farrenc.</p><p>Jussi Vähälä (f. 1979) är en finsk cellist. Han inledde sina cellostudier under ledning av Jouko Paavola vid Lahtis konservatorium. Vähälä studerade under ledning av Arto Norakis vid Sibelius-Akademin och tog en magisterexamen i musik 2012.<br>Vähälä var cellist i Helsingfors Stadsorkester 2006–2012, och nuförtiden är han första solocellist vid Finlands Nationalopera.<br>Vähälä har uppträtt på alla betydande kammarmusikfestivaler i Finland och har uppträtt som solist bland annat med Helsingfors stadsorkester och Nationaloperans orkester. Vähälä är medlem i cellogruppen Total Cello Ensemble. 2016 spelade TCE på självständighetsdagens festmottagning i Presidentens slott. Gruppen firade sitt 25-årsjubileum 2019.</p><p>Vähäläs instrument är en Giovanni Tononi från 1600-talet som ägs av Emil Aaltonens stiftelse.</p><p>Fritt inträde</p>",
                "en": "<p>April’s Flyygelikuu has the thrill of chamber music!</p><p>Pianist Maija Väisänen, violinist Pekko Pulakka and cellist Jussi Vähälä gather around the grand piano. The main piece of the concert is the rarely heard, passionate and virtuoso piano trio in D minor, Op 34 by French Romantic composer Louise Farrenc.</p><p>Jussi Vähälä (b. 1979) is a Finnish cellist. He began his cello studies at the Lahti Conservatory under Jouko Paavola. Vähälä studied under Arto Noras at the Sibelius Academy and graduated with a Master of Music degree in 2012.<br>Vähälä played as a cellist for the Helsinki Philharmonic Orchestra from 2006 to 2012, and now works as a solo cellist for the Finnish National Opera.</p><p>Vähälä has performed at all major chamber music festivals in Finland and performed as a soloist with, for example, the Helsinki City Orchestra and the Orchestra of the Finnish National Opera. Vähälä is a member of Total Cello Ensemble. In 2016, TCE performed at the Independence Day reception at the Finnish Presidential Palace. The band celebrated its 25th anniversary in 2019.</p><p>Vähälä’s instrument is a Giovanni Tononi from the 17th century, owned by the Emil Aaltonen Foundation.</p><p>Free admission</p>"
            },
            "name": {
                "fi": "Trio Maija Väisänen – Pekko Pulakka – Jussi Vähälä – Flyygelikuu",
                "sv": "Trio Maija Väisänen – Pekko Pulakka – Jussi Vähälä – Flyygelikuu",
                "en": "Trio Maija Väisänen – Pekko Pulakka – Jussi Vähälä – Flyygelikuu"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65590/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}