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=72
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=73",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=71"
    },
    "data": [
        {
            "id": "kulke:61157",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5518,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-18T09:27:18.984615Z",
                    "last_modified_time": "2023-10-18T09:27:18.984636Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738094.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5518/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-18T09:27:18.562049Z",
            "last_modified_time": "2023-11-14T06:13:40.674253Z",
            "date_published": null,
            "start_time": "2023-11-17T16: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CBDB8337F4EFCA2C36817B22F62CDFD8/Reality_12_"
            },
            "description": {
                "fi": "<p>Kun Yhdysvaltain Georgiassa asuva Reality Winner (Sydney Sweeney) palaa kesäkuisena lauantai-iltapäivänä vuonna 2017 ruokaostoksilta kotiinsa, FBI on häntä vastassa.</p><p>Miksi ihmeessä FBI on kiinnostunut 25-vuotiaasta nuoresta naisesta? FBI:n tutkijat aloittavat heti paikalla intensiivisen kuulustelun, jonka myötä Realityn tarina alkaa pala palalta hahmottua. Hän on millenniaali, joogaohjaaja, tulkki – ja myös veteraani, jonka FBI aikoo nyt pidättää.</p><p>Intensiivinen jännitysnäytelmä nuoren naisen pakahduttavan jännittävästä ja paikoin absurdin humoristisiakin piirteitä saavasta pidätyksestä perustuu kappaleeseen Yhdysvaltain tosielämän lähihistoriaa ja elokuvan dialogi noudattelee sanasta sanaan FBI:n toteuttaman kuulustelun pöytäkirjaa. Elokuva luo tiukan silmäyksen Yhdysvaltain oikeusjärjestelmään, joka syytti tiedusteluasiantuntija Reality Winneriä hallituksen tietojen vuotamisesta medialle tapauksessa, joka koski Venäjän sekaantumista Yhdysvaltain vuoden 2016 presidentinvaaleihin.</p><p>Kiehtovan ja tiivistunnelmaisen draaman pääosassa vaikuttavan roolin tekee Sidney Sweeney (Euphoria, The White Lotus, Handmaid’s Tale).</p><p>Kesto 83 min<br>Ikäraja 12<br>Ensi-ilta 27.10.2023</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kun Yhdysvaltain Georgiassa asuva Reality Winner (Sydney Sweeney) palaa kesäkuisena lauantai-iltapäivänä vuonna 2017 ruokaostoksilta kotiinsa, FBI on häntä vastassa."
            },
            "name": {
                "fi": "Reality (12) – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61157/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60618",
            "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/malmijazz-malmitalo-17268570/",
                        "sv": "https://www.lippu.fi/event/malmijazz-malmitalo-17268570/",
                        "en": "https://www.lippu.fi/event/malmijazz-malmitalo-17268570/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4557,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:44.365996Z",
                    "last_modified_time": "2023-09-07T14:26:44.366019Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732254.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4557/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:44.210035Z",
            "last_modified_time": "2023-11-14T06:13:40.122598Z",
            "date_published": null,
            "start_time": "2023-11-16T17: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C22218D7AC2312F41D0495C6D524E5E1/MalmiJazz_Mathias_Sandberg_The_Captain",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C22218D7AC2312F41D0495C6D524E5E1/MalmiJazz_Mathias_Sandberg_The_Captain",
                "en": "http://www.malmitalo.fi/en/events/event/C22218D7AC2312F41D0495C6D524E5E1/MalmiJazz_Mathias_Sandberg_The_Captain"
            },
            "description": {
                "fi": "<p>Konsertissa kuullaan Mathias Sandbergin trion omaleimaisesti svengaavaa, groovaavaa ja sielukasta jazzia.</p><p>Luvassa on vahvoja melodioita, rytmisesti leikkisää improvisaatiota ja lähes telepaattista yhteissoittoa.</p><p>Jazzkitaristi ja säveltäjä <b>Mathias Sandberg</b>, jota amerikkalaisessa musiikkilehdessä <i>Jazziz Magazine</i> on kutsuttu \"yhdeksi Suomen parhaiten varjelluista salaisuuksista\", kuuluu maamme aktiivisimpiin jazzmuusikoihin.</p><p>Hän on opiskellut New Yorkin Manhattan School of Musicissa ja Bostonin Berklee College of Musicissa, ja työskennellyt mm. Georg Riedelin, Pierre Swärdin, Peter Asplundin, Nick Mancinin, Jukka Eskolan, Teppo Mäkysen ja Manuel Dunkelin kanssa.</p><p>Sandberg tekee vuosittain satakunta jazzkonserttia ja on kiertänyt sekä Euroopassa että Yhdysvalloissa.</p><p>Sandbergin debyyttisoololevy <i>The Doctor</i> (2020) on saanut ylistäviä arvosteluja molemmilla puolilla Atlantia ja sitä on soitettu ahkerasti jazzradiokanavilla Euroopassa, Yhdysvalloissa, Etelä-Amerikassa, Aasiassa ja Australiassa.</p><p>Sandbergin pitkään odotettu uusi triolevy <i>The Captain</i> julkaistiin maaliskuussa 2023, ja yhtye lähtee nyt 40-konsertin levynjulkaisukiertueelle Helsingistä Rovaniemelle.</p><p>Mathias Sandberg, kitara<br>Zacharias Holmkvist, kontrabasso<br>Stefan Brokvist, rummut</p>",
                "sv": "<p>Konserten består av trions kännspaka mix av ”hard swingin', groovy & soulful jazz” med starka melodier, rytmiskt lekfulla improvisationer och ett näst intill telepatiskt samspel musikerna emellan.</p><p>Jazzgitarristen och kompositören <b>Mathias Sandberg</b>, som av den amerikanska musiktidningen <i>Jazziz Magazine</i> har kallats “en av Finlands bäst bevarade hemligheter”, är idag en av landets mest aktiva jazzmusiker.</p><p>Han har studerat på Manhattan School of Music i New York och Berklee College of Music i Boston, och jobbat med artister som Georg Riedel, Pierre Swärd, Peter Asplund, Nick Mancini, Jukka Eskola, Teppo Mäkynen och Manuel Dunkel. Sandberg ger årligen ett hundratal jazzkonserter och har turnérat i både Europa och USA.</p><p>Mathias Sandbergs solo-debutalbum <i>The Doctor</i> (2020) har hyllats av en enig kritikerkår på bägge sidor om Atlanten och spelats flitigt på jazzradiostationerna i Europa, USA, Sydamerika, Asien och Australien.</p><p>Sandbergs efterlängtade nya trioskiva <i>The Captain</i> släpptes i mars 2023, och bandet gör nu en 40-konserters skivreleaseturné från Rovaniemi i norr till Helsingfors i söder.</p><p>Mathias Sandberg, gitarr<br>Zacharias Holmkvist, kontrabas<br>Stefan Brokvist, trummor</p>",
                "en": "<p>This concert showcases Mathias Strandberg’s unique blend of hard swingin', groovy and soulful jazz.</p><p>Called \"one of Finland's best kept secrets\" by <i>Jazziz Magazine</i>, the highly acclaimed guitarist and composer <b>Mathias Sandberg</b> is one of the hardest working jazz musicians in the country.</p><p>He has studied at Manhattan School of Music in New York and Berklee College of Music in Boston and worked with artists such as Georg Riedel, Pierre Swärd, Peter Asplund, Nick Mancini, Jukka Eskola, Teppo Mäkynen and Manuel Dunkel. Sandberg plays a hundred or so concerts a year and has toured both Europe and the United States.</p><p>Mathias Sandberg's debut solo album <i>The Doctor</i> (2020) has received both huge critical review and airplay on jazz radio stations in Europe, United States, South America, Asia and Australia.</p><p>Sandberg's highly anticipated new trio album <i>The Captain</i> was released in March 2023, followed by a 40-date nationwide tour. The album showcases strong melodic writing, rhythmically playful improvisation and a delightful, almost telepathic interplay between the members of the three musicians.</p><p>Mathias Sandberg, guitar<br>Zacharias Holmkvist, bass<br>Stefan Brokvist, drums</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Konsertissa kuullaan Mathias Sandbergin trion omaleimaisesti svengaavaa, groovaavaa ja sielukasta jazzia.",
                "sv": "Konserten består av trions kännspaka mix av ”hard swingin', groovy & soulful jazz” med starka melodier, rytmiskt lekfulla improvisationer och ett näst intill telepatiskt samspel musikerna emellan.",
                "en": "This concert showcases Mathias Strandberg’s unique blend of hard swingin', groovy and soulful jazz."
            },
            "name": {
                "fi": "MalmiJazz: Mathias Sandberg – The Captain",
                "sv": "MalmiJazz: Mathias Sandberg – The Captain",
                "en": "MalmiJazz: Mathias Sandberg – The Captain"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60618/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61158",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5517,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-18T09:27:12.824504Z",
                    "last_modified_time": "2023-10-18T09:27:12.824527Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738096.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5517/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-18T09:27:12.659504Z",
            "last_modified_time": "2023-11-14T06:13:39.724480Z",
            "date_published": null,
            "start_time": "2023-11-15T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EE23CBF87DB57537FF63F2AB8038249C/Mummola_7_"
            },
            "description": {
                "fi": "<p>Joka vuosi joulun aikaan, sisarukset Susanna (Ria Kataja) ja Helena (Elina Knihtilä) vierailevat perheineen vanhempiensa luona.</p><p>Kuten tavallista, isoisä Lasse (Tom Wentzel) juo liikaa, isoäiti Ella (Leena Uotila) on huolissaan kaikista, lapset ovat kyllästyneitä ja sisarukset lankeavat vanhoihin riitoihinsa. Joulun jälkeen jokainen lähtee omille teilleen ja palaa arkeen. Tia Kouvon purevan humoristinen, elämänmakuinen elokuvadebyytti on tragikoominen tutkielma perhedynamiikasta, yksinäisyydestä ja yhdessäolosta — kuinka yritämme löytää yhteyden, mutta emme aina onnistu siinä.</p><p>Kesto 115 min<br>Ikäraja 7<br>Ensi-ilta 10.11.2023<br>Tekstitetty suomeksi</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Joka vuosi joulun aikaan, sisarukset Susanna (Ria Kataja) ja Helena (Elina Knihtilä) vierailevat perheineen vanhempiensa luona."
            },
            "name": {
                "fi": "Mummola (7) – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61158/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60997",
            "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:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5221,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:32:03.289457Z",
                    "last_modified_time": "2023-10-09T13:32:03.289485Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730886.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5221/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:32:02.400009Z",
            "last_modified_time": "2023-11-14T06:13:38.957943Z",
            "date_published": null,
            "start_time": "2023-11-14T15: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/250E39CE114678168B01EAE01225D7E9/Malmitalon_yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/250E39CE114678168B01EAE01225D7E9/Allsang_pa_Malms_kulturhus",
                "en": "http://www.malmitalo.fi/en/events/event/250E39CE114678168B01EAE01225D7E9/Sing-alongs_at_Malmitalo"
            },
            "description": {
                "fi": "<p>Malmitalon yhteislaulut – kuukauden paras tiistai!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla saa Malmisalissa taas laulaa ihan sydämensä kyllyydestä!</p><p>Syksyn yhteislaulut järjestetään 12.9., 17.10., 14.11. sekä 19.12. klo 17.00 Malmisalissa. Tervetuloa!</p>",
                "sv": "<p>Allsång på Malms kulturhus - den bästa tisdagen i månaden!</p><p>Nu får publiken åter sjunga för full hals i Malmsalen under ledning av Jukka Okkonen och Pauli Kainulainen!</p><p>Vårens allsång ordnas 12.9, 17.10, 14.11 samt 19.12 kl. 17.00 i Malmsalen.</p><p>Välkommen!</p>",
                "en": "<p>Sing-alongs at Malmitalo – best Tuesday of the month!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, you can once again sing your heart out in Malmisali!</p><p>Spring sing-alongs are held in Malmisali on 12 September, 17 October, 14 November and 19 December at 17.00.</p><p>We look forward to seeing you!</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Malmitalon yhteislaulut – kuukauden paras tiistai!",
                "sv": "Allsång på Malms kulturhus - den bästa tisdagen i månaden!",
                "en": "Sing-alongs at Malmitalo – best Tuesday of the month!"
            },
            "name": {
                "fi": "Malmitalon yhteislaulut",
                "sv": "Allsång på Malms kulturhus",
                "en": "Sing-alongs at Malmitalo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60997/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60617",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4536,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:24.830530Z",
                    "last_modified_time": "2023-09-07T14:26:24.830550Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_723645.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4536/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:26:23.961887Z",
            "last_modified_time": "2023-11-14T06:13:38.268751Z",
            "date_published": null,
            "start_time": "2023-11-12T12:00:00Z",
            "end_time": "2023-11-12T15: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/552BAD28C9DBAA1FE766DCD233B90A58/Lasten_Etnosoi_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/552BAD28C9DBAA1FE766DCD233B90A58/Barnens_Etnosoi_",
                "en": "http://www.malmitalo.fi/en/events/event/552BAD28C9DBAA1FE766DCD233B90A58/Etnosoi_for_Children_"
            },
            "description": {
                "fi": "<p>Lasten Etnosoi!ssa pieni on suurta. Etnosoi!-festivaali rohkaisee tekemään uusia musiikillisia tutkimusmatkoja ja esittelee musiikkia maailman eri kolkista.</p><p><b>Sattuma-yhtyeen konsertti</b></p><p>20-vuotisjuhlavuottaan viettävän Sattuma-yhtyeen lastenkonsertissa kuullaan paitsi karjalaista kansanmusiikkia, päästään samalla myös karjalankielikylpyyn!</p><p>Pieni sali klo 14:15 ja 15:45</p><p><b>Soitinten seikkailu</b></p><p>Tule mukaan Soitinten Seikkailuun, tarinalliseen konserttiin, jossa monenlaiset kulttuurit kohtaavat. Retkelle sinut johdattavat Sibelius-akatemian Global music-aineryhmän opiskelijat.</p><p>Ayla Brinkmann (Suomi/Etelä-Afrikka), tarinankertoja<br>Jui Hsin Ni (Taiwan), shamisen<br>Aarne Toivonen (Suomi), rummut<br>Javier Navarro Lara (Chile) , basso<br>Ana Lazar (Slovenia), viulu<br>Sara Majidi (Iran), qanun<br>matkanjohtajana Puro Paju (Suomi)</p><p>Malmisali klo 14 ja 15:30</p><p><b>Perheafro!</b></p><p>Tanssisalissa tanssitaan rennosti kaikki yhdessä, niin lapset kuin aikuiset. Tanssiin johdattaa tanssija-koreografi Sibiry Konate. Liike ja musiikki johdattelee meitä mm. Burkina Fason rytmeihin ja musiikkiin. Työpajassa on livesäestys.</p><p>Tanssisali klo 14.30 ja 16</p><p><b>Mitali tärkeälle ihmiselle -askartelutyöpaja</b></p><p>Olet rohkea, olet tärkeä, olet tosi hyvä kertomaan tarinoita! Olet hauska ja paras pomppimaan kenguruhyppyjä! Minkälaisen mitalin sinä antaisit tärkeälle ihmiselle? Tervetuloa 12.11. mitalitehtaalle Malmitalon aulaan!</p><p>Malmitalon aula, nonstop klo 14-17</p><p><b>Hyvinvointia rummulla 12+</b></p><p>Taiteellisen ilmaisun lisäksi rummutuksella on muitakin hyötyjä. Sitä voidaan käyttää esimerkiksi parantamaan kehon osien koordinaatiota, rakentamaan itseluottamusta, saada parempi käsitys omista henkisistä ja fyysisistä kyvyistä, stressistä toipumiseen, harjoittamaan ja kehittämään muistia, parantamaan keskittymistä ja ennen kaikkea tuomaan iloa.</p><p>Tätä tarkoitusta varten aion käyttää metodia, jossa rumpali käyttää vartaloaan painottamaan ja ilmaisemaan rytmiä, soittamalla rumpua seisten, tehden samalla tanssillisia liikkeitä, käyttäen muita ilmaisukeinoja, kuten eleitä, asentoja, ilmeitä ja ääntä. Rumpu on asetettu jalustalle ja sitä soitetaan kahdella rumpupalikalla. Rumpuina käytetään ngomaa – traditionaalista tansanialaista rumpua.</p><p>Harjoittelemalla tätä metodia, osallistujat voivat kokea siitä välitöntä ja suunnatonta hyötyä kuten edellä kuvasin.</p><p>Kohderyhmät<br>Erilaisia kohderyhmiä ovat esim. henkilöt, jotka kärsivät masennuksesta ja stressistä, nuoret, joilla on sosiaalisia ongelmia, koululaiset, musiikinopiskelijat, koulujen opettajat, erityislapset, työntekijät työpaikoilla jne.</p><p>Hyvinvointia rummulla 12+ -työpajan vetää sen luoja, muusikko-tanssija-koreografi, pitkään Suomessa kaiken ikäisten oppijoiden kanssa työskennellyt tansanialainen Arnold Chiwalala. HUOM. Ikäsuositus 12-vuotta ja kaikki sitä vanhemmat.</p><p>Kokoushuone 3 klo 14.15 ja 15.45</p><p>Lasten Etnosoi!n tuottavat yhdessä Malmitalo & Maailman musiikin keskus</p><p>Lisätietoja tapahtumasta täältä: https://www.etnosoi.fi/fi/etnosoi/lasten-etnosoi</p><p>Vapaa pääsy</p>",
                "sv": "<p>I Barnens Etnosoi! är det lilla stort. Etnosoi!-festivalen uppmuntrar till att göra nya musikaliska upptäcktsresor och presenterar musik från världens alla hörn.</p><p>Bandet Sattuma som firar sitt 20-årsjubileum ger en barnkonsert med karelsk folkmusik och publiken bjuds också med på ett språkbad i karelska! Till farsdagsfestligheterna hör också andra musikföreställningar, verkstäder och avslappnad samvaro.</p><p>Fritt inträde</p>",
                "en": "<p>In Etnosoi! for Children, small is big. The Etnosoi! festival encourages the audience to make new musical explorations, and showcases music from all over the world.</p><p>The children’s concert by the band Sattuma, which is celebrating its 20th anniversary, features not only Karelian folk music but also a Karelian language bath! The Father’s Day fun also includes other musical performances, workshops and relaxed hanging out.</p><p>Free entry</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten Etnosoi!ssa pieni on suurta. Etnosoi!-festivaali rohkaisee tekemään uusia musiikillisia tutkimusmatkoja ja esittelee musiikkia maailman eri kolkista.",
                "sv": "I Barnens Etnosoi! är det lilla stort. Etnosoi!-festivalen uppmuntrar till att göra nya musikaliska upptäcktsresor och presenterar musik från världens alla hörn.",
                "en": "In Etnosoi! for Children, small is big. The Etnosoi! festival encourages the audience to make new musical explorations, and showcases music from all over the world."
            },
            "name": {
                "fi": "Lasten Etnosoi!",
                "sv": "Barnens Etnosoi!",
                "en": "Etnosoi! for Children"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60617/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61043",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/latin-folk-night-6-3492332/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/latin-folk-night-6-3492332/",
                        "en": "https://www.lippu.fi/artist/malmitalo/latin-folk-night-6-3492332/"
                    },
                    "description": null,
                    "price": {
                        "fi": "16,50 € / 22,50 €",
                        "sv": "16,50 € / 22,50 €",
                        "en": "16,50 € / 22,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5219,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:56.465968Z",
                    "last_modified_time": "2023-10-09T13:31:56.465986Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737516.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5219/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:56.329452Z",
            "last_modified_time": "2023-11-14T06:13:38.197275Z",
            "date_published": null,
            "start_time": "2023-11-11T17: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/856A3BC02B46C259B44104A73835A540/Latin_Folk_Night",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/856A3BC02B46C259B44104A73835A540/Latin_Folk_Night",
                "en": "http://www.malmitalo.fi/en/events/event/856A3BC02B46C259B44104A73835A540/Latin_Folk_Night"
            },
            "description": {
                "fi": "<p>Tule viettämään sykähdyttävää iltaa latinalaisamerikkalaisen tanssin, musiikin ja perinteiden parissa järjestyksessään kuudenteen Latin Folk Night -esitykseen!</p><p>Helsingin latinalaisamerikkalainen yhteisö vie katsojan värikkään esityksensä kautta alueen kulttuurisille sydänmaille. Illan aikana lavalla nähdään kansantansseja, joissa yhdistyvät alkuperäiskansojen perinteet ja afrikkalaiset sekä eurooppalaiset vaikutteet.</p><p><b>Askelten Palo ry:n</b> tuottama esitys edistää kulttuurivaihtoa ja ymmärrystä latinalaisamerikkalaisen ja suomalaisen yhteisön välillä.</p><p>Tule mukaan rakentamaan siltoja ja juhlimaan moninaisuutta!</p><p><b>Kaksi esitystä:</b><br>Ensimmäinen esitys klo 16.00<br>Toinen esitys klo 19.00</p><p>Kesto n. 1 h 30 min, sis. 20 min väliaika</p><p>***</p><p><b>¡Bienvenidos a la sexta edición de Latin Folk Night!</b></p><p>Los invitamos a unirse a nosotros en una velada vibrante llena de cultura, música y tradición. Nuestro evento celebra la fusión única de influencias indígenas, africanas y europeas que han dado forma y contribuido al variado tapiz de ritmos y melodías de la música folclórica latinoamericana.</p>",
                "sv": "<p>Kom till den i ordningen sjätte Latin Folk Night-föreställningen för att tillbringa en bedårande kväll med latinamerikansk dans och musik samt latinamerikanska traditioner!</p><p>Kom till den i ordningen sjätte Latin Folk Night-föreställningen för att tillbringa en bedårande kväll med latinamerikansk dans och musik samt latinamerikanska traditioner!</p><p>Längd cirka 1 t 30 min, med paus<br><b>Två föreställning</b>: 16.00 och 19.00</p><p><b>¡Bienvenidos a la sexta edición de Latin Folk Night!</b><br>Los invitamos a unirse a nosotros en una velada vibrante llena de cultura, música y tradición. Nuestro evento celebra la fusión única de influencias indígenas, africanas y europeas que han dado forma y contribuido al variado tapiz de ritmos y melodías de la música folclórica latinoamericana.</p>",
                "en": "<p>We invite you to join us for a vibrant evening full of culture, music, and tradition in the sixth edition of Latin Folk Night!</p><p>Our event celebrates the unique fusion of Indigenous, African, and European influences that have shaped and contributed to the rich tapestry of rhythms and melodies in Latin American folk music.</p><p>Experience the heart of our culture through colorful performances by members of the Latin American community living in Helsinki. You’ll witness traditional dances from different countries and enjoy our delicious cuisine.</p><p><b>Askelten Palo ry</b> is proud to promote cultural exchanges and understanding between our community and Finland through this show.</p><p>Don’t miss this unique opportunity to celebrate diversity, build bridges and immerse yourself in the magic of Latin America.</p><p><b>Two shows:</b><br>First show at 4:00 p.m<br>Second show at 7:00 p.m</p><p>Duration approx. 1 h 30 min, incl. 20 min. interval</p><p>>b>¡Bienvenidos a la sexta edición de Latin Folk Night!</b><br>Los invitamos a unirse a nosotros en una velada vibrante llena de cultura, música y tradición. Nuestro evento celebra la fusión única de influencias indígenas, africanas y europeas que han dado forma y contribuido al variado tapiz de ritmos y melodías de la música folclórica latinoamericana.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule viettämään sykähdyttävää iltaa latinalaisamerikkalaisen tanssin, musiikin ja perinteiden parissa järjestyksessään kuudenteen Latin Folk Night -esitykseen!",
                "sv": "Kom till den i ordningen sjätte Latin Folk Night-föreställningen för att tillbringa en bedårande kväll med latinamerikansk dans och musik samt latinamerikanska traditioner!",
                "en": "We invite you to join us for a vibrant evening full of culture, music, and tradition in the sixth edition of Latin Folk Night!"
            },
            "name": {
                "fi": "Latin Folk Night",
                "sv": "Latin Folk Night",
                "en": "Latin Folk Night"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61043/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61156",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5516,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-18T09:27:04.580412Z",
                    "last_modified_time": "2023-10-18T09:27:04.580432Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738090.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5516/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-18T09:27:04.355638Z",
            "last_modified_time": "2023-11-14T06:13:38.040451Z",
            "date_published": null,
            "start_time": "2023-11-11T16: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6DB279B8485578636E0BA607ABB3A8A8/Reality_12_"
            },
            "description": {
                "fi": "<p>Kun Yhdysvaltain Georgiassa asuva Reality Winner (Sydney Sweeney) palaa kesäkuisena lauantai-iltapäivänä vuonna 2017 ruokaostoksilta kotiinsa, FBI on häntä vastassa.</p><p>Miksi ihmeessä FBI on kiinnostunut 25-vuotiaasta nuoresta naisesta? FBI:n tutkijat aloittavat heti paikalla intensiivisen kuulustelun, jonka myötä Realityn tarina alkaa pala palalta hahmottua. Hän on millenniaali, joogaohjaaja, tulkki – ja myös veteraani, jonka FBI aikoo nyt pidättää.</p><p>Intensiivinen jännitysnäytelmä nuoren naisen pakahduttavan jännittävästä ja paikoin absurdin humoristisiakin piirteitä saavasta pidätyksestä perustuu kappaleeseen Yhdysvaltain tosielämän lähihistoriaa ja elokuvan dialogi noudattelee sanasta sanaan FBI:n toteuttaman kuulustelun pöytäkirjaa. Elokuva luo tiukan silmäyksen Yhdysvaltain oikeusjärjestelmään, joka syytti tiedusteluasiantuntija Reality Winneriä hallituksen tietojen vuotamisesta medialle tapauksessa, joka koski Venäjän sekaantumista Yhdysvaltain vuoden 2016 presidentinvaaleihin.</p><p>Kiehtovan ja tiivistunnelmaisen draaman pääosassa vaikuttavan roolin tekee Sidney Sweeney (Euphoria, The White Lotus, Handmaid’s Tale).</p><p>Kesto 83 min<br>Ikäraja 12<br>Ensi-ilta 27.10.2023</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kun Yhdysvaltain Georgiassa asuva Reality Winner (Sydney Sweeney) palaa kesäkuisena lauantai-iltapäivänä vuonna 2017 ruokaostoksilta kotiinsa, FBI on häntä vastassa."
            },
            "name": {
                "fi": "Reality (12) – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61156/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60616",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/latin-folk-night-6-3492332/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/latin-folk-night-6-3492332/",
                        "en": "https://www.lippu.fi/artist/malmitalo/latin-folk-night-6-3492332/"
                    },
                    "description": null,
                    "price": {
                        "fi": "16,50 € / 22,50 €",
                        "sv": "16,50 € / 22,50 €",
                        "en": "16,50 € / 22,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4535,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:23.245456Z",
                    "last_modified_time": "2023-09-07T14:26:23.245482Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728578.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4535/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:22.918543Z",
            "last_modified_time": "2023-11-14T06:13:37.816659Z",
            "date_published": null,
            "start_time": "2023-11-11T14: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E061265480EE405E1D6243D9652B0DCB/Latin_Folk_Night",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E061265480EE405E1D6243D9652B0DCB/Latin_Folk_Night",
                "en": "http://www.malmitalo.fi/en/events/event/E061265480EE405E1D6243D9652B0DCB/Latin_Folk_Night"
            },
            "description": {
                "fi": "<p>Tule viettämään sykähdyttävää iltaa latinalaisamerikkalaisen tanssin, musiikin ja perinteiden parissa järjestyksessään kuudenteen Latin Folk Night -esitykseen!</p><p>Helsingin latinalaisamerikkalainen yhteisö vie katsojan värikkään esityksensä kautta alueen kulttuurisille sydänmaille. Illan aikana lavalla nähdään kansantansseja, joissa yhdistyvät alkuperäiskansojen perinteet ja afrikkalaiset sekä eurooppalaiset vaikutteet.</p><p><b>Askelten Palo ry:n</b> tuottama esitys edistää kulttuurivaihtoa ja ymmärrystä latinalaisamerikkalaisen ja suomalaisen yhteisön välillä.</p><p>Tule mukaan rakentamaan siltoja ja juhlimaan moninaisuutta!</p><p><b>Kaksi esitystä:</b><br>Ensimmäinen esitys klo 16.00<br>Toinen esitys klo 19.00</p><p>Kesto n. 1 h 30 min, sis. 20 min väliaika</p><p>***</p><p><b>¡Bienvenidos a la sexta edición de Latin Folk Night!</b></p><p>Los invitamos a unirse a nosotros en una velada vibrante llena de cultura, música y tradición. Nuestro evento celebra la fusión única de influencias indígenas, africanas y europeas que han dado forma y contribuido al variado tapiz de ritmos y melodías de la música folclórica latinoamericana.</p>",
                "sv": "<p>Kom till den i ordningen sjätte Latin Folk Night-föreställningen för att tillbringa en bedårande kväll med latinamerikansk dans och musik samt latinamerikanska traditioner!</p><p>Kom till den i ordningen sjätte Latin Folk Night-föreställningen för att tillbringa en bedårande kväll med latinamerikansk dans och musik samt latinamerikanska traditioner!</p><p>Längd cirka 1 t 30 min, med paus<br><b>Två föreställning</b>: 16.00 och 19.00</p><p><b>¡Bienvenidos a la sexta edición de Latin Folk Night!</b><br>Los invitamos a unirse a nosotros en una velada vibrante llena de cultura, música y tradición. Nuestro evento celebra la fusión única de influencias indígenas, africanas y europeas que han dado forma y contribuido al variado tapiz de ritmos y melodías de la música folclórica latinoamericana.</p>",
                "en": "<p>We invite you to join us for a vibrant evening full of culture, music, and tradition in the sixth edition of Latin Folk Night!</p><p>Our event celebrates the unique fusion of Indigenous, African, and European influences that have shaped and contributed to the rich tapestry of rhythms and melodies in Latin American folk music.</p><p>Experience the heart of our culture through colorful performances by members of the Latin American community living in Helsinki. You’ll witness traditional dances from different countries and enjoy our delicious cuisine.</p><p><b>Askelten Palo ry</b> is proud to promote cultural exchanges and understanding between our community and Finland through this show.</p><p>Don’t miss this unique opportunity to celebrate diversity, build bridges and immerse yourself in the magic of Latin America.</p><p><b>Two shows:</b><br>First show at 4:00 p.m<br>Second show at 7:00 p.m</p><p>Duration approx. 1 h 30 min, incl. 20 min. interval</p><p>>b>¡Bienvenidos a la sexta edición de Latin Folk Night!</b><br>Los invitamos a unirse a nosotros en una velada vibrante llena de cultura, música y tradición. Nuestro evento celebra la fusión única de influencias indígenas, africanas y europeas que han dado forma y contribuido al variado tapiz de ritmos y melodías de la música folclórica latinoamericana.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule viettämään sykähdyttävää iltaa latinalaisamerikkalaisen tanssin, musiikin ja perinteiden parissa järjestyksessään kuudenteen Latin Folk Night -esitykseen!",
                "sv": "Kom till den i ordningen sjätte Latin Folk Night-föreställningen för att tillbringa en bedårande kväll med latinamerikansk dans och musik samt latinamerikanska traditioner!",
                "en": "We invite you to join us for a vibrant evening full of culture, music, and tradition in the sixth edition of Latin Folk Night!"
            },
            "name": {
                "fi": "Latin Folk Night",
                "sv": "Latin Folk Night",
                "en": "Latin Folk Night"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60616/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61122",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5336,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-10T13:31:25.568155Z",
                    "last_modified_time": "2023-10-10T13:31:25.568180Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737940.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5336/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-10T13:31:25.313744Z",
            "last_modified_time": "2023-11-14T06:13:37.743237Z",
            "date_published": null,
            "start_time": "2023-11-11T13: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0B906F14932F635EFEF898AF7834D699/Kuka_olet_Mimmi_Lehma_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0B906F14932F635EFEF898AF7834D699/Vem_ar_Mamma_Mu_T_"
            },
            "description": {
                "fi": "<p>Kun Mimmi Lehmä saa inspiraatiota lapsista ja haluaa tehdä oman MUUUsikaalinsa, menee asiat ihan pieleen.</p><p>Pikkuveljen rakas nalle katoaa salaperäisissä olosuhteissa ja kaikki on Mimmi Lehmän syytä.</p><p>\"Etkö voi olla ihan tavallinen lehmä? Silloin mitään ei tapahdu!\" hänen ystävänsä Varis kysyy. Mutta juuri sitä Mimmi Lehmä haluaa välttää. Hän rakastaa sitä, kun kaikenlaisia asioita tapahtuu! Yhdessä Mimmi ja Varis alkavat seurata kadonneen nallen jälkiä.</p><p>Kesto 67 min<br>Ensi-ilta 10.11.2023<br>Ikäraja Sallittu</p>",
                "sv": "<p>När Mamma Mu blir inspirerad av barnen och vill göra sin alldeles egna Mu-sikal, råkar hon ställa till det rejält.</p><p>Lillebrors älskade nalle försvinner under mystiska omständigheter och det är Mamma Mus fel.</p><p>\"Kan du inte bara vara en vanlig ko?\" undrar hennes vän Kråkan. \"Då händer ingenting!\" Men det är ju precis det Mamma Mu vill undvika. Hon älskar när det händer saker! Inte bara så sorgliga saker. Tillsammans börjar Mamma Mu och Kråkan följa spåren efter den saknade nallen.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kun Mimmi Lehmä saa inspiraatiota lapsista ja haluaa tehdä oman MUUUsikaalinsa, menee asiat ihan pieleen.",
                "sv": "När Mamma Mu blir inspirerad av barnen och vill göra sin alldeles egna Mu-sikal, råkar hon ställa till det rejält."
            },
            "name": {
                "fi": "Kuka olet, Mimmi Lehmä? (S) – Kino Helios",
                "sv": "Vem är Mamma Mu? (T) – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61122/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61236",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5871,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-06T13:13:58.154853Z",
                    "last_modified_time": "2023-11-06T13:13:58.154871Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739368.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5871/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-06T13:13:58.126865Z",
            "last_modified_time": "2023-11-14T06:13:37.125571Z",
            "date_published": null,
            "start_time": "2023-11-10T16: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6BE87FB5F8E4248A95DC019E3122669C/Cinema_Laika"
            },
            "description": {
                "fi": "<p>Kroatialainen ohjaaja Veljko Vidak taltioi Karkkilassa, kuinka Aki Kaurismäki ja kirjailija Mika Lätti rakentavat omaa elokuvateatteria vanhaan valimoon.</p><p>Kierrätyspuuta, metallia ja käytettyjä huonekaluja hyödyntäen Kaurismäki ja Karkkilan asukkaat tekevät yhteistyössä Kino Laikan. Tapahtumapaikkaa ympäröivät Cadillacit, moottoripyörät, baarit ja kunnioitusta herättävä luonnon kauneus kiteyttäen elokuvan lumon.</p><p>Cinéma Laika on kaikkien aikojen ensimmäinen elokuvateatterilevitykseen tehty Aki Kaurismäki -dokumentti.</p><p>Pääosissa: Aki Kaurismäki, Mika Lätti, Karkkilan asukkaat, Herra Ylppö, Maustetytöt, Nuppu Koivu, Simon Al-Bazoon, Mikko Myllylahti, Juho Kuosmanen, Amy Taubin ja Jim Jarmusch.</p><p><i>\"The documentary offers an opportunity for the audience to delve into the realm of the Finnish master, engage with his peers, including Jim Jarmusch, and fully immerse themselves in the world of Kaurismäki’s cinema\"</i> -Variety</p><p>Ensi-ilta: 10.11.2023<br>Ikäraja: Ei tiedossa<br>Kesto: 81 min</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kroatialainen ohjaaja Veljko Vidak taltioi Karkkilassa, kuinka Aki Kaurismäki ja kirjailija Mika Lätti rakentavat omaa elokuvateatteria vanhaan valimoon."
            },
            "name": {
                "fi": "Cinema Laika – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61236/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61155",
            "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/helsinki-beatles-weekend-presents-the-seatbelts-live-malmitalo-17755467/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 24 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5641,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-25T11:14:37.088518Z",
                    "last_modified_time": "2023-10-25T11:14:37.088538Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738043.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5641/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-25T11:14:37.057720Z",
            "last_modified_time": "2023-11-14T06:13:37.051726Z",
            "date_published": null,
            "start_time": "2023-11-10T16: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C75B70FD05154F24798CEEB9D4FC73F8/Helsinki_Beatles_Weekend_Presents_The_Seatbelts_Live_"
            },
            "description": {
                "fi": "<p>The Seatbelts on yksi tämän hetken kuumimpia Beatles-tribuuttiyhtyeitä Suomessa.</p><p>Yhtye tuli tunnetuksi Helsinki Beatles Weekendin järjestämästä bändikisasta, jonka he voittivat ja pääsivät esiintymään Kulttuuritalolle Pohjoismaiden suurimpaan Beatles-tapahtumaan, Helsinki Beatles Weekendiin. Yleisö suorastaan hullaantui heihin, ja he saivat uskomattomat suosionosoitukset. Tämä onkin poikinut yhtyeelle keikkaa ympäri Suomen. Nyt järjestettävä konsertti on The Seatbeltsin ensimmäinen iso oma konserttisalikonsertti, joka koostuu kahdesta 60 minuutin puoliajasta, ja näiden väliin jäävästä 30 minuutin väliajasta.<br> <br>Ensimmäisellä puoliajalla kuulemme Abbey Road -levyn alusta loppuun. Kappaleet esitetään siinä järjestyksessä kuin ne levyllä ovat. Toisella puoliajalla kuulemme upean Beatles-kimaran aina yhtyeen alkuajoista myöhäisempään tuotantoon, tietenkin tuttuun The Seatbelts -tyyliin, energisesti ja yleisön vangiten.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "The Seatbelts on yksi tämän hetken kuumimpia Beatles-tribuuttiyhtyeitä Suomessa."
            },
            "name": {
                "fi": "Helsinki Beatles Weekend Presents: The Seatbelts Live"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61155/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61121",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5335,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-10T13:31:20.229375Z",
                    "last_modified_time": "2023-10-10T13:31:20.229393Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737938.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5335/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-10T13:31:20.087673Z",
            "last_modified_time": "2023-11-14T06:13:36.971353Z",
            "date_published": null,
            "start_time": "2023-11-10T13: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F68587B53D9DD80663655B7ACDEA799C/Ihmeiden_aarella_S_"
            },
            "description": {
                "fi": "<p>Ikänsä miehiään passanneet Lily ja Eileen saavat mahdollisuuden matkustaa 1960-luvun Irlannin ahtaista ympyröistä Lourdesiin.</p><p>Kuuluisassa ranskalaisessa pyhiinvaelluskohteesessa virtaa parantavaksi kutsuttua lähdevettä itsensä Neitsyt Marian toimesta.</p><p>Matkaan lähtee myös nuori äiti Dolly pienen, puhumattoman poikansa kanssa sekä vuosia poissa ollut Chrissie. Jokainen odottaa matkalta ihmeitä vain huomatakseen, että ovat jo ystävyydessään ihmeiden äärellä.</p><p>Hauskan ja koskettavan elokuvan pääosissa nähdään Oscar-palkitut Maggie Smith ja Kathy Bates sekä Laura Linney ja Stephen Rea.</p><p>Kesto 90 min<br>Ensi-ilta 3.11.<br>Ikäraja Sallittu</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ikänsä miehiään passanneet Lily ja Eileen saavat mahdollisuuden matkustaa 1960-luvun Irlannin ahtaista ympyröistä Lourdesiin."
            },
            "name": {
                "fi": "Ihmeiden äärellä (S) – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61121/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61120",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5334,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-10T13:31:13.896003Z",
                    "last_modified_time": "2023-10-10T13:31:13.896022Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737936.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5334/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-10T13:31:12.597192Z",
            "last_modified_time": "2023-11-14T06:13:36.215649Z",
            "date_published": null,
            "start_time": "2023-11-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C2CAA044C7883F30F23736EF4D133101/Ihmeiden_aarella_S_"
            },
            "description": {
                "fi": "<p>Ikänsä miehiään passanneet Lily ja Eileen saavat mahdollisuuden matkustaa 1960-luvun Irlannin ahtaista ympyröistä Lourdesiin.</p><p>Kuuluisassa ranskalaisessa pyhiinvaelluskohteesessa virtaa parantavaksi kutsuttua lähdevettä itsensä Neitsyt Marian toimesta.</p><p>Matkaan lähtee myös nuori äiti Dolly pienen, puhumattoman poikansa kanssa sekä vuosia poissa ollut Chrissie. Jokainen odottaa matkalta ihmeitä vain huomatakseen, että ovat jo ystävyydessään ihmeiden äärellä.</p><p>Hauskan ja koskettavan elokuvan pääosissa nähdään Oscar-palkitut Maggie Smith ja Kathy Bates sekä Laura Linney ja Stephen Rea.</p><p>Kesto 90 min<br>Ensi-ilta 3.11.<br>Ikäraja Sallittu</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ikänsä miehiään passanneet Lily ja Eileen saavat mahdollisuuden matkustaa 1960-luvun Irlannin ahtaista ympyröistä Lourdesiin."
            },
            "name": {
                "fi": "Ihmeiden äärellä (S) – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61120/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61222",
            "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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5799,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-01T15:14:24.866051Z",
                    "last_modified_time": "2023-11-01T15:14:24.866067Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737793.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5799/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-01T15:14:24.846459Z",
            "last_modified_time": "2023-11-14T06:13:34.559472Z",
            "date_published": null,
            "start_time": "2023-11-04T16: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CE57C42496D170BA0222DFB1F8ABBEBF/Halloweenin_ilmaisleffa_Gremlins_12_"
            },
            "description": {
                "fi": "<p>Billy-poika saa joululahjaksi herttaisen mutta hieman erikoisen lemmikkiotuksen, jota koskevat aivan erityiset hoito-ohjeet: otus ei saa joutua tekemisiin veden kanssa, sitä ei saa altistaa valolle eikä sitä saa missään tapauksessa ruokkia keskiyön jälkeen.</p><p>Kun hoito-ohjetta kuitenkin vahingossa rikotaan, seuraukset ovat hurjat – kaupunki vilisee pian Gizmoksi ristityn otuksen lajitovereita, jotka ovat valitettavasti vain toinen toistaan pahansuovempia.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Billy-poika saa joululahjaksi herttaisen mutta hieman erikoisen lemmikkiotuksen, jota koskevat aivan erityiset hoito-ohjeet: otus ei saa joutua tekemisiin veden kanssa, sitä ei saa altistaa valolle eikä sitä saa missään tapauksessa ruokkia keskiyön jälkeen."
            },
            "name": {
                "fi": "Halloweenin ilmaisleffa: Gremlins (12)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61222/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61221",
            "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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5798,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-01T15:14:24.512962Z",
                    "last_modified_time": "2023-11-01T15:14:24.512996Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737792.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5798/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-01T15:14:24.483682Z",
            "last_modified_time": "2023-11-14T06:13:34.404373Z",
            "date_published": null,
            "start_time": "2023-11-04T13: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6C66FAED0EB6A6862EE5DC1808E6D021/Halloweenin_ilmaisleffa_Coco_7_"
            },
            "description": {
                "fi": "<p>Disney-Pixarin elokuvassa Coco musiikki on ollut Miguelin suvussa kiellettyä jo monen sukupolven ajan, mutta silti poika unelmoi muusikon urasta idolinsa Ernesto de la Cruzin innoittamana.</p><p>Salaperäisen tapahtumaketjun seurauksena Miguel päätyy värikkääseen Kuolleiden maahan, missä hän tapaa vastustamattoman veijarin nimeltä Hector. Yhdessä he lähtevät huikeaan seikkailuun selvittämään todellista tarinaa Miguelin suvusta.</p><p>Ohjaajana Lee Unkrich (Toy Story 3), apulaisohjaajana Adrian Molina (apulaiskäsikirjoittaja Monsterit-yliopisto) ja tuottajana Darla K. Anderson (Toy Story 3). Elokuva palkittiin parhaan animaatioelokuvan Gloden Globella ja se on kahden Oscarin ehdokas.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Disney-Pixarin elokuvassa Coco musiikki on ollut Miguelin suvussa kiellettyä jo monen sukupolven ajan, mutta silti poika unelmoi muusikon urasta idolinsa Ernesto de la Cruzin innoittamana."
            },
            "name": {
                "fi": "Halloweenin ilmaisleffa: Coco (7)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61221/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60615",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p4354/?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://www.lippu.fi/event/musiikkisirkus-avain-hukassa-malmitalo-17028012/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4504,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:25:53.632407Z",
                    "last_modified_time": "2023-09-07T14:25:53.632448Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729399.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4504/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:25:52.952390Z",
            "last_modified_time": "2023-11-14T06:13:34.325636Z",
            "date_published": null,
            "start_time": "2023-11-04T13: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AA0601C29948F23E7F841B995956E713/Musiikkisirkus_Avain_hukassa"
            },
            "description": {
                "fi": "<p>Musiikkia ja nykysirkusta sisältävässä Avain hukassa -esityksessä etsitään kadonnutta avainta, käydään kylässä eri kodeissa ja tavataan naapureita.</p><p>Jokainen koti on erilainen, asukkaidensa näköinen ja kuuloinen.</p><p>Koko perheen esitys pohjautuu <b>Sanna Manderin</b> kirjoittamaan ja kuvittamaan kirjaan <i>Avain hukassa</i>. Kirjan runoista uusia lauluja on säveltänyt <b>Sannis Sundström</b>. Kirja on saanut Rudolf Koivu -palkinnon sekä Lasten- ja nuortenkirjallisuuden Finlandian 2017.</p><p>Esityksessä kirjan kuvitukset heräävät eloon taustakankaalla. Akustinen ja elektroninen musiikki saa vauhtia pyörivistä vanteista, pomppivista palloista, lumoavista saippuakuplista ja välillä herkistytään kuuntelemaan ja katsomaan tasapainoilua lasipullojen päällä.</p><p>Esitys soveltuu koko perheelle.</p><p>Esiintyjät:<br>Sannis Sundström: viulu, piano, laulu<br>Susanna Liinamaa: sirkustaide<br>Sami Tammela: live-elektroniikka, äänisuunnittelu<br>Antti Kolehmainen: kitara, basso, sello</p><p>Valosuunnittelu: Kauri Klemelä<br>Videosuunnittelu: Aapo Niininen<br>Kuvitus, runot: Sanna Mander</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Musiikkia ja nykysirkusta sisältävässä Avain hukassa -esityksessä etsitään kadonnutta avainta, käydään kylässä eri kodeissa ja tavataan naapureita."
            },
            "name": {
                "fi": "Musiikkisirkus Avain hukassa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60615/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61011",
            "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/musiikkisirkus-avain-hukassa-malmitalo-17640362",
                        "sv": "https://www.lippu.fi/event/musiikkisirkus-avain-hukassa-malmitalo-17640362",
                        "en": "https://www.lippu.fi/event/musiikkisirkus-avain-hukassa-malmitalo-17640362"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5207,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:32.189109Z",
                    "last_modified_time": "2023-10-09T13:31:32.189134Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737388.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5207/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:31.900937Z",
            "last_modified_time": "2023-11-14T06:13:34.099833Z",
            "date_published": null,
            "start_time": "2023-11-04T11: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E9362813B065A02B0668E27488024C45/Musiikkisirkus_Avain_hukassa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E9362813B065A02B0668E27488024C45/Musikcirkusforestallningen_Nyckelknipan_",
                "en": "http://www.malmitalo.fi/en/events/event/E9362813B065A02B0668E27488024C45/Music_Circus_The_Lost_Key_"
            },
            "description": {
                "fi": "<p>Musiikkia ja nykysirkusta sisältävässä Avain hukassa -esityksessä etsitään kadonnutta avainta, käydään kylässä eri kodeissa ja tavataan naapureita.</p><p>Jokainen koti on erilainen, asukkaidensa näköinen ja kuuloinen.</p><p>Koko perheen esitys pohjautuu <b>Sanna Manderin</b> kirjoittamaan ja kuvittamaan kirjaan <i>Avain hukassa</i>. Kirjan runoista uusia lauluja on säveltänyt <b>Sannis Sundström</b>. Kirja on saanut Rudolf Koivu -palkinnon sekä Lasten- ja nuortenkirjallisuuden Finlandian 2017.</p><p>Esityksessä kirjan kuvitukset heräävät eloon taustakankaalla. Akustinen ja elektroninen musiikki saa vauhtia pyörivistä vanteista, pomppivista palloista, lumoavista saippuakuplista ja välillä herkistytään kuuntelemaan ja katsomaan tasapainoilua lasipullojen päällä.</p><p>Esitys soveltuu koko perheelle.</p><p>Esiintyjät:<br>Sannis Sundström: viulu, piano, laulu<br>Susanna Liinamaa: sirkustaide<br>Sami Tammela: live-elektroniikka, äänisuunnittelu<br>Antti Kolehmainen: kitara, basso, sello</p><p>Valosuunnittelu: Kauri Klemelä<br>Videosuunnittelu: Aapo Niininen<br>Kuvitus, runot: Sanna Mander</p>",
                "sv": "<p>Föreställningen Nyckelknipan som består av musik och nycirkus är en jakt efter en borttappad nyckel, besök i olika hem och träffar med grannarna.</p><p>Varje hem är annorlunda och ser ut och låter som de som bor där.</p><p>Familjeföreställningen baserar sig på boken <i>Nyckelknipan</i> som är skriven och illustrerad av <b>Sanna Mander</b>. Bokens rim har tonsatts till nya låtar av <b>Sannis Sundström</b>.</p>",
                "en": "<p>‘The Lost Key’, a show with music and contemporary circus, is about searching for a lost key, visiting different homes and meeting neighbours.</p><p>Each home is different and looks and sounds like its inhabitants.</p><p>The performance is based on the book <i>The Lost Key</i>, written and illustrated by <b>Sanna Mander</b>. <b>Sannis Sundström</b> has composed new songs of the poems in the book.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Musiikkia ja nykysirkusta sisältävässä Avain hukassa -esityksessä etsitään kadonnutta avainta, käydään kylässä eri kodeissa ja tavataan naapureita.",
                "sv": "Föreställningen Nyckelknipan som består av musik och nycirkus är en jakt efter en borttappad nyckel, besök i olika hem och träffar med grannarna.",
                "en": "‘The Lost Key’, a show with music and contemporary circus, is about searching for a lost key, visiting different homes and meeting neighbours."
            },
            "name": {
                "fi": "Musiikkisirkus Avain hukassa",
                "sv": "Musikcirkusföreställningen Nyckelknipan",
                "en": "Music Circus The Lost Key"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61011/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61111",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5204,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:28.298187Z",
                    "last_modified_time": "2023-10-09T13:31:28.298205Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737468.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5204/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:28.081937Z",
            "last_modified_time": "2023-11-14T06:13:33.717790Z",
            "date_published": null,
            "start_time": "2023-11-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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AC1849541DE2D1B7416B295FFBCFDC21/Sisarukset_12_"
            },
            "description": {
                "fi": "<p>Kolmekymppiset kaksoset Jenna (Henna Tanskanen) ja Joni (Lauri Tanskanen) saavat tietää, että heidän isällään on kolmaskin lapsi. Sisko Jóna (Elin Petersdottir) asuu Islannissa.</p><p>Sisarusten tapaaminen mullistaa jokaisen maailman, ihmissuhteet ja tulevaisuuden. Kunkin etsiessä omalle elämälleen merkitystä, aaltoillaan yhden isän, kahden kotimaan ja kolmen aikuisen sisaruksen välillä yhdistymisestä erkaantumiseen ja takaisin.</p><p>Vuosien mittaan sisarukset kohtaavat itsensä ja toisensa, samanlaisuutensa ja erilaisuutensa.</p><p>Saara Cantellin Sisarukset-elokuvaa on kuvattu seitsemän vuoden ajan päähenkilöitä seuraten.</p><p>Kesto: 123 min<br>Ikäraja: 12<br>Ensi-ilta 27.10.2023</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia ja klassikoita niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kolmekymppiset kaksoset Jenna (Henna Tanskanen) ja Joni (Lauri Tanskanen) saavat tietää, että heidän isällään on kolmaskin lapsi. Sisko Jóna (Elin Petersdottir) asuu Islannissa."
            },
            "name": {
                "fi": "Sisarukset (12) – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61111/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61150",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5515,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-18T09:26:40.945649Z",
                    "last_modified_time": "2023-10-18T09:26:40.945672Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738087.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5515/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-18T09:26:40.269069Z",
            "last_modified_time": "2023-11-14T06:13:33.496874Z",
            "date_published": null,
            "start_time": "2023-11-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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4422D42F0FE444282398FB44D9445A6E/Venetsian_aaveet_12_",
                "en": "http://www.malmitalo.fi/en/events/event/4422D42F0FE444282398FB44D9445A6E/A_Haunting_in_Venice_12_"
            },
            "description": {
                "fi": "<p>Venetsian aaveet sijoittuu toisen maailmansodan jälkeiseen Venetsiaan pahaenteisesti pyhäinpäivän aattona, jolloin tapahtuvan karmivan mysteerin myötä valkokankaalle palaa maineikas etsivä Hercule Poirot.</p><p>Eläkkeelle jäätyään Poirot vetäytynyt viettämään hiljaiseloa maailman kiehtovimmassa kaupungissa, missä hän hyvin vastahakoisesti suostuu osallistumaan spiritistiseen istuntoon rapistuvassa palazzossa, jossa kummittelee. Kun yksi vieraista joutuu murhan uhriksi, etsivämme tempautuu pahuuden pyörteisiin tuossa varjojen ja salaisuuksien maailmassa.</p><p>Ikäraja: 12<br>Kesto: 96 min<br>Ensi-ilta 15.9.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>",
                "en": "<p>“A Haunting in Venice” is set in eerie, post-World War II Venice on All Hallows’ Eve and is a terrifying mystery featuring the return of the celebrated sleuth, Hercule Poirot.</p><p>Now retired and living in self-imposed exile in the world’s most glamorous city, Poirot reluctantly attends a séance at a decaying, haunted palazzo. When one of the guests is murdered, the detective is thrust into a sinister world of shadows and secrets.</p><p>Age rating: 12<br>Duration: 96 minutes</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Venetsian aaveet sijoittuu toisen maailmansodan jälkeiseen Venetsiaan pahaenteisesti pyhäinpäivän aattona, jolloin tapahtuvan karmivan mysteerin myötä valkokankaalle palaa maineikas etsivä Hercule Poirot.",
                "en": "“A Haunting in Venice” is set in eerie, post-World War II Venice on All Hallows’ Eve and is a terrifying mystery featuring the return of the celebrated sleuth, Hercule Poirot."
            },
            "name": {
                "fi": "Venetsian aaveet (12) – Kino Helios",
                "en": "A Haunting in Venice (12) – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61150/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61142",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5449,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-12T13:58:07.546552Z",
                    "last_modified_time": "2023-10-12T13:58:07.546573Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732001.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5449/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-12T13:58:07.062319Z",
            "last_modified_time": "2023-11-14T06:13:33.187070Z",
            "date_published": null,
            "start_time": "2023-11-02T17: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,
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9DDFFBF4536DFC988A609637190EA784/PopJazz_Malmitalo_Aku_Keinonen_Julia_Janakka_Pirita"
            },
            "description": {
                "fi": "<p>Tiistai-illan keikoilla kuullaan Pop & Jazz Konservatorion muusikoita.</p><p><b>Aku Keinonen</b> on 23-vuotias uraansa aloittava artisti, joka opiskelee tätä nykyä ammattimuusikoksi Helsingin Pop & Jazz Konservatoriossa. Hän on opiskellut tätä ennen Hämeenlinnan Sibelius-opistossa ja suorittanut vuonna 2021 varusmiespalveluksensa Puolustusvoimien Varusmiessoittokunnassa laulusolistina. <br> <br>Kevään aikana TV:stäkin tutuksi tullut laulaja on julkaissut omaa musiikkia omakustanteena yhden EP:n verran. Keinosen musiikki on laulaja-lauluntekijä -henkistä ja maanläheistä.</p><p><b>Julia Janakka</b> on 19-vuotias laulaja-lauluntekijä, joka esittää orgaanisia ja akustisia kitara-lauluballadeja. Hän kirjoittaa kappaleita, joihin on helppo samaistua ja jotka ovat mahdollisimman aitoja ja tulevat lähelle kuuntelijaa.</p><p><b>Pirita</b> on englanninkielistä rnb:tä kirjoittava artisti. Hän yhdistää soul-pohjaiseen tyyliinsä lisäksi muun muassa trip hoppia, ambienttia ja jazzia. Tunnelma ja sanoma ovat joka kappaleen keskiössä, ja sävellys rakentuu tunneilmaisun jatkeeksi. <br> <br>Tämä akustinen pienkeikka esittelee tuoreita, julkaisemattomia kappaleita. Piano-laulukokoonpano riisuu värikkäät tuotannot paljaiksi, jolloin koskettava lyriikka ja harmonia pääsevät esiin. Melodiat matkaavat melankolisesta voimakkuudesta hellään eteerisyyteen. <br> <br>Pirita kirjoittaa eläväisimmät tekstinsä raskaista aiheista kuten yksinäisyydestä ja riidoista, mutta keikalla teemoja kosketetaan lämminhenkisesti ja turvallisesti.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tiistai-illan keikoilla kuullaan Pop & Jazz Konservatorion muusikoita."
            },
            "name": {
                "fi": "PopJazz @ Malmitalo: Aku Keinonen | Julia Janakka | Pirita"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61142/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}