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/?division=malmi&format=api&page=48
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 1640,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=49",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=47"
    },
    "data": [
        {
            "id": "kulke:63325",
            "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: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:602/?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:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?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:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?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": 112923,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-09T12:13:57.112924Z",
                    "last_modified_time": "2024-04-09T12:13:57.112941Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_747737.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/112923/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-09T12:13:57.072816Z",
            "last_modified_time": "2024-05-13T08:13:19.133079Z",
            "date_published": null,
            "start_time": "2024-05-21T13:00:00Z",
            "end_time": "2024-05-21T15: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": "Millainen on snapperi, papukaijakala tai paratiisikala? Montako evää kalalla on ja löytyykö simpukasta helmiä?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6EA815556145F85A7F86BD443B268739/Paratiisin_kalat_-perhekeramiikkakurssi_TAYNNA"
            },
            "description": {
                "fi": "<p>Millainen on snapperi, papukaijakala tai paratiisikala? Montako evää kalalla on ja löytyykö simpukasta helmiä?</p><p>Kahden kerran perhekurssilla tutustumme kalojen rakenteeseen ja simpukoiden salaisuuksiin. Ensimmäisellä kerralla teemme kalareliefejä ja simpukkarasioita savesta. Toisella kerralla raakapoltetut merenelävät saavat värityksen ja lasitteet pintaansa. Puuttuvat kalakaveritkin<br>ehtivät vielä uuniin. Lasituspolton jälkeen työt saa noutaa koululta kotiin.</p><p>Keramiikkakurssi soveltuu lapsille 5-vuotiaista ylöspäin. Kurssille osallistutaan oman aikuisen kanssa.</p><p><b>Aikataulu:</b></p><p><b>Ryhmä 1:</b><br>Tiistaina 21.5. klo 16–18<br>Keskiviikkona 29.5. klo 16.30–18</p><p><b>Ryhmä 2:</b><br>Tiistaina 21.5. klo 18.15–20.15<br>Keskiviikkona 29.5. klo 18.15–19.45</p><p>Kurssi on maksuton.</p><p>Sitovat ilmoittautumiset sähköpostitse osoitteeseen anni.hiekkala@hel.fi</p><p>Ilmoita viestissä yhteystietosi sekä kumpaan ryhmään haluat osallistua. Paikkoja on rajoitettu määrä.</p><p>Järjestäjä: Pohjois-Helsingin kuvataidekoulu<br>Opettaja: Hannele Heino<br>Tila: Taide1-luokka (Malmitalon 2.kerros)</p>"
            },
            "name": {
                "fi": "Paratiisin kalat -perhekeramiikkakurssi TÄYNNÄ"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63325/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63397",
            "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/yso:p16327/?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/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150648,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:42.169931Z",
                    "last_modified_time": "2024-04-17T10:13:42.169947Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749144.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150648/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:42.143584Z",
            "last_modified_time": "2024-05-07T11:13:03.525291Z",
            "date_published": null,
            "start_time": "2024-05-15T12: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": "Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D66FBF8492DF7A7A8BBC28BAB572CBE8/Kylla_isa_osaa_7_"
            },
            "description": {
                "fi": "<p>Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu.</p><p>Jonnan ja Junnun on houkutellut Oulusta kotiin Tampesteriin piakkoin tyhjäksi jäävä kotitalo. Eläkeiässä olevat vanhemmat ovat nimittäin aikeissa muuttaa Espanjaan - heti kun isä vain saa kerrotuksi työnantajalleen, että lopettaa taksikuskin hommat.</p><p>Isän suunnitelmat mullistuvat kuitenkin kertaheitolla, kun isäntä hankkii taksifirmaansa uuden kulkupelin, luksusluokan Mersun kaikilla herkuilla. Eläke, Espanja, vaimo ja terve järki haihtuvat päästä, kun isällä on enää yksi pakkomielteinen päämäärä: päästä edes kerran himoitun Mersun rattiin. Lopulta unelma toteutuu, mutta hinta on kallis. Isä huomaa saattaneensa koko perheen niin pahaan pinteeseen, että siitä voi yrittää selvitä vain varastamalla kuolleen miehen salkun.</p><p>Elokuva on tekstitetty suomeksi</p><p>Pituus 85 min<br>Ikäraja 7<br>Ensi-ilta 28.3.2024</p>"
            },
            "name": {
                "fi": "Kyllä isä osaa (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63397/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63396",
            "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/yso:p16327/?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/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150647,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:41.333683Z",
                    "last_modified_time": "2024-04-17T10:13:41.333699Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749142.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150647/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:41.309280Z",
            "last_modified_time": "2024-05-07T11:13:02.991472Z",
            "date_published": null,
            "start_time": "2024-05-11T15: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": "Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0FFD1781E24A34EDFA3869654E699E81/Kylla_isa_osaa_7_"
            },
            "description": {
                "fi": "<p>Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu.</p><p>Jonnan ja Junnun on houkutellut Oulusta kotiin Tampesteriin piakkoin tyhjäksi jäävä kotitalo. Eläkeiässä olevat vanhemmat ovat nimittäin aikeissa muuttaa Espanjaan - heti kun isä vain saa kerrotuksi työnantajalleen, että lopettaa taksikuskin hommat.</p><p>Isän suunnitelmat mullistuvat kuitenkin kertaheitolla, kun isäntä hankkii taksifirmaansa uuden kulkupelin, luksusluokan Mersun kaikilla herkuilla. Eläke, Espanja, vaimo ja terve järki haihtuvat päästä, kun isällä on enää yksi pakkomielteinen päämäärä: päästä edes kerran himoitun Mersun rattiin. Lopulta unelma toteutuu, mutta hinta on kallis. Isä huomaa saattaneensa koko perheen niin pahaan pinteeseen, että siitä voi yrittää selvitä vain varastamalla kuolleen miehen salkun.</p><p>Elokuva on tekstitetty suomeksi</p><p>Pituus 85 min<br>Ikäraja 7<br>Ensi-ilta 28.3.2024</p>"
            },
            "name": {
                "fi": "Kyllä isä osaa (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63396/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63395",
            "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/yso:p16327/?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/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150645,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:40.810586Z",
                    "last_modified_time": "2024-04-17T10:13:40.810601Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749140.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150645/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:40.784712Z",
            "last_modified_time": "2024-05-07T11:13:02.674418Z",
            "date_published": null,
            "start_time": "2024-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": "Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/26AF2D4FA2FDB671FDAF96524AA09EEC/Kylla_isa_osaa_7_"
            },
            "description": {
                "fi": "<p>Vuodet ovat vierineet ja lapset ovat lentäneet tamperelaisesta rintamamiestalosta maailmalle… paitsi että eivät ole. Päinvastoin. Vanhoissa kotinurkissa pyörii nyt isän, äidin Jonnan ja Jussin lisäksi myös Jonnan poika Junnu.</p><p>Jonnan ja Junnun on houkutellut Oulusta kotiin Tampesteriin piakkoin tyhjäksi jäävä kotitalo. Eläkeiässä olevat vanhemmat ovat nimittäin aikeissa muuttaa Espanjaan - heti kun isä vain saa kerrotuksi työnantajalleen, että lopettaa taksikuskin hommat.</p><p>Isän suunnitelmat mullistuvat kuitenkin kertaheitolla, kun isäntä hankkii taksifirmaansa uuden kulkupelin, luksusluokan Mersun kaikilla herkuilla. Eläke, Espanja, vaimo ja terve järki haihtuvat päästä, kun isällä on enää yksi pakkomielteinen päämäärä: päästä edes kerran himoitun Mersun rattiin. Lopulta unelma toteutuu, mutta hinta on kallis. Isä huomaa saattaneensa koko perheen niin pahaan pinteeseen, että siitä voi yrittää selvitä vain varastamalla kuolleen miehen salkun.</p><p>Elokuva on tekstitetty suomeksi</p><p>Pituus 85 min<br>Ikäraja 7<br>Ensi-ilta 28.3.2024</p>"
            },
            "name": {
                "fi": "Kyllä isä osaa (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63395/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63155",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sintonen-sakarat-levynjulkaisukonsertti-malmitalo-18368309/#tab=",
                        "sv": "https://www.lippu.fi/event/sintonen-sakarat-levynjulkaisukonsertti-malmitalo-18368309/#tab=",
                        "en": "https://www.lippu.fi/event/sintonen-sakarat-levynjulkaisukonsertti-malmitalo-18368309/#tab="
                    },
                    "description": null,
                    "price": {
                        "fi": "18,90 €",
                        "sv": "18,90 €",
                        "en": "18,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11835,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-12T09:14:33.120563Z",
                    "last_modified_time": "2024-03-12T09:14:33.120578Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745280.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11835/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-12T09:14:33.078858Z",
            "last_modified_time": "2024-05-03T12:12:58.670176Z",
            "date_published": null,
            "start_time": "2024-05-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kuulijoita on erityisesti viihdyttänyt bändin lavasoundi sekä tunteisiin vetoavat kappaleet. Yhtye on hyvän livebändin maineessa ja esiintymisiä onkin ollut ympäri Suomea.",
                "sv": "Sintonen & Sakarat är ett finskspråkigt pop-rockband med fem medlemmar.",
                "en": "Sintonen & Sakarat is a five-person pop-rock band that performs in Finnish."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7FB2AAF5A3AECF1B4D6570519BDCDE22/Sintonen_Sakarat",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7FB2AAF5A3AECF1B4D6570519BDCDE22/Sintonen_Sakarat",
                "en": "http://www.malmitalo.fi/en/events/event/7FB2AAF5A3AECF1B4D6570519BDCDE22/Sintonen_Sakarat"
            },
            "description": {
                "fi": "<p>Kuulijoita on erityisesti viihdyttänyt bändin lavasoundi sekä tunteisiin vetoavat kappaleet. Yhtye on hyvän livebändin maineessa ja esiintymisiä onkin ollut ympäri Suomea.</p><p>Sintonen & Sakarat on viisihenkinen suomenkielinen pop-rock yhtye. Yhtyeen jäsenet ovat Eeroa lukuun ottamatta jakaneet yhdessä pitkän musiikillisen taipaleen ja hyvät henkilökemiat näkyvät niin treenikämpällä kuin keikallakin.</p><p>Yhtye on toimintansa alusta alkaen pyrkinyt tarjoamaan mahdollisimman korkeatasoista musiikkia kuulijoille ja yhteistyö Helsinki Rock Productionsin Hannu Leidenin sekä Eero Kaukomiehen kanssa on tuottanut hyvää tulosta.</p><p>Yhtyeen kappaleet syntyvät sulavassa yhteistyössä Eero Sintosen sävellysten ja sanoitusten ympärille. Kappaleissa käsitellään niin rakkautta eri muodoissaan kuin elämän yksinkertaisuuksia tarinoita unohtamatta. Tunneherkkyys on sanoituksissa isossa roolissa.</p><p>Sintonen & Sakarat perustettiin vuonna 2019 Kirkkonummella. Vuonna 2020 yhtye julkaisi ensimmäiset singlensä “Poimi tarkoin”, “Tänään” sekä “Pienistä katseista”. Vuonna 2021 Ilmestyi yhtyeen neljäs single “En anna pois sitä heittää”. Vuonna 2022 ilmestyi sekä yhtyeen viides single “Värit talveksi” että yhdeksän kappaleen esikoisalbumi “Poimi tarkoin”. Vuonna 2023 yhtye julkaisi singlet “Kauniita kuvia” sekä “Lähtiessä halataan”.</p><p>Yhtye julkaisee toisen albuminsa vuonna 2024.<br>Jäsenet: Eero Sintonen, Riku Tuovinen, Santeri Sannemann, Juuso Harakka, Jari Vireaho</p><p>Kesto: 90 min + väliaika</p>",
                "sv": "<p>Sintonen & Sakarat är ett finskspråkigt pop-rockband med fem medlemmar.</p><p>Åhörarna har varit särskilt förtjusta i bandets scensound och känslofyllda låtar. Bandet är känt för fina livespelningar och har framträtt på olika håll i Finland.</p>",
                "en": "<p>Sintonen & Sakarat is a five-person pop-rock band that performs in Finnish.</p><p>Their listeners particularly like the band’s stage sound and their emotional songs. They have become known as an excellent live band and have been touring all around Finland.</p>"
            },
            "name": {
                "fi": "Sintonen & Sakarat – levynjulkaisukeikka",
                "sv": "Sintonen & Sakarat",
                "en": "Sintonen & Sakarat"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63155/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63402",
            "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/yso:p16327/?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/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150652,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:44.072528Z",
                    "last_modified_time": "2024-04-17T10:13:44.072546Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749428.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150652/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:44.046873Z",
            "last_modified_time": "2024-05-02T09:12:58.502118Z",
            "date_published": null,
            "start_time": "2024-05-18T15: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": "Vuoden odotetuimpiin elokuviin kuuluva Civil War on tiivistunnelmainen, adrenaliinin ja jännityksen täyteinen toimintatrilleri, jonka kyydistä avautuu kuumottava näkymä jakautuneen Yhdysvaltojen lähitulevaisuuteen."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF6F363148E48A13FB2FF62BFC961717/Civil_War_16_"
            },
            "description": {
                "fi": "<p>Vuoden odotetuimpiin elokuviin kuuluva Civil War on tiivistunnelmainen, adrenaliinin ja jännityksen täyteinen toimintatrilleri, jonka kyydistä avautuu kuumottava näkymä jakautuneen Yhdysvaltojen lähitulevaisuuteen.</p><p>Lee (Kirsten Dunst) yrittää selviytyä hengissä toimittajakollegoidensa kanssa eskaloituvan sisällissodan keskellä vaarallisella matkalla maan läpi kohti vielä toistaiseksi pääkaupungiksi kutsuttua Washington DC:tä.</p><p>Elokuvan muissa rooleissa nähdään Cailee Spaeny (Priscilla), Wagner Moura (Narcos), Stephen McKinley Henderson (Dyyni), Jesse Plemons (The Power of the Dog, Killers of the Flower Moon) sekä Yhdysvaltojen presidenttinä Nick Offerman (Fargo).</p><p>Lähitulevaisuuteen sijoittuvan dystooppisen toimintaelokuvan on ohjannut ja käsikirjoittanut Oscar-ehdokas Alex Garland (Ex Machina). Civil Warin vääjäämätön, räjähtävä loppuhuipennus on yksi kuluvan elokuvavuoden kohokohtia.</p><p>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p><p>Pituus 109 min<br>Ikäraja 16<br>Ensi-ilta 19.4.2024</p>"
            },
            "name": {
                "fi": "Civil War (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63402/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63399",
            "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/yso:p16327/?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/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150651,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:43.739836Z",
                    "last_modified_time": "2024-04-17T10:13:43.739853Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749148.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150651/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:43.716365Z",
            "last_modified_time": "2024-05-02T09:12:58.370607Z",
            "date_published": null,
            "start_time": "2024-05-18T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kun Prinsessa Pikkiriikki saa kuulla, että äidin sisuskaluissa asusteleva pikkuveli aikoo pian muuttaa Pikkiriikin huoneeseen, hänelle riittää."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/929A67661E0B692481BD72128FF3CC86/Prinsessa_Pikkiriikki_S_"
            },
            "description": {
                "fi": "<p>Kun Prinsessa Pikkiriikki saa kuulla, että äidin sisuskaluissa asusteleva pikkuveli aikoo pian muuttaa Pikkiriikin huoneeseen, hänelle riittää.</p><p>Hän saa Rouva Jenssenintädiltä idean ja taikoo määräilevät aikuiset Himpskattiin taikakoiransa Makkaran avulla.</p><p>Naapuriin juuri muuttanut Prinsessa Pöjöläinen tietää missä unelmien prinsessalinna sijaitsee ja kun vanhemmat eivät ole estämässä, he lähtevät yhteistuumin seikkailuun. Matkaan tulee kuitenkin mutkia, kun prinsessat päätyvät markkinoille, joilla nautitaan pomppulinnasta, etsitään kadonnutta Makkaraa ja osallistutaan vedonlyöntikilpailuun.</p><p>Pääprinsessuuuskin aiheuttaa päänvaivaa ja Pikkiriikin on lopulta katsottava asioita myös vasemmasta näkökulmasta.</p><p>Elokuva on tekstitetty Suomeksi</p><p>Pituus 75 min<br>Ikäraja sallittu<br>Ensi-ilta 27.3.2024</p>"
            },
            "name": {
                "fi": "Prinsessa Pikkiriikki (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63399/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63401",
            "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/yso:p16327/?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/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150650,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:43.286847Z",
                    "last_modified_time": "2024-04-17T10:13:43.286863Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749426.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:43.263032Z",
            "last_modified_time": "2024-05-02T09:12:58.049065Z",
            "date_published": null,
            "start_time": "2024-05-17T15: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": "Vuoden odotetuimpiin elokuviin kuuluva Civil War on tiivistunnelmainen, adrenaliinin ja jännityksen täyteinen toimintatrilleri, jonka kyydistä avautuu kuumottava näkymä jakautuneen Yhdysvaltojen lähitulevaisuuteen."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3CB39F5ED1F3248EE9062DEB86097478/Civil_War_16_"
            },
            "description": {
                "fi": "<p>Vuoden odotetuimpiin elokuviin kuuluva Civil War on tiivistunnelmainen, adrenaliinin ja jännityksen täyteinen toimintatrilleri, jonka kyydistä avautuu kuumottava näkymä jakautuneen Yhdysvaltojen lähitulevaisuuteen.</p><p>Lee (Kirsten Dunst) yrittää selviytyä hengissä toimittajakollegoidensa kanssa eskaloituvan sisällissodan keskellä vaarallisella matkalla maan läpi kohti vielä toistaiseksi pääkaupungiksi kutsuttua Washington DC:tä.</p><p>Elokuvan muissa rooleissa nähdään Cailee Spaeny (Priscilla), Wagner Moura (Narcos), Stephen McKinley Henderson (Dyyni), Jesse Plemons (The Power of the Dog, Killers of the Flower Moon) sekä Yhdysvaltojen presidenttinä Nick Offerman (Fargo).</p><p>Lähitulevaisuuteen sijoittuvan dystooppisen toimintaelokuvan on ohjannut ja käsikirjoittanut Oscar-ehdokas Alex Garland (Ex Machina). Civil Warin vääjäämätön, räjähtävä loppuhuipennus on yksi kuluvan elokuvavuoden kohokohtia.</p><p>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p><p>Pituus 109 min<br>Ikäraja 16<br>Ensi-ilta 19.4.2024</p>"
            },
            "name": {
                "fi": "Civil War (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63401/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63400",
            "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/yso:p16327/?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/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150649,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:42.464390Z",
                    "last_modified_time": "2024-04-17T10:13:42.464407Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749424.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150649/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:42.439663Z",
            "last_modified_time": "2024-05-02T09:12:57.559986Z",
            "date_published": null,
            "start_time": "2024-05-15T15: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": "Vuoden odotetuimpiin elokuviin kuuluva Civil War on tiivistunnelmainen, adrenaliinin ja jännityksen täyteinen toimintatrilleri, jonka kyydistä avautuu kuumottava näkymä jakautuneen Yhdysvaltojen lähitulevaisuuteen."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/62CF00808D42AFD248F0C2AFE133AA5D/Civil_War_16_"
            },
            "description": {
                "fi": "<p>Vuoden odotetuimpiin elokuviin kuuluva Civil War on tiivistunnelmainen, adrenaliinin ja jännityksen täyteinen toimintatrilleri, jonka kyydistä avautuu kuumottava näkymä jakautuneen Yhdysvaltojen lähitulevaisuuteen.</p><p>Lee (Kirsten Dunst) yrittää selviytyä hengissä toimittajakollegoidensa kanssa eskaloituvan sisällissodan keskellä vaarallisella matkalla maan läpi kohti vielä toistaiseksi pääkaupungiksi kutsuttua Washington DC:tä.</p><p>Elokuvan muissa rooleissa nähdään Cailee Spaeny (Priscilla), Wagner Moura (Narcos), Stephen McKinley Henderson (Dyyni), Jesse Plemons (The Power of the Dog, Killers of the Flower Moon) sekä Yhdysvaltojen presidenttinä Nick Offerman (Fargo).</p><p>Lähitulevaisuuteen sijoittuvan dystooppisen toimintaelokuvan on ohjannut ja käsikirjoittanut Oscar-ehdokas Alex Garland (Ex Machina). Civil Warin vääjäämätön, räjähtävä loppuhuipennus on yksi kuluvan elokuvavuoden kohokohtia.</p><p>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p><p>Pituus 109 min<br>Ikäraja 16<br>Ensi-ilta 19.4.2024</p>"
            },
            "name": {
                "fi": "Civil War (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63400/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63398",
            "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/yso:p16327/?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/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150646,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:41.206664Z",
                    "last_modified_time": "2024-04-17T10:13:41.206681Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749419.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150646/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:41.180835Z",
            "last_modified_time": "2024-05-02T09:12:56.935214Z",
            "date_published": null,
            "start_time": "2024-05-11T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kun Prinsessa Pikkiriikki saa kuulla, että äidin sisuskaluissa asusteleva pikkuveli aikoo pian muuttaa Pikkiriikin huoneeseen, hänelle riittää."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6E16A57F21A0E1D2D79EE17BDC4FCBB0/Prinsessa_Pikkiriikki_S_"
            },
            "description": {
                "fi": "<p>Kun Prinsessa Pikkiriikki saa kuulla, että äidin sisuskaluissa asusteleva pikkuveli aikoo pian muuttaa Pikkiriikin huoneeseen, hänelle riittää.</p><p>Hän saa Rouva Jenssenintädiltä idean ja taikoo määräilevät aikuiset Himpskattiin taikakoiransa Makkaran avulla.</p><p>Naapuriin juuri muuttanut Prinsessa Pöjöläinen tietää missä unelmien prinsessalinna sijaitsee ja kun vanhemmat eivät ole estämässä, he lähtevät yhteistuumin seikkailuun. Matkaan tulee kuitenkin mutkia, kun prinsessat päätyvät markkinoille, joilla nautitaan pomppulinnasta, etsitään kadonnutta Makkaraa ja osallistutaan vedonlyöntikilpailuun.</p><p>Pääprinsessuuuskin aiheuttaa päänvaivaa ja Pikkiriikin on lopulta katsottava asioita myös vasemmasta näkökulmasta.</p><p>Elokuva on tekstitetty Suomeksi</p><p>Pituus 75 min<br>Ikäraja sallittu<br>Ensi-ilta 27.3.2024</p>"
            },
            "name": {
                "fi": "Prinsessa Pikkiriikki (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63398/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63394",
            "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/yso:p16327/?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/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150644,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:40.682798Z",
                    "last_modified_time": "2024-04-17T10:13:40.682815Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749138.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150644/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:40.657462Z",
            "last_modified_time": "2024-05-02T09:12:56.640203Z",
            "date_published": null,
            "start_time": "2024-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": "Tommi Mäkinen-Renwall (Antti Luusuaniemi) haaveilee ylennyksestä ja sen mukana tulevasta palkankorotuksesta. Hieman hövelin Tommin tavoitteena on ostaa unelmien omakotitalo vaimonsa Harrietin (Maria Ylipää) kanssa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/19FEBEC377B7796F6A35D78FD4B844F0/Luottomies-elokuva_All_in_7_"
            },
            "description": {
                "fi": "<p>Tommi Mäkinen-Renwall (Antti Luusuaniemi) haaveilee ylennyksestä ja sen mukana tulevasta palkankorotuksesta. Hieman hövelin Tommin tavoitteena on ostaa unelmien omakotitalo vaimonsa Harrietin (Maria Ylipää) kanssa.</p><p>Tommin pomo (ja samalla appiukko) Johan Renwall (Taneli Mäkelä) vaatii kuitenkin, että Tommin on ensin todistettava paineensietokykynsä. Naapurissa asuva luottomies Juha ”Juhis” Manner (Kari Ketonen) keksiikin lennokkaan tavan, jolla Tommi voi osoittaa kylmäpäisyytensä.</p><p>Tästä ei tietenkään seuraa toivottua lopputulosta, ja kasvonsa menettänyt, epätoivoinen Tommi päättää ottaa ohjat omiin käsiinsä. Avioliittokin on vaarassa. Tommi ryhtyy pääomasijoittajaksi vähäisellä ymmärryksellä, ja aluksi tulokset ovat lupaavat... Kunnes lopulta ollaan totaalisen pulassa, ja tarvitaan jälleen Juhiksen suoraviivaista ongelmanratkaisukykyä.</p><p>Pituus 90 min<br>Ikäraja  7<br>Ensi-ilta 16.2.2024<br>Elokuva on tekstitetty Suomeksi</p>"
            },
            "name": {
                "fi": "Luottomies-elokuva: All in (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63394/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63393",
            "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/yso:p16327/?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/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150643,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:40.445582Z",
                    "last_modified_time": "2024-04-17T10:13:40.445597Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749136.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150643/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:40.422409Z",
            "last_modified_time": "2024-05-02T09:12:56.518436Z",
            "date_published": null,
            "start_time": "2024-05-08T15: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": "Tommi Mäkinen-Renwall (Antti Luusuaniemi) haaveilee ylennyksestä ja sen mukana tulevasta palkankorotuksesta. Hieman hövelin Tommin tavoitteena on ostaa unelmien omakotitalo vaimonsa Harrietin (Maria Ylipää) kanssa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DE01EA3EDE1DFBAE180FDE56FA5D196F/Luottomies-elokuva_All_in_7_"
            },
            "description": {
                "fi": "<p>Tommi Mäkinen-Renwall (Antti Luusuaniemi) haaveilee ylennyksestä ja sen mukana tulevasta palkankorotuksesta. Hieman hövelin Tommin tavoitteena on ostaa unelmien omakotitalo vaimonsa Harrietin (Maria Ylipää) kanssa.</p><p>Tommin pomo (ja samalla appiukko) Johan Renwall (Taneli Mäkelä) vaatii kuitenkin, että Tommin on ensin todistettava paineensietokykynsä. Naapurissa asuva luottomies Juha ”Juhis” Manner (Kari Ketonen) keksiikin lennokkaan tavan, jolla Tommi voi osoittaa kylmäpäisyytensä.</p><p>Tästä ei tietenkään seuraa toivottua lopputulosta, ja kasvonsa menettänyt, epätoivoinen Tommi päättää ottaa ohjat omiin käsiinsä. Avioliittokin on vaarassa. Tommi ryhtyy pääomasijoittajaksi vähäisellä ymmärryksellä, ja aluksi tulokset ovat lupaavat... Kunnes lopulta ollaan totaalisen pulassa, ja tarvitaan jälleen Juhiksen suoraviivaista ongelmanratkaisukykyä.</p><p>Pituus 90 min<br>Ikäraja  7<br>Ensi-ilta 16.2.2024<br>Elokuva on tekstitetty Suomeksi</p>"
            },
            "name": {
                "fi": "Luottomies-elokuva: All in (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63393/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63392",
            "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/yso:p16327/?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/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150642,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T10:13:39.427524Z",
                    "last_modified_time": "2024-04-17T10:13:39.427540Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749134.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150642/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T10:13:39.382192Z",
            "last_modified_time": "2024-05-02T09:12:55.932060Z",
            "date_published": null,
            "start_time": "2024-05-04T15: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": "Tommi Mäkinen-Renwall (Antti Luusuaniemi) haaveilee ylennyksestä ja sen mukana tulevasta palkankorotuksesta. Hieman hövelin Tommin tavoitteena on ostaa unelmien omakotitalo vaimonsa Harrietin (Maria Ylipää) kanssa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C9838299A54AAF80B658C41D12E3D559/Luottomies-elokuva_All_in_7_"
            },
            "description": {
                "fi": "<p>Tommi Mäkinen-Renwall (Antti Luusuaniemi) haaveilee ylennyksestä ja sen mukana tulevasta palkankorotuksesta. Hieman hövelin Tommin tavoitteena on ostaa unelmien omakotitalo vaimonsa Harrietin (Maria Ylipää) kanssa.</p><p>Tommin pomo (ja samalla appiukko) Johan Renwall (Taneli Mäkelä) vaatii kuitenkin, että Tommin on ensin todistettava paineensietokykynsä. Naapurissa asuva luottomies Juha ”Juhis” Manner (Kari Ketonen) keksiikin lennokkaan tavan, jolla Tommi voi osoittaa kylmäpäisyytensä.</p><p>Tästä ei tietenkään seuraa toivottua lopputulosta, ja kasvonsa menettänyt, epätoivoinen Tommi päättää ottaa ohjat omiin käsiinsä. Avioliittokin on vaarassa. Tommi ryhtyy pääomasijoittajaksi vähäisellä ymmärryksellä, ja aluksi tulokset ovat lupaavat... Kunnes lopulta ollaan totaalisen pulassa, ja tarvitaan jälleen Juhiksen suoraviivaista ongelmanratkaisukykyä.</p><p>Pituus 90 min<br>Ikäraja  7<br>Ensi-ilta 16.2.2024<br>Elokuva on tekstitetty Suomeksi</p>"
            },
            "name": {
                "fi": "Luottomies-elokuva: All in (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63392/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63373",
            "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/yso:p16327/?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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150858,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-26T15:12:52.846420Z",
                    "last_modified_time": "2024-04-26T15:12:52.846441Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749422.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150858/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-26T15:12:52.829201Z",
            "last_modified_time": "2024-04-26T15:12:52.894415Z",
            "date_published": null,
            "start_time": "2024-05-17T12: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": "Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0F00699BF1870E31C42B5A021F262798/Myrskyluodon_Maija_12_"
            },
            "description": {
                "fi": "<p>Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella.</p><p>Elokuva perustuu Anni Blomqvistin samannimiseen romaaniin ja sijoittuu 1800-luvun Suomen rannikkoseudulle. Nuori 17-vuotias Maija avioituu vasten tahtoaan kalastajamies Jannen kanssa. Hänen elämänsä Myrskyluodolla on täynnä haasteita ja vastoinkäymisiä: kalastajan vaimona hän joutuu selviytymään miehensä pitkistä poissaoloista merellä ja huolehtimaan perheestään yksin.</p><p>Maijasta on kuitenkin kasvanut lujatahtoinen ja itsenäinen nainen, joka ei pelkää tarttua toimeen karussa saaristossa. Maijalla ja Jannella on vahva yhteys, sekä ajan myötä syventynyt rakkaus. Janne tukee vaimonsa pyrkimyksiä ja ymmärtää, että perheen vahvuus syntyy yhteisistä ponnisteluista.</p><p>Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.</p><p>Ikäsuositus: 12<br>Kesto: 163 min<br>Elokuva on tekstitetty Suomeksi<br>Ensi-ilta: 19.1.2024</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "name": {
                "fi": "Myrskyluodon Maija (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63373/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63449",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmin-mieslaulajat-malmitalo-18615194/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150818,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-25T11:15:12.770347Z",
                    "last_modified_time": "2024-04-25T11:15:12.770372Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749941.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150818/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-25T11:15:12.738020Z",
            "last_modified_time": "2024-04-25T11:15:12.859425Z",
            "date_published": null,
            "start_time": "2024-05-28T16: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": "Malmin Mieslaulajat esittää viihteellisiä kuorolauluja johtajanaan Marjasisko Varha. Säestys Kaisu Rauhamaa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6138CE8B1B6AAC3C2605343CD9A35A0E/Malmin_Mieslaulajat"
            },
            "description": {
                "fi": "<p>Malmin Mieslaulajat esittää viihteellisiä kuorolauluja johtajanaan Marjasisko Varha. Säestys Kaisu Rauhamaa.</p><p>Kesto noin 1 tunti 40min, sisältäen 20min väliajan.</p>"
            },
            "name": {
                "fi": "Malmin Mieslaulajat – Elämän kevät"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63449/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63240",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/event/mutaveijareiden-10-vuotissynttaerit-2024-malmitalo-18413490/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 14311,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-18T13:14:19.337281Z",
                    "last_modified_time": "2024-03-18T13:14:19.337306Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746145.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/14311/?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": "2024-03-18T13:14:19.302912Z",
            "last_modified_time": "2024-04-22T08:14:31.417675Z",
            "date_published": null,
            "start_time": "2024-05-04T12: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": "On aika keittää maan mainioimmat kuravellit ja leipoa hienoimmat mutakakut, kun lastenmusiikkiyhtye Mutaveijarit juhlii 10-vuotissyntymäpäiviään vuonna 2024."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2206107A2F0A4B89186207B98B7909F2/LOPPUUNMYYTY_Mutaveijareiden_10-vuotissynttarit"
            },
            "description": {
                "fi": "<p>On aika keittää maan mainioimmat kuravellit ja leipoa hienoimmat mutakakut, kun lastenmusiikkiyhtye Mutaveijarit juhlii 10-vuotissyntymäpäiviään vuonna 2024.</p><p>Malmitalon keikalla seikkaillaan tuttuun tapaan ympäri ämpäri maailman, sukelletaan välillä merten ja järvien läpi, kohdataan monenmoista ystävää ja tuttua ja ihmetellään yhdessä montaa juttua.</p><p>Kymppisynttäreiden erikoisesiintyjänä on joukko kokeneita kymppisynttäreiden viettäjiä. Mukana on Kaisaniemen ala-asteen 4c-musiikkiluokan kuoro opettajansa Kirsi Pettisen johdolla. Tämä taitava, vauhdikas ja energinen joukko saa yhdessä Mutaveijareiden kanssa taatusti tunnelman kattoon ja juhlista tulee ikimuistoiset niin lapsiväelle kuin lapsenmielisille aikuisillekin!</p><p>Toivotamme kaikki kanssamatkustajat tervetulleiksi mutamatkalle juhlimaan: “Hyppää kyytiin nyt! Laita kiinni turvavyö!”<br> <br>Mutaveijarit on riemukas lastenmusiikkiyhtye, joka on tunnettu valloittavasta lavaesiintymisestään ja mukaansatempaavista lauluistaan. Yhtye yhdistelee rohkeasti ja monipuolisesti eri musiikkityylejä aina kansanmusiikista skahan ja popista tuutulauluun. Mutaveijarit vievät kuulijansa ystävyyden, luonnon ja kuravellin riemukkaaseen maailmaan. Mielikuvitukselliset ja oivaltavat laulut sekä innostavat ja pedagogisesti monipuoliset laululeikit vievät kuulijansa musiikkiretkelle, jonka hauskat ja jännittävät käänteet takaavat viihdyttävän konserttielämyksen koko perheelle.<br> <br>Mutaveijareiden kaksi levyä Ympäri ämpäri! (2016) ja Nyt mennään! (2019) ovat saaneet lukuisia tunnustuksia mm. lastenmusiikin Emma-ehdokkuudet. Yhtye on palkittu vuoden 2020 lastenmusiikintekijänä. Vuonna 2023 Mutaveijarit julkaisi Ämpärillinen nuotteja -kirjan, jossa on mukana nuotteja, laulu- ja leikkiohjeita sekä monipuolisesti muuta kappaleisiin liittyvää pedagogista materiaalia.<br> <br>Mutaveijarit: Veikko Muikku, Johanna Mäkitalo, Mari Nieminen, Jussi Nikula, Miia Reko, Eveliina Saikkonen, Saija Santavirta, Leena Untamala</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY: Mutaveijareiden 10-vuotissynttärit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63240/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61974",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/ladies-first-big-band-vappuetkot-malmitalo-17950102/",
                        "sv": "https://www.lippu.fi/event/ladies-first-big-band-vappuetkot-malmitalo-17950102/",
                        "en": "https://www.lippu.fi/event/ladies-first-big-band-vappuetkot-malmitalo-17950102/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22,50 € / 21,50 €",
                        "sv": "22,50 € / 21,50 €",
                        "en": "22,50 € / 21,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7330,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-23T12:14:37.937910Z",
                    "last_modified_time": "2024-02-06T13:23:38.828055Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737906.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7330/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-23T12:14:37.900549Z",
            "last_modified_time": "2024-04-22T08:14:29.687777Z",
            "date_published": null,
            "start_time": "2024-04-27T15: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": "Malmisalin lava säihkyy glitteriä ja juhlatunnelmaa, kun Ladies First Big Band luotsaa yleisön kohti kevään juhlaa riemukkailla Vappuetkoilla.",
                "sv": "Scenen i Malms kulturhus lyser av glitter och förtrollande stämning, när Ladies First Big Band lotsar publiken mot vårens fest på denna glada förstamajförfest.",
                "en": "The Malminsali stage will shine with glitter and an intoxicating atmosphere as Ladies First Big Band tunes the audience to the atmosphere of the spring festival in Malmintalo’s cheerful May Day pre-party."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2BF2EE9CA9C23F1DF513955A3491EC2F/LOPPUUNMYYTY_Ladies_First_Big_Band",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2BF2EE9CA9C23F1DF513955A3491EC2F/SLUTSALD_Ladies_First_Big_Band",
                "en": "http://www.malmitalo.fi/en/events/event/2BF2EE9CA9C23F1DF513955A3491EC2F/SOLD_OUT_Ladies_First_Big_Band"
            },
            "description": {
                "fi": "<p>Malmisalin lava säihkyy glitteriä ja juhlatunnelmaa, kun Ladies First Big Band luotsaa yleisön kohti kevään juhlaa riemukkailla Vappuetkoilla.</p><p>Lavalle nousee upea 22-henkinen, lähes kokonaan naisista koostuva kokoonpano puhallinsektioineen, solisteineen ja taustalaulajineen.</p><p>Konsertissa kuullaan diskokauden kultahippuja ja ripaus juurevaa soulia. Pulpahda Malmitalolle kuin rusina siman pintaan, ole sokerina munkissa ja tule nauttimaan ison bändin mehevästä soundista!</p><p>Kesto 2h, sis väliajan 20min</p>",
                "sv": "<p>Scenen i Malms kulturhus lyser av glitter och förtrollande stämning, när Ladies First Big Band lotsar publiken mot vårens fest på denna glada förstamajförfest.</p>",
                "en": "<p>The Malminsali stage will shine with glitter and an intoxicating atmosphere as Ladies First Big Band tunes the audience to the atmosphere of the spring festival in Malmintalo’s cheerful May Day pre-party.</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Ladies First Big Band – Malmitalon vappuetkot!",
                "sv": "SLUTSÅLD Ladies First Big Band – Förstamajförfest på Malms kulturhus!",
                "en": "SOLD OUT Ladies First Big Band – Malmitalo’s May Day pre-party!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61974/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63359",
            "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:32/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": {
                        "fi": "15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150604,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T11:12:58.223494Z",
                    "last_modified_time": "2024-04-16T11:12:58.223510Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749101.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150604/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-16T11:12:58.202498Z",
            "last_modified_time": "2024-04-17T15:13:35.590961Z",
            "date_published": null,
            "start_time": "2024-05-18T12: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": "Balettikoulu Pirjo Kuhan taiteen perusopetuksen isot ja pienet oppilaat esittävät opintojensa tuloksia ja taitojaan perinteisessä kevätnäytöksessä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CC5DC2E09ADBC52487CA130A020E5FD8/Balettikoulu_Pirjo_Kuhan_kevatnaytos"
            },
            "description": {
                "fi": "<p>Balettikoulu Pirjo Kuhan taiteen perusopetuksen isot ja pienet oppilaat esittävät opintojensa tuloksia ja taitojaan perinteisessä kevätnäytöksessä.</p><p>Voit ostaa lipun Malmitalolta Balettikoulu Pirjo Kuhan myyntipisteeltä tuntia ennen näytöstä tai olemalla yhteydessä Balettikouluun, tiedustelut numeroon 0407367865.</p><p>Liput: 15 € Malmitalolta Balettikoulu Pirjo Kuhan järjestämältä myyntipisteeltä tai ennakkoon Balettikoulusta.</p><p>Näytöksen kesto n. 60 min</p>"
            },
            "name": {
                "fi": "Balettikoulu Pirjo Kuhan kevätnäytös"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63359/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63404",
            "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/yso:p16327/?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/search/?affiliate=ADV&searchterm=kino+helios",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150654,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T11:13:48.303620Z",
                    "last_modified_time": "2024-04-17T11:13:48.303636Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749417.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150654/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T11:13:48.275893Z",
            "last_modified_time": "2024-04-17T11:13:48.374743Z",
            "date_published": null,
            "start_time": "2024-05-11T10: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": "Tänä keväänä maailman epätodennäköisin kung fu -mestari Po palaa valkokankaille DreamWorksin uudessa elokuvassa Kung Fu Panda 4.",
                "sv": "I vår, kommer komedi-ikonen Jack Black, för första gången på nästan ett årtionde, tillbaka i rollen som Po, världens mest osannolika kung fu-mästare, i ett roligt nytt kapitel i Dreamworks Animations älskade actionkomedi-franchise: Kung Fu Panda 4.",
                "en": "This spring, for the first time in almost a decade, comedy icon Jack Black returns to his role as Po, the world’s most unlikely kung fu master, with a hilarious, butt-kicking new chapter in DreamWorks Animation’s beloved action-comedy franchise: Kung Fu Panda 4."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/34C621AFF78F4C4197BD2188E8B61069/Kung_Fu_Panda_4_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/34C621AFF78F4C4197BD2188E8B61069/Kung_Fu_Panda_4_7_",
                "en": "http://www.malmitalo.fi/en/events/event/34C621AFF78F4C4197BD2188E8B61069/Kung_Fu_Panda_4_7_"
            },
            "description": {
                "fi": "<p>Tänä keväänä maailman epätodennäköisin kung fu -mestari Po palaa valkokankaille DreamWorksin uudessa elokuvassa Kung Fu Panda 4.</p><p>Kukistettuaan maailmanluokan roistoja rohkeudellaan ja hurjilla taistelutaidoillaan, kohtalo kutsuu lohikäärmesoturi Pon laittamaan pisteen ainaiselle seikkailemiselle. Tarkemmin sanoen, hänestä halutaan Rauhan laakson henkinen johtaja.</p><p>Tässä on kuitenkin muutama ongelma. Ensinnäkin Po tietää henkisestä johtajuudesta yhtä vähän kuin paleodieetistä, ja toiseksi hänen on löydettävä ja koulutettava uusi lohikäärmesoturi ennen kuin voi vastaanottaa uuden ylevän asemansa.</p><p>Kuvioihin ilmestyy lisäksi paha ja voimakas Kameleontti, pieni lisko, joka osaa muuttaa muotoaan miksi tahansa olennoksi. Kameleontti on iskenyt silmänsä Pon Viisauden sauvaan, jolla hän voisi kutsua henkimaailmasta takaisin kaikki Pon sinne lähettämät vastustajat.</p><p>Po löytää avukseen nokkelan arokettu Zhenin, varkaan, joka käy Pon hermoille, mutta osoittautuu taidoiltaan korvaamattomaksi. <br>Hullunkurisen kaksikon on tehtävä yhteistyötä suojellakseen Rauhan laaksoa Kameleontin liskonkynsiltä. Samalla Po myös ymmärtää, että sankareita voi löytyä odottamattomista paikoista.</p><p>Kung Fu Panda 4 -elokuvan on ohjannut Mike Mitchell (Trolls, Shrek ja ikuinen onni) ja tuottanut Rebecca Huntley (Hurja Jengi).</p><p>Elokuvassa puhutaan suomea.</p><p>Kesto 94 min<br>Ikäraja 7<br>Ensi-ilta 22.3.2024</p>",
                "sv": "<p>I vår, kommer komedi-ikonen Jack Black, för första gången på nästan ett årtionde, tillbaka i rollen som Po, världens mest osannolika kung fu-mästare, i ett roligt nytt kapitel i Dreamworks Animations älskade actionkomedi-franchise: Kung Fu Panda 4.</p><p>Efter att, i tre dödsföraktande äventyr, ha besegrat skurkar i världsklass med sitt oöverträffade mod och sina galna kampsportfärdigheter, uppmanar ödet Po, Drakkrigaren, att... ta och lugna ner sig lite. Mer specifikt, han är utvald att bli andlig ledare i Fredens Dal.</p><p>Det ställer till med ett par uppenbara problem. För det första, så vet Po lika mycket om andligt ledarskap som han gör om Paleo-dieten, och för det andra måste han snabbt hitta och träna upp en ny Drakkrigare innan han kan inta sin nya upphöjda position.</p><p>Övrigt: Ännu värre är att det nyligen dykt upp en elak, mäktig magiker; Kameleonten, en liten ödla som kan förvandla sig till vilken varelse som helst, stor som liten. Kameleonten håller sina giriga, pliriga små ögon på Pos Visdomens Stav, som skulle kunna ge henne kraften att återkalla alla de mästerskurkar som Po besegrat och skickat till andevärlden.</p><p>Så, Po kommer att behöva lite hjälp. Han hittar den (typ?) i form av den kvicka och listiga tjuven Zhen, en Korsakräv som verkligen tar sig in under pälsen på Po men vars färdigheter kommer att visa sig ovärderliga. För att skydda Fredens Dal från Kameleontens reptilklor måste denna komiska, udda duo samarbeta. Samtidigt kommer Po att upptäcka att hjältar kan finnas på de mest oväntade platserna.</p><p>Språk: finska</p><p>Längd 94 min <br>Åldersgräns 7 <br>Premiär 22 mars 2024</p>",
                "en": "<p>This spring, for the first time in almost a decade, comedy icon Jack Black returns to his role as Po, the world’s most unlikely kung fu master, with a hilarious, butt-kicking new chapter in DreamWorks Animation’s beloved action-comedy franchise: Kung Fu Panda 4.</p><p>After three death-defying adventures defeating world-class villains with his unmatched courage and mad martial arts skills, Po, the Dragon Warrior, is called upon by destiny to … give it a rest already. More specifically, he’s tapped to become the Spiritual Leader of the Valley of Peace.</p><p>That poses a couple of obvious problems. First, Po knows as much about spiritual leadership as he does about the paleo diet, and second, he needs to quickly find and train a new Dragon Warrior before he can assume his new lofty position.</p><p>Even worse, there’s been a recent sighting of a wicked, powerful sorceress, Chameleon, a tiny lizard who can shapeshift into any creature, large or small. And Chameleon has her greedy, beady little eyes on Po’s Staff of Wisdom, which would give her the power to re-summon all the master villains whom Po has vanquished to the spirit realm.</p><p>So, Po’s going to need some help. He finds it (kinda?) in the form of crafty, quick-witted thief Zhen, a corsac fox who really gets under Po’s fur but whose skills will prove invaluable. In their quest to protect the Valley of Peace from Chameleon’s reptilian claws, this comedic odd-couple duo will have to work together. In the process, Po will discover that heroes can be found in the most unexpected places.</p><p>Language: Finnish</p><p>Duration 94 min<br>Age rating 7 <br>Premiere March 22, 2024</p>"
            },
            "name": {
                "fi": "Kung Fu Panda 4 (7) – Kino Helios",
                "sv": "Kung Fu Panda 4 (7) – Kino Helios",
                "en": "Kung Fu Panda 4 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63404/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63403",
            "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/yso:p16327/?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/search/?affiliate=ADV&searchterm=kino+helios",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150653,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-17T11:13:46.701744Z",
                    "last_modified_time": "2024-04-17T11:13:46.701760Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749120.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150653/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-17T11:13:46.658514Z",
            "last_modified_time": "2024-04-17T11:13:46.783025Z",
            "date_published": null,
            "start_time": "2024-05-04T12: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": "Tänä keväänä maailman epätodennäköisin kung fu -mestari Po palaa valkokankaille DreamWorksin uudessa elokuvassa Kung Fu Panda 4.",
                "sv": "I vår, kommer komedi-ikonen Jack Black, för första gången på nästan ett årtionde, tillbaka i rollen som Po, världens mest osannolika kung fu-mästare, i ett roligt nytt kapitel i Dreamworks Animations älskade actionkomedi-franchise: Kung Fu Panda 4.",
                "en": "This spring, for the first time in almost a decade, comedy icon Jack Black returns to his role as Po, the world’s most unlikely kung fu master, with a hilarious, butt-kicking new chapter in DreamWorks Animation’s beloved action-comedy franchise: Kung Fu Panda 4."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/37F934280D610080BAE906F9512CE737/Kung_Fu_Panda_4_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/37F934280D610080BAE906F9512CE737/Kung_Fu_Panda_4_7_",
                "en": "http://www.malmitalo.fi/en/events/event/37F934280D610080BAE906F9512CE737/Kung_Fu_Panda_4_7_"
            },
            "description": {
                "fi": "<p>Tänä keväänä maailman epätodennäköisin kung fu -mestari Po palaa valkokankaille DreamWorksin uudessa elokuvassa Kung Fu Panda 4.</p><p>Kukistettuaan maailmanluokan roistoja rohkeudellaan ja hurjilla taistelutaidoillaan, kohtalo kutsuu lohikäärmesoturi Pon laittamaan pisteen ainaiselle seikkailemiselle. Tarkemmin sanoen, hänestä halutaan Rauhan laakson henkinen johtaja.</p><p>Tässä on kuitenkin muutama ongelma. Ensinnäkin Po tietää henkisestä johtajuudesta yhtä vähän kuin paleodieetistä, ja toiseksi hänen on löydettävä ja koulutettava uusi lohikäärmesoturi ennen kuin voi vastaanottaa uuden ylevän asemansa.</p><p>Kuvioihin ilmestyy lisäksi paha ja voimakas Kameleontti, pieni lisko, joka osaa muuttaa muotoaan miksi tahansa olennoksi. Kameleontti on iskenyt silmänsä Pon Viisauden sauvaan, jolla hän voisi kutsua henkimaailmasta takaisin kaikki Pon sinne lähettämät vastustajat.</p><p>Po löytää avukseen nokkelan arokettu Zhenin, varkaan, joka käy Pon hermoille, mutta osoittautuu taidoiltaan korvaamattomaksi. <br>Hullunkurisen kaksikon on tehtävä yhteistyötä suojellakseen Rauhan laaksoa Kameleontin liskonkynsiltä. Samalla Po myös ymmärtää, että sankareita voi löytyä odottamattomista paikoista.</p><p>Kung Fu Panda 4 -elokuvan on ohjannut Mike Mitchell (Trolls, Shrek ja ikuinen onni) ja tuottanut Rebecca Huntley (Hurja Jengi).</p><p>Elokuvassa puhutaan suomea.</p><p>Kesto 94 min<br>Ikäraja 7<br>Ensi-ilta 22.3.2024</p>",
                "sv": "<p>I vår, kommer komedi-ikonen Jack Black, för första gången på nästan ett årtionde, tillbaka i rollen som Po, världens mest osannolika kung fu-mästare, i ett roligt nytt kapitel i Dreamworks Animations älskade actionkomedi-franchise: Kung Fu Panda 4.</p><p>Efter att, i tre dödsföraktande äventyr, ha besegrat skurkar i världsklass med sitt oöverträffade mod och sina galna kampsportfärdigheter, uppmanar ödet Po, Drakkrigaren, att... ta och lugna ner sig lite. Mer specifikt, han är utvald att bli andlig ledare i Fredens Dal.</p><p>Det ställer till med ett par uppenbara problem. För det första, så vet Po lika mycket om andligt ledarskap som han gör om Paleo-dieten, och för det andra måste han snabbt hitta och träna upp en ny Drakkrigare innan han kan inta sin nya upphöjda position.</p><p>Övrigt: Ännu värre är att det nyligen dykt upp en elak, mäktig magiker; Kameleonten, en liten ödla som kan förvandla sig till vilken varelse som helst, stor som liten. Kameleonten håller sina giriga, pliriga små ögon på Pos Visdomens Stav, som skulle kunna ge henne kraften att återkalla alla de mästerskurkar som Po besegrat och skickat till andevärlden.</p><p>Så, Po kommer att behöva lite hjälp. Han hittar den (typ?) i form av den kvicka och listiga tjuven Zhen, en Korsakräv som verkligen tar sig in under pälsen på Po men vars färdigheter kommer att visa sig ovärderliga. För att skydda Fredens Dal från Kameleontens reptilklor måste denna komiska, udda duo samarbeta. Samtidigt kommer Po att upptäcka att hjältar kan finnas på de mest oväntade platserna.</p><p>Språk: finska</p><p>Längd 94 min <br>Åldersgräns 7 <br>Premiär 22 mars 2024</p>",
                "en": "<p>This spring, for the first time in almost a decade, comedy icon Jack Black returns to his role as Po, the world’s most unlikely kung fu master, with a hilarious, butt-kicking new chapter in DreamWorks Animation’s beloved action-comedy franchise: Kung Fu Panda 4.</p><p>After three death-defying adventures defeating world-class villains with his unmatched courage and mad martial arts skills, Po, the Dragon Warrior, is called upon by destiny to … give it a rest already. More specifically, he’s tapped to become the Spiritual Leader of the Valley of Peace.</p><p>That poses a couple of obvious problems. First, Po knows as much about spiritual leadership as he does about the paleo diet, and second, he needs to quickly find and train a new Dragon Warrior before he can assume his new lofty position.</p><p>Even worse, there’s been a recent sighting of a wicked, powerful sorceress, Chameleon, a tiny lizard who can shapeshift into any creature, large or small. And Chameleon has her greedy, beady little eyes on Po’s Staff of Wisdom, which would give her the power to re-summon all the master villains whom Po has vanquished to the spirit realm.</p><p>So, Po’s going to need some help. He finds it (kinda?) in the form of crafty, quick-witted thief Zhen, a corsac fox who really gets under Po’s fur but whose skills will prove invaluable. In their quest to protect the Valley of Peace from Chameleon’s reptilian claws, this comedic odd-couple duo will have to work together. In the process, Po will discover that heroes can be found in the most unexpected places.</p><p>Language: Finnish</p><p>Duration 94 min<br>Age rating 7 <br>Premiere March 22, 2024</p>"
            },
            "name": {
                "fi": "Kung Fu Panda 4 (7) – Kino Helios",
                "sv": "Kung Fu Panda 4 (7) – Kino Helios",
                "en": "Kung Fu Panda 4 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63403/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}