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

{
    "meta": {
        "count": 1627,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=74",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=72"
    },
    "data": [
        {
            "id": "kulke:60745",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/",
                        "sv": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/",
                        "en": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22 € / 14,50 €",
                        "sv": "22 € / 14,50 €",
                        "en": "22 € / 14,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4489,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:25:39.873751Z",
                    "last_modified_time": "2023-09-07T14:25:39.873773Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_722429.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4489/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:25:39.729214Z",
            "last_modified_time": "2023-11-14T06:13:32.648660Z",
            "date_published": null,
            "start_time": "2023-11-01T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Konsertissa kuullaan mm. Glenn Millerin orkesterin svengaavaa ohjelmistoa. Solisteina Juki Välipakka ja Jussi Humaljoki, viisihenkinen lauluyhtye The Oldinaires ja tyttötrio Andrew´s Girls. Luvassa Millerin, ja The Modernaires ja Andrews Sisters lauluyhtyeiden yhteistuotantoa. Kapellimestarina Antti Rissanen.",
                "sv": "Den populära Glenn Miller-orkesterns svängiga spelning. Solisterna är Jussi Humaljoki, Juki Välipakka och en sånggrupp med tre solister.",
                "en": "Den populära Glenn Miller-orkesterns svängiga spelning. Solisterna är Jussi Humaljoki, Juki Välipakka och en sånggrupp med tre solister."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7450F1E7C897F7F3134F9A2381993FE0/The_Great_Helsinki_Swing_Big_Band_American_Patrol_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7450F1E7C897F7F3134F9A2381993FE0/The_Great_Helsinki_Swing_Big_Band_American_Patrol_",
                "en": "http://www.malmitalo.fi/en/events/event/7450F1E7C897F7F3134F9A2381993FE0/The_Great_Helsinki_Swing_Big_Band_American_Patrol_"
            },
            "description": {
                "fi": "<p>Konsertissa kuullaan mm. Glenn Millerin orkesterin svengaavaa ohjelmistoa. Solisteina Juki Välipakka ja Jussi Humaljoki, viisihenkinen lauluyhtye The Oldinaires ja tyttötrio Andrew´s Girls. Luvassa Millerin, ja The Modernaires ja Andrews Sisters lauluyhtyeiden yhteistuotantoa. Kapellimestarina Antti Rissanen.</p><p>Kapellimestarina Antti Rissanen.</p>",
                "sv": "<p>Den populära Glenn Miller-orkesterns svängiga spelning. Solisterna är Jussi Humaljoki, Juki Välipakka och en sånggrupp med tre solister.</p><p>Dirigent: Antti Rissanen</p>",
                "en": "<p>Den populära Glenn Miller-orkesterns svängiga spelning. Solisterna är Jussi Humaljoki, Juki Välipakka och en sånggrupp med tre solister.</p><p>Conductor: Antti Rissanen</p>"
            },
            "name": {
                "fi": "The Great Helsinki Swing Big Band: American Patrol",
                "sv": "The Great Helsinki Swing Big Band: American Patrol",
                "en": "The Great Helsinki Swing Big Band: American Patrol"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60745/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61134",
            "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/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5514,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-18T09:26:33.881808Z",
                    "last_modified_time": "2023-10-18T09:26:33.881829Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738038.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5514/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-18T09:26:33.709572Z",
            "last_modified_time": "2023-11-14T06:13:32.571965Z",
            "date_published": null,
            "start_time": "2023-11-01T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Evan elämä juuri eläkkeelle jäätyään voisi olla paremminkin.",
                "sv": "Livet som nybliven pensionär kunde vara bättre."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5D004F5F0074AFBDB9DA4537537C04BF/Andra_Akten_toinen_naytos_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5D004F5F0074AFBDB9DA4537537C04BF/Andra_Akten_-_toinen_naytos_S_"
            },
            "description": {
                "fi": "<p>Evan elämä juuri eläkkeelle jäätyään voisi olla paremminkin.</p><p>Evan ex-mies on muuttanut kadun toiselle puolelle uuden vaimonsa kanssa. Evan aikuinen poika on jostain käsittämättömästä syystä kyllästynyt ylisuojelevan äitinsä paapomiseen ja haluaakin enemmän omaa aikaa. Mitä Evan pitäisi tehdä kaikella vapaa-ajallaan?</p><p>Evalle tarjoutuu yllättäen mahdollisuus työkeikkaan, josta hän ei voi kieltäytyä – suuri tähtinäyttelijä, hieman erikoinen Harald Skoog, on saanut aivohalvauksen ja tarvitsee kuntoutusta omassa kodissaan. Se mikä alkaa katastrofina, kasvaa lämpimäksi ystävyydeksi, orastavaksi elämäniloksi ja toivoksi siitä, ettei elämä olekaan vielä ohitse. Itse asiassa se ei ehkä ole edes vielä alkanut.</p><p>Ikäraja: sallittu<br>Kesto 114 min<br>Ensi-ilta 11.8.2023</p><p><i>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia)</i></p>",
                "sv": "<p>Livet som nybliven pensionär kunde vara bättre.</p><p>Evas exman flyttar in tvärs över gatan med sin nya fru och Evas son verkar obegripligt nog tröttna på sin mammas daltande och vill ha mer egen tid, utan hennes överbeskyddande hjälp. Vad ska Eva göra av all tid?</p><p>Ett extraknäck dyker upp som Eva inte kan motstå – den store stjärnskådespelaren, den excentriske Harald Skoog, har drabbats av en stroke och behöver rehabilitering i sitt eget hem. Vad som börjar som en katastrof växer till varm vänskap, spirande livsglädje och till ett hopp om att livet inte är över. Faktum är att det kanske inte ens har börjat.</p><p>Åldersgränsen: T<br>Längd 114 min<br>Premiär 11.8.2023</p>"
            },
            "name": {
                "fi": "Andra Akten – toinen näytös (S) – Kino Helios",
                "sv": "Andra Akten - toinen näytös (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61134/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61064",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5200,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:19.641186Z",
                    "last_modified_time": "2023-10-09T13:31:19.641205Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732000.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5200/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:19.489991Z",
            "last_modified_time": "2023-11-14T06:13:32.015549Z",
            "date_published": null,
            "start_time": "2023-10-31T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tiistai-illan keikoilla kuullaan Pop & Jazz Konservatorion muusikoita."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1B8561182CDCC56ECB6D79D319B866C4/PopJazz_Malmitalo_Project_Tehdasmusiikkia_Super_Puberty"
            },
            "description": {
                "fi": "<p>Tiistai-illan keikoilla kuullaan Pop & Jazz Konservatorion muusikoita.</p><p><b>Project Tehdasmusiikkia</b><br>Yhtye soittaa <b>Pekka Pohjolan</b> musiikkia painottuen 1970–1980-lukujen taitteen tuotantoon. Tulkintojen lähtökohtana on käytetty Pohjolan kokoonpanojen llive-esityksiä. Project Tehdasmusiikkia tuo esille Pohjolan sävellysten lapsenomaisuutta ja leikkisyyttä.</p><p>Mio von Reiche – kitara<br>Eero Vehkaluoto – koskettimet<br>Aarni Kaivola – basso<br>Felix Paulasto – rummut</p><p><b>Super Puberty</b><br>“Tuu kuuntelee. Tästä tulee spessuu ja soitetaan jotain uutta. Ihan spaissit jutut tosiaan. Meidän soundi on oikeasti aika sus, mutta myös aika proge. Silleen semi rock, mutta vähän diiba daaba harmoniaa myös silloin tällöin. Meitä on viisi. Let’s go. “</p><p>Isak Schulman – kitara/laulu<br>Petri Määttä – kitara/laulu<br>Johannes Suominen – basso<br>Teodors Kerimovs – koskettimet/laulu<br>Elmo Kotro – rummut</p>"
            },
            "name": {
                "fi": "PopJazz @ Malmitalo: Project Tehdasmusiikkia | Super Puberty"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61064/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61067",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/neljae-vuodenaikaa-koillis-helsingin-aluespektaakkeli-3509492/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/malmitalo/neljae-vuodenaikaa-koillis-helsingin-aluespektaakkeli-3509492/?affiliate=ADV",
                        "en": "https://www.lippu.fi/artist/malmitalo/neljae-vuodenaikaa-koillis-helsingin-aluespektaakkeli-3509492/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5323,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-10T07:11:21.583315Z",
                    "last_modified_time": "2023-10-10T07:11:21.583336Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737632.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5323/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-10T07:11:19.596736Z",
            "last_modified_time": "2023-11-14T06:13:31.208709Z",
            "date_published": null,
            "start_time": "2023-10-28T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Neljä Vuodenaikaa -spektaakkeli tuo Malmitalon näyttämölle Suomalaisen barokkiorkesterin ja Teatteri Tuikkeen sekä Koillis-Helsingin asukkaiden ja taiteilijoiden yhdessä luoman teoksen.",
                "sv": "Föreställningen Fyra Årstider i Malmhuset är ett verk som skapats tillsammans av Finländska barockorkestern och Teatteri Tuike samt invånarna och konstnärerna i nordöstra Helsingfors.",
                "en": "The Four Seasons spectacle brings to Malmitalo a work created jointly by the Finnish Baroque Orchestra, the Tuike theatre, and the residents and artists of northeastern Helsinki."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EC4A3BFC65E895AC66058C4680AD8016/Nelja_Vuodenaikaa_Koillis-Helsingin_aluespektaakkeli",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EC4A3BFC65E895AC66058C4680AD8016/Fyra_arstider_ett_omradesspektakel_i_Nordostra_Helsingfors",
                "en": "http://www.malmitalo.fi/en/events/event/EC4A3BFC65E895AC66058C4680AD8016/Four_Seasons_Northeast_Helsinki_regional_spectacle"
            },
            "description": {
                "fi": "<p>Neljä Vuodenaikaa -spektaakkeli tuo Malmitalon näyttämölle Suomalaisen barokkiorkesterin ja Teatteri Tuikkeen sekä Koillis-Helsingin asukkaiden ja taiteilijoiden yhdessä luoman teoksen.</p><p>Musiikillisesti keskiössä on Vivaldin Vuodenajat sekä erilaisia välivuodenaikoja. Visuaaliset ja tekstiin liittyvät elementit kuten varjoteatteri, vuodenaika-aforismit, liikeosiot ja videoprojisoinnit vievät osaltaan tarinaa eteenpäin. Esiintyjinä ja materiaalien tuottajina on kaiken ikäisiä taiteilijoita ja alueen asukkaita.</p><p>Liput myynnissä osoitteessa lippu.fi.</p><p>Ohjaus ja käsikirjoitus: Teatteri Tuike<br>Musiikin suunnittelu ja viulusolisti: Anthony Marini / Suomalainen barokkiorkesteri<br>Tekstiin ja varjoteatteriin liittyvät materiaalityöpajat: Marjaana Veikkanen ja Tanja Hautakangas / Teatteri Tuike<br>Pohjois-Helsingin musiikkiopiston ja barokkityöpajojen soittajien valmennus: Collegium ry <br>Lapsikuorojen valmennus: Kaisu Rauhamaa (Mami), Liisalotta Lepistö (Puistola) ja Mari-Torri-Tuominen (Viikki) / Malmin seurakunta<br>Muskariryhmien valmentaja: Elina Peltonen<br>ViuluVei-orkesterin valmennus: Anna-Mari Ablouh<br>Kuvamateriaaleihin liittyvät videoprojisoinnit: Helsingin medialukion tekniikkatiimin opiskelijat</p><p>Suomalainen barokkiorkesteri:<br>vl: Anthony Marini, Irma Niskanen, Minna Kangas<br>vla: Laura Kajander<br>vlc: Daniel Kivivuori<br>cb: Lassi Kari<br>cmb: Anna-Maaria Oramo<br>lt/teorb: Mikko Ikäheimo</p>",
                "sv": "<p>Föreställningen Fyra Årstider i Malmhuset är ett verk som skapats tillsammans av Finländska barockorkestern och Teatteri Tuike samt invånarna och konstnärerna i nordöstra Helsingfors.</p><p>I musikens centrum finns Vivaldis Årstider samt olika övergångsårstider. Visuella och textrelaterade element som skuggteater, årstidsaforismer, motionsavsnitt och videoprojiceringar driver berättelsen framåt. Bland uppträdare och materialproducenter finns artister och områdets invånare i alla åldrar.</p>",
                "en": "<p>The Four Seasons spectacle brings to Malmitalo a work created jointly by the Finnish Baroque Orchestra, the Tuike theatre, and the residents and artists of northeastern Helsinki.</p><p>Musically, the focus is on Vivaldi’s Seasons, as well as on the intermediate seasons. Visual and textual elements, such as shadow theatre, seasonal aphorisms, movement sections, and video projections, help drive the story. Performers and material producers include artists of all ages and area residents.</p>"
            },
            "name": {
                "fi": "Neljä Vuodenaikaa: Koillis-Helsingin aluespektaakkeli",
                "sv": "Fyra årstider – ett områdesspektakel i Nordöstra Helsingfors",
                "en": "Four Seasons – Northeast Helsinki regional spectacle"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61067/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61110",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5199,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:15.058188Z",
                    "last_modified_time": "2023-10-09T13:31:15.058207Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737466.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5199/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:14.703827Z",
            "last_modified_time": "2023-11-14T06:13:31.137352Z",
            "date_published": null,
            "start_time": "2023-10-28T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kolmekymppiset kaksoset Jenna (Henna Tanskanen) ja Joni (Lauri Tanskanen) saavat tietää, että heidän isällään on kolmaskin lapsi. Sisko Jóna (Elin Petersdottir) asuu Islannissa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/80350713BA7AF22D5E193DD30B7E6C8A/Sisarukset_12_"
            },
            "description": {
                "fi": "<p>Kolmekymppiset kaksoset Jenna (Henna Tanskanen) ja Joni (Lauri Tanskanen) saavat tietää, että heidän isällään on kolmaskin lapsi. Sisko Jóna (Elin Petersdottir) asuu Islannissa.</p><p>Sisarusten tapaaminen mullistaa jokaisen maailman, ihmissuhteet ja tulevaisuuden. Kunkin etsiessä omalle elämälleen merkitystä, aaltoillaan yhden isän, kahden kotimaan ja kolmen aikuisen sisaruksen välillä yhdistymisestä erkaantumiseen ja takaisin.</p><p>Vuosien mittaan sisarukset kohtaavat itsensä ja toisensa, samanlaisuutensa ja erilaisuutensa.</p><p>Saara Cantellin Sisarukset-elokuvaa on kuvattu seitsemän vuoden ajan päähenkilöitä seuraten.</p><p>Kesto: 123 min<br>Ikäraja: 12<br>Ensi-ilta 27.10.2023</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia ja klassikoita niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "name": {
                "fi": "Sisarukset (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61110/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61105",
            "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:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5197,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:12.118285Z",
                    "last_modified_time": "2023-10-09T13:31:12.118303Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737456.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5197/?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": "2023-10-09T13:31:11.974676Z",
            "last_modified_time": "2023-11-14T06:13:30.916537Z",
            "date_published": null,
            "start_time": "2023-10-28T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Monet sukupolvet ovat rakastaneet tätä ajatonta klassikkoa ja sen kunnioitusta herättävää animaatiota."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/070DBD2E3E8F0CB6EE9D6E4DAF01F5AE/Bambi_7_"
            },
            "description": {
                "fi": "<p>Monet sukupolvet ovat rakastaneet tätä ajatonta klassikkoa ja sen kunnioitusta herättävää animaatiota.</p><p>Elämää mullistavassa seikkailussa Bambi lähtee parhaiden ystäviensä Rumpalin ja Kukan kanssa tutkimaan metsän ihmeitä ja haasteita, sekä täyttämään kohtalonsa metsän prinssinä. Täynnä huumoria ja sydäntä oleva Bambi on edelleen perheiden suosikki.<br> <br>Ikäraja: 7<br>Kesto: 70 min<br>Puhuttu suomeksi</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia ja klassikoita niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "name": {
                "fi": "Bambi (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61105/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61114",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/neljae-vuodenaikaa-koillis-helsingin-aluespektaakkeli-3509492/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/malmitalo/neljae-vuodenaikaa-koillis-helsingin-aluespektaakkeli-3509492/?affiliate=ADV",
                        "en": "https://www.lippu.fi/artist/malmitalo/neljae-vuodenaikaa-koillis-helsingin-aluespektaakkeli-3509492/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5322,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-10T07:11:17.334636Z",
                    "last_modified_time": "2023-10-10T07:11:17.334658Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737631.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5322/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-10T07:11:17.182778Z",
            "last_modified_time": "2023-11-14T06:13:30.831684Z",
            "date_published": null,
            "start_time": "2023-10-28T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Neljä Vuodenaikaa -spektaakkeli tuo Malmitalon näyttämölle Suomalaisen barokkiorkesterin ja Teatteri Tuikkeen sekä Koillis-Helsingin asukkaiden ja taiteilijoiden yhdessä luoman teoksen.",
                "sv": "Föreställningen Fyra Årstider i Malmhuset är ett verk som skapats tillsammans av Finländska barockorkestern och Teatteri Tuike samt invånarna och konstnärerna i nordöstra Helsingfors.",
                "en": "The Four Seasons spectacle brings to Malmitalo a work created jointly by the Finnish Baroque Orchestra, the Tuike theatre, and the residents and artists of northeastern Helsinki."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6877295B1A630ED2A76915C72D0B2024/Nelja_Vuodenaikaa_Koillis-Helsingin_aluespektaakkeli",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6877295B1A630ED2A76915C72D0B2024/Fyra_arstider_ett_omradesspektakel_i_Nordostra_Helsingfors",
                "en": "http://www.malmitalo.fi/en/events/event/6877295B1A630ED2A76915C72D0B2024/Four_Seasons_Northeast_Helsinki_regional_spectacle"
            },
            "description": {
                "fi": "<p>Neljä Vuodenaikaa -spektaakkeli tuo Malmitalon näyttämölle Suomalaisen barokkiorkesterin ja Teatteri Tuikkeen sekä Koillis-Helsingin asukkaiden ja taiteilijoiden yhdessä luoman teoksen.</p><p>Musiikillisesti keskiössä on Vivaldin Vuodenajat sekä erilaisia välivuodenaikoja. Visuaaliset ja tekstiin liittyvät elementit kuten varjoteatteri, vuodenaika-aforismit, liikeosiot ja videoprojisoinnit vievät osaltaan tarinaa eteenpäin. Esiintyjinä ja materiaalien tuottajina on kaiken ikäisiä taiteilijoita ja alueen asukkaita.</p><p>Liput myynnissä osoitteessa lippu.fi.</p><p>Ohjaus ja käsikirjoitus: Teatteri Tuike<br>Musiikin suunnittelu ja viulusolisti: Anthony Marini / Suomalainen barokkiorkesteri<br>Tekstiin ja varjoteatteriin liittyvät materiaalityöpajat: Marjaana Veikkanen ja Tanja Hautakangas / Teatteri Tuike<br>Pohjois-Helsingin musiikkiopiston ja barokkityöpajojen soittajien valmennus: Collegium ry <br>Lapsikuorojen valmennus: Kaisu Rauhamaa (Mami), Liisalotta Lepistö (Puistola) ja Mari-Torri-Tuominen (Viikki) / Malmin seurakunta<br>Muskariryhmien valmentaja: Elina Peltonen<br>ViuluVei-orkesterin valmennus: Anna-Mari Ablouh<br>Kuvamateriaaleihin liittyvät videoprojisoinnit: Helsingin medialukion tekniikkatiimin opiskelijat</p><p>Suomalainen barokkiorkesteri:<br>vl: Anthony Marini, Irma Niskanen, Minna Kangas<br>vla: Laura Kajander<br>vlc: Daniel Kivivuori<br>cb: Lassi Kari<br>cmb: Anna-Maaria Oramo<br>lt/teorb: Mikko Ikäheimo</p>",
                "sv": "<p>Föreställningen Fyra Årstider i Malmhuset är ett verk som skapats tillsammans av Finländska barockorkestern och Teatteri Tuike samt invånarna och konstnärerna i nordöstra Helsingfors.</p><p>I musikens centrum finns Vivaldis Årstider samt olika övergångsårstider. Visuella och textrelaterade element som skuggteater, årstidsaforismer, motionsavsnitt och videoprojiceringar driver berättelsen framåt. Bland uppträdare och materialproducenter finns artister och områdets invånare i alla åldrar.</p>",
                "en": "<p>The Four Seasons spectacle brings to Malmitalo a work created jointly by the Finnish Baroque Orchestra, the Tuike theatre, and the residents and artists of northeastern Helsinki.</p><p>Musically, the focus is on Vivaldi’s Seasons, as well as on the intermediate seasons. Visual and textual elements, such as shadow theatre, seasonal aphorisms, movement sections, and video projections, help drive the story. Performers and material producers include artists of all ages and area residents.</p>"
            },
            "name": {
                "fi": "Neljä Vuodenaikaa: Koillis-Helsingin aluespektaakkeli",
                "sv": "Fyra årstider – ett områdesspektakel i Nordöstra Helsingfors",
                "en": "Four Seasons – Northeast Helsinki regional spectacle"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61114/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61132",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5448,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-12T13:57:48.686812Z",
                    "last_modified_time": "2023-10-12T13:57:48.686833Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738036.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5448/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-12T13:57:48.551284Z",
            "last_modified_time": "2023-11-14T06:13:30.383418Z",
            "date_published": null,
            "start_time": "2023-10-27T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D7B16CBB0E2C8DDE2ED9C37430B05918/Kuolleet_lehdet_7_"
            },
            "description": {
                "fi": "<p>Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.</p><p>Heidän tietään kohti tätä kunnioitettavaa päämäärää varjostavat miehen alkoholismi, kadonneet puhelinnumerot, tietämättömyys toistensa nimistä tai osoitteista ja elämän yleinen taipumus asettaa esteitä onneaan etsivien tielle.</p><p>Tämä lempeä tragikomedia on jo kadonneeksi luultu neljäs osa Aki Kaurismäen työläistrilogiaan (Varjoja paratiisissa, Ariel ja Tulitikkutehtaan tyttö).</p><p>Ikäraja 7<br>Kesto 81 min<br>Ensi-ilta 15.9. <br>Tekstitys suomeksi.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "name": {
                "fi": "Kuolleet lehdet (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61132/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61109",
            "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/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5195,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:07.972056Z",
                    "last_modified_time": "2023-10-09T13:31:07.972082Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737460.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5195/?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": "2023-10-09T13:31:07.826009Z",
            "last_modified_time": "2023-11-14T06:13:30.090473Z",
            "date_published": null,
            "start_time": "2023-10-27T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Disneyn eeppinen seikkailu seuraa Simbaa, sisukasta leijonanpentua, joka ei malttaisi odottaa kuninkaaksi tulemista."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/36160A7F8A347D88E37ABA05D265A238/Leijonakuningas_7_"
            },
            "description": {
                "fi": "<p>Disneyn eeppinen seikkailu seuraa Simbaa, sisukasta leijonanpentua, joka ei malttaisi odottaa kuninkaaksi tulemista.</p><p>Hänen kunnianhimoinen setänsä Scar johtaa häntä harhaan, mutta Simba omaksuu hulvattomien seuralaistensa Timonin ja Pumban huolettoman elämäntyylin ja unohtaa kuninkaalliset velvollisuutensa.</p><p>Kohtalo kuitenkin kutsuu, ja hänen täytyy päättää, milloin on oikea aika palata Jylhämaahan ottamaan paikkansa elämän kiertokulussa.<br> <br>Ikäraja: 7<br>Kesto 88 min<br>Puhuttu suomeksi</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia ja klassikoita niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "name": {
                "fi": "Leijonakuningas (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61109/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60532",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4462,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:25:14.834638Z",
                    "last_modified_time": "2023-09-07T14:25:14.834661Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731292.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4462/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:25:14.684708Z",
            "last_modified_time": "2023-11-14T06:13:29.632273Z",
            "date_published": null,
            "start_time": "2023-10-26T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kjell Westön Finlandia-palkittuun menestysromaaniin perustuva elokuva ihmisyydestä ja rakkaudesta kansakunnan myllerrysten keskellä.",
                "sv": "En film baserad på Kjell Westös Finlandia-belönade succéroman om mänsklighet och kärlek under en tumultartad tid.",
                "en": "A film about humanity and love amidst the turmoil of a nation, based on Kjell Westö’s Finlandia award-winning best-selling novel."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5BCB775D4405502B1D91EB1BF6E8C7EE/Kuukauden_klassikko_Missa_kuljimme_kerran_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5BCB775D4405502B1D91EB1BF6E8C7EE/Manadens_filmklassiker_Dar_vi_en_gang_gatt",
                "en": "http://www.malmitalo.fi/en/events/event/5BCB775D4405502B1D91EB1BF6E8C7EE/Classic_film_of_the_month_Where_We_Once_Walked"
            },
            "description": {
                "fi": "<p>Kjell Westön Finlandia-palkittuun menestysromaaniin perustuva elokuva ihmisyydestä ja rakkaudesta kansakunnan myllerrysten keskellä.</p><p>1900-luvun alun Helsinki on oikeastaan kaksi kaupunkia, rikkaan yläluokan idylli ja köyhien työläisten slummikorttelit. Tarina kulkee läpi vuosikymmenten ja seuraa miten aika, paikka ja yhteiskuntaluokka sekä yhdistävät ihmisiä että ajavat heitä toisistaan erilleen.</p><p>Itsenäinen ja utelias Lucie (<b>Jessica Grabowsky</b>) haluaa olla vapaa eikä suostu yläluokan naisten muottiin. Nuoruudenystävä, valokuvaaja Eccu (<b>Jakob Öhrman</b>) rakastaa tulisesti villiä ja eksentristä Lucieta, mutta hänen sydämensä syttyy vain Allulle (<b>Andreas af Enehielm</b>), joka on nuori työväenluokkainen jalkapallosankari.</p><p>Elokuvassa nähdään myös Allun isä Enok (<b>Elmer Bäck</b>), Lucien poliittisesti kiihkeä veli Cedi (<b>Oskar Pöysti</b>) ja tapahtumia sivusta tarkkaileva humanisti Ivar Grandell (<b>Niklas Groundstroem</b>) sekä muita rakastetun romaanin hahmoja.</p><p>Kesto 126 min<br>Ikäsuositus 12+</p><p>Vapaa pääsy</p>",
                "sv": "<p>En film baserad på Kjell Westös Finlandia-belönade succéroman om mänsklighet och kärlek under en tumultartad tid.</p><p>Längd 126 min<br>Åldersrekommendation 12+</p><p>Fritt inträde</p>",
                "en": "<p>A film about humanity and love amidst the turmoil of a nation, based on Kjell Westö’s Finlandia award-winning best-selling novel.</p><p>Duration 126 min<br>Age recommendation 12+</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Kuukauden klassikko: Missä kuljimme kerran (12) – Kino Helios",
                "sv": "Månadens filmklassiker: Där vi en gång gått – Kino Helios",
                "en": "Classic film of the month: Where We Once Walked – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60532/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61068",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5192,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:03.681172Z",
                    "last_modified_time": "2023-10-09T13:31:03.681189Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727082.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5192/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:03.545322Z",
            "last_modified_time": "2023-11-14T06:13:29.409129Z",
            "date_published": null,
            "start_time": "2023-10-26",
            "end_time": "2023-11-18",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "”Olen kiinnostunut metsässä tapahtuvista hitaista ja miltei näkymättömistä muutoksista\", kertoo taidemaalari ja nukketeatteritaiteilija Anna Uschanov."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B2900289B6A78DE3C37E41D024912F4B/Anna_Uschanov_Years_of_plenty_"
            },
            "description": {
                "fi": "<p>”Olen kiinnostunut metsässä tapahtuvista hitaista ja miltei näkymättömistä muutoksista\", kertoo taidemaalari ja nukketeatteritaiteilija Anna Uschanov.</p><p>”Lahottajasienet ja bakteerit nakertavat vääjäämättä lahonnutta puun runkoa. Jokin pieni hajottaa jotain suurta palasiksi. Toisaalta olen myös kiinnostunut metsässä näkyvistä nopeista, ihmisen aiheuttamista jäljistä ja muutoksista. Vastakaadetun puun kanto avaa ihmisen silmiltä muuten salatun näkymän puun vuosirenkaisiin. Puu on arkistoinut kesät ja talvet sisälleen siisteiksi vaihtelevan paksuisiksi ympyröiksi. Kannon sileä pinta katoaa vuosien saatossa, muuttuen tunnistamattomaksi möykyksi.<br> <br>\"Teoksiani varten olen havainnoinut puun ja materian lahoamista ja yrittänyt paikantaa tuota hidasta muutosta. Jos painaa kynnen tarpeeksi syvälle lahopuun pintaan, voi löytää kokonaisen uuden pienen mikroskooppisen yhteiskunnan, joka pyörii täysin omilla toimintaperiaatteillaan, linkittyen kuitenkin jollain tavalla ympärillä olevaan metsään. Teokseni ovat yritys hypätä ihmisen ajasta metsän aikaan.”</p><p><b>Anna Uschanov</b> (s. 1985) on Helsingissä asuva taidemaalari ja nukketeatteritaiteilija. Hän on valmistunut Vapaasta Taidekoulusta sekä Turun Taideakatemian nukketeatterilinjalta. Mittakaavalla leikittely, sen venyttäminen tai kutistaminen ovat hänelle olennainen osa työskentelyä. Erilaisten materiaalien tunnustelu, tutkiminen ja yhdistäminen luovat hänelle erilaisia maisemia ja materiaalisia kokonaisuuksia.</p>"
            },
            "name": {
                "fi": "Anna Uschanov: Years of plenty"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61068/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60531",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-malmitalo-17114088/",
                        "sv": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-malmitalo-17114088/",
                        "en": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-malmitalo-17114088/"
                    },
                    "description": null,
                    "price": {
                        "fi": "31,50 € / 29,50 €",
                        "sv": "31,50 € / 29,50 €",
                        "en": "31,50 € / 29,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4459,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:25:12.140854Z",
                    "last_modified_time": "2023-09-07T14:25:12.140877Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729152.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4459/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:25:11.552178Z",
            "last_modified_time": "2023-11-14T06:13:29.196387Z",
            "date_published": null,
            "start_time": "2023-10-25T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "EASY, Suomen vanhin ja tunnetuin Eagles tribuuttibändi, teki menestyksekkään comebackin yhdeksän vuotta sitten.",
                "sv": "EASY, Finlands äldsta och mest kända hyllningsband för Eagles, gjorde en framgångsrik comeback för nio år sedan.",
                "en": "EASY, Finland’s oldest and best-known Eagles tribute band, made a successful comeback nine years ago."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/58145F7D792A57406810F0ED843B6FEB/EASY_The_Eagles_Tribute_Band",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/58145F7D792A57406810F0ED843B6FEB/EASY_The_Eagles_Tribute_Band",
                "en": "http://www.malmitalo.fi/en/events/event/58145F7D792A57406810F0ED843B6FEB/EASY_The_Eagles_Tribute_Band"
            },
            "description": {
                "fi": "<p>EASY, Suomen vanhin ja tunnetuin Eagles tribuuttibändi, teki menestyksekkään comebackin yhdeksän vuotta sitten.</p><p>EASY:n nimeen liitettiin tuolloin The Eagles Tribute Band. Nykyisessä kokoonpanossa soittaa kolme alkuperäistä jäsentä: <b>Peter ”Petteri” Kokljuschkin</b> (bass), <b>Roni Kamras</b> (guit, lead voc) ja <b>Sami Javne</b> (drums, voc.). Lisäksi bändissä soittaa ns. ”nuorisoketju” huippukitaristit ja laulajat <b>Lauri ”Lappe” Holopainen</b> ja <b>Tomi Juustila</b>.</p><p>Easyn hienot lauluharmoniat ja solistien Ronin ja Lapen Eagles-hittien tulkinnat ovat saaneet ylistystä niin yleisöltä kuin kriitikoiltakin.</p><p>Lisäksi konsertissa esiintyy upeaääninen <b>Katri Silolahti</b>, joka tulkitsee <b>Linda Ronstadtin</b> 70-luvulla esittämiä hittejä. Katri toimii myös bändin kosketinsoittajana ja 12-string kitaristina.</p><p>EASY konsertoi viimeksi Malmitalolla lokakuussa 2018, jolloin samana päivänä oli kaksi lähes loppuunmyytyä konserttia.</p><p>Konsertin kesto on n. 2 tuntia sisältäen väliajan.</p>",
                "sv": "<p>EASY, Finlands äldsta och mest kända hyllningsband för Eagles, gjorde en framgångsrik comeback för nio år sedan.</p><p>Easys fina sångharmonier och solisterna Roni och Lapes tolkningar av Eagles hitlåtar har fått beröm av såväl publik som kritiker.</p><p>Längd 2 t med paus</p>",
                "en": "<p>EASY, Finland’s oldest and best-known Eagles tribute band, made a successful comeback nine years ago.</p><p>EASY’s fine vocal harmonies and soloists Ron and Lappe’s interpretations of Eagles hits have been praised by audiences and critics alike.</p><p>Duration 2 hours with intermission</p>"
            },
            "name": {
                "fi": "EASY The Eagles Tribute Band",
                "sv": "EASY The Eagles Tribute Band",
                "en": "EASY The Eagles Tribute Band"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60531/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61117",
            "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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV",
                        "en": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5328,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-10T12:03:00.983805Z",
                    "last_modified_time": "2023-10-10T12:03:00.983826Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737930.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5328/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-10T12:02:59.899069Z",
            "last_modified_time": "2023-11-14T06:13:29.121622Z",
            "date_published": null,
            "start_time": "2023-10-25T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Dumb Money perustuu järjettömään tositarinaan tavallisista ihmisistä, jotka käänsivät Wall Streetin päälaelleen ja rikastuivat tekemällä GameStopista, ostoskeskuksen videopelikaupasta, maailman kuumimman yrityksen.",
                "en": "Dumb Money is the ultimate David vs. Goliath tale, based on the insane true story of everyday people who flipped the script on Wall Street and got rich by turning GameStop (yes, the mall videogame store) into the world’s hottest company."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0804306DB3D26B7226DE6388B9DDC6EB/Dumb_Money_S_",
                "en": "http://www.malmitalo.fi/en/events/event/0804306DB3D26B7226DE6388B9DDC6EB/Dumb_Money_S_"
            },
            "description": {
                "fi": "<p>Dumb Money perustuu järjettömään tositarinaan tavallisista ihmisistä, jotka käänsivät Wall Streetin päälaelleen ja rikastuivat tekemällä GameStopista, ostoskeskuksen videopelikaupasta, maailman kuumimman yrityksen.</p><p>Elokuva on varsinainen Daavid vastaan Goljat -kertomus. Kaiken keskellä on tavallinen tyyppi Keith Gill (Paul Dano), joka aloittaa koko tapahtumasarjan upottamalla säästönsä osakkeisiin ja julkaisemalla siitä postauksen sosiaalisessa mediassa. Kun hänen postauksensa alkavat räjähtää käsiin, mullistuu myös Keithin ja kaikkien hänen seuraajiensa elämä. Osakevinkistä kasvaa ilmiö ja kaikki rikastuvat – kunnes miljardöörit alkavat taistella vastaan, ja molempien osapuolten maailmat kääntyvät ylösalaisin.</p><p>Dumb Moneyn muissa rooleissa nähdään muun muassa Pete Davidson, Vincent D’Onofrio, America Ferrera, Nick Offerman, Anthony Ramos, Sebastian Stan, Shailene Woodley ja Seth Rogen. Elokuvan on ohjannut Craig Gillespie ja käsikirjoittaneet Lauren Schuker Blum sekä Rebecca Angelo pohjautuen Ben Mezrichin kirjaan The Antisocial Network.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>",
                "en": "<p>Dumb Money is the ultimate David vs. Goliath tale, based on the insane true story of everyday people who flipped the script on Wall Street and got rich by turning GameStop (yes, the mall videogame store) into the world’s hottest company.</p><p>In the middle of everything is regular guy Keith Gill (Paul Dano), who starts it all by sinking his life savings into the stock and posting about it. When his social posts start blowing up, so does his life and the lives of everyone following him. As a stock tip becomes a movement, everyone gets rich – until the billionaires fight back, and both sides find their worlds turned upside down.</p><p>Dumb Money also stars Pete Davidson, Vincent D’Onofrio, America Ferrera, Nick Offerman, Anthony Ramos, Sebastian Stan, Shailene Woodley and Seth Rogen. Directed by Craig Gillespie, written by Lauren Schuker Blum & Rebecca Angelo, based on the book “The Antisocial Network” by Ben Mezrich.</p><p>The programme at Kino Helios includes the latest premieres for adults and the whole family. As usual, the screenings at Kino Helios will take place in the small hall of Malmitalo on Wednesdays, Fridays and Saturdays at 15:00 and 18:00 (weekly changes possible). The autumn season starts on Saturday, 2 September. Kino Helios’ programme will be finalised in August.</p><p>Tickets from €8, on sale two weeks before the screening at the latest at <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "name": {
                "fi": "Dumb Money (S) – Kino Helios",
                "en": "Dumb Money (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61117/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61107",
            "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/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5191,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:59.895029Z",
                    "last_modified_time": "2023-10-09T13:30:59.895055Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737464.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5191/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:59.742375Z",
            "last_modified_time": "2023-11-14T06:13:28.596202Z",
            "date_published": null,
            "start_time": "2023-10-25T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Vuonna 1975 Kimpassa-kollektiivi oli suurperhe. 24 vuotta myöhemmin, vuonna 1999 se on kutistunut kovin pieneksi.",
                "sv": "1975 var kollektivet Tillsammans en storfamilj. 24 år senare, 1999, har det förvandlats till världens minsta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/073910A98A9F07B48DE14DD61BA16812/Kimpassa_99_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/073910A98A9F07B48DE14DD61BA16812/Tillsammans_99_7_"
            },
            "description": {
                "fi": "<p>Vuonna 1975 Kimpassa-kollektiivi oli suurperhe. 24 vuotta myöhemmin, vuonna 1999 se on kutistunut kovin pieneksi.</p><p>Jäljellä on enää maailman ystävällisin ihminen Göran ja räsymattoja kutova Klasse. Kun Klasse kutsuu salaa kaikki Göranin syntymäpäiväjuhliin, kokoontuvat he taas yhteen yhdeksi illaksi.</p><p>Mitä heidän elämässään on tapahtunut sitten viime näkemän? Onko elämä kohdellut heitä hyvin vai huonosti? Kenestä tuli kuuluisa kirjailija ja kuka päätyi mielisairalaan? Ovatko 70-luvun unelmat yhä elossa? Kuka muistaa Peterin? Syökö Göran yhä puuroa?</p><p>Kimpassa 99 on elokuva ajan kulumisesta ja elämän luonteesta, joka koskettaa ja liikuttaa katsojaa huumorillaan, ilollaan ja jopa surullaan.</p><p>Ruotsi 2023<br>Ikäraja: 7<br>Kesto: 1 t 35 min</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia ja klassikoita niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>",
                "sv": "<p>1975 var kollektivet Tillsammans en storfamilj. 24 år senare, 1999, har det förvandlats till världens minsta.</p><p>Kvar finns bara Göran, världens snällaste, och Klasse, som väver sina trasmattor. När Klasse i hemlighet bjuder in till Görans födelsedag, återförenas alla för en kväll.</p><p>Vad har hänt i deras liv sen sist? Har det gått bra eller dåligt för dem? Vem blev känd författare och vem hamnade på mentalsjukhus? Lever drömmarna från sjuttiotalet? Vem minns Peter? Äter Göran fortfarande gröt?</p><p>Tillsammans 99 är en film som vill beröra och rycka med biopubliken med sin humor, glädje och även sorg. En komedi och en allvarlig berättelse om tidens gång och om hur det är att leva.</p>"
            },
            "name": {
                "fi": "Kimpassa 99 (7) – Kino Helios",
                "sv": "Tillsammans 99 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61107/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60994",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmitalo-jaeaehyvaeiset-aseille-malmitalo-17582132/",
                        "sv": "https://www.lippu.fi/event/malmitalo-jaeaehyvaeiset-aseille-malmitalo-17582132/",
                        "en": "https://www.lippu.fi/event/malmitalo-jaeaehyvaeiset-aseille-malmitalo-17582132/"
                    },
                    "description": null,
                    "price": {
                        "fi": "28,50 € / 30,50 €",
                        "sv": "28,50 € / 30,50 €",
                        "en": "28,50 € / 30,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5188,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:56.326541Z",
                    "last_modified_time": "2023-10-09T13:30:56.326580Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735284.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5188/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:56.143819Z",
            "last_modified_time": "2023-11-14T06:13:28.013620Z",
            "date_published": null,
            "start_time": "2023-10-24T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Liisa Tavia muistellen.",
                "sv": "Liisa Tavi in memoriam.",
                "en": "Liisa Tavi in memoriam."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4210E43266DB6F6CEF990E7F55680F6C/Jaahyvaiset_aseille_-rauhankonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4210E43266DB6F6CEF990E7F55680F6C/Farewell_to_arms_Peace_concert",
                "en": "http://www.malmitalo.fi/en/events/event/4210E43266DB6F6CEF990E7F55680F6C/Ett_farval_till_vapen_Fredskonsert"
            },
            "description": {
                "fi": "<p>Liisa Tavia muistellen.</p><p>Mukana konsertissa muun muassa Monna Kamu, Eero Ojanen, Harri Saksala, Amalia Martinez, Minja Koski, Kielo Kärkkäinen, Pelle Miljoona, Arto Piispanen, Ville Rauhala.<br> <br>Kesto n. 2 tuntia sis. väliaika</p>",
                "sv": "<p>Liisa Tavi in memoriam.</p><p>Monna Kamu, Eero Ojanen, Harri Saksala, Amalia Martinez, Minja Koski, Kielo Kärkkäinen, Pelle Miljoona, Arto Piispanen, Ville Rauhala.<br> <br>Längd cirka 2 t med paus</p>",
                "en": "<p>Liisa Tavi in memoriam.</p><p>Monna Kamu, Eero Ojanen, Harri Saksala, Amalia Martinez, Minja Koski, Kielo Kärkkäinen, Pelle Miljoona, Arto Piispanen, Ville Rauhala.<br> <br>Duration approx. 2 hours with intermission.</p>"
            },
            "name": {
                "fi": "Jäähyväiset aseille -rauhankonsertti – YK-viikon rauhankonsertti",
                "sv": "Farewell to arms | Peace concert",
                "en": "Ett farväl till vapen | Fredskonsert"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60994/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61116",
            "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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV",
                        "en": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5327,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-10T12:02:45.025331Z",
                    "last_modified_time": "2023-10-10T12:02:45.025353Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737928.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5327/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-10T12:02:44.855403Z",
            "last_modified_time": "2023-11-14T06:13:27.151614Z",
            "date_published": null,
            "start_time": "2023-10-21T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Dumb Money perustuu järjettömään tositarinaan tavallisista ihmisistä, jotka käänsivät Wall Streetin päälaelleen ja rikastuivat tekemällä GameStopista, ostoskeskuksen videopelikaupasta, maailman kuumimman yrityksen.",
                "en": "Dumb Money is the ultimate David vs. Goliath tale, based on the insane true story of everyday people who flipped the script on Wall Street and got rich by turning GameStop (yes, the mall videogame store) into the world’s hottest company."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F198FDB81EDE0EFB2789D5C08A5C7D8B/Dumb_Money_S_",
                "en": "http://www.malmitalo.fi/en/events/event/F198FDB81EDE0EFB2789D5C08A5C7D8B/Dumb_Money_S_"
            },
            "description": {
                "fi": "<p>Dumb Money perustuu järjettömään tositarinaan tavallisista ihmisistä, jotka käänsivät Wall Streetin päälaelleen ja rikastuivat tekemällä GameStopista, ostoskeskuksen videopelikaupasta, maailman kuumimman yrityksen.</p><p>Elokuva on varsinainen Daavid vastaan Goljat -kertomus. Kaiken keskellä on tavallinen tyyppi Keith Gill (Paul Dano), joka aloittaa koko tapahtumasarjan upottamalla säästönsä osakkeisiin ja julkaisemalla siitä postauksen sosiaalisessa mediassa. Kun hänen postauksensa alkavat räjähtää käsiin, mullistuu myös Keithin ja kaikkien hänen seuraajiensa elämä. Osakevinkistä kasvaa ilmiö ja kaikki rikastuvat – kunnes miljardöörit alkavat taistella vastaan, ja molempien osapuolten maailmat kääntyvät ylösalaisin.</p><p>Dumb Moneyn muissa rooleissa nähdään muun muassa Pete Davidson, Vincent D’Onofrio, America Ferrera, Nick Offerman, Anthony Ramos, Sebastian Stan, Shailene Woodley ja Seth Rogen. Elokuvan on ohjannut Craig Gillespie ja käsikirjoittaneet Lauren Schuker Blum sekä Rebecca Angelo pohjautuen Ben Mezrichin kirjaan The Antisocial Network.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>",
                "en": "<p>Dumb Money is the ultimate David vs. Goliath tale, based on the insane true story of everyday people who flipped the script on Wall Street and got rich by turning GameStop (yes, the mall videogame store) into the world’s hottest company.</p><p>In the middle of everything is regular guy Keith Gill (Paul Dano), who starts it all by sinking his life savings into the stock and posting about it. When his social posts start blowing up, so does his life and the lives of everyone following him. As a stock tip becomes a movement, everyone gets rich – until the billionaires fight back, and both sides find their worlds turned upside down.</p><p>Dumb Money also stars Pete Davidson, Vincent D’Onofrio, America Ferrera, Nick Offerman, Anthony Ramos, Sebastian Stan, Shailene Woodley and Seth Rogen. Directed by Craig Gillespie, written by Lauren Schuker Blum & Rebecca Angelo, based on the book “The Antisocial Network” by Ben Mezrich.</p><p>The programme at Kino Helios includes the latest premieres for adults and the whole family. As usual, the screenings at Kino Helios will take place in the small hall of Malmitalo on Wednesdays, Fridays and Saturdays at 15:00 and 18:00 (weekly changes possible). The autumn season starts on Saturday, 2 September. Kino Helios’ programme will be finalised in August.</p><p>Tickets from €8, on sale two weeks before the screening at the latest at <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "name": {
                "fi": "Dumb Money (S) – Kino Helios",
                "en": "Dumb Money (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61116/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60530",
            "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: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: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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jokeri-pokeri-box-deluxe-show-malmitalo-16635655/",
                        "sv": "https://www.lippu.fi/event/jokeri-pokeri-box-deluxe-show-malmitalo-16635655/",
                        "en": "https://www.lippu.fi/event/jokeri-pokeri-box-deluxe-show-malmitalo-16635655/"
                    },
                    "description": null,
                    "price": {
                        "fi": "18,50 €",
                        "sv": "18,50 €",
                        "en": "18,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4441,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:56.330553Z",
                    "last_modified_time": "2023-09-07T14:24:56.330579Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731324.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4441/?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": "2023-09-07T14:24:55.458118Z",
            "last_modified_time": "2023-11-14T06:13:26.919650Z",
            "date_published": null,
            "start_time": "2023-10-21T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Uudessa iloisessa showssa on ihmeteltävää koko perheelle, kun Simo Aalto tarjoilee maailman parhaita taikatemppuja ryyditettynä hyväntuulisella lavashowlla.",
                "sv": "Barns och vuxnas stående favorit, tv-kändisen och den legendariska världsmästartrollkarlen Simo Aalto firar i år sin 45-åriga karriär som scenkonstnär.",
                "en": "Simo Aalto, the legendary favourite for children and adults and the world champion magician from TV, is celebrating 45 years as a performing artist this year."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CA3F2C26DF93F4C6B0EBCAF3C390787A/Jokeri_Pokeri_Box_DeLuxe_SHOW",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CA3F2C26DF93F4C6B0EBCAF3C390787A/Jokeri_Pokeri_Box_DeLuxe_SHOW",
                "en": "http://www.malmitalo.fi/en/events/event/CA3F2C26DF93F4C6B0EBCAF3C390787A/Jokeri_Pokeri_Box_DeLuxe_SHOW"
            },
            "description": {
                "fi": "<p>Uudessa iloisessa showssa on ihmeteltävää koko perheelle, kun Simo Aalto tarjoilee maailman parhaita taikatemppuja ryyditettynä hyväntuulisella lavashowlla.</p><p>Lasten ja aikuisten legendaarinen kestosuosikki ja TV:stä tuttu maailmanmestaritaikuri <b>Simo Aalto</b> juhlii kuluvana vuonna 45-vuotista uraansa esiintyvänä taiteilijana. Simo ja hänen avustaja-vaimonsa <b>Kirsti</b> juhlivat merkkipaalua syksyllä 2023 alkavalla mittavalla kuudentoista paikkakunnan <i>Jokeri Pokeri Box DeLuxe</i> -kiertueella.</p><p>Tällä kiertueella on ensimmäistä kertaa koskaan mukana Special Guest Star, vatsastapuhuja <b>Sari Aalto</b>. Sari muistetaan vuoden 2017 Talent Suomi -ohjelman kakkossijastaan sekä lukemattomista videoistaan TikTok -palveluun ja Youtubeen. TikTokissa ja YouTubessa Sarilla on yli 5 miljoonaa seuraajaa ja videoita on katsottu yli 100 miljoonaa kertaa ympäri maailman. Esityksen jälkeen Sari on tavattavissa Meet&Greet -tapahtumassa aulatiloissa.</p><p>Kolmikon mukaansatempaava esiintyminen takaa, että taikapölyn vaikutus säilyy pitkään, mieli virkistyy ja arjen pyöritys unohtuu. Sanalla sanoen luvassa on laadukasta estradiviihdettä!</p><p>Esitys sopii koko perheelle.</p>",
                "sv": "<p>Barns och vuxnas stående favorit, tv-kändisen och den legendariska världsmästartrollkarlen Simo Aalto firar i år sin 45-åriga karriär som scenkonstnär.</p><p>Special Guest Star: Sari Aalto</p>",
                "en": "<p>Simo Aalto, the legendary favourite for children and adults and the world champion magician from TV, is celebrating 45 years as a performing artist this year.</p><p>Special Guest Star: Sari Aalto</p>"
            },
            "name": {
                "fi": "Jokeri Pokeri Box DeLuxe SHOW",
                "sv": "Jokeri Pokeri Box DeLuxe SHOW",
                "en": "Jokeri Pokeri Box DeLuxe SHOW"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60530/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61108",
            "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/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5187,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:51.404819Z",
                    "last_modified_time": "2023-10-09T13:30:51.404838Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737458.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5187/?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": "2023-10-09T13:30:50.623202Z",
            "last_modified_time": "2023-11-14T06:13:26.689498Z",
            "date_published": null,
            "start_time": "2023-10-21T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Disneyn eeppinen seikkailu seuraa Simbaa, sisukasta leijonanpentua, joka ei malttaisi odottaa kuninkaaksi tulemista."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2020654676145F7987EC866EAAEA84ED/Leijonakuningas_7_"
            },
            "description": {
                "fi": "<p>Disneyn eeppinen seikkailu seuraa Simbaa, sisukasta leijonanpentua, joka ei malttaisi odottaa kuninkaaksi tulemista.</p><p>Hänen kunnianhimoinen setänsä Scar johtaa häntä harhaan, mutta Simba omaksuu hulvattomien seuralaistensa Timonin ja Pumban huolettoman elämäntyylin ja unohtaa kuninkaalliset velvollisuutensa.</p><p>Kohtalo kuitenkin kutsuu, ja hänen täytyy päättää, milloin on oikea aika palata Jylhämaahan ottamaan paikkansa elämän kiertokulussa.<br> <br>Ikäraja: 7<br>Kesto 88 min<br>Puhuttu suomeksi</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia ja klassikoita niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "name": {
                "fi": "Leijonakuningas (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61108/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60840",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/katri-ylander-trio-malmitalo-17516316/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "22,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4437,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:52.940904Z",
                    "last_modified_time": "2023-09-07T14:24:52.940935Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728233.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4437/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:52.071657Z",
            "last_modified_time": "2023-11-14T06:13:26.537593Z",
            "date_published": null,
            "start_time": "2023-10-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Valovoimaista Katri Ylanderia kuullaan tänä syksynä akustisella kiertueellaan ympäri Suomen konserttisalien."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D1EBC6AFB27A698646D9D250D93200CD/Katri_Ylander_Syksy_akustisesti_"
            },
            "description": {
                "fi": "<p>Valovoimaista Katri Ylanderia kuullaan tänä syksynä akustisella kiertueellaan ympäri Suomen konserttisalien.</p><p>Valtavista hiteistään ja upeasta äänestään tunnettua artistia säestää sellisti <b>Elias Kahila</b> ja kitaristi <b>Markus Venehsalo</b>.</p><p>Erikoiskiertue sai ideansa vuosi sitten syksyllä soitetusta keikasta, jossa säestys oli samanlainen. \"Pimeät illat, sellon syvä sointi ja virtuositeettinen kitaransoitto sopivat täydellisesti syysiltaan. Olen jo vuosia haaveillut tällaisen kokoonpanon kanssa keikkojen tekemisestä ja nyt siihen avautui mahdollisuus. Lämpimästi tervetuloa! \" Katri iloitsee.</p><p>Jyväskyläläinen Elias Kahila on innovatiivinen pop/rock-sellisti, joka on soolokiertueidensa lisäksi keikkaillut mm. Antony Parviaisen, Antti Railion, Costello Hautamäen sekä JP Leppäluodon kanssa Kahila on kehittänyt sellolle uutta blues-pohjaista sellotekniikkaa. Katrin kiertueella hän laulaa lisäksi taustoja ja hyödyntää looppipedaaleita.</p><p>Markus Venehsalo on nilsiäläislähtöinen kitaravirtuoosi, joka on vaikuttanut vuosia mm. Katrin bändikokoonpanossa sekä säveltää ja tuottaa musiikkia bändilleen Mavon Safialle.</p><p>Katri Ylander tuli koko kansan tuntemaksi vuonna 2005 Idolsin toiselta tuotantokaudelta sijoittuen upeasti toiseksi. Kahdesti Emma-ehdokkaana ollut artisti on tunnettu mm. kappaleistaan <i>Sano mulle jotain kaunista</i>, <i>Välitunnilla</i>, <i>Onko vielä aikaa?</i> ja <i>Mansikkamäki</i>.</p>"
            },
            "name": {
                "fi": "Katri Ylander: Syksy akustisesti"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60840/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61106",
            "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/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5186,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:47.998039Z",
                    "last_modified_time": "2023-10-09T13:30:47.998066Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737462.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5186/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:47.851822Z",
            "last_modified_time": "2023-11-14T06:13:26.228157Z",
            "date_published": null,
            "start_time": "2023-10-20T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Vuonna 1975 Kimpassa-kollektiivi oli suurperhe. 24 vuotta myöhemmin, vuonna 1999 se on kutistunut kovin pieneksi.",
                "sv": "1975 var kollektivet Tillsammans en storfamilj. 24 år senare, 1999, har det förvandlats till världens minsta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2FB77024059A35274B83250763A8F649/Kimpassa_99_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2FB77024059A35274B83250763A8F649/Tillsammans_99_7_"
            },
            "description": {
                "fi": "<p>Vuonna 1975 Kimpassa-kollektiivi oli suurperhe. 24 vuotta myöhemmin, vuonna 1999 se on kutistunut kovin pieneksi.</p><p>Jäljellä on enää maailman ystävällisin ihminen Göran ja räsymattoja kutova Klasse. Kun Klasse kutsuu salaa kaikki Göranin syntymäpäiväjuhliin, kokoontuvat he taas yhteen yhdeksi illaksi.</p><p>Mitä heidän elämässään on tapahtunut sitten viime näkemän? Onko elämä kohdellut heitä hyvin vai huonosti? Kenestä tuli kuuluisa kirjailija ja kuka päätyi mielisairalaan? Ovatko 70-luvun unelmat yhä elossa? Kuka muistaa Peterin? Syökö Göran yhä puuroa?</p><p>Kimpassa 99 on elokuva ajan kulumisesta ja elämän luonteesta, joka koskettaa ja liikuttaa katsojaa huumorillaan, ilollaan ja jopa surullaan.</p><p>Ruotsi 2023<br>Ikäraja: 7<br>Kesto: 1 t 35 min</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia ja klassikoita niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>",
                "sv": "<p>1975 var kollektivet Tillsammans en storfamilj. 24 år senare, 1999, har det förvandlats till världens minsta.</p><p>Kvar finns bara Göran, världens snällaste, och Klasse, som väver sina trasmattor. När Klasse i hemlighet bjuder in till Görans födelsedag, återförenas alla för en kväll.</p><p>Vad har hänt i deras liv sen sist? Har det gått bra eller dåligt för dem? Vem blev känd författare och vem hamnade på mentalsjukhus? Lever drömmarna från sjuttiotalet? Vem minns Peter? Äter Göran fortfarande gröt?</p><p>Tillsammans 99 är en film som vill beröra och rycka med biopubliken med sin humor, glädje och även sorg. En komedi och en allvarlig berättelse om tidens gång och om hur det är att leva.</p>"
            },
            "name": {
                "fi": "Kimpassa 99 (7) – Kino Helios",
                "sv": "Tillsammans 99 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61106/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}