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=63
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=64",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=62"
    },
    "data": [
        {
            "id": "helmet:276014",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 6802,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-12-21T14:21:23.037217Z",
                    "last_modified_time": "2024-02-06T13:38:14.435133Z",
                    "url": "https://www.helmet.fi/download/noname/{9E2CA508-38F2-430C-A19E-AD32F73D1D9E}/108292",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6802/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-12-21T14:21:23.007367Z",
            "last_modified_time": "2024-02-06T13:38:14.475408Z",
            "date_published": "2023-12-21T13:07:09.633000Z",
            "start_time": "2024-01-11T07:30:00Z",
            "end_time": "2024-01-11T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Satutuokiot Malmin kirjastossa joka toinen torstai klo 9.30."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Satutuokiot Malmin kirjastossa joka toinen torstai klo 9.30, alkaen 11.1.2024</p><p>Luemme ja seikkailemme erilaisten teemojen parissa koko kevään, tule mukaan!<br> Päiväkotiryhmät voivat ilmoittautua 1.1.2024 alkaen sivulla <a href=\"https://kultus.fi/event/kultus:agge4rtc2i?places=tprek%3A8192&amp;returnPath=%2Fsearch\">kultus.fi</a>. <br><br> Päivät: 11.1., 25.1., 8.2., 7.3., 21.3., 4.4., 18.4., 2.5. ja 16.5.</p>"
            },
            "name": {
                "fi": "Satutuokiot"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276014/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:272280",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?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": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 6497,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-12-07T14:25:01.189068Z",
                    "last_modified_time": "2024-02-06T13:38:14.074808Z",
                    "url": "https://www.helmet.fi/download/noname/{F7F58DAB-1540-44C2-8BA6-4D2AA31FD510}/107942",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6497/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-12-07T14:25:01.163367Z",
            "last_modified_time": "2024-02-06T13:38:14.114083Z",
            "date_published": "2023-12-07T06:00:00Z",
            "start_time": "2024-01-10T16:30:00Z",
            "end_time": "2024-01-10T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Dokumenttiohjaaja Riitta Rask vierailee Tapanilan kirjastossa keskustelemassa tuoreista elokuvistaan ja säveltäjä Kaija Saariahosta. Viime vuonna edesmennyttä Saariahoa pidetään yhtenä maailman arvostetuimmista nykysäveltäjistä."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Dokumenttiohjaaja <b>Riitta Rask</b> vierailee Tapanilan kirjastossa keskustelemassa tuoreista elokuvistaan ja säveltäjä <b>Kaija Saariahosta</b>. Viime vuonna edesmennyttä Saariahoa pidetään yhtenä maailman arvostetuimmista nykysäveltäjistä.</p><p>Raskin dokumentit Universumin kaiut – Kaija Saariahon musiikki (2023) sekä Musiikkitalon uusista konserttiuruista kertova dokumentti Urkujen synty (2024) saavat ensiesityksensä televisiossa Ylen kanavilla vuoden vaihteessa. Ensimmäinen mainituista dokumenteista käsittelee Saariahon elämää ja uraa, jälkimmäinen kertoo poikkeuksellisesta soittimesta, joka Saariahon tekemän lahjoituksen turvin valmistuu Musiikkitalolle vuoden 2024 alkuun mennessä. </p><p>Vapaa pääsy!</p>"
            },
            "name": {
                "fi": "Keskustelutilaisuus: Kaija Saariaho"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:272280/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:272272",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 2618,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:27:59.658852Z",
                    "last_modified_time": "2024-02-06T13:38:10.910269Z",
                    "url": "https://www.helmet.fi/download/noname/{D655650A-BD46-4087-8999-57508B6C8EA2}/99122",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2618/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                }
            ],
            "created_time": "2023-12-05T15:22:07.023709Z",
            "last_modified_time": "2024-02-06T13:38:10.947399Z",
            "date_published": "2023-12-05T13:00:00Z",
            "start_time": "2024-01-10T11:00:00Z",
            "end_time": "2024-01-10T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule keskiviikkoisin koulun jälkeen kirjastolle pelaamaan ja askartelemaan!"
            },
            "info_url": null,
            "description": {
                "fi": "Tule keskiviikkoisin kirjastolle pelaamaan ja askartelemaan! Kerran viikossa kirjastolla järjestetään iltapäiväohjelmaa koululaisille: pelattavana on lautapelejä ja Nintendo Switch ja lisäksi on vaihtelevasti askartelua tai muuta puuhaa."
            },
            "name": {
                "fi": "Koululaisten keskiviikot"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:272272/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:271759",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 6391,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-11-30T14:22:08.390467Z",
                    "last_modified_time": "2024-02-06T13:38:06.043921Z",
                    "url": "https://www.helmet.fi/download/noname/{B191DA19-ED15-46FE-A929-451A97FC9BDF}/79338",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6391/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-11-30T14:22:08.371203Z",
            "last_modified_time": "2024-02-06T13:38:06.084023Z",
            "date_published": "2023-11-30T08:00:00Z",
            "start_time": "2024-01-09T07:30:00Z",
            "end_time": "2024-01-09T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa satujen ja lorujen maailmaan!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa kuuntelemaan satuja Tapanilan kirjastoon parillisten viikkojen tiistaina klo 9.30-10.00. Satutuokioissa sukelletaan yhdessä satujen ja tarinoiden maailmaan. <br> Tervetuloa mukaan isot ja pienet!</p><p>Huom! Avoimet satutuokiot on tarkoitettu perheille ja perhepäivähoitajille, mutta ei päiväkodeille. Päiväkotiryhmien satutuokiot varataan Kultuksen kautta. Lue lisää: <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Tapanilan_kirjasto/Koulut_ja_paivakodit/Paivakotiyhteistyo(188971)\">Päiväkotiyhteistyö | Helmet</a></p>"
            },
            "name": {
                "fi": "Avoimet satutuokiot"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271759/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:271776",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?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": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 2810,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2023-08-15T15:32:27.565448Z",
                    "last_modified_time": "2024-02-06T13:38:05.274541Z",
                    "url": "https://www.helmet.fi/download/noname/{D8BFE00A-0ED9-41F1-851D-4B02769C00AD}/102067",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2810/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2023-11-30T14:22:08.240323Z",
            "last_modified_time": "2024-02-06T13:38:05.314031Z",
            "date_published": "2023-04-24T16:30:00Z",
            "start_time": "2024-01-08T16:00:00Z",
            "end_time": "2024-01-08T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa tutustumaan Tapanilan kirjaston 3D-tulostimeen ja tulostamisen alkeisiin yhdessä joka kuun ensimmäisenä maanantaina."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kiinnostaako 3D-tulostus, mutta et ole saanut tartuttua toimeen? Tervetuloa tutustumaan Tapanilan kirjaston 3D-tulostimeen ja tulostamisen alkeisiin yhdessä. Et tarvitse mitään ennakkotietoja aiheesta, utelias mieli riittää. Avoin opastus kirjaston 3D-tulostimen käyttöön joka kuun ensimmäisenä maanantaina klo 18-19.</p>"
            },
            "name": {
                "fi": "Avoin 3D-opastus"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271776/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61600",
            "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/tuure-kilpelaeinen-soolo-malmitalo-17997018/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6473,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:07.328826Z",
                    "last_modified_time": "2024-02-06T13:23:02.314342Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740383.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6473/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-07T14:14:07.294609Z",
            "last_modified_time": "2024-02-06T13:23:02.353867Z",
            "date_published": null,
            "start_time": "2024-02-03T17: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": "Malmitalo ylpeänä esittää Tuure Kilpeläisen intimiin soolokonsertin Malmisalissa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8A931B68E1DF6B83737E6198261F1E2B/LOPPUUNMYYTY_Tuure_Kilpelainen_soolo"
            },
            "description": {
                "fi": "<p>Malmitalo ylpeänä esittää Tuure Kilpeläisen intimiin soolokonsertin Malmisalissa.</p><p>Urallaan useita kulta- ja platinalevyjä, Emma-palkintoja ja viimeisimpänä kesällä 2023 Iskelmä-Finlandia palkinnon saavuttanut artisti tuli alunperin suurelle yleisölle tutuksi yhteistyöstään Kaihon Karavaani -yhtyeen kanssa, ja muun muassa Vain Elämää -sarjan 9. kaudelta.</p><p>Laulaja-lauluntekijä Kilpeläinen julkaisi syksyllä 2023 uuden albuminsa ”Sanat jää ilmaan”, jonka on tuottanut KUUMAA-yhtyeestä tuttu Johannes Brotherus. Levyllä yhdistyvät moderni tuotanto, artistin tuttu, rakastettu ääni ja henkilökohtaiset tekstit. Kaiken uuden ohella levyllä kuuluu myös aikaisemmilta vuosilta tuttu Tuure: lämmintä ja välitöntä energiaa luova karhea ja samettinen tulkitsija.<br> <br>Kesto: 110 min sis. väliajan 20 min.</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Tuure Kilpeläinen – soolo"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61600/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61913",
            "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/kino-helios-poor-things-3570483/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7178,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-15T12:13:51.909837Z",
                    "last_modified_time": "2024-02-06T13:23:02.217872Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743829.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7178/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-15T12:13:51.883759Z",
            "last_modified_time": "2024-02-06T13:23:02.257137Z",
            "date_published": null,
            "start_time": "2024-02-03T16: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": "Elokuvantekijä Yorgos Lanthimos ja tuottaja Emma Stone tuovat valkokankaalle mielikuvituksellisen tarinan Bella Baxterin (Stone) uskomattomasta evoluutiosta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C1FB1FF4F9010C23A974A6F6BEFBB638/Poor_things_16_"
            },
            "description": {
                "fi": "<p>Elokuvantekijä Yorgos Lanthimos ja tuottaja Emma Stone tuovat valkokankaalle mielikuvituksellisen tarinan Bella Baxterin (Stone) uskomattomasta evoluutiosta.</p><p>Bella on nuori nainen, jonka nerokas mutta omintakeinen tiedemies tri Godwin Baxter (Willem Dafoe) herättää henkiin. Aluksi Bella on innokas opettelemaan elämää Baxterin siipien suojassa. Elämänjanossaan hän kuitenkin karkaa sliipatun ja paheellisen lakimiehen Duncan Wedderburnin (Mark Ruffalo) mukana myrskyisälle matkalle halki mantereiden. Sen myötä aikansa ennakkoluulot karistaneesta Bellasta kasvaa vankkumaton vapauden ja tasa-arvon puolustaja.</p><p>Poor Things voitti Venetsian elokuvajuhlien pääpalkinnon ja se sai Suomen ensiesityksensä tuoreeltaan Rakkautta ja Anarkiaa -festivaalin R&A-gaalan elokuvana syyskuussa. Emma Stone palkittin Golden Globella suorituksestaan parhaana naisnäyttelijänä komediassa tai musikaalissa. Elokuva voitti myös parhaan elokuvan (komedia tai musikaali) Golden Globe -palkinnon.</p><p>Ikäraja 16<br>Kesto 142 min</p><p>Ensi-ilta 12.1.2024</p>"
            },
            "name": {
                "fi": "Poor things (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61913/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:62998",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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/kino-helios-haeivaehdys-purppuraa-3579287/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-haeivaehdys-purppuraa-3579287/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-haeivaehdys-purppuraa-3579287/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7384,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-26T10:14:19.627683Z",
                    "last_modified_time": "2024-02-06T13:23:02.026200Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744310.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7384/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-26T10:14:19.578717Z",
            "last_modified_time": "2024-02-06T13:23:02.067687Z",
            "date_published": null,
            "start_time": "2024-02-03T13: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": "Warner Bros. Pictures kutsuu sinut kokemaan poikkeuksellisen sisarussuhteen kolmen naisen välillä, joita yhdistää särkymätön side Häivähdys purppuraa -elokuvassa.",
                "en": "Warner Bros. Pictures invites you to experience the extraordinary sisterhood of three women who share one unbreakable bond in “The Color Purple.”"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4D5B9CB61CE0CC0DF1F40123A649B408/Haivahdys_purppuraa_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4D5B9CB61CE0CC0DF1F40123A649B408/Haivahdys_purppuraa_12_",
                "en": "http://www.malmitalo.fi/en/events/event/4D5B9CB61CE0CC0DF1F40123A649B408/The_Color_Purple_12_"
            },
            "description": {
                "fi": "<p>Warner Bros. Pictures kutsuu sinut kokemaan poikkeuksellisen sisarussuhteen kolmen naisen välillä, joita yhdistää särkymätön side Häivähdys purppuraa -elokuvassa.</p><p>Tämän rohkean, uuden kuvauksen on ohjannut Blitz Bazawule ja tuottaneet Oprah Winfrey, Steven Spielberg, Scott Sanders ja Quincy Jones.</p><p>Elokuvaa ”Häivähdys purppuraa” tähdittävät Taraji P. Henson, Danielle Brooks, Colman Domingo, Corey Hawkins, H.E.R., Halle Bailey, Aunjanue Ellis-Taylor ja Fantasia Barrino.</p><p>Käsikirjoitus Marcus Gardley, perustuen Alice Walkerin romaaniin ja musiikkinäytelmään, Marsha Normanin kirjaan (musiikkinäytelmästä), musiikki ja lyriikat Brenda Russell, Allee Willis ja Stephen Bray.</p><p>Kesto 141 min<br>Ikäraja 12</p><p>Ensi-ilta 19.1.</p>",
                "en": "<p>Warner Bros. Pictures invites you to experience the extraordinary sisterhood of three women who share one unbreakable bond in “The Color Purple.”</p><p>This bold new take on the beloved classic is directed by Blitz Bazawule and produced by Oprah Winfrey, Steven Spielberg, Scott Sanders and Quincy Jones.</p><p>“The Color Purple” stars Taraji P. Henson, Danielle Brooks, Colman Domingo, Corey Hawkins, H.E.R., Halle Bailey, Aunjanue Ellis-Taylor and Fantasia Barrino.</p><p>The screenplay is by Marcus Gardley, based on the novel by Alice Walker and based on the musical stage play, book (of the musical stage play) by Marsha Norman, music and lyrics by Brenda Russell, Allee Willis and Stephen Bray.</p>"
            },
            "name": {
                "fi": "Häivähdys purppuraa (12) – Kino Helios",
                "sv": "Häivähdys purppuraa (12) – Kino Helios",
                "en": "The Color Purple (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:62998/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61757",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6829,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-27T08:12:27.529384Z",
                    "last_modified_time": "2024-02-06T13:23:01.058660Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743139.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6829/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-27T08:12:27.502993Z",
            "last_modified_time": "2024-02-06T13:23:01.101566Z",
            "date_published": null,
            "start_time": "2024-02-02T13: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ä pientä aikuista on lämminhenkinen sukellus rakkauden syvään päähän."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8EAA958AA46A85C83689F7DC10E08FA1/Nelja_pienta_aikuista_12_"
            },
            "description": {
                "fi": "<p>Neljä pientä aikuista on lämminhenkinen sukellus rakkauden syvään päähän.</p><p>Neljä pientä aikuista tarttuu puhuttavaan aiheeseen rakkauden monista muodoista. Elokuva kertoo Juuliasta joka saa tietää, että hänen puolisollaan Matiaksella on sivusuhde Ennin kanssa, jolloin hän päättää avata avioliittonsa muille suhteille.</p><p>Selma Vilhusen ohjaaman ja käsikirjoittaman kotimaisen elokuvan pääosissa nähdään Jussi-palkittu Alma Pöysti ja Guldbagge-palkittu Eero Milonoff sekä Jussi-palkittu Oona Airola ja Pietu Wikström.</p><p>Ikäsuositus: 12<br>Kesto: 123 min<br>Ensi-ilta: 27.12.2023</p><p>Elokuvassa on suomenkielinen tekstitys.</p>"
            },
            "name": {
                "fi": "Neljä pientä aikuista (12)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61757/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61599",
            "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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6461,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T13:15:23.671094Z",
                    "last_modified_time": "2024-02-06T13:23:00.458904Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737214.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6461/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-07T13:15:23.629324Z",
            "last_modified_time": "2024-02-06T13:23:00.502140Z",
            "date_published": null,
            "start_time": "2024-02-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": "Nordic Banjo on kahden suomalaisen huippubanjistin muodostama duo, jonka ohjelmisto koostuu tunnetuista pohjoismaisen kansanmusiikin kappaleista sovitettuna viisikieliselle bluegrass-banjolle ja kitaralle.",
                "sv": "Traditionell nordisk folkmusik omarrangerad för 5-strängad banjo och gitarr.",
                "en": "Nordic Banjo is a duo formed by two Finnish banjoists, whose repertoire consists of well-known pieces of Nordic folk music arranged for the five-string bluegrass banjo and guitar."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/671667A34BBE3D2BF85F1F0E94717652/Nordic_Banjo",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/671667A34BBE3D2BF85F1F0E94717652/Nordic_Banjo",
                "en": "http://www.malmitalo.fi/en/events/event/671667A34BBE3D2BF85F1F0E94717652/Nordic_Banjo"
            },
            "description": {
                "fi": "<p>Nordic Banjo on kahden suomalaisen huippubanjistin muodostama duo, jonka ohjelmisto koostuu tunnetuista pohjoismaisen kansanmusiikin kappaleista sovitettuna viisikieliselle bluegrass-banjolle ja kitaralle.</p><p>Duon tavoitteena on tuoda amerikkalainen banjo osaksi pohjoismaista pelimannikulttuuria ja toisaalta tehdä suomalaista perinnemusiikkia tunnetuksi maailmalla.</p><p>Nordic Banjo yhdistää useat pohjoiseurooppalaiset perinteet, jotka juontavat juurensa metsäsuomalaisten savuisista saunoista ja muinaisten skandinaavien yhteisöllisistä pitkätaloista. Sovitukset laajentavat kunnioittavasti satojen vuosien ajan perheiden, sukulaisten ja naapureiden kautta säilyneitä melodisia ja rytmisiä tekstuureja.</p><p>Afroamerikkalaisen viisikielisen selostamana Nordic Banjo osuu maailmanmusiikin ytimeen. Banjolle idiomaattiset näppäilykuviot ja bordunat yhdistettynä boreaaliseen ääni-ilmastoon luovat mystisen ilmapiirin, jossa voi samanaikaisesti kuulla lukemattomia arkaaisia tarinoita eri kielillä ja murteilla kerrottuna. Nordic Banjon syvin olemus kiteytyy osuvasti suomen kielen sanassa viisikielinen: universaali ääni, joka puhuttelee ihmisiä mantereiden välillä.</p><p><b>Lauri Häme</b> on helsinkiläinen muusikko ja lauluntekijä. Vuodesta 2004 hän on esiintynyt banjistina ja laulajana indie folk -yhtye Rautakourassa. Instrumentalistina hän kokeilee jatkuvasti uusia perinteisten ja nykyaikaisten äänimaisemien yhdistelmiä.</p><p><b>Miihkali Jaatinen</b> on monipuolinen musiikin ammattilainen ja yksi Suomen arvostetuimmista banjisteista. Toimi hän sitten kitaristina, banjistina tai tuottajana, leimaa hänen työskentelyään toisaalta tekemisen tinkimättömyys, toisaalta ennakkoluuloton luova heittäytyminen.</p><p>Malmitalon Nordic Banjo -konsertin erikoisvieraana esiintyy <b>Paula Wolski</b>, jonka tuotannossa punoutuvat yhteen vaikutteet suomalaisesta kansanmusiikista ja amerikkalaisesta juurimusiikista.</p><p>Kokoonpano:<br>Lauri Häme - banjo<br>Miihkali Jaatinen - kitara ja banjo</p><p>Kesto: 1h</p>",
                "sv": "<p>Traditionell nordisk folkmusik omarrangerad för 5-strängad banjo och gitarr.</p><p>Förutom musiken hörs på konserten historier om de magiska melodiernas rötter och uråldriga nordliga kultur samt om banjos mytiska resa från Afrika via Amerika till Europa.</p><p><b>Lauri Häme</b> banjo<br><b>Miihkali Jaatinen</b> gitarr ja banjo</p><p>Nattens speciell gäst <b>Paula Wolski</b></p>",
                "en": "<p>Nordic Banjo is a duo formed by two Finnish banjoists, whose repertoire consists of well-known pieces of Nordic folk music arranged for the five-string bluegrass banjo and guitar.</p><p>The goal of the duo is to bring the American banjo into the Nordic fiddle-driven folk culture and on the other hand to increase the recognition of Finnish traditional music worldwide.</p><p>The hand-picked Nordic Banjo collection mixes together several Northern European traditions originating from the smoky saunas of Forest Finns and the shared longhouses of Norsemen. The work respectfully extends the melodic and rhythmic textures passed down through families, relatives and neighbors over hundreds of years.</p><p>Narrated by the Afro-American five-string, the Nordic Banjo melange settles itself in the core of what is known as World Music. The rolls and drones which are idiomatic to the banjo combined with the boreal sound climate create a mystical atmosphere where a myriad of archaic story layers are being told concurrently in different languages and dialects. This spirit of Nordic Banjo is aptly captured by the Finnish word viisikielinen, which refers to both five-stringed and pentalingual: A universal voice that speaks to people across the continents.</p><p><b>Lauri Häme</b> is a musician and songwriter from Helsinki, Finland. Since 2004 he has been performing with the indie folk band Rautakoura on banjo and vocals. As an instrumentalist he is constantly experimenting with new combinations of traditional and contemporary sounds.</p><p><b>Miihkali Jaatinen</b> is a versatile music professional and one of the most respected banjo pickers in Finland. Whether he is working as a guitarist, banjoist or producer, he is known for both ambitious work ethics and unprejudiced creativity.</p><p><b>Paula Wolski</b> will be performing as a special guest in the concert. Wolski's music is a fusion of Finnish traditional music and American roots music.</p><p>Line up<br>Lauri Häme – banjo<br>Miihkali Jaatinen - guitar and banjo</p>"
            },
            "name": {
                "fi": "Nordic Banjo",
                "sv": "Nordic Banjo",
                "en": "Nordic Banjo"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61599/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61802",
            "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/roots-musiikin-evoluutio-sarja-malmitalo-17956636/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6880,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T12:13:57.818300Z",
                    "last_modified_time": "2024-02-06T13:22:59.762538Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742033.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6880/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-28T12:13:57.770667Z",
            "last_modified_time": "2024-02-06T13:22:59.802003Z",
            "date_published": null,
            "start_time": "2024-01-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": "Malmitalon Roots-musiikin evoluutio -keikkasarja käsittelee juurevan musiikin kehitystä konsertti kerrallaan keväällä 2024. Lavalla Suomen terävin juurimusiikin kärki!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/91B5E7FFD8D49D96A7241F3B76C785F7/Jo_Buddy_s_One_Man_Stomptet_ja_Ismo_Haavisto"
            },
            "description": {
                "fi": "<p>Malmitalon Roots-musiikin evoluutio -keikkasarja käsittelee juurevan musiikin kehitystä konsertti kerrallaan keväällä 2024. Lavalla Suomen terävin juurimusiikin kärki!</p><p>Nykyisin Englannin Lontoossa asuva, elämäntyöpalkittu laulaja-lauluntekijä-multi-instrumentalisti <b>Jo' Buddy</b>, juhlii 42:tta vuotta tienpäällä. Hän esiintyy Malmitalolla kanssa Jo' Buddy's One Man Stomptet -kokoonpanonsa, jonka tuore \"Lockdown Sessions & Beyond Vol. 1\" -debyyttialbumi on saanut erinomaisen vastaanoton myös kansainvälisesti.</p><p>Kyseessä on hänen 8. sooloalbuminsa ja kaiken kaikkiaan 14. pitkäsoitto laulaja-kitaristina. Vuosikymmenet tienpäällä, tuhannet esiintymiset 16 maassa sekä sadat levytyssessiot ovat hioneet hänestä kansainvälisesti arvostetun artistin, jonka omaperäisiä soundeja ja biisejä ollaan jäljitelty ja esitetty ympäri maailman, jo vuosikymmenien ajan.</p><p>Jo' Buddy's One Man Stomptet tarjoaa ajattoman herkullisen läpileikkauksen USA:n eteläosien rullaavien juurimusiikkityylien luonnollisesta synteesistä, jossä swing, rhythm & blues, country ja rock & roll lyövät kättä, lisäämällä soppaan oman välittömästi tunnistettavan, elämäniloa pursuavan soundinsa, pitäen tunnelman katossa läpi keikan.</p><p><b>Ismo Haavisto</b> kuuluu Suomi-bluesin taidokkaaseen ammattilaiskaartiin. Yli 30-vuoden blueskokemus takaa vankan ammattitaidon ja syvältä sielusta kumpuavan tulkinnan. Hän keikkailee ympäri Suomea ja ulkomaita.</p><p>Kesto: 110 min sis. väliajan 20 min.</p>"
            },
            "name": {
                "fi": "Jo' Buddy's One Man Stomptet ja Ismo Haavisto – Roots-musiikin evoluutio vol. 1"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61802/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61912",
            "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/kino-helios-poor-things-3570483/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7177,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-15T12:13:50.453490Z",
                    "last_modified_time": "2024-02-06T13:22:59.474457Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743827.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7177/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-15T12:13:50.426407Z",
            "last_modified_time": "2024-02-06T13:22:59.514817Z",
            "date_published": null,
            "start_time": "2024-01-31T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuvantekijä Yorgos Lanthimos ja tuottaja Emma Stone tuovat valkokankaalle mielikuvituksellisen tarinan Bella Baxterin (Stone) uskomattomasta evoluutiosta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9F6C621FF87D77B685E76345BF029085/Poor_things_16_"
            },
            "description": {
                "fi": "<p>Elokuvantekijä Yorgos Lanthimos ja tuottaja Emma Stone tuovat valkokankaalle mielikuvituksellisen tarinan Bella Baxterin (Stone) uskomattomasta evoluutiosta.</p><p>Bella on nuori nainen, jonka nerokas mutta omintakeinen tiedemies tri Godwin Baxter (Willem Dafoe) herättää henkiin. Aluksi Bella on innokas opettelemaan elämää Baxterin siipien suojassa. Elämänjanossaan hän kuitenkin karkaa sliipatun ja paheellisen lakimiehen Duncan Wedderburnin (Mark Ruffalo) mukana myrskyisälle matkalle halki mantereiden. Sen myötä aikansa ennakkoluulot karistaneesta Bellasta kasvaa vankkumaton vapauden ja tasa-arvon puolustaja.</p><p>Poor Things voitti Venetsian elokuvajuhlien pääpalkinnon ja se sai Suomen ensiesityksensä tuoreeltaan Rakkautta ja Anarkiaa -festivaalin R&A-gaalan elokuvana syyskuussa. Emma Stone palkittin Golden Globella suorituksestaan parhaana naisnäyttelijänä komediassa tai musikaalissa. Elokuva voitti myös parhaan elokuvan (komedia tai musikaali) Golden Globe -palkinnon.</p><p>Ikäraja 16<br>Kesto 142 min</p><p>Ensi-ilta 12.1.2024</p>"
            },
            "name": {
                "fi": "Poor things (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61912/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61759",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6827,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-27T08:12:26.850492Z",
                    "last_modified_time": "2024-02-06T13:22:58.029595Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743133.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6827/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-27T08:12:26.835971Z",
            "last_modified_time": "2024-02-06T13:22:58.072549Z",
            "date_published": null,
            "start_time": "2024-01-27T13: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": "Nyt on kesäloma! Tänä vuonna Flo ei halua olla erossa rakkaasta Lassiestaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/423BA2B6B149FE5480EA751EF8738DCD/Lassien_uusi_seikkailu_7_"
            },
            "description": {
                "fi": "<p>Nyt on kesäloma! Tänä vuonna Flo ei halua olla erossa rakkaasta Lassiestaan.</p><p>Sen sijaan, että hän viettäisi loman Kanariansaarilla vanhempiensa kanssa, perheen ystävä Gerhard vie parivaljakon Flon tädin Cosiman maatilalle Etelä-Tiroliin. Cosima asuu siellä jackrussellinterrierinsä Pipsan ja uusien kasvattilastensa Kleon ja Henrin kanssa.</p><p>Flo, Kleo ja Henri hätääntyvät kuullessaan kylällä katoavista koirista eivätkä uskalla päästää Pipsaa ja Lassieta silmistään. Pian Cosima-tädin taloon murtaudutaan ja Pipsa varastetaan! Yhdessä Lassien kanssa kolme ystävystä lähtee nappaamaan varkaat kiinni ja pelastamaan Pipsan.</p><p>Ikäsuositus: 7<br>Kesto: 93 min<br>Ensi-ilta: 5.1.2024</p>"
            },
            "name": {
                "fi": "Lassien uusi seikkailu (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61759/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61598",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "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-dimitri-keiski-band/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6460,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T13:15:22.911170Z",
                    "last_modified_time": "2024-02-06T13:22:57.452757Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737058.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6460/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-07T13:15:22.885802Z",
            "last_modified_time": "2024-02-06T13:22:57.493831Z",
            "date_published": null,
            "start_time": "2024-01-26T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "The Dimitri Keiski Band perustettiin Lahdessa 2019 vaalimaan rehellisen ja raa’an rock’n’rollin perinteitä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5432B40B33E168B200BCACCA21C8E16A/The_Dimitri_Keiski_Band"
            },
            "description": {
                "fi": "<p>The Dimitri Keiski Band perustettiin Lahdessa 2019 vaalimaan rehellisen ja raa’an rock’n’rollin perinteitä.</p><p>The Dimitri Keiski Band on Ruotsissa syntyneen Dimitri Keiskin luotsaama rock’n’roll -bändi. Ennen Suomeen muuttoaan Keiski voitti Ruotsin True Talent -ohjelman 2011. Remun perillisekseen julistaman Dimin lisäksi triossa soittavat myös Hanski Kilkki - basso (Tehosekoitin) ja Samuli Mikkonen (Korpiklaani).</p><p>Kesto 2 t, sis väliajan</p>"
            },
            "name": {
                "fi": "The Dimitri Keiski Band – A la Malmi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61598/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61752",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6826,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-27T08:12:26.637677Z",
                    "last_modified_time": "2024-02-06T13:22:57.359354Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743125.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6826/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-27T08:12:26.625228Z",
            "last_modified_time": "2024-02-06T13:22:57.400546Z",
            "date_published": null,
            "start_time": "2024-01-26T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Huijarit kertoo pätkätöiden ja rahapulan rasittamasta Sirusta, joka saa väärinymmärrysten seurauksena keploteltua itsensä valelääkäriksi hyvinvointiklinikalle."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6BBFABF96B91F13C7FF244AF169A2C74/Huijarit_7_"
            },
            "description": {
                "fi": "<p>Huijarit kertoo pätkätöiden ja rahapulan rasittamasta Sirusta, joka saa väärinymmärrysten seurauksena keploteltua itsensä valelääkäriksi hyvinvointiklinikalle.</p><p>Uusi parisuhde asianajaja Nikon kanssa on toivottavasti totta, vaikka muuten vaikuttaa siltä, että Sirun lisäksi useampi lähipiiristä valehtelee, jotkut jopa ammatikseen.<br> <br>Ikäsuositus: 7<br>Kesto: 93 min<br>Ensi-ilta: 26.12.2023</p><p>Elokuva on tekstitetty suomeksi.</p>"
            },
            "name": {
                "fi": "Huijarit (7)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61752/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61530",
            "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:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6342,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-30T12:13:42.999635Z",
                    "last_modified_time": "2024-02-06T13:22:56.982971Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739488.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6342/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-30T12:13:42.976604Z",
            "last_modified_time": "2024-02-06T13:22:57.021699Z",
            "date_published": null,
            "start_time": "2024-01-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": "Oscar-palkitun Ron Howardin ohjaama ja Oscarin voittaneen Brian Grazerin tuottama Kaunis mieli voitti neljä Oscaria mm. paras elokuva -palkinnon.",
                "sv": "Filmen A Beautiful Mind, regisserad av Oscarsbelönade Ron Howard och producerat av Oscarsbelönade Brian Grazer, vann fyra Oscarspris, bl.a. priset för bästa film.",
                "en": "Directed by Academy Award winner Ron Howard and produced by Academy Award winner Brian Grazer, A Beautiful Mind won four Academy Awards including Best Picture."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BFE5EF679CF7DD4BB21C68CB9A559343/Kuukauden_klassikkoelokuva_Kaunis_mieli_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BFE5EF679CF7DD4BB21C68CB9A559343/Manadens_klassiska_film_A_Beautiful_Mind_12_",
                "en": "http://www.malmitalo.fi/en/events/event/BFE5EF679CF7DD4BB21C68CB9A559343/Classic_movie_of_the_month_A_Beautiful_Mind_12_"
            },
            "description": {
                "fi": "<p>Oscar-palkitun Ron Howardin ohjaama ja Oscarin voittaneen Brian Grazerin tuottama Kaunis mieli voitti neljä Oscaria mm. paras elokuva -palkinnon.</p><p>Elokuvan pääosaa esittää Russell Crowe loistavassa näyttelijäsuorituksessaan matemaatikkonero John Nashina. Kansainväliseen menestykseen matkalla oleva Nash sekaantuu salamyhkäiseen juonitteluun, jossa häntä pystyy auttamaan vain hänen uskollinen puolisonsa (Oscar-palkittu Jennifer Connelly). Kaunis mieli on mahtava tarina rohkeudesta, intohimosta ja rakkaudesta.</p><p>Kesto: 135 min<br>Ikäraja: 12</p>",
                "sv": "<p>Filmen A Beautiful Mind, regisserad av Oscarsbelönade Ron Howard och producerat av Oscarsbelönade Brian Grazer, vann fyra Oscarspris, bl.a. priset för bästa film.</p><p>Filmens huvudroll spelas av Russell Crowe i sin utmärkta roll av matematikergeniet John Nash.</p>",
                "en": "<p>Directed by Academy Award winner Ron Howard and produced by Academy Award winner Brian Grazer, A Beautiful Mind won four Academy Awards including Best Picture.</p><p>The film stars Russell Crowe with his brilliant performance as the math genius John Nash.</p>"
            },
            "name": {
                "fi": "Kuukauden klassikkoelokuva: Kaunis mieli (12)",
                "sv": "Månadens klassiska film: A Beautiful Mind (12)",
                "en": "Classic movie of the month: A Beautiful Mind (12)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61530/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61597",
            "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/balalaikkojen-yhteinen-saevel-malmitalo-17831756/",
                        "sv": "https://www.lippu.fi/event/balalaikkojen-yhteinen-saevel-malmitalo-17831756/",
                        "en": "https://www.lippu.fi/event/balalaikkojen-yhteinen-saevel-malmitalo-17831756/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 10 €",
                        "sv": "15 € / 10 €",
                        "en": "15 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6459,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T13:15:22.438818Z",
                    "last_modified_time": "2024-02-06T13:22:56.675636Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740387.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6459/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-07T13:15:22.375689Z",
            "last_modified_time": "2024-02-06T13:22:56.718885Z",
            "date_published": null,
            "start_time": "2024-01-24T17: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": "Helsingin Balalaikkaorkesteri on toiminut 113 vuotta ja Balalaikkaorkesteri Kalinkakin yli 30. Malmitalon konsertissa on huima mahdollisuus kuulla, kun orkesterit yhdistävät voimansa.",
                "sv": "Helsingin Balalaikkaorkesteri har varit verksam i 113 år och även Balalaikkaorkesteri Kalinka har varit det i över 30 år.",
                "en": "Helsingin Balalaikkaorkesteri has been running for 113 years, and Balalaikkaorkesteri Kalinka for more than 30 years."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/04BEC06EAC276DC3CCD454B09C9FAD34/Helsingin_Balalaikkaorkesteri_Balalaikkaorkesteri_Kalinka_Balalaikkojen_yhteinen_savel",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/04BEC06EAC276DC3CCD454B09C9FAD34/Helsingin_Balalaikkaorkesteri_Balalaikkaorkesteri_Kalinka_Balalaikkojen_yhteinen_savel",
                "en": "http://www.malmitalo.fi/en/events/event/04BEC06EAC276DC3CCD454B09C9FAD34/Helsingin_Balalaikkaorkesteri_Balalaikkaorkesteri_Kalinka_Balalaikkojen_yhteinen_savel"
            },
            "description": {
                "fi": "<p>Helsingin Balalaikkaorkesteri on toiminut 113 vuotta ja Balalaikkaorkesteri Kalinkakin yli 30. Malmitalon konsertissa on huima mahdollisuus kuulla, kun orkesterit yhdistävät voimansa.</p><p>Kesto: 1 t 40 min sis. 20 min. väliajan</p>",
                "sv": "<p>Helsingin Balalaikkaorkesteri har varit verksam i 113 år och även Balalaikkaorkesteri Kalinka har varit det i över 30 år.</p><p>Vid konserten i Malms kulturhus har man en svindlande möjlighet att höra orkestrarna förena sina krafter.</p>",
                "en": "<p>Helsingin Balalaikkaorkesteri has been running for 113 years, and Balalaikkaorkesteri Kalinka for more than 30 years.</p><p>The concert at Malmitalo is a great opportunity to hear the orchestras join forces.</p>"
            },
            "name": {
                "fi": "Helsingin Balalaikkaorkesteri & Balalaikkaorkesteri Kalinka: Balalaikkojen yhteinen sävel",
                "sv": "Helsingin Balalaikkaorkesteri & Balalaikkaorkesteri Kalinka: Balalaikkojen yhteinen sävel",
                "en": "Helsingin Balalaikkaorkesteri & Balalaikkaorkesteri Kalinka: Balalaikkojen yhteinen sävel"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61597/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61756",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6825,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-27T08:12:26.298434Z",
                    "last_modified_time": "2024-02-06T13:22:56.478545Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743137.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6825/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-27T08:12:26.272391Z",
            "last_modified_time": "2024-02-06T13:22:56.521760Z",
            "date_published": null,
            "start_time": "2024-01-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": "Neljä pientä aikuista on lämminhenkinen sukellus rakkauden syvään päähän."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/14829E257E4624C267133EF03A90C087/Nelja_pienta_aikuista_12_"
            },
            "description": {
                "fi": "<p>Neljä pientä aikuista on lämminhenkinen sukellus rakkauden syvään päähän.</p><p>Neljä pientä aikuista tarttuu puhuttavaan aiheeseen rakkauden monista muodoista. Elokuva kertoo Juuliasta joka saa tietää, että hänen puolisollaan Matiaksella on sivusuhde Ennin kanssa, jolloin hän päättää avata avioliittonsa muille suhteille.</p><p>Selma Vilhusen ohjaaman ja käsikirjoittaman kotimaisen elokuvan pääosissa nähdään Jussi-palkittu Alma Pöysti ja Guldbagge-palkittu Eero Milonoff sekä Jussi-palkittu Oona Airola ja Pietu Wikström.</p><p>Ikäsuositus: 12<br>Kesto: 123 min<br>Ensi-ilta: 27.12.2023</p><p>Elokuvassa on suomenkielinen tekstitys.</p>"
            },
            "name": {
                "fi": "Neljä pientä aikuista (12)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61756/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61911",
            "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/kino-helios-poor-things-3570483/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7175,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-15T12:13:47.965173Z",
                    "last_modified_time": "2024-02-06T13:22:55.136382Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743825.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7175/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-15T12:13:47.921247Z",
            "last_modified_time": "2024-02-06T13:22:55.176880Z",
            "date_published": null,
            "start_time": "2024-01-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": "Elokuvantekijä Yorgos Lanthimos ja tuottaja Emma Stone tuovat valkokankaalle mielikuvituksellisen tarinan Bella Baxterin (Stone) uskomattomasta evoluutiosta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3A41FC132774C80E6227BDB9BCA88F58/Poor_things_16_"
            },
            "description": {
                "fi": "<p>Elokuvantekijä Yorgos Lanthimos ja tuottaja Emma Stone tuovat valkokankaalle mielikuvituksellisen tarinan Bella Baxterin (Stone) uskomattomasta evoluutiosta.</p><p>Bella on nuori nainen, jonka nerokas mutta omintakeinen tiedemies tri Godwin Baxter (Willem Dafoe) herättää henkiin. Aluksi Bella on innokas opettelemaan elämää Baxterin siipien suojassa. Elämänjanossaan hän kuitenkin karkaa sliipatun ja paheellisen lakimiehen Duncan Wedderburnin (Mark Ruffalo) mukana myrskyisälle matkalle halki mantereiden. Sen myötä aikansa ennakkoluulot karistaneesta Bellasta kasvaa vankkumaton vapauden ja tasa-arvon puolustaja.</p><p>Poor Things voitti Venetsian elokuvajuhlien pääpalkinnon ja se sai Suomen ensiesityksensä tuoreeltaan Rakkautta ja Anarkiaa -festivaalin R&A-gaalan elokuvana syyskuussa. Emma Stone palkittin Golden Globella suorituksestaan parhaana naisnäyttelijänä komediassa tai musikaalissa. Elokuva voitti myös parhaan elokuvan (komedia tai musikaali) Golden Globe -palkinnon.</p><p>Ikäraja 16<br>Kesto 142 min</p><p>Ensi-ilta 12.1.2024</p>"
            },
            "name": {
                "fi": "Poor things (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61911/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61529",
            "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:51/?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:p5007/?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://lippu.fi/event/agit-cirk-cirko-kadonnut-malmitalo-17877601/",
                        "sv": "https://lippu.fi/event/agit-cirk-cirko-kadonnut-malmitalo-17877601/",
                        "en": "https://lippu.fi/event/agit-cirk-cirko-kadonnut-malmitalo-17877601/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6341,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-30T12:13:42.253535Z",
                    "last_modified_time": "2024-02-06T13:22:54.841822Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739487.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6341/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-30T12:13:42.225206Z",
            "last_modified_time": "2024-02-06T13:22:54.881649Z",
            "date_published": null,
            "start_time": "2024-01-20T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kadonnut on koko perheen kaunis, hauska ja toisinaan hivenen vakavakin sanaton nykysirkusteos.",
                "sv": "Kadonnut (Försvunnen) är ett vackert, roligt och stundom något allvarsamt nutidscirkusverk för hela familjen.",
                "en": "Kadonnut is a beautiful, funny and, at times, slightly serious non-verbal contemporary circus performance for the whole family."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F7F9696FDC714A0DCB10357E5E1C081C/Agit-Cirk_Cirko_Kadonnut_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F7F9696FDC714A0DCB10357E5E1C081C/Agit-Cirk_Cirko_Kadonnut_",
                "en": "http://www.malmitalo.fi/en/events/event/F7F9696FDC714A0DCB10357E5E1C081C/Agit-Cirk_Cirko_Kadonnut_"
            },
            "description": {
                "fi": "<p>Kadonnut on koko perheen kaunis, hauska ja toisinaan hivenen vakavakin sanaton nykysirkusteos.</p><p>Herkät tasapainot ja ihmeellinen pariakrobatia herättelevät ajattelemaan, kuinka tärkeää on välittää toisesta ja arvostaa jokaisen omaa erityistä tapaa loistaa.</p><p>Kadonnut kahmaisee sinut mukaan sisäisen valonsa ja toisensa kadottaneiden sirkustaiteilijoiden muistojen ja toiveiden maailmaan, jossa uskomaton on jokapäiväistä. Matka sirkusseurueen kanssa vie sinut hersyvän naurun, pienten kommellusten ja muutamien piilotettujen kyynelten poluille, joiden päässä kajastaa yhteinen loisto.</p><p>Teos on Cirko – Uuden sirkuksen keskuksen ja Agit-Cirkin yhteistuotanto.</p><p>Konsepti ja esiintyjät: Jenni Lehtinen ja Sasu Peistola<br>Valosuunnittelu: Jere Mönkkönen<br>Äänisuunnittelu: Sami Tammela<br>Puku- ja lavastesuunnittelu: Reeta Tuoresmäki<br>Dramaturgia ja liikeohjaus: Jarkko Lehmus<br>Taikuuden konsultaatio: Robert Jägerhorn<br>Ohjaus: Työryhmä</p><p>Kesto: n. 50 minuuttia<br>Ikäsuositus: kaikille yli 3-vuotiaille</p>",
                "sv": "<p>Kadonnut (Försvunnen) är ett vackert, roligt och stundom något allvarsamt nutidscirkusverk för hela familjen.</p><p>Känsliga balanser och fantastisk parakrobatik väcker tanken på hur viktigt det är att bry sig om den andra och uppskatta var och ens eget speciella sätt att stråla.</p><p>Längd: ca. 50 min<br>Åldersrekommendation: 3+</p>",
                "en": "<p>Kadonnut is a beautiful, funny and, at times, slightly serious non-verbal contemporary circus performance for the whole family.</p><p>Tender balances and amazing pair acrobatics make you reflect on how important it is to care for each other and to value everyone’s unique way to shine.</p><p>Duration: 50 min<br> Age recommendation 3 and up</p>"
            },
            "name": {
                "fi": "Agit-Cirk & Cirko: Kadonnut",
                "sv": "Agit-Cirk & Cirko: Kadonnut",
                "en": "Agit-Cirk & Cirko: Kadonnut"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61529/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}