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

{
    "meta": {
        "count": 1655,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=31",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=29"
    },
    "data": [
        {
            "id": "kulke:65577",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 189616,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-03T12:13:47.672586Z",
                    "last_modified_time": "2025-02-03T12:13:47.672598Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759002.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189616/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-03T12:13:47.653106Z",
            "last_modified_time": "2025-02-07T11:13:08.133594Z",
            "date_published": null,
            "start_time": "2025-02-26T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3BAF2B68518C7C1289A030918C751589/A_Complete_Unknown_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3BAF2B68518C7C1289A030918C751589/A_Complete_Unknown_7_",
                "en": "http://www.malmitalo.fi/en/events/event/3BAF2B68518C7C1289A030918C751589/A_Complete_Unknown_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita.</p><p>Elokuvassa nähdään Dylanin rakettimainen nousu folklaulajasta isoihin konserttisaleihin ja listojen kärkeen sekä hänen laulujensa ja mystiikkansa muodostumista maailmanlaajuiseksi ilmiöksi, joka huipentuu hänen käänteentekevään esiintymiseensä vuoden 1965 Newportin folkfestivaaleilla rokkibändin ja sähköisten instrumenttien säestyksellä.</p><p>Ikäraja: 7<br>Kesto: 136 min.<br>Ensi-ilta: 7.2.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "short_description": {
                "fi": "60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita."
            },
            "location_extra_info": null,
            "name": {
                "fi": "A Complete Unknown (7) – Kino Helios",
                "sv": "A Complete Unknown (7) – Kino Helios",
                "en": "A Complete Unknown (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65577/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65574",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 189493,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-03T11:13:51.587173Z",
                    "last_modified_time": "2025-02-03T11:13:51.587188Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758999.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189493/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-03T11:13:51.570429Z",
            "last_modified_time": "2025-02-07T11:13:07.659554Z",
            "date_published": null,
            "start_time": "2025-02-22T16: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F1B8B77833487869AAAEBAB6088D2D63/Bridget_Jones_Mad_About_the_Boy_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F1B8B77833487869AAAEBAB6088D2D63/Bridget_Jones_Mad_About_the_Boy_7_",
                "en": "http://www.malmitalo.fi/en/events/event/F1B8B77833487869AAAEBAB6088D2D63/Bridget_Jones_Mad_About_the_Boy_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kaksinkertainen Oscar®-voittaja Renée Zellweger palaa rooliin, joka loi romanttisen komedian ikimuistoisen sankarittaren, Bridget Jonesin.</p><p>Bridget Jones valloitti kirjahyllyt Helen Fieldingin ilmiöksi nousseessa romaanissa Bridget Jones – elämäni sinkkuna, josta tuli maailmanlaajuinen bestseller ja menestyselokuva. Lontoossa asuva ja uraa luova sinkkunainen Bridget käänsi vastoinkäymiset voitokseen ja pääsi viimein naimisiin huippuasianajaja Mark Darcyn kanssa ja heidän poikavauvansa äidiksi. Onni koitti vihdoinkin.</p><p>Mutta elokuvassa Bridget Jones: Mad About the Boy Bridget on jälleen kerran yksin. Hän on jäänyt leskeksi neljä vuotta sitten Markin saatua surmansa hyväntekeväisyystyössä Sudanissa. Nyt hän on 9-vuotiaan Billyn ja 4-vuotiaan Mabelin yksinhuoltajaäiti, jonka tunne-elämä on jumissa eräänlaisessa limbossa ja joka kasvattaa lapsiaan uskollisten ystävien ja jopa entisen rakastajansa Daniel Cleaverin (Hugh Grant) tuella.</p><p>Kaikki painostavat Bridgetiä avaamaan uudelleen oven elämään ja rakkauteen: läheiset ystävät Shazzer, Jude ja Tom, työkaveri Miranda, oma äiti - ja jopa hänen gynekologinsa tohtori Rawlings (Oscar®-voittaja Emma Thompson). Bridget palaa töihin ja rekisteröityy deittisovellukseen, saaden kannoilleen komean ja innokkaan nuorukaisen (White Lotusista tuttu Leo Woodall). Taiteillessaan työn, kodin ja romanssin välillä Bridget kohtaa arvostelua lasten koulukavereiden täydellisten äitien taholta, huolehtii Billystä tämän surressa isänsä poismenoa ja joutuu noloihin tilanteisiin poikansa pätemisenhaluisen opettajan (Oscar®-ehdokas Chiwetel Ejiofor) kanssa.</p><p>Elokuvan Bridget Jones: Mad About the Boy on ohjannut Michael Morris (To Leslie, Better Call Saul) ja käsikirjoittanut BAFTA-ehdokas Helen Fielding oman romaaninsa pohjalta, yhteistyökumppaneinaan Emmy-voittaja Abi Morgan (Rautarouva, Eric) ja Oscar®-ehdokas Dan Mazer (I Give It a Year, Bridget Jones’s Baby).</p><p>Ikäraja: 7<br>Kesto: 125 min.<br>Ensi-ilta: 14.2.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "short_description": {
                "fi": "Kaksinkertainen Oscar®-voittaja Renée Zellweger palaa rooliin, joka loi romanttisen komedian ikimuistoisen sankarittaren, Bridget Jonesin."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Bridget Jones: Mad About the Boy (7) – Kino Helios",
                "sv": "Bridget Jones: Mad About the Boy (7) – Kino Helios",
                "en": "Bridget Jones: Mad About the Boy (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65574/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65576",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-a-complete-unknown-3827180/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 189614,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-03T12:13:46.860179Z",
                    "last_modified_time": "2025-02-03T12:13:46.860191Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758996.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189614/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-03T12:13:46.836829Z",
            "last_modified_time": "2025-02-07T11:13:07.367467Z",
            "date_published": null,
            "start_time": "2025-02-21T16: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B60DCC438805420BC507C7C87F6EA27D/A_Complete_Unknown_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B60DCC438805420BC507C7C87F6EA27D/A_Complete_Unknown_7_",
                "en": "http://www.malmitalo.fi/en/events/event/B60DCC438805420BC507C7C87F6EA27D/A_Complete_Unknown_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita.</p><p>Elokuvassa nähdään Dylanin rakettimainen nousu folklaulajasta isoihin konserttisaleihin ja listojen kärkeen sekä hänen laulujensa ja mystiikkansa muodostumista maailmanlaajuiseksi ilmiöksi, joka huipentuu hänen käänteentekevään esiintymiseensä vuoden 1965 Newportin folkfestivaaleilla rokkibändin ja sähköisten instrumenttien säestyksellä.</p><p>Ikäraja: 7<br>Kesto: 136 min.<br>Ensi-ilta: 7.2.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "short_description": {
                "fi": "60-luvun New Yorkin vaikutusvaltaiseen musiikkiskeneen sijoittuva elokuva seuraa 19-vuotiaan muusikon Bob Dylanin (Timothée Chalamet) uran alkuvaiheita."
            },
            "location_extra_info": null,
            "name": {
                "fi": "A Complete Unknown (7) – Kino Helios",
                "sv": "A Complete Unknown (7) – Kino Helios",
                "en": "A Complete Unknown (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65576/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65573",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-bridget-jones-mad-about-the-boy-3827166/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 189491,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-03T11:13:49.762802Z",
                    "last_modified_time": "2025-02-03T11:13:49.762815Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758987.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189491/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-03T11:13:49.747178Z",
            "last_modified_time": "2025-02-07T11:13:05.886544Z",
            "date_published": null,
            "start_time": "2025-02-14T16: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6FCF875B855BDA0927D5209DE48E8286/Bridget_Jones_Mad_About_the_Boy_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6FCF875B855BDA0927D5209DE48E8286/Bridget_Jones_Mad_About_the_Boy_7_",
                "en": "http://www.malmitalo.fi/en/events/event/6FCF875B855BDA0927D5209DE48E8286/Bridget_Jones_Mad_About_the_Boy_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kaksinkertainen Oscar®-voittaja Renée Zellweger palaa rooliin, joka loi romanttisen komedian ikimuistoisen sankarittaren, Bridget Jonesin.</p><p>Bridget Jones valloitti kirjahyllyt Helen Fieldingin ilmiöksi nousseessa romaanissa Bridget Jones – elämäni sinkkuna, josta tuli maailmanlaajuinen bestseller ja menestyselokuva. Lontoossa asuva ja uraa luova sinkkunainen Bridget käänsi vastoinkäymiset voitokseen ja pääsi viimein naimisiin huippuasianajaja Mark Darcyn kanssa ja heidän poikavauvansa äidiksi. Onni koitti vihdoinkin.</p><p>Mutta elokuvassa Bridget Jones: Mad About the Boy Bridget on jälleen kerran yksin. Hän on jäänyt leskeksi neljä vuotta sitten Markin saatua surmansa hyväntekeväisyystyössä Sudanissa. Nyt hän on 9-vuotiaan Billyn ja 4-vuotiaan Mabelin yksinhuoltajaäiti, jonka tunne-elämä on jumissa eräänlaisessa limbossa ja joka kasvattaa lapsiaan uskollisten ystävien ja jopa entisen rakastajansa Daniel Cleaverin (Hugh Grant) tuella.</p><p>Kaikki painostavat Bridgetiä avaamaan uudelleen oven elämään ja rakkauteen: läheiset ystävät Shazzer, Jude ja Tom, työkaveri Miranda, oma äiti - ja jopa hänen gynekologinsa tohtori Rawlings (Oscar®-voittaja Emma Thompson). Bridget palaa töihin ja rekisteröityy deittisovellukseen, saaden kannoilleen komean ja innokkaan nuorukaisen (White Lotusista tuttu Leo Woodall). Taiteillessaan työn, kodin ja romanssin välillä Bridget kohtaa arvostelua lasten koulukavereiden täydellisten äitien taholta, huolehtii Billystä tämän surressa isänsä poismenoa ja joutuu noloihin tilanteisiin poikansa pätemisenhaluisen opettajan (Oscar®-ehdokas Chiwetel Ejiofor) kanssa.</p><p>Elokuvan Bridget Jones: Mad About the Boy on ohjannut Michael Morris (To Leslie, Better Call Saul) ja käsikirjoittanut BAFTA-ehdokas Helen Fielding oman romaaninsa pohjalta, yhteistyökumppaneinaan Emmy-voittaja Abi Morgan (Rautarouva, Eric) ja Oscar®-ehdokas Dan Mazer (I Give It a Year, Bridget Jones’s Baby).</p><p>Ikäraja: 7<br>Kesto: 125 min.<br>Ensi-ilta: 14.2.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "short_description": {
                "fi": "Kaksinkertainen Oscar®-voittaja Renée Zellweger palaa rooliin, joka loi romanttisen komedian ikimuistoisen sankarittaren, Bridget Jonesin."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Bridget Jones: Mad About the Boy (7) – Kino Helios",
                "sv": "Bridget Jones: Mad About the Boy (7) – Kino Helios",
                "en": "Bridget Jones: Mad About the Boy (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65573/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64730",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmijazz/malmijazz-dalindeo-3755419/",
                        "sv": "https://www.lippu.fi/artist/malmijazz/malmijazz-dalindeo-3755419/",
                        "en": "https://www.lippu.fi/artist/malmijazz/malmijazz-dalindeo-3755419/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152909,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-30T11:15:06.782314Z",
                    "last_modified_time": "2024-10-30T11:15:06.782330Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759366.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152909/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-30T11:15:06.732752Z",
            "last_modified_time": "2025-02-06T13:14:20.683620Z",
            "date_published": null,
            "start_time": "2025-02-06T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C0EBC02FC4667611DE934EE49F3EB496/Dalind_o_LOPPUUNMYYTY_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C0EBC02FC4667611DE934EE49F3EB496/Dalind_o_UTSALD_",
                "en": "http://www.malmitalo.fi/en/events/event/C0EBC02FC4667611DE934EE49F3EB496/Dalind_o_SOLD_OUT_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kulttiyhtye Dalindèo julkaisi vuonna 2024 kuudennen albuminsa Tropicalia Nordica. Albumin musiikki on rajatonta, energistä, viihdyttävää ja psykedeelistä rautalanka-jazzia Emma-palkitun Kallio-levyn tyyliin.</p><p>”Tämä on meidän tähän asti modernein ja energisin levy ja musiikki on ihan täyttä Dalindèoa mutta uusilla, kiehtovilla mausteilla. Kyseessä on postmoderni surf-jazz-levy maasta, jossa ei voi surffata!”, kertoo bändiliideri <b>Valtteri Laurell Pöyhönen.</b></p><p>Levyn on tuottanut Pöyhösen kanssa <b>Olli Palmunen</b>, joka on työskennellyt mm. <b>Karri Koiran</b> ja <b>Yeboyahin</b> kanssa. Palmusen näkemyksen ja miksausten ansiosta Tropicalia Nordican soundi on parhaalla mahdollisella tavalla \"tätä päivää\" ja silti ajatonta ja eeppistä.</p><p>Säveltäjä-kitaristi Valtterin Laurell Pöyhösen vuonna 2004 perustama Dalindèo-sekstetti on yksi pitkäikäisimpiä kotimaisia jazz-yhtyeitä. Yli 200 konsertin kokemuksella Dalindèo tunnetaan räjähtävänä ja viihdyttävänä live-yhtyeenä, jonka fanikunta on laajentunut huomattavasti perinteisen jazz-yleisön ulkopuolelle.</p><p><b>Kokoonpano</b><br>Valtteri Laurell Pöyhönen: sähkökitara ja sävellykset <br>Jose Mäenpää: trumpetti ja koskettimet <br>Pope Puolitaival: tenorisaksofoni <br>Pekka Lehti: kontrabasso <br>Rasmus Pailos: lyömäsoittimet <br>Jaska Lukkarinen: rummut<br> <br><b>MalmiJazz</b> tarjoilee monipuolisesti jazz-musiikin eri tyylilajeja ensiluokkaisessa konserttisaliympäristössä. Nouseva, numeroitu katsomo tarjoaa jokaiselle konserttivieraalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Malmisalin erinomaiset akustiset, äänentoistolliset ja valaistukselliset puitteet takaavat laadukkaan keikkaelämyksen.</p><p>Kesto: 2 h, sisältää 20 min. väliajan</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-19738760/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Kultbandet Dalindèo hämtar underhållande, psykedelisk och Emma-belönad ståltrådsjazz till Malms kulturhus.</p><p>År 2024 släppte bandet sitt sjätte album Tropicalia Nordica. Albumets musik är gränslös, energisk, underhållande och psykedelisk ståltrådsjazz i stil med det Emma-belönade Kallio-albumet.</p><p>“Detta är vårt hittills modernaste och mest energiska album, och musiken är Dalindèo för fullt men med nya, fascinerande kryddor. Det handlar om ett postmodernt surf-jazz-album från ett land där det inte går att surfa!”, berättar bandledaren Valtteri Laurell Pöyhönen. <br>Olli Palmunen som bland annat har jobbat med Karri Koira och Yeboyah har producerat albumet tillsammans med Pöyhönen. Tack vare Palmunens vision och mixning är Tropicalia Nordicas sound “helt i tiden” på bästa möjliga sätt, och ändå tidlöst och episkt.</p><p>Dalindèo-sextetten som grundades av kompositören och gitarristen Valtteri Laurell Pöyhönen år 2004 är ett av de mest långlivade inhemska jazzbanden. Med en erfarenhet på över 200 konserter är Dalindèo känt som ett explosivt och underhållande liveband, vars fankrets har utvidgats märkbart utöver den traditionella jazzpubliken.</p><p><b>Ensemble</b><br>Valtteri Laurell Pöyhönen: elgitarr och kompositioner <br>Jose Mäenpää: trumpet och keyboard <br>Pope Puolitaival: tenorsaxofon <br>Pekka Lehti: kontrabas <br>Rasmus Pailos: slagverk <br>Jaska Lukkarinen: trummor<br> <br>MalmiJazz bjuder på ett brett utbud av jazzmusikens stilarter i en förstklassig konserthusmiljö. Den upphöjningsbara, numrerade läktaren erbjuder varje konsertbesökare en bekväm sittplats och en bra utsikt över scenen. De utmärkta akustik-, ljudåtergivnings- och ljusförhållandena i Malmsalen garanterar en konsertupplevelse av hög kvalitet.</p><p>Längd: 2 timmar, inklusive en paus på 20 min.</p>",
                "en": "<p>Cult band Dalindèo will bring their entertaining, psychedelic, and Emma Award-winning electric-guitar-driven (rautalanka) jazz to Malmitalo.</p><p>In 2024, the band released their sixth album, Tropicalia Nordica. The music on the album is unbounded, energetic, entertaining and psychedelic instrumental jazz in the style of their Emma Award-winning Kallio album.</p><p>“This is our most modern and energetic album yet. The music is pure Dalindèo, but with new, exciting flavours. It’s a postmodern surf-jazz record from a country where you can’t actually surf!” says band leader Valtteri Laurell Pöyhönen. <br>Pöyhönen produced the album with Olli Palmunen, who has worked with Karri Koira and Yeboyah, among others. Thanks to Palmunen’s vision and mixing, Tropicalia Nordica’s sound is that of “today” in the best possible sense, yet still timeless and epic.</p><p>Founded in 2004 by composer-guitarist Valtteri Laurell Pöyhönen, the Dalindèo sextet is one of the longest-lived Finnish jazz bands. With over 200 concerts under their belt, Dalindèo are known as an explosive and entertaining live band whose fan base has expanded well beyond the traditional jazz audience.</p><p><b>Ensemble:</b><br>Valtteri Laurell Pöyhönen: electric guitar and compositions <br>Jose Mäenpää: trumpet and keyboards <br>Pope Puolitaival: tenor saxophone <br>Pekka Lehti: upright bass <br>Rasmus Pailos: percussion instruments <br>Jaska Lukkarinen: drums<br> <br>MalmiJazz provides a wide range of jazz music genres in a first-class concert hall environment. The ascending, numbered auditorium provides each concert guest with their own comfortable seat and a good view of the stage. The excellent acoustic, sound and lighting equipment of Malmisali guarantee a high-quality concert experience.</p><p>Duration: 2 hours, including a 20 min intermission</p>"
            },
            "short_description": {
                "fi": "Kulttiyhtye Dalindèo julkaisi vuonna 2024 kuudennen albuminsa Tropicalia Nordica. Albumin musiikki on rajatonta, energistä, viihdyttävää ja psykedeelistä rautalanka-jazzia Emma-palkitun Kallio-levyn tyyliin.",
                "sv": "Kultbandet Dalindèo hämtar underhållande, psykedelisk och Emma-belönad ståltrådsjazz till Malms kulturhus.",
                "en": "Cult band Dalindèo will bring their entertaining, psychedelic, and Emma Award-winning electric-guitar-driven (rautalanka) jazz to Malmitalo."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Dalindèo (LOPPUUNMYYTY) – MalmiJazz",
                "sv": "Dalindèo (UTSÅLD) – MalmiJazz",
                "en": "Dalindèo (SOLD OUT) – MalmiJazz"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64730/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65467",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/lauluyhtye-chime/",
                        "sv": "https://www.lippu.fi/artist/lauluyhtye-chime/",
                        "en": "https://www.lippu.fi/artist/lauluyhtye-chime/"
                    },
                    "price": {
                        "fi": "18,30 € / 16,30 €",
                        "sv": "18,30 € / 16,30 €",
                        "en": "18,30 € / 16,30 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 195649,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-05T14:14:36.466371Z",
                    "last_modified_time": "2025-02-05T14:14:36.466393Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764870.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/195649/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-05T14:14:36.418154Z",
            "last_modified_time": "2025-02-05T14:14:36.554211Z",
            "date_published": null,
            "start_time": "2025-03-22T16: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/50376E5C95A3E27452A9F9FF0FEC476F/Lauluyhtye_Chime_Tilaa_Hengittaa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/50376E5C95A3E27452A9F9FF0FEC476F/Sanggruppen_Chime_Tilaa_Hengittaa_Utrymme_att_andas_",
                "en": "http://www.malmitalo.fi/en/events/event/50376E5C95A3E27452A9F9FF0FEC476F/Vocal_group_Chime_Space_to_Breathe"
            },
            "provider": null,
            "description": {
                "fi": "<p>Milloin olet viimeksi ottanut hetken itsellesi, hengittänyt syvään ja ollut rauhassa?</p><p>Se hetki, jolloin unohdat vaatimukset ja otat hetken vain itsellesi, on luksusta keskellä kiireistä elämää. Tule kuulemaan, kun Lauluyhtye Chime luo jokaiselle tilaa hengittää.<br> <br>Lauluyhtye Chime on parinkymmenen naisen show. Chime tulkitsee uutta ja vanhaa popmusiikkia ja elävöittää esitystään koreografioilla. Konsertissa kuullaan a cappella -sovituksia mm. Haloo Helsingin, Miley Cyrusin, Coldplayn ja Antti Tuiskun tunnetuksi tekemistä kappaleista.</p><p>Kesto 1h 15min</p>",
                "sv": "<p>När tog du senast en stund för dig själv, andades djupt och fick vara i lugn och ro?</p><p>Den stunden då du glömmer alla krav och tar en stund för sig själv är lyx mitt i en hektisk vardag. Kom och lyssna när sånggruppen Chime skapar utrymme för alla att andas.<br> <br>Sånggruppen Chime är en show med tjugo kvinnor. Chime tolkar ny och gammal popmusik och förgyller sina framträdanden med koreografier. På konserten får vi höra a cappella-arrangemang av låtar som gjorts kända av bland annat Haloo Helsinki, Miley Cyrus, Coldplay och Antti Tuisku.</p><p>Längd 1h 15min.</p>",
                "en": "<p>When was the last time you took a moment for yourself, took a deep breath and stayed calm?</p><p>The moment you forget all demands and take a moment just for yourself is a luxury in the midst of a hectic life. Come and hear how Chime creates space for everyone to breathe.<br> <br>Vocal group Chime is a show of about twenty women. Chime interprets new and old pop music and enlivens their performance with choreography. The concert will feature a cappella arrangements of songs made famous by Haloo Helsinki, Miley Cyrus, Coldplay and Antti Tuisku, among others.</p><p>Duration 1 hr. 15 mins.</p>"
            },
            "short_description": {
                "fi": "Milloin olet viimeksi ottanut hetken itsellesi, hengittänyt syvään ja ollut rauhassa?",
                "sv": "När tog du senast en stund för dig själv, andades djupt och fick vara i lugn och ro?",
                "en": "When was the last time you took a moment for yourself, took a deep breath and stayed calm?"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Lauluyhtye Chime – Tilaa Hengittää",
                "sv": "Sånggruppen Chime – Tilaa Hengittää (Utrymme att andas)",
                "en": "Vocal group Chime – Space to Breathe"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65467/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65539",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://nukketeatterisampo.fi/esityskalenteri/",
                        "sv": "https://nukketeatterisampo.fi/esityskalenteri/",
                        "en": "https://nukketeatterisampo.fi/esityskalenteri/"
                    },
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 176801,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-29T12:14:39.480363Z",
                    "last_modified_time": "2025-01-29T12:14:39.480376Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765062.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/176801/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-01-29T12:14:39.447169Z",
            "last_modified_time": "2025-02-05T14:14:31.305496Z",
            "date_published": null,
            "start_time": "2025-03-06T08: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/60D7FD7F09C2340056F08E0FABD3C0C7/Nukketeatteri_Sampo_Sirkus_Sampo",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/60D7FD7F09C2340056F08E0FABD3C0C7/Nukketeatteri_Sampo_Sirkus_Sampo",
                "en": "http://www.malmitalo.fi/en/events/event/60D7FD7F09C2340056F08E0FABD3C0C7/Nukketeatteri_Sampo_Sirkus_Sampo"
            },
            "provider": null,
            "description": {
                "fi": "<p>Nukketeatteri Sampon sirkuksessa marionetit heräävät eloon ja täyttävät estradin musiikilla, laululla ja nukketeatterin taialla.</p><p>Esiintyjäkaartissa nähdään taitavia veitsenheittäjiä, huimia pyörätaitureita, uskomattoman akrobaattisia koiria ja ehkä siellä häivähtää haamukin… Tervetuloa lumoutumaan Sampon satumaisesta maailmasta! Esitys esittelee erilaisia marionetteja, Sampon tapaan elävän musiikin säestyksellä.<br> <br>Suunnittelu, ohjaus: Iivo Barić<br>Valosuunnittelu: Immanuel Pax<br>Puvustus: Kristiina Jokinen<br>Kuvat & video: Nikke Puskala</p><p>Kesto: 30 min<br>Ikäsuositus: Esitys sopii kaikenikäisille<br>Kieli: sanaton</p><p>Liput 9 €. Ohjaajat 1 €.</p><p>Helsingin kaupungin työntekijät ryhmiä ohjatessa maksutta.</p><p>Varaukset toimisto@nukketeatterisampo.fi, 020 735 2235.<br>Ennakkoliput https://nukketeatterisampo.fi/esityskalenteri/</p>",
                "sv": "<p>I dockteatern Sampos cirkus vaknar marionetterna till liv och fyller estraden med musik, sång och dockteaterns magi.</p><p>artistuppställningen får vi se skickliga knivkastare, hisnande cykelkonstnärer, otroligt akrobatiska hundar och kanske även skymtar av ett spöke... Välkommen att förtrollas av Sampos sagolika värld! Föreställningen presenterar olika marionetter till ackompanjemang av levande musik i Sampos stil.<br> <br>Design, regi: Iivo Barić<br>Ljusdesign: Immanuel Pax<br>Kostymdesign: Kristiina Jokinen<br>Bilder & video: Nikke Puskala</p><p>Längd: 30 min.<br>Åldersrekommendation: Föreställningen är lämplig för alla åldrar<br>Inget språk</p><p>Biljetter 9 €. Handledare 1 €. Helsingfors stads anställda med grupper avgiftsfritt.<br>Bokningar toimisto@nukketeatterisampo.fi, 020 735 2235.<br>Förhandsbiljetter: https://nukketeatterisampo.fi/esityskalenteri/</p>",
                "en": "<p>In the Sampo Puppet Theatre Circus, marionettes come to life and fill the stage with music, singing and the magic of puppet theatre.</p><p>The list of performers includes skilled knife throwers, amazing cyclists, incredibly acrobatic dogs and maybe even a ghost... Come and be enchanted by Sampo’s fairytale world! The show features a variety of marionettes, accompanied by live music, just like Sampo.<br> <br>Designed, directed by: Iivo Barić<br>Lighting design: Immanuel Pax<br>Costumes: Kristiina Jokinen<br>Images & video: Nikke Puskala</p><p>Duration: 30 min<br>Age recommendation: Suitable for all ages!<br>Language: non-verbal</p><p>Tickets: €9. Instructors €1. The employees of the City of Helsinki free of charge when guiding groups.<br>Reservations toimisto@nukketeatterisampo.fi, +358 20 735 2235.<br>Advance tickets: https://nukketeatterisampo.fi/esityskalenteri/</p>"
            },
            "short_description": {
                "fi": "Nukketeatteri Sampon sirkuksessa marionetit heräävät eloon ja täyttävät estradin musiikilla, laululla ja nukketeatterin taialla.",
                "sv": "I dockteatern Sampos cirkus vaknar marionetterna till liv och fyller estraden med musik, sång och dockteaterns magi.",
                "en": "In the Sampo Puppet Theatre Circus, marionettes come to life and fill the stage with music, singing and the magic of puppet theatre."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Nukketeatteri Sampo: Sirkus Sampo",
                "sv": "Nukketeatteri Sampo: Sirkus Sampo",
                "en": "Nukketeatteri Sampo: Sirkus Sampo"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65539/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65541",
            "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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 174580,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-28T12:14:25.710571Z",
                    "last_modified_time": "2025-01-28T12:14:25.710589Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765090.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/174580/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-28T12:14:25.661063Z",
            "last_modified_time": "2025-02-05T14:14:19.747309Z",
            "date_published": null,
            "start_time": "2025-01-30",
            "end_time": "2025-02-22",
            "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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/582441D0B243014C9C22F154CA31F7CD/Laura_Ilvessalo_Varidialogit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/582441D0B243014C9C22F154CA31F7CD/Laura_Ilvessalo_Varidialogit_Fargdialoger_",
                "en": "http://www.malmitalo.fi/en/events/event/582441D0B243014C9C22F154CA31F7CD/Laura_Ilvessalo_Colour_dialogues"
            },
            "provider": null,
            "description": {
                "fi": "<p>Helsinkiläisen kuvataiteilija ja tekstiilisuunnittelija Laura Ilvessalon Väridialogit-näyttely kutsuu yleisön pohtimaan värien yhteyksiä.</p><p>Ilvessalo tutkii öljyvärimaalauksissaan värien ilmaisullisia suhteita, jotka syntyvät, kun yhden värin eri sävyt vuorovaikuttavat, riitelevät ja täydentävät toisiaan.</p><p>Teosten värit ja teemat haastavat ajattelemaan, kuinka erilaiset kulttuuriset, emotionaaliset ja henkilökohtaiset väritulkinnat muokkaavat ymmärrystämme visuaalisesta kielestä. Jokainen teos yksivärisenä, meditatiivisena kokonaisuutena toimii ainutlaatuisena dialogina ja myötävaikuttaa laajempaan kokemukseen värin voimasta herätellä, inspiroida ja provosoida.</p><p>Kun liikut tilassa, pidä itseäsi näiden kromaattisten keskustelujen osallistujana. Mitkä värit puhuttelevat sinua ja mitä tarinoita ne kertovat?</p><p>Vapaa pääsy</p>",
                "sv": "<p>Den Helsingforsbaserade bildkonstnären och textildesignern Laura Ilvessalos utställning Färgdialoger bjuder in allmänheten att reflektera över sambanden mellan färger.</p><p>I sina oljemålningar utforskar Ilvessalo de uttrycksfulla relationer mellan färger som uppstår när olika nyanser av en färg interagerar, argumenterar och kompletterar varandra.</p><p>Verkens färger och teman utmanar oss att fundera över hur olika kulturella, känslomässiga och personliga tolkningar av färg formar vår förståelse av det visuella språket. Som en enfärgad, meditativ helhet, fungerar varje verk som en unik dialog och bidrar till en bredare upplevelse av färgens kraft att väcka, inspirera och provocera.</p><p>När du rör dig i utrymmet kan du betrakta dig själv som en deltagare i dessa kromatiska konversationer. Vilka färger tilltalar dig och vilka historier berättar de?</p>",
                "en": "<p>Helsinki-based visual artist and textile designer Laura Ilvessalo’s Colour Dialogues exhibition invites the audience to reflect on the connections between colours.</p><p>In her oil paintings, Ilvessalo studies the expressive relationships of colours that arise when different shades of one colour interact, contradict and complement each other.</p><p>The colours and themes of the works challenge us to think about how different cultural, emotional and personal colour interpretations shape our understanding of visual language. As a monochrome, meditative whole, each work serves as a unique dialogue and contributes to a wider experience of the power of colour to awaken, inspire and provoke.</p><p>As you move around the space, consider yourself a participant in these chromatic conversations. What colours speak to you and what stories do they tell?</p>"
            },
            "short_description": {
                "fi": "Helsinkiläisen kuvataiteilija ja tekstiilisuunnittelija Laura Ilvessalon Väridialogit-näyttely kutsuu yleisön pohtimaan värien yhteyksiä.",
                "sv": "Den Helsingforsbaserade bildkonstnären och textildesignern Laura Ilvessalos utställning Färgdialoger bjuder in allmänheten att reflektera över sambanden mellan färger.",
                "en": "Helsinki-based visual artist and textile designer Laura Ilvessalo’s Colour Dialogues exhibition invites the audience to reflect on the connections between colours."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Laura Ilvessalo: Väridialogit",
                "sv": "Laura Ilvessalo: Väridialogit (Färgdialoger)",
                "en": "Laura Ilvessalo: Colour dialogues"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65541/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64828",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-19422523/",
                        "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-19422523/",
                        "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-19422523/"
                    },
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153541,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T14:13:59.410242Z",
                    "last_modified_time": "2024-12-27T14:13:59.410256Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760386.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153541/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T14:13:59.383350Z",
            "last_modified_time": "2025-02-03T13:14:29.282763Z",
            "date_published": null,
            "start_time": "2025-02-26T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CAB2C61A016F20112463A40908697FE6/LOPPUUNMYYTY_The_Slippers",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CAB2C61A016F20112463A40908697FE6/SLUTSALD_The_Slippers",
                "en": "http://www.malmitalo.fi/en/events/event/CAB2C61A016F20112463A40908697FE6/SOLD_OUT_The_Slippers"
            },
            "provider": null,
            "description": {
                "fi": "<p>Legendaarinen rockabillyorkesteri The Slippers perustettiin Helsingin Jakomäessä vuonna 1977.</p><p>Pari vuotta myöhemmin Agents-kitaristi Esa Pulliainen istui erään bändikisan tuomaristossa ja riehaantui skabaan osallistuneesta kvartetista siinä määrin, että tarjoutui heidän tuottajakseen. Tuloksena oli kolme singleä, EP, “Chance To Dance\" ja LP:t \"The Slippers\" ja \"Ubangi Stomp\" Johanna-yhtiölle.</p><p>Vuosien 1979 ja 1982 välillä rockabilly-musiikille löytyi runsaasti yleisöä. The Slippers kierteli Suomea ristiin rastiin ja esiintyi lähes joka viikonloppu. Armeija vei osan jengistä 1982 ja toiminta hiljeni pitkäksi aikaa.</p><p>Vuonna 1997 bändi polkaistiin uudelleen käyntiin. Alkuperäisjäsenten Keijo Siuruaisen, Klaus Sihvosen ja Timo Pfalerin mukaan kitaristiksi ja toiseksi laulajaksi liittyi Melrose-yhtyeen nokkamies Tokela, itsekin armoitettu billyniska. Hän oli tutustunut The Slippersin poikiin jo teininä Länsimäen nuorisotalolla, kun bändi oli vielä alkutekijöissään. Seurauksena tästä Goofin’ Recordsille levytetty CD \"Broken Bones\". Myöhemmin Pfaler vetäytyi kokoonpanosta ja orkesteri jatkoi tehokkaana triona, joka teki täsmäiskuja rockabilly-tapahtumiin Suomessa ja Pohjoismaissa.</p><p>2006 kokoonpanoon tuli mukaan mm. Kauko Röyhkän, Tuomari Nurmion ja J. Karjalaisen kanssa kitaristina aiemmin toiminut Tommi Viksten, itsekin Slippers-fani ensiaskeleista lähtien.</p><p>Uudessa kvartetissa on kolme laulunsolistia: Keke Siuruainen laulaa rumpalin pallilta valtaosan biiseistä, Tokela ja Viksten tuikkaavat omat numeronsa väliin heti kun aika on sopiva ja Klade Sihvonen palauttaa kontrabassollaan kokonaisuuden tiukaksi paketiksi.</p><p>Kesto: 1 t 45 min, sis. 20 min. väliajan</p>",
                "sv": "<p>Den legendariska rockabillyorkestern The Slippers grundades i Jakobacka i Helsingfors år 1977.</p><p>Några år senare satt Agents-gitarristen Esa Pulliainen med i juryn för en bandtävling, och blev så inspirerad över den kvartett som deltog i tävlingen att han erbjöd sig att bli deras producent. Detta resulterade i tre singlar, EP, “Chance to Dance” och LP-skivorna “The Slippers” och “Ubangi Stomp” för bolaget Johanna.</p><p>Mellan åren 1979 och 1982 fanns det rikligt med publik för rockabillymusik. The Slippers åkte kors och tvärs runt Finland, och framträdde nästan varje veckoslut. Armén tog en del av gänget år 1982, och verksamheten tystnade för en lång tid.</p><p>År 1997 körde bandet igång på nytt. De ursprungliga medlemmarna Keijo Siuruainen, Klaus Sihvonen ja Timo Pfaler fick sällskap av frontfiguren i bandet Melrose, Tokela, också en benådad rockabilly. Han kom med som gitarrist och andra sångare. Han hade lärt känna pojkarna i The Slippers redan som tonåring på Västerkulla ungdomsgård, då bandet ännu var färskt. Detta resulterade i CD:n “Broken Bones” som spelades in på Goofin’ Records. Senare lämnade Pfaler ensemblen. Orkestern fortsatte som en effektiv trio och gjorde riktade insatser på rockabillyevenemang i Finland och de nordiska länderna.</p><p>År 2006 anslöt sig Tommi Viksten till ensemblen. Han hade tidigare verkat som gitarrist med bland annat Kauko Röyhkä, Tuomari Nurmio och J. Karjalainen och var själv en Slippers-fan från första början.</p><p>Den nya kvartetten har tre sångsolister: Keke Siuruainen sjunger den största delen av låtarna från trummispallen, Tokela och Viksten petar in sina nummer alltid när det passar, och Klade Sihvonen paketerar helheten snyggt med sin kontrabas.</p><p>Längd: 1 t 45 min., inklusive en paus på 20 minuter</p>",
                "en": "<p>The legendary rockabilly band The Slippers was founded in 1977 in Jakomäki, Helsinki.</p><p>A couple of years later, Agents guitarist Esa Pulliainen sat on the jury of a band competition and was so impressed by the participating quartet that he offered to produce them. The result was three singles, an EP, Chance To Dance, and the LPs, The Slippers and Ubangi Stomp, for the Johanna label.</p><p>Between 1979 and 1982, rockabilly music attracted a large audience. The Slippers toured across Finland and performed almost every weekend. The army conscripted part of the band in 1982 and their activity stopped for a long time.</p><p>In 1997, the band started up again. The original members Keijo Siuruainen, Klaus Sihvonen, and Timo Pfaler were joined on guitar and second vocals by Melrose frontman Tokela, a gifted rockabilly artist himself. He had already been introduced to The Slippers boys as a teenager at the Länsimäki Youth Centre, when the band was still in its infancy. This led to the release of the Broken Bones CD on Goofin’ Records. Later, Pfaler withdrew from the line-up, and the band continued as a tight trio, making calculated appearances at rockabilly events in Finland and the Nordic countries.</p><p>In 2006, Tommi Viksten – himself a Slippers fan from the very beginning – joined the band. He had previously played guitar for Kauko Röyhkä, Tuomari Nurmio and J. Karjalainen.</p><p>The new quartet features three vocal soloists: Keke Siuruainen sings most of the songs from behind the drums, Tokela and Viksten throw in their parts when the time is right, and Klade Sihvonen wraps the whole thing up in a neat package with his upright bass.</p><p>Duration: 1 h 45 min, incl. 20 min intermission</p>"
            },
            "short_description": {
                "fi": "Legendaarinen rockabillyorkesteri The Slippers perustettiin Helsingin Jakomäessä vuonna 1977.",
                "sv": "Den legendariska rockabillyorkestern The Slippers grundades i Jakobacka i Helsingfors år 1977.",
                "en": "The legendary rockabilly band The Slippers was founded in 1977 in Jakomäki, Helsinki."
            },
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY The Slippers – Roots-musiikin evoluutio vol. 8",
                "sv": "SLUTSÅLD The Slippers – Rootsmusikens evolution vol. 8",
                "en": "SOLD OUT The Slippers – Evolution of Roots Music, Vol. 8"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64828/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65551",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 176797,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-29T12:14:32.825016Z",
                    "last_modified_time": "2025-01-29T12:14:32.825031Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758983.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/176797/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-29T12:14:32.792847Z",
            "last_modified_time": "2025-01-29T13:15:05.879182Z",
            "date_published": null,
            "start_time": "2025-02-12T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BF86CD789A65EA1FF6361562C684E64E/Ei_koskaan_yksin_12_Q_A_ohjaaja_Klaus_Haron_kanssa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BF86CD789A65EA1FF6361562C684E64E/Ei_koskaan_yksin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/BF86CD789A65EA1FF6361562C684E64E/Ei_koskaan_yksin_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun.</p><p>Ei koskaan yksin on koskettava kertomus toisen maailmansodan synkistä vuosista, jolloin Eurooppa horjui kaaoksen partaalla ja Suomi sai osakseen pakolaisvirran Saksasta ja Itävallasta.</p><p>Tarinan keskiössä on suomalainen liikemies ja hyväntekijä Abraham Stiller, joka omistaa elämänsä inhimilliselle auttamiselle. Hän taistelee epätoivoisesti pelastaakseen Suomeen paenneet ihmiset varmalta kuolemalta keskitysleireillä, mutta joutuu samalla kohtaamaan aikansa raadolliset poliittiset realiteetit.</p><p>Näytöksen jälkeen salissa järjestetään keskustelutilaisuus Ei koskaan yksin -elokuvan ohjaajan Klaus Härön kanssa. Jää halutessasi jakamaan ajatuksesi elokuvasta ja kysymään kysymyksiä.</p><p>Ikäraja: 12<br>Kesto: 85 min.<br>Kieli: suomi<br>Tekstitys: suomi</p><p>Ensi-ilta: 17.1.2025</p>"
            },
            "short_description": {
                "fi": "Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Ei koskaan yksin (12) + Q&A ohjaaja Klaus Härön kanssa – Kino Helios",
                "sv": "Ei koskaan yksin (12) – Kino Helios",
                "en": "Ei koskaan yksin (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65551/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65553",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 176800,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-29T12:14:35.673277Z",
                    "last_modified_time": "2025-01-29T12:14:35.673290Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758992.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/176800/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-29T12:14:35.650307Z",
            "last_modified_time": "2025-01-29T12:14:35.730562Z",
            "date_published": null,
            "start_time": "2025-02-19T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78D61727F8BD353E7A40B3A948DDC80C/Ei_koskaan_yksin_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/78D61727F8BD353E7A40B3A948DDC80C/Ei_koskaan_yksin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/78D61727F8BD353E7A40B3A948DDC80C/Ei_koskaan_yksin_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun.</p><p>Ei koskaan yksin on koskettava kertomus toisen maailmansodan synkistä vuosista, jolloin Eurooppa horjui kaaoksen partaalla ja Suomi sai osakseen pakolaisvirran Saksasta ja Itävallasta.</p><p>Tarinan keskiössä on suomalainen liikemies ja hyväntekijä Abraham Stiller, joka omistaa elämänsä inhimilliselle auttamiselle. Hän taistelee epätoivoisesti pelastaakseen Suomeen paenneet ihmiset varmalta kuolemalta keskitysleireillä, mutta joutuu samalla kohtaamaan aikansa raadolliset poliittiset realiteetit.</p><p>Ikäraja: 12<br>Kesto: 85 min.<br>Kieli: suomi<br>Tekstitys: suomi</p><p>Ensi-ilta: 17.1.2025</p>"
            },
            "short_description": {
                "fi": "Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Ei koskaan yksin (12) – Kino Helios",
                "sv": "Ei koskaan yksin (12) – Kino Helios",
                "en": "Ei koskaan yksin (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65553/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65552",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 176799,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-29T12:14:34.476806Z",
                    "last_modified_time": "2025-01-29T12:14:34.476819Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758990.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/176799/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-29T12:14:34.453474Z",
            "last_modified_time": "2025-01-29T12:14:34.536800Z",
            "date_published": null,
            "start_time": "2025-02-15T16: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E816C877B9583822B9A4991559C7C6C7/Ei_koskaan_yksin_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E816C877B9583822B9A4991559C7C6C7/Ei_koskaan_yksin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/E816C877B9583822B9A4991559C7C6C7/Ei_koskaan_yksin_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun.</p><p>Ei koskaan yksin on koskettava kertomus toisen maailmansodan synkistä vuosista, jolloin Eurooppa horjui kaaoksen partaalla ja Suomi sai osakseen pakolaisvirran Saksasta ja Itävallasta.</p><p>Tarinan keskiössä on suomalainen liikemies ja hyväntekijä Abraham Stiller, joka omistaa elämänsä inhimilliselle auttamiselle. Hän taistelee epätoivoisesti pelastaakseen Suomeen paenneet ihmiset varmalta kuolemalta keskitysleireillä, mutta joutuu samalla kohtaamaan aikansa raadolliset poliittiset realiteetit.</p><p>Ikäraja: 12<br>Kesto: 85 min.<br>Kieli: suomi<br>Tekstitys: suomi</p><p>Ensi-ilta: 17.1.2025</p>"
            },
            "short_description": {
                "fi": "Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Ei koskaan yksin (12) – Kino Helios",
                "sv": "Ei koskaan yksin (12) – Kino Helios",
                "en": "Ei koskaan yksin (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65552/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65554",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-maria-12-3810816/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-maria-12-3810816/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-maria-12-3810816/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 176798,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-29T12:14:33.125035Z",
                    "last_modified_time": "2025-01-29T12:14:33.125049Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758984.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/176798/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-29T12:14:33.098497Z",
            "last_modified_time": "2025-01-29T12:14:33.186652Z",
            "date_published": null,
            "start_time": "2025-02-12T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/20D8B376B21F350FF1228AF1259C66AE/Maria_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/20D8B376B21F350FF1228AF1259C66AE/Maria_12_",
                "en": "http://www.malmitalo.fi/en/events/event/20D8B376B21F350FF1228AF1259C66AE/Maria_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>1970-luvulla myrskyisän elämän elänyt näyttämöiden kuningatar Maria Callas viettää tietämättään Pariisissa viimeisiä vuosiaan.</p><p>Sydämensä useasti rakkauden tähden särkenyt Callas menehtyi vain 53-vuotiaana.</p><p>Venetsian elokuvafestivaalilla lähes kymmenminuuttiset aplodit saaneen Maria-elokuvan on ohjannut palkittu Pablo Larraín, joka jatkaa elokuvallaan tunnettujen naisten kohtaloiden kuvaamista, elokuvien Spencer ja Jackie jälkeen. Oopperalaulaja Maria Callasista kertovan elokuvan pääosassa loistaa parhaan naispääosan Oscar-veikkauksiin jo noussut 49-vuotias Angelina Jolie, joka tekee täten näyttävän paluun valkokankaille.</p><p>Ikäraja: 12<br>Kesto: 123 min.<br>Tekstitys: suomi ja ruotsi</p><p>Ensi-ilta: 24.1.2025</p>"
            },
            "short_description": {
                "fi": "1970-luvulla myrskyisän elämän elänyt näyttämöiden kuningatar Maria Callas viettää tietämättään Pariisissa viimeisiä vuosiaan."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Maria (12) – Kino Helios",
                "sv": "Maria (12) – Kino Helios",
                "en": "Maria (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65554/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65424",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153714,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-10T14:14:32.195093Z",
                    "last_modified_time": "2025-01-10T14:14:32.195109Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758968.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153714/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-10T14:14:32.171812Z",
            "last_modified_time": "2025-01-29T12:14:28.842030Z",
            "date_published": null,
            "start_time": "2025-01-31T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1F04954EABACB3E1A3B2593FB4F1485C/Ainahan_on_huominen_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1F04954EABACB3E1A3B2593FB4F1485C/Ainahan_on_huominen_12_",
                "en": "http://www.malmitalo.fi/en/events/event/1F04954EABACB3E1A3B2593FB4F1485C/Ainahan_on_huominen_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ainahan on huominen-elokuva on palkitun italialaisnäyttelijä Paola Cortellesin debyyttiohjaus, jonka pääosassa loistaa ohjaaja itse.</p><p>40-luvun Italiaan sijoittuva draamakomedia kuvaa kauniisti ja voimallisesti sitä yhteiskunnallista murroskohtaa, jossa naisten ääni alkoi toisen maailmansodan jälkeen päästä kuuluviin. Roomalaisperheen äidin roolina on uurastaa näkymättömissä. Aviomies hakkaa ja haukkuu, mutta autokorjaamolla työskentelevä lempeä nuoruudenrakastettu pehmentää pelon sävyttämää arkea. Kun posti tuo yllättävän kirjeen, kuinka pitkään nurkkaan ajettu nainen enää alistuu asemaansa itsestäänselvyytenä?</p><p>Ainahan on huominen on kaikkien aikojen tuottoisin naisen ohjaama italialainen elokuva – kotimaassaan vuonna 2023 jopa katsotumpi kuin Barbie! Italian elokuvatoimittajat valitsivat elokuvan vuoden parhaaksi, samoin sekä tuomaristo että yleisö Rooman elokuvafestivaalilla. Göteborgin elokuvafestivaalilla se palkittiin vuoden parhaana kansainvälisenä elokuvana.</p><p>Suomen elokuvasäätiön maahantuontituki 2024.</p><p>Ikäraja: 12<br>Kesto: 118 min.<br>Ensi-ilta: 20.12.2024<br>Tekstitys: suomi ja ruotsi</p>"
            },
            "short_description": {
                "fi": "Ainahan on huominen-elokuva on palkitun italialaisnäyttelijä Paola Cortellesin debyyttiohjaus, jonka pääosassa loistaa ohjaaja itse."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Ainahan on huominen (12) – Kino Helios",
                "sv": "Ainahan on huominen (12) – Kino Helios",
                "en": "Ainahan on huominen (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65424/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64842",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/unreality-seikkailee-jaelleen-malmitalo-19738723/",
                        "sv": "https://www.lippu.fi/event/unreality-seikkailee-jaelleen-malmitalo-19738723/",
                        "en": "https://www.lippu.fi/event/unreality-seikkailee-jaelleen-malmitalo-19738723/"
                    },
                    "price": {
                        "fi": "24 € / 14 €",
                        "sv": "24 € / 14 €",
                        "en": "24 € / 14 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 176703,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-29T11:15:11.912826Z",
                    "last_modified_time": "2025-01-29T11:15:11.912882Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760470.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/176703/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-29T11:15:11.859624Z",
            "last_modified_time": "2025-01-29T11:15:12.008121Z",
            "date_published": null,
            "start_time": "2025-03-05T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1B745A74A1CD3432E60A12F015041724/Unreality_seikkailee_jalleen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1B745A74A1CD3432E60A12F015041724/Unreality_pa_nya_aventyr",
                "en": "http://www.malmitalo.fi/en/events/event/1B745A74A1CD3432E60A12F015041724/Unreality_goes_on_an_adventure_again"
            },
            "provider": null,
            "description": {
                "fi": "<p>Jossain tuolla on suuri maailma tutkittavana... Minä karkaan seikkailemaan!</p><p>Unrealityn tämänkeväisen konsertin teemana soi seikkailu, joka saa vaihtelua kaipaavan sydämen kipinöimään. Tule kuuntelemaan, miten Ariettan laulu soi elokuvasta Kätkijät, kuinka majesteettiset tahdit säestävät peliä Xenoblade Chronicles tai millaisella kappaleella alkoikaan sarja Avatar: The Last Airbender.<br> <br>Unreality on vuonna 2014 perustettu Suomen ensimmäinen kokonaan soundtrack-musiikkiin keskittynyt kuoro, jonka taiteellisena johtajana on toiminut vuodesta 2017 Jari Koivistoinen.<br> <br>Kesto: 1 tunti</p>",
                "sv": "<p>Någonstans där ute finns en stor värld att utforska... Jag sticker i väg på äventyr!</p><p>Temat för Unrealitys konsert i vår är äventyr som får hjärtat att slå hårdare för den som behöver variation. Kom och lyssna på hur Ariettys sång ljuder i filmen ”Lånaren Arrietty”, hur de majestätiska rytmerna ackompanjerar spelet ”Xenoblade Chronicles” och vilket stycke det var som serien ”Avatar:  The Last Airbender” började med.<br> <br>Unreality grundades 2014 och är den första kören i Finland som helt och hållet är inriktad på soundtrack. Sedan 2017 har körens konstnärliga ledare varit Jari Koivistoinen.<br> <br>Längd: en timme</p>",
                "en": "<p>Somewhere out there is a big world to explore... I’m off to adventure!</p><p>The theme of this spring’s concert by Unreality is adventure, which will stir the hearts of those looking for something different. Come and hear Arietta’s song from the film Arrietty, the majestic beats from the game Xenoblade Chronicles, or the song that kicked off the series Avatar: The Last Airbender.<br> <br>Unreality, founded in 2014, is the first choir in Finland to focus entirely on soundtrack music, with Jari Koivistoinen as its artistic director since 2017.<br> <br>Duration: 1 hour</p>"
            },
            "short_description": {
                "fi": "Jossain tuolla on suuri maailma tutkittavana... Minä karkaan seikkailemaan!",
                "sv": "Någonstans där ute finns en stor värld att utforska... Jag sticker i väg på äventyr!",
                "en": "Somewhere out there is a big world to explore... I’m off to adventure!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Unreality seikkailee jälleen",
                "sv": "Unreality på nya äventyr",
                "en": "Unreality goes on an adventure again"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64842/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65431",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153722,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-13T09:14:44.625420Z",
                    "last_modified_time": "2025-01-13T09:14:44.625438Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758981.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153722/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-13T09:14:44.600389Z",
            "last_modified_time": "2025-01-29T07:15:04.986510Z",
            "date_published": null,
            "start_time": "2025-02-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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AAA4FB8B47B4D96C55E6A65C7D2FDDD4/Ei_koskaan_yksin_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/AAA4FB8B47B4D96C55E6A65C7D2FDDD4/Ei_koskaan_yksin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/AAA4FB8B47B4D96C55E6A65C7D2FDDD4/Ei_koskaan_yksin_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun.</p><p>Ei koskaan yksin on koskettava kertomus toisen maailmansodan synkistä vuosista, jolloin Eurooppa horjui kaaoksen partaalla ja Suomi sai osakseen pakolaisvirran Saksasta ja Itävallasta.</p><p>Tarinan keskiössä on suomalainen liikemies ja hyväntekijä Abraham Stiller, joka omistaa elämänsä inhimilliselle auttamiselle. Hän taistelee epätoivoisesti pelastaakseen Suomeen paenneet ihmiset varmalta kuolemalta keskitysleireillä, mutta joutuu samalla kohtaamaan aikansa raadolliset poliittiset realiteetit.</p><p>Ikäraja: 12<br>Kesto: 85 min.<br>Kieli: suomi<br>Tekstitys: suomi</p><p>Ensi-ilta: 17.1.2025</p>"
            },
            "short_description": {
                "fi": "Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Ei koskaan yksin (12) – Kino Helios",
                "sv": "Ei koskaan yksin (12) – Kino Helios",
                "en": "Ei koskaan yksin (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65431/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65538",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 172743,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-27T15:15:20.497322Z",
                    "last_modified_time": "2025-01-27T15:15:20.497345Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765060.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172743/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-01-27T15:15:20.463148Z",
            "last_modified_time": "2025-01-27T15:15:20.573397Z",
            "date_published": null,
            "start_time": "2025-02-20T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B1763A7868181E7AFFCFD27A7F79885A/Talvilomaleffa_Hurja_jengi_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B1763A7868181E7AFFCFD27A7F79885A/Sportlovsfilm_Hurja_jengi_7_",
                "en": "http://www.malmitalo.fi/en/events/event/B1763A7868181E7AFFCFD27A7F79885A/Winter_break_movie_Hurja_jengi_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kukaan ei ole koskaan ollut yhtä huono olemaan kiltti kuin Hurja jengi.</p><p>Suosittuun kirjasarjaan perustuvassa toimintaseikkailussa eläinpahisten rikollisjengi punoo kaikkien aikojen ovelimman juonen — he ryhtyvät mallikansalaisiksi.</p><p>Hurja jengi koostuu viidestä konnasta. Joukkioon kuuluvat sulava taskuvaras herra Susi, kaiken kokenut murtovaras herra Käärme, naamioitumisen mestari herra Hai, äkkipikainen korsto herra Pirajia ja naseva hakkeri neiti Tarantella.</p><p>Mutta kun vuosikausia jatkuneiden huijausten ja takaa-ajojen jälkeen jengi jää viimeinkin kiinni, herra Susi tekee diilin, jota hänellä ei ole aikomustakaan noudattaa: vankilalta välttyäkseen Hurja jengi ryhtyy kiltiksi.</p><p>Professori Marmeladin, nirppanokkaisen mutta ihastuttava marsun opastuksella Hurja jengi aikoo saada maailman uskomaan heidän parantaneen tapansa. Mutta pikkuhiljaa herra Susi alkaa epäillä, että hyväntekeminen tarjoaa sitä, mitä hän on aina kaivannut: hyväksyntää. Joten kun kaupunkia uhkaa uusi pahis, herra Susi päättääkin yrittää tehdä porukastaan oikean hyvisjengin.</p><p>Kesto 100 min<br>Ikäraja 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p><p>Paikka: Malmisali</p>",
                "sv": "<p>Inga har någonsin misslyckats så totalt med att försöka vara snälla som Tuffa Gänget.</p><p>I den nya actionkomedin från DreamWorks Animation, baserad på New York Times bästsäljande bokserie, är ett gäng superproffsiga djur-brottslingar på väg att ta sig an sitt mest utmanande bedrägeri hittills – att bli mönstermedborgare.</p><p>Aldrig har fem vänner varit så ökända som Tuffa Gänget – den eleganta ficktjuven Mr. Wolf (Oscar®-vinnaren Sam Rockwell, Three Billboards Outside Ebbing, Missouri), den erfarne kassaskåpssprängaren Mr. Snake (Marc Maron, GLOW), den coola maskeringsmästaren Mr. Shark (Craig Robinson, Hot Tub Time Machine-serien), den temperamentsfulla tuffingen Mr. Piranha (Anthony Ramos, In the Heights) och den skärpta superhackern Ms. Tarantula (Awkwafina, Crazy Rich Asians), även kallat \"Webs\".</p><p>Övrigt: Men när gänget, efter otaliga kupper och åratal av att ha varit världens mest efterlysta skurkar, slutligen fångas, ingår Mr. Wolf ett avtal (som han inte har för avsikt att hålla) för att rädda dem alla från fängelse: Tuffa Gänget ska bli goda medborgare.<br>Under ledning av sin mentor Professor Marmalade (Richard Ayoade, Paddington 2), ett arrogant (men bedårande!) marsvin, försöker Tuffa Gänget lura världen att tro att de har förvandlats. Men under resans gång börjar Mr Wolf misstänka att om han gjorde gott på riktigt, skulle det kunna ge honom det han alltid i hemlighet har längtat efter: att bli accepterad. Så, när en ny skurk hotar staden, kan Mr. Wolf övertala resten av gänget att bli ... Snälla Gänget?</p><p>Åldersgräns: 7<br>Längd 100 min.<br>Tal på finska<br>Plats: Malmsalen</p><p>Fritt inträde!</p>",
                "en": "<p>Nobody has ever failed so hard at trying to be good as The Bad Guys.</p><p>In the new action comedy from DreamWorks Animation, based on the New York Times best-selling book series, a crackerjack criminal crew of animal outlaws are about to attempt their most challenging con yet—becoming model citizens.</p><p>Never have there been five friends as infamous as The Bad Guys—dashing pickpocket Mr. Wolf (Academy Award® winner Sam Rockwell, Three Billboards Outside Ebbing, Missouri), seen-it-all safecracker Mr. Snake (Marc Maron, GLOW), chill master-of-disguise Mr. Shark (Craig Robinson, Hot Tub Time Machine franchise), short-fused “muscle” Mr. Piranha (Anthony Ramos, In the Heights) and sharp-tongued expert hacker Ms. Tarantula (Awkwafina, Crazy Rich Asians), aka “Webs.”</p><p>But when, after years of countless heists and being the world’s most-wanted villains, the gang is finally caught, Mr. Wolf brokers a deal (that he has no intention of keeping) to save them all from prison: The Bad Guys will go good.</p><p>Under the tutelage of their mentor Professor Marmalade (Richard Ayoade, Paddington 2), an arrogant (but adorable!) guinea pig, The Bad Guys set out to fool the world that they’ve been transformed. Along the way, though, Mr. Wolf begins to suspect that doing good for real may give him what he’s always secretly longed for: acceptance. So when a new villain threatens the city, can Mr. Wolf persuade the rest of the gang to become … The Good Guys?</p><p>Age limit: 7<br>Duration: 100 min<br>In Finnish<br>Location: Malmisali</p><p>Admission is free!</p>"
            },
            "short_description": {
                "fi": "Kukaan ei ole koskaan ollut yhtä huono olemaan kiltti kuin Hurja jengi.",
                "sv": "Inga har någonsin misslyckats så totalt med att försöka vara snälla som Tuffa Gänget.",
                "en": "Nobody has ever failed so hard at trying to be good as The Bad Guys."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Talvilomaleffa: Hurja jengi (7)",
                "sv": "Sportlovsfilm: Hurja jengi (7)",
                "en": "Winter break movie: Hurja jengi (7)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65538/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65537",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 172742,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-27T15:15:20.276333Z",
                    "last_modified_time": "2025-01-27T15:15:20.276355Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765059.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172742/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-01-27T15:15:20.244729Z",
            "last_modified_time": "2025-01-27T15:15:20.356478Z",
            "date_published": null,
            "start_time": "2025-02-20T11: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5F714E0B3B6E51D7C8B5C5347F95C041/Talvilomaleffa_Hurja_jengi_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5F714E0B3B6E51D7C8B5C5347F95C041/Sportlovsfilm_Hurja_jengi_7_",
                "en": "http://www.malmitalo.fi/en/events/event/5F714E0B3B6E51D7C8B5C5347F95C041/Winter_break_movie_Hurja_jengi_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kukaan ei ole koskaan ollut yhtä huono olemaan kiltti kuin Hurja jengi.</p><p>Suosittuun kirjasarjaan perustuvassa toimintaseikkailussa eläinpahisten rikollisjengi punoo kaikkien aikojen ovelimman juonen — he ryhtyvät mallikansalaisiksi.</p><p>Hurja jengi koostuu viidestä konnasta. Joukkioon kuuluvat sulava taskuvaras herra Susi, kaiken kokenut murtovaras herra Käärme, naamioitumisen mestari herra Hai, äkkipikainen korsto herra Pirajia ja naseva hakkeri neiti Tarantella.</p><p>Mutta kun vuosikausia jatkuneiden huijausten ja takaa-ajojen jälkeen jengi jää viimeinkin kiinni, herra Susi tekee diilin, jota hänellä ei ole aikomustakaan noudattaa: vankilalta välttyäkseen Hurja jengi ryhtyy kiltiksi.</p><p>Professori Marmeladin, nirppanokkaisen mutta ihastuttava marsun opastuksella Hurja jengi aikoo saada maailman uskomaan heidän parantaneen tapansa. Mutta pikkuhiljaa herra Susi alkaa epäillä, että hyväntekeminen tarjoaa sitä, mitä hän on aina kaivannut: hyväksyntää. Joten kun kaupunkia uhkaa uusi pahis, herra Susi päättääkin yrittää tehdä porukastaan oikean hyvisjengin.</p><p>Kesto 100 min<br>Ikäraja 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p><p>Paikka: Malmisali</p>",
                "sv": "<p>Inga har någonsin misslyckats så totalt med att försöka vara snälla som Tuffa Gänget.</p><p>I den nya actionkomedin från DreamWorks Animation, baserad på New York Times bästsäljande bokserie, är ett gäng superproffsiga djur-brottslingar på väg att ta sig an sitt mest utmanande bedrägeri hittills – att bli mönstermedborgare.</p><p>Aldrig har fem vänner varit så ökända som Tuffa Gänget – den eleganta ficktjuven Mr. Wolf (Oscar®-vinnaren Sam Rockwell, Three Billboards Outside Ebbing, Missouri), den erfarne kassaskåpssprängaren Mr. Snake (Marc Maron, GLOW), den coola maskeringsmästaren Mr. Shark (Craig Robinson, Hot Tub Time Machine-serien), den temperamentsfulla tuffingen Mr. Piranha (Anthony Ramos, In the Heights) och den skärpta superhackern Ms. Tarantula (Awkwafina, Crazy Rich Asians), även kallat \"Webs\".</p><p>Övrigt: Men när gänget, efter otaliga kupper och åratal av att ha varit världens mest efterlysta skurkar, slutligen fångas, ingår Mr. Wolf ett avtal (som han inte har för avsikt att hålla) för att rädda dem alla från fängelse: Tuffa Gänget ska bli goda medborgare.<br>Under ledning av sin mentor Professor Marmalade (Richard Ayoade, Paddington 2), ett arrogant (men bedårande!) marsvin, försöker Tuffa Gänget lura världen att tro att de har förvandlats. Men under resans gång börjar Mr Wolf misstänka att om han gjorde gott på riktigt, skulle det kunna ge honom det han alltid i hemlighet har längtat efter: att bli accepterad. Så, när en ny skurk hotar staden, kan Mr. Wolf övertala resten av gänget att bli ... Snälla Gänget?</p><p>Åldersgräns: 7<br>Längd 100 min.<br>Tal på finska<br>Plats: Malmsalen</p><p>Fritt inträde!</p>",
                "en": "<p>Nobody has ever failed so hard at trying to be good as The Bad Guys.</p><p>In the new action comedy from DreamWorks Animation, based on the New York Times best-selling book series, a crackerjack criminal crew of animal outlaws are about to attempt their most challenging con yet—becoming model citizens.</p><p>Never have there been five friends as infamous as The Bad Guys—dashing pickpocket Mr. Wolf (Academy Award® winner Sam Rockwell, Three Billboards Outside Ebbing, Missouri), seen-it-all safecracker Mr. Snake (Marc Maron, GLOW), chill master-of-disguise Mr. Shark (Craig Robinson, Hot Tub Time Machine franchise), short-fused “muscle” Mr. Piranha (Anthony Ramos, In the Heights) and sharp-tongued expert hacker Ms. Tarantula (Awkwafina, Crazy Rich Asians), aka “Webs.”</p><p>But when, after years of countless heists and being the world’s most-wanted villains, the gang is finally caught, Mr. Wolf brokers a deal (that he has no intention of keeping) to save them all from prison: The Bad Guys will go good.</p><p>Under the tutelage of their mentor Professor Marmalade (Richard Ayoade, Paddington 2), an arrogant (but adorable!) guinea pig, The Bad Guys set out to fool the world that they’ve been transformed. Along the way, though, Mr. Wolf begins to suspect that doing good for real may give him what he’s always secretly longed for: acceptance. So when a new villain threatens the city, can Mr. Wolf persuade the rest of the gang to become … The Good Guys?</p><p>Age limit: 7<br>Duration: 100 min<br>In Finnish<br>Location: Malmisali</p><p>Admission is free!</p>"
            },
            "short_description": {
                "fi": "Kukaan ei ole koskaan ollut yhtä huono olemaan kiltti kuin Hurja jengi.",
                "sv": "Inga har någonsin misslyckats så totalt med att försöka vara snälla som Tuffa Gänget.",
                "en": "Nobody has ever failed so hard at trying to be good as The Bad Guys."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Talvilomaleffa: Hurja jengi (7)",
                "sv": "Sportlovsfilm: Hurja jengi (7)",
                "en": "Winter break movie: Hurja jengi (7)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65537/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65536",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 172741,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-27T15:15:20.005482Z",
                    "last_modified_time": "2025-01-27T15:15:20.005501Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765058.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172741/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-01-27T15:15:19.976254Z",
            "last_modified_time": "2025-01-27T15:15:20.086564Z",
            "date_published": null,
            "start_time": "2025-02-19T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C8931274F052CD86109152A8BA95FF9A/Talvilomaleffa_Kung_Fu_Panda_4_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C8931274F052CD86109152A8BA95FF9A/Sportlovsfilm_Kung_Fu_Panda_4_7_",
                "en": "http://www.malmitalo.fi/en/events/event/C8931274F052CD86109152A8BA95FF9A/Winter_break_movie_Kung_Fu_Panda_4_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Hauska Kung Fu Panda tulee taas!</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. 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>Ikäraja 7<br>Kesto 94 min<br>Puhuttu suomeksi<br>Paikka: Malmisali</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Skojiga Kung Fu Panda kommer igen!</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.<br>Ö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>Åldersgräns: 7<br>Längd 94 min.<br>Tal på finska<br>Plats: Malmsalen</p><p>Fritt inträde!</p>",
                "en": "<p>The funny Kung Fu Panda is back!</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>Age limit: 7<br>Duration: 94 min<br>In Finnish<br>Location: Malmisali</p><p>Admission is free!</p>"
            },
            "short_description": {
                "fi": "Hauska Kung Fu Panda tulee taas!",
                "sv": "Skojiga Kung Fu Panda kommer igen!",
                "en": "The funny Kung Fu Panda is back!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Talvilomaleffa: Kung Fu Panda 4 (7)",
                "sv": "Sportlovsfilm: Kung Fu Panda 4 (7)",
                "en": "Winter break movie: Kung Fu Panda 4 (7)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65536/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65535",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 172740,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-27T15:15:19.680480Z",
                    "last_modified_time": "2025-01-27T15:15:19.680498Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765057.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172740/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-27T15:15:19.653863Z",
            "last_modified_time": "2025-01-27T15:15:19.749582Z",
            "date_published": null,
            "start_time": "2025-02-19T11: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F82CDB81D52687217A36502FA119E830/Talvilomaleffa_Kung_Fu_Panda_4_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F82CDB81D52687217A36502FA119E830/Sportlovsfilm_Kung_Fu_Panda_4_7_",
                "en": "http://www.malmitalo.fi/en/events/event/F82CDB81D52687217A36502FA119E830/Winter_break_movie_Kung_Fu_Panda_4_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Hauska Kung Fu Panda tulee taas!</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. 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>Ikäraja 7<br>Kesto 94 min<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Skojiga Kung Fu Panda kommer igen!</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.<br>Ö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>Åldersgräns: 7<br>Längd 94 min.<br>Tal på finska<br>Plats: Malmsalen</p><p>Fritt inträde!</p>",
                "en": "<p>The funny Kung Fu Panda is back!</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>Age limit: 7<br>Duration: 94 min<br>In Finnish<br>Location: Malmisali</p><p>Admission is free!</p>"
            },
            "short_description": {
                "fi": "Hauska Kung Fu Panda tulee taas!",
                "sv": "Skojiga Kung Fu Panda kommer igen!",
                "en": "The funny Kung Fu Panda is back!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Talvilomaleffa: Kung Fu Panda 4 (7)",
                "sv": "Sportlovsfilm: Kung Fu Panda 4 (7)",
                "en": "Winter break movie: Kung Fu Panda 4 (7)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65535/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}