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

{
    "meta": {
        "count": 1655,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=32",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=30"
    },
    "data": [
        {
            "id": "kulke:65534",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 172739,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-27T15:15:19.363008Z",
                    "last_modified_time": "2025-01-27T15:15:19.363025Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765056.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-01-27T15:15:19.325586Z",
            "last_modified_time": "2025-01-27T15:15:19.440129Z",
            "date_published": null,
            "start_time": "2025-02-18T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D325C72E0C13DD439488E7756EDD187E/Talvilomaleffa_Toive_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D325C72E0C13DD439488E7756EDD187E/Sportlovsfilm_Onskan_7_",
                "en": "http://www.malmitalo.fi/en/events/event/D325C72E0C13DD439488E7756EDD187E/Winter_break_movie_Wish_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Rosasin taianomaiseen valtakuntaan sijoittuvan tarinan pääosassa tutustutaan nokkelaan tyttöön nimeltä Asha, joka välittää syvästi omasta yhteisöstään.</p><p>Kun Asha hädän hetkellä kääntyy tähtitaivaan puoleen ja esittää toiveen, hänelle vastaa kosminen voima—pieni rajatonta energiaa pursuava pallo nimeltä Tähti. Yhdessä he kohtaavat mahtavan vihollisen pelastaakseen Ashan yhteisön ja todistavat, että kun urhean ihmisen tahto yhdistyy tähtien taikaan, ihmeitä voi tapahtua.</p><p>Toive on uusi Walt Disney-animaatio.</p><p>Ikäraja: 7<br>Kesto 95 min<br>Puhuttu suomeksi<br>Paikka: Malmisali</p><p>Vapaa pääsy!</p>",
                "sv": "<p>I huvudrollen till historien som utspelar sig i Rosas förtrollande rike får bekanta oss med en klyftig flicka vid namn Asha, som bryr sig djupt om sin egen gemenskap.</p><p>När Asha i nödens stund vänder sig mot stjärnhimlen och lägger fram ett önskemål, får hon svar av en kosmisk kraft – en liten boll som sjuder av gränslös energi vid namn Stjärnan. Tillsammans möter de en mäktig fiende för att rädda Ashas gemenskap, och bevisar att när en modig människas vilja kombineras med stjärnornas magi, så kan under ske.</p><p>Önskan är en ny Walt Disney-animation.</p><p>Åldersgräns: 7<br>Längd 95 min.<br>Tal på finska<br>Plats: Malmsalen</p><p>Fritt inträde!</p>",
                "en": "<p>Set in the magical kingdom of Rosas, the story focuses on a clever girl named Asha, who cares deeply about her community.</p><p>When Asha turns to the stars in her time of need and makes a wish, she is answered by a cosmic force – a small ball of infinite energy called Star. Together, they face a formidable foe to save Asha’s community and prove that when the will of a brave person combines with the magic of the stars, miracles can happen.</p><p>Wish is a new animated film from Walt Disney.</p><p>Age limit: 7<br>Duration: 95 min<br>In Finnish<br>Location: Malmisali</p><p>Admission is free!</p>"
            },
            "short_description": {
                "fi": "Rosasin taianomaiseen valtakuntaan sijoittuvan tarinan pääosassa tutustutaan nokkelaan tyttöön nimeltä Asha, joka välittää syvästi omasta yhteisöstään.",
                "sv": "I huvudrollen till historien som utspelar sig i Rosas förtrollande rike får bekanta oss med en klyftig flicka vid namn Asha, som bryr sig djupt om sin egen gemenskap.",
                "en": "Set in the magical kingdom of Rosas, the story focuses on a clever girl named Asha, who cares deeply about her community."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Talvilomaleffa: Toive (7)",
                "sv": "Sportlovsfilm: Önskan (7)",
                "en": "Winter break movie: Wish (7)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65534/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65533",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 172738,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-27T15:15:19.018454Z",
                    "last_modified_time": "2025-01-27T15:15:19.018474Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765055.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172738/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-01-27T15:15:18.956302Z",
            "last_modified_time": "2025-01-27T15:15:19.133435Z",
            "date_published": null,
            "start_time": "2025-02-18T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EAB1B038338DF0595323F4D0EFC6D6A9/Talvilomaleffa_Toive_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EAB1B038338DF0595323F4D0EFC6D6A9/Sportlovsfilm_Onskan_7_",
                "en": "http://www.malmitalo.fi/en/events/event/EAB1B038338DF0595323F4D0EFC6D6A9/Winter_break_movie_Wish_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Rosasin taianomaiseen valtakuntaan sijoittuvan tarinan pääosassa tutustutaan nokkelaan tyttöön nimeltä Asha, joka välittää syvästi omasta yhteisöstään.</p><p>Kun Asha hädän hetkellä kääntyy tähtitaivaan puoleen ja esittää toiveen, hänelle vastaa kosminen voima—pieni rajatonta energiaa pursuava pallo nimeltä Tähti. Yhdessä he kohtaavat mahtavan vihollisen pelastaakseen Ashan yhteisön ja todistavat, että kun urhean ihmisen tahto yhdistyy tähtien taikaan, ihmeitä voi tapahtua.</p><p>Toive on uusi Walt Disney-animaatio.</p><p>Ikäraja: 7<br>Kesto 95 min<br>Puhuttu suomeksi<br>Paikka: Malmisali</p><p>Vapaa pääsy!</p>",
                "sv": "<p>I huvudrollen till historien som utspelar sig i Rosas förtrollande rike får bekanta oss med en klyftig flicka vid namn Asha, som bryr sig djupt om sin egen gemenskap.</p><p>När Asha i nödens stund vänder sig mot stjärnhimlen och lägger fram ett önskemål, får hon svar av en kosmisk kraft – en liten boll som sjuder av gränslös energi vid namn Stjärnan. Tillsammans möter de en mäktig fiende för att rädda Ashas gemenskap, och bevisar att när en modig människas vilja kombineras med stjärnornas magi, så kan under ske.</p><p>Önskan är en ny Walt Disney-animation.</p><p>Åldersgräns: 7<br>Längd 95 min.<br>Tal på finska<br>Plats: Malmsalen</p><p>Fritt inträde!</p>",
                "en": "<p>Set in the magical kingdom of Rosas, the story focuses on a clever girl named Asha, who cares deeply about her community.</p><p>When Asha turns to the stars in her time of need and makes a wish, she is answered by a cosmic force – a small ball of infinite energy called Star. Together, they face a formidable foe to save Asha’s community and prove that when the will of a brave person combines with the magic of the stars, miracles can happen.</p><p>Wish is a new animated film from Walt Disney.</p><p>Age limit: 7<br>Duration: 95 min<br>In Finnish<br>Location: Malmisali</p><p>Admission is free!</p>"
            },
            "short_description": {
                "fi": "Rosasin taianomaiseen valtakuntaan sijoittuvan tarinan pääosassa tutustutaan nokkelaan tyttöön nimeltä Asha, joka välittää syvästi omasta yhteisöstään.",
                "sv": "I huvudrollen till historien som utspelar sig i Rosas förtrollande rike får bekanta oss med en klyftig flicka vid namn Asha, som bryr sig djupt om sin egen gemenskap.",
                "en": "Set in the magical kingdom of Rosas, the story focuses on a clever girl named Asha, who cares deeply about her community."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Talvilomaleffa: Toive (7)",
                "sv": "Sportlovsfilm: Önskan (7)",
                "en": "Winter break movie: Wish (7)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65533/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64778",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/alamalmi/a-la-malmi-dj-kridlokk-ex-tuuttiz-3760226/",
                        "sv": "https://www.lippu.fi/artist/alamalmi/a-la-malmi-dj-kridlokk-ex-tuuttiz-3760226/",
                        "en": "https://www.lippu.fi/artist/alamalmi/a-la-malmi-dj-kridlokk-ex-tuuttiz-3760226/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152904,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-29T12:16:15.039185Z",
                    "last_modified_time": "2024-10-29T12:16:15.039203Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760151.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152904/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-29T12:16:15.012531Z",
            "last_modified_time": "2025-01-27T10:14:44.368509Z",
            "date_published": null,
            "start_time": "2025-02-07T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A2A0E0AE323E5B7B2D63C1D7251D1FA1/DJ_Kridlokk_Ex_Tuuttiz",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A2A0E0AE323E5B7B2D63C1D7251D1FA1/DJ_Kridlokk_Ex_Tuuttiz",
                "en": "http://www.malmitalo.fi/en/events/event/A2A0E0AE323E5B7B2D63C1D7251D1FA1/DJ_Kridlokk_Ex_Tuuttiz"
            },
            "provider": null,
            "description": {
                "fi": "<p>A la Malmin kevätkauden 2025 ensimmäisessä illassa esiintyvät huippuarvioita niittänyt suomiräp-artisti DJ Kridlokk sekä pitkän linjan räppäri Ex Tuuttiz!</p><p>Korkeaa arvostusta kerryttänyt artisti ja tuottaja <b>DJ Kridlokk</b> eli Kristo Laanti julkaisi huhtikuussa 2024 odotetun uuden albuminsa Hai. Kridlokkin albumia on laajalti hehkutettu uudeksi suomiräpin merkkiteokseksi. <br> <br>“Mietin sitä liki 400-vuotiasta holkeria, joka oli muutamia vuosia sitten havaittu Grönlannin edustalla. Siinä on otus, joka uiskentelee puoli vuosisataa jossain jäävedessä, silmät pikimustina ja sokeina, eläen ohi kaikista muista selkärankaisista, varastoiden oman virtsansa elimistöönsä, jonka johdosta sen liha on myrkyllistä. Onko holkeri voittaja vai häviäjä, mahdotonta sanoa. Varmaa on, että sille ei voi vittuilla.” <br> <br>“Albumin jokainen ääni on harkittu ja jokaisella räpätyllä rivillä on merkitys. Biittien muodostama mosaiikkimainen tekstuuri on rikkaudessaan jotain sellaista, mitä suomiräpissä ei ole totuttu kuulemaan.” 5/5 (Helsingin Sanomat / Mikko Aaltonen)<br> <br>“Dj Kridlokkilla on koko nykyisen suomalaisen populäärimusiikin omaperäisimpiä ääniä, ja Hailla se on on parhaassa terässään. Hitto miten tätä onkin ollut ikävä.” 5/5 (Soundi / Niko Peltonen)</p><p>Kulttimainetta nauttivan artistin kaikki kolmea albumia ovat olleet arvostelumenestyksiä ja mm. vuonna 2014 ilmestynyttä Mutsi-pitkäsoittoa pidetään yhtenä suomiräpin mestariteoksista. <br> <br>Jäljittelemättömästä tyylistään ja vertaansa hakevasta flowsta tunnettu Ex Tuuttiz (ent. Tuuttimörkö) on pitkän linjan suomiräppäri. Nykyään oman OFN-levynmerkilleen levyttävä nuori og on julkaissut urallaan kolme albumia, joista vuonna 2016 ilmestynyt Kromihammas nousi myös Suomen albumilistan ykköseksi. Ex Tuuttixen neljäs pitkäsoitto XT ilmestyi syyskuussa 2023. Albumilta saatiin esimakua singlejen Kaviokeissi, Omistautunu ja Ei tarvii mennä kotiin (ft. Kriso) muodossa. <br> <br><b>A la Malmi</b> on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia. Laadukas konserttisaliympäristö nousevine katsomoineen tarjoaa jokaiselle asiakkaalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Akustiset, äänentoistolliset ja valaistukselliset puitteet ovat Malmisalissa huippuluokkaa. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoiden eteen parhaat itsenäisen musiikin tekijät. <br> <br>Keikka on ikärajaton!</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-19738765/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>På den första kvällen för A la Malmis vårsäsong 2025 framträder suomirap-artisten DJ Kridlokk som har fått topprecensioner och den erfarna rapparen Ex Tuuttiz!</p><p>Artisten och producenten DJ Kridlokk, det vill säga Kristo Laanti, har fått mycket uppskattning och släppte sitt efterlängtade nya album Hai i april 2024. Kridlokks album har hyllats brett som ett nytt mästerverk inom suomirap. <br> <br>“Jag funderade på den där nästan 400-åriga håkäringen som hade observerats utanför Grönland för några år sedan. Där har du en best som simmar omkring i isvattnet i ett halvsekel med becksvarta och blinda ögon, överlever alla andra ryggradsdjur, och lagrar sitt eget urin i kroppen, vilket gör att dess kött är giftigt. Det är omöjligt att säga huruvida håkäringen är en vinnare eller en förlorare. Säkert är att man inte kan jävlas med den.” <br> <br>“Varje ljud på albumet är övervägt, och varje rappade rad har en betydelse. Rikedomen hos beatarnas mosaikaktiga textur är något som vi inte har vant oss vid att höra inom suomirap.” 5/5 (Helsingin Sanomat / Mikko Aaltonen) <br>“DJ Kridlock har en av de mest originella rösterna i hela den samtida finländska populärmusiken, och på Hai är den på topp. Fanken så jag har saknat det här.” 5/5 (Soundi / Niko Peltonen) <br>Artisten som åtnjuter kultrykte har haft kritikerframgång med alla sina tre album, och bland annat anses LP-skivan Mutsi som släpptes år 2014 som ett av suomirappens mästerverk. <br> <br>Ex Tuuttiz (f.d. Tuuttimörkö) är känd för sin oefterhärmliga stil och unika flow, och en veteran inom suomirap. Den unga og:n som i dag spelar in på sitt eget OFN-skivmärke har släppt tre album under sin karriär, varav Kromihammas som släpptes år 2016 även blev etta på Finlands albumlista. Ex Tuuttiz fjärde LP-skiva XT släpptes i september 2023. Vi fick försmak på albumet i form av singlarna Kaviokeissi, Omistautunu och Ei tarvii mennä kotiin (ft. Kriso). <br> <br>A la Malmi är en klubbserie i Malms kulturhus som presenterar den intressantaste och färskaste finländska musiken med mest lyft. Den högkvalitativa konserthusmiljön med sina upphöjningsbara läktare erbjuder varje åhörare en bekväm sittplats och en bra utsikt över scenen. De akustiska, ljud- och ljusmässiga förhållandena i Malmsalen är av högsta klass. A la Malmi bryr sig inte om genregränser, utan erbjuder åhörarna det bästa inom indiemusik. <br> <br>Spelningen har ingen åldersgräns.</p>",
                "en": "<p>The first night of A la Malmi’s spring 2025 season will feature top-rated Finnish rap artist DJ Kridlokk and longtime rapper Ex Tuuttiz!</p><p>Highly acclaimed artist and producer DJ Kridlokk, a.k.a. Kristo Laanti, released his highly anticipated new album Hai in April 2024. Kridlokk’s album has been widely hailed as a new landmark in Finnish rap. <br> <br>“I was thinking about the almost 400-year-old Greenland shark that was spotted off Greenland a few years ago. Here is a creature that swims around in some icy water for half a century, its eyes pitch-black and blind, living beyond all other vertebrates, storing its own urine in its body, which makes its flesh poisonous. It’s impossible to say whether the Greenland shark is a winner or a loser. The one sure thing is that you can’t fuck with it.”<br> <br>“Every note on the album has been thought out, and every line rapped has meaning.  The mosaic-like texture of the beats has a richness that you’re not used to hearing in Finnish rap.” 5/5 (Helsingin Sanomat / Mikko Aaltonen) <br>“Dj Kridlokk has one of the most original sounds in Finnish pop music today, and Hai is that sound at its best. Damn, I’ve been missing this.” 5/5 (Soundi / Niko Peltonen) <br>The artist enjoys cult status, and all three of his albums have been critically acclaimed. Among others, Mutsi, his 2014 LP, is considered one of the masterpieces of Finnish rap. <br> <br>Known for his inimitable style and unparalleled flow, Ex Tuuttiz (formerly  known as Tuuttimörkö) is a longtime Finnish rapper. Currently recording on his own OFN label, the young OG has released three albums in his career, of which Kromihammas, released in 2016, also reached number one on the Finnish album charts. Ex Tuuttixe's fourth full-length album, XT, was released in September 2023. The singles “Kaviokeissi”, “Omistautunu” and “Ei tarvii mennä kotiin” (ft.  Kriso) gave us a taste of the album. <br> <br>A la Malmi is a club series at Malmitalo that showcases the most interesting, fresh and upcoming Finnish music. The high-quality concert hall environment with its ascending stands provides each customer with a comfortable seat and a good view of the stage. The acoustic, audio and lighting in Malmisali are state-of-the-art.  A la Malmi doesn’t care about genre boundaries, but brings the best independent musicians to its audiences. <br> <br>The show is for all ages.</p>"
            },
            "short_description": {
                "fi": "A la Malmin kevätkauden 2025 ensimmäisessä illassa esiintyvät huippuarvioita niittänyt suomiräp-artisti DJ Kridlokk sekä pitkän linjan räppäri Ex Tuuttiz!",
                "sv": "På den första kvällen för A la Malmis vårsäsong 2025 framträder suomirap-artisten DJ Kridlokk som har fått topprecensioner och den erfarna rapparen Ex Tuuttiz!",
                "en": "The first night of A la Malmi’s spring 2025 season will feature top-rated Finnish rap artist DJ Kridlokk and longtime rapper Ex Tuuttiz!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "DJ Kridlokk + Ex Tuuttiz – A la Malmi",
                "sv": "DJ Kridlokk + Ex Tuuttiz – A la Malmi",
                "en": "DJ Kridlokk + Ex Tuuttiz – A la Malmi"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64778/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64835",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/erikhokkanenusalumisudetfin/",
                        "sv": "https://www.lippu.fi/artist/erikhokkanenusalumisudetfin/",
                        "en": "https://www.lippu.fi/artist/erikhokkanenusalumisudetfin/"
                    },
                    "price": {
                        "fi": "28,90 € / 22,80 € / 17,80 €",
                        "sv": "28,90 € / 22,80 € / 17,80 €",
                        "en": "28,90 € / 22,80 € / 17,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153337,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-09T15:14:10.748511Z",
                    "last_modified_time": "2024-12-09T15:14:10.748524Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760451.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153337/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-09T15:14:10.723749Z",
            "last_modified_time": "2025-01-27T09:15:10.798257Z",
            "date_published": null,
            "start_time": "2025-01-28T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BB8625267CA9CB68DC23ACE37CF21E3A/PERUTTU_Erik_Hokkanen_US_Lumisudet",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BB8625267CA9CB68DC23ACE37CF21E3A/INSTALLT_Erik_Hokkanen_US_Lumisudet",
                "en": "http://www.malmitalo.fi/en/events/event/BB8625267CA9CB68DC23ACE37CF21E3A/CANCELLED_Erik_Hokkanen_US_Lumisudet"
            },
            "provider": null,
            "description": {
                "fi": "<p>Erik Hokkanen (US) ja Lumisudet konsertti 28.1.2025 Malmitalolla on peruuntunut sairaskohtauksen vuoksi.</p><p>- Lippupiste palauttaa rahat asiakkaille<br>- Liput tulee palauttaa 28.2.2025 mennessä.</p><p>Lippurahojen palautuksia voi hakea tämän verkkolinkin kautta: https://web.lippu.fi/palautus/</p><p>Liput voi palauttaa myös postitse osoitteeseen:</p><p>Lippupiste Oy / ”Tapahtuman nimi” palautus<br>Kansikatu 5<br>33100 Tampere</p><p>-</p><p>Teksasin viuluvelho Erik Hokkanen kiertää jälleen Lumisusiensa kera Pohjoismaissa! Koe hypnoottinen ja riemastuttava sekoitus swingiä ja kansanmusiikkia Malmitalossa.</p><p>Teksasilainen western swing ja kaustislainen kansanmusiikki yhdistyvät herkullisesti Erik Hokkasen ja Lumisusien yhteisessä musisoinnissa. Yhteistyö sai alkunsa 1980-luvun lopussa, kun kolmannen polven amerikansuomalainen Erik Hokkanen tutustui suomalaisiin kansanmuusikoihin.</p><p>”Koen olevani siunattu saadessani työskennellä ja soittaa kaikkien veljieni kanssa yhä uudelleen. On minulle tärkeää palata Suomeen aina, kun voin, ja esiintyä Suomen parhaiden muusikoiden kanssa. Se on kunnia ja etuoikeus, josta olen ikuisesti kiitollinen.”<br>– Erik Hokkanen</p><p><b>Erik Hokkanen & Lumisudet ovat:</b></p><p>Erik Hokkanen - laulu, kitara ja viulu<br>Petri Hakala - mandoliini ja kitara<br>Arto Järvelä - viulu ja snare<br>Tapani Varis - basso ja munniharppu</p><p>Kesto: 1 tunti, 15 min</p>",
                "sv": "<p>Konsert den 28 januari 2025 på Malmitalo har ställts in på grund av sjukdom.</p><p>- Lippupiste återbetalar kundernas pengar<br>- Biljetter måste lämnas tillbaka senast den 28 februari 2025.</p><p>Biljettåterbetalning kan begäras via denna webblänk: https://web.lippu.fi/palautus/</p><p>-</p><p>Western swing från Texas och folkmusik från Kaustinen bildar en läcker kombination i Erik Hokkanens och Lumisudets gemensamma musicerande. Samarbetet fick sin början i slutet av 1980-talet, då den tredje generationens amerikafinländare Erik Hokkanen bekantade sig med finländska folkmusiker.</p><p>“Jag känner mig välsignad då jag får jobba och spela med alla min bröder om och om igen. Det är viktigt för mig att få återvända till Finland alltid när jag kan, och framträda med de bästa musikerna i Finland. Det är en ära och ett privilegium som jag är evigt tacksam över.”<br>– Erik Hokkanen</p><p><b>Erik Hokkanen & Lumisudet är:</b></p><p>Erik Hokkanen - sång, gitarr och fiol<br>Petri Hakala - mandolin och gitarr<br>Arto Järvelä - fiol och snare<br>Tapani Varis - bas och mungiga</p>",
                "en": "<p>Erik Hokkanen (US) and Lumisudet concert on 28.1.2025 at Malmitalo has been cancelled due to illness.</p><p>- Lippupiste will refund customers<br>- Tickets must be returned by 28.2.2025.</p><p>Ticket refunds can be requested via this web link: https://web.lippu.fi/palautus/</p><p>-</p><p>Texas-style western swing and folk music from Kaustinen are delightfully combined in the music of Erik Hokkanen and Lumisudet. The collaboration began in the late 1980s when Erik Hokkanen, a third-generation American Finn, met Finnish folk musicians.</p><p>“I feel blessed to be able to work and play with all my brothers again and again. It’s important for me to come back to Finland whenever I can and perform with the best musicians in Finland. It is an honour and a privilege for which I am eternally grateful.”<br>– Erik Hokkanen</p><p><b>Erik Hokkanen & Lumisudet are:</b></p><p>Erik Hokkanen – vocals, guitar and violin<br>Petri Hakala – mandolin and guitar<br>Arto Järvelä – violin and snare<br>Tapani Varis – bass and jaw harp</p>"
            },
            "short_description": {
                "fi": "Erik Hokkanen (US) ja Lumisudet konsertti 28.1.2025 Malmitalolla on peruuntunut sairaskohtauksen vuoksi.",
                "sv": "Konsert den 28 januari 2025 på Malmitalo har ställts in på grund av sjukdom.",
                "en": "Erik Hokkanen (US) and Lumisudet concert on 28.1.2025 at Malmitalo has been cancelled due to illness."
            },
            "location_extra_info": null,
            "name": {
                "fi": "PERUTTU Erik Hokkanen (US) & Lumisudet",
                "sv": "INSTÄLLT Erik Hokkanen (US) & Lumisudet",
                "en": "CANCELLED Erik Hokkanen (US) & Lumisudet"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64835/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65428",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-ei-koskaan-yksin-12-3810815/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153719,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-13T09:14:40.299275Z",
                    "last_modified_time": "2025-01-13T09:14:40.299291Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758963.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153719/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-13T09:14:40.274465Z",
            "last_modified_time": "2025-01-24T15:15:06.182469Z",
            "date_published": null,
            "start_time": "2025-01-25T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A698787AF8B4AF20338061B63BB6FDD6/Ei_koskaan_yksin_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A698787AF8B4AF20338061B63BB6FDD6/Ei_koskaan_yksin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/A698787AF8B4AF20338061B63BB6FDD6/Ei_koskaan_yksin_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun.</p><p>Ei koskaan yksin on koskettava kertomus toisen maailmansodan synkistä vuosista, jolloin Eurooppa horjui kaaoksen partaalla ja Suomi sai osakseen pakolaisvirran Saksasta ja Itävallasta.</p><p>Tarinan keskiössä on suomalainen liikemies ja hyväntekijä Abraham Stiller, joka omistaa elämänsä inhimilliselle auttamiselle. Hän taistelee epätoivoisesti pelastaakseen Suomeen paenneet ihmiset varmalta kuolemalta keskitysleireillä, mutta joutuu samalla kohtaamaan aikansa raadolliset poliittiset realiteetit.</p><p>Ikäraja: 12<br>Kesto: 85 min.<br>Kieli: suomi<br>Tekstitys: suomi</p><p>Ensi-ilta: 17.1.2025</p>"
            },
            "short_description": {
                "fi": "Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Ei koskaan yksin (12) – Kino Helios",
                "sv": "Ei koskaan yksin (12) – Kino Helios",
                "en": "Ei koskaan yksin (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65428/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64814",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmitalo-finnair-pilots-big-band-feat-diandra-come-fly-with-me-malmitalo-19374599/",
                        "sv": "https://www.lippu.fi/event/malmitalo-finnair-pilots-big-band-feat-diandra-come-fly-with-me-malmitalo-19374599/",
                        "en": "https://www.lippu.fi/event/malmitalo-finnair-pilots-big-band-feat-diandra-come-fly-with-me-malmitalo-19374599/"
                    },
                    "price": {
                        "fi": "39 € / 36 €",
                        "sv": "39 € / 36 €",
                        "en": "39 € / 36 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153593,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T11:14:04.064635Z",
                    "last_modified_time": "2024-12-31T11:14:04.064652Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760294.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153593/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T11:14:04.023956Z",
            "last_modified_time": "2025-01-24T11:09:42.581436Z",
            "date_published": null,
            "start_time": "2025-04-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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/38062944BE2434ECB14D5848C8DFE4B9/LOPPUUNMYYTY_Finnair_Pilots_Big_Band_feat_Diandra_Come_fly_with_me_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/38062944BE2434ECB14D5848C8DFE4B9/SLUTSALD_Finnair_Pilots_Big_Band_feat_Diandra_Come_fly_with_me_",
                "en": "http://www.malmitalo.fi/en/events/event/38062944BE2434ECB14D5848C8DFE4B9/SOLD_OUT_Finnair_Pilots_Big_Band_feat_Diandra_Come_fly_with_me_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Finnair Pilots’ Big Band solistinaan upea Diandra vievät meidät musiikilliselle matkalle ympäri maailmaa.</p><p>Konsertin ohjelmassa on viihdemusiikin helmiä eri vuosikymmeniltä. Konsertin toisena laulusolistina toimii Finnairin laulava lentäjä Mikael Konttinen.</p><p>Kesto: 1 h 45 min, sis. 20 min väliajan</p><p>HUOM! Suuren kysynnän vuoksi tulossa samanlainen päiväkonsertti klo 15, liput tulevat myyntiin pian.</p>",
                "sv": "<p>Finnair Pilots’ Big Band med den härliga Diandra som solist tar med oss på en musikalisk resa runt världen.</p><p>Konsertens program innehåller pärlor från underhållningsmusikens olika årtionden. Som andra sångsolist på konserten fungerar Finnairs sjungande pilot Mikael Konttinen.</p><p>Längd: 1 h 45 min., inklusive en paus på 20 minuter</p>",
                "en": "<p>The Finnair Pilots’ Big Band, featuring the amazing Diandra on vocals, will take us on a musical journey around the world.</p><p>The concert will feature pop music gems from different decades. Finnair’s singing pilot, Mikael Konttinen, will be the second featured vocalist in the concert.</p><p>Duration: 1 h 45 min, incl. 20 min intermission</p>"
            },
            "short_description": {
                "fi": "Finnair Pilots’ Big Band solistinaan upea Diandra vievät meidät musiikilliselle matkalle ympäri maailmaa.",
                "sv": "Finnair Pilots’ Big Band med den härliga Diandra som solist tar med oss på en musikalisk resa runt världen.",
                "en": "The Finnair Pilots’ Big Band, featuring the amazing Diandra on vocals, will take us on a musical journey around the world."
            },
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY Finnair Pilots’ Big Band feat. Diandra – Come fly with me!",
                "sv": "SLUTSÅLD Finnair Pilots’ Big Band feat. Diandra – Come fly with me!",
                "en": "SOLD OUT Finnair Pilots’ Big Band feat. Diandra – Come fly with me!"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64814/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65452",
            "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:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 166308,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-24T11:09:30.599542Z",
                    "last_modified_time": "2025-01-24T11:09:30.599560Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761440.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166308/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-01-24T11:09:30.545584Z",
            "last_modified_time": "2025-01-24T11:09:30.710086Z",
            "date_published": null,
            "start_time": "2025-02-18T09:00:00Z",
            "end_time": "2025-02-19T11: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FA803EC1A99C90EC26EEB167E4C49764/Hupsansaa_ry_Hulvaton_aurinkomatka_-elamystila_ja_tyopajat",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/FA803EC1A99C90EC26EEB167E4C49764/Hupsansaa_ry_Fantastisk_solresa_upplevelserum_och_workshoppar",
                "en": "http://www.malmitalo.fi/en/events/event/FA803EC1A99C90EC26EEB167E4C49764/Hupsansaa_ry_Fun-filled_holiday_in_the_sun_experiential_space_and_workshops"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa ti 18.2. ja ke 19.2. klo 11–13 Malmitalon talviloman askartelupajoihin ja aarteiden ongintaan!</p><p>Lähdetään talvilomalla Hulvattomalle aurinkomatkalle! Kimaltava meri kutsuu kalastamaan! Mitä aarteita merestä voisi onkia? Kokeile kalastusta veikeällä lötköpötkö-ongella, nappaakohan kala?</p><p>Aurinkomatkalla voi loikoilla pehmoisella hiekkarannalla, uiskennella jättimäisellä donitsilla ja nauttia aurinkovarjojen loisteesta. Aurinkomatkan pääsylippuun sisältyy pääsy rannalle, seilailua aalloilla, aarteiden ongintaa sekä askartelua!</p><p>Askartelutyöpajoissa tehdään mm. pomppivat auringot, sulaneet jäätelötötteröt ja veikeät kiikarit!</p><p>Loihditaan pomppivista ja värikkäistä auringoista pieni pallopeli, jolla voi harjoitella leikin kautta myös motorisia taitoja. Muotoillaan sulaneita jäätelötötteröitä ja valmistetaan värikkäistä kartioista veikeät kiikarit.</p><p>Askartelutyöpajoissa hyödynnetään kierrätysmateriaaleja.</p><p>Paikka: Kokoushuone 2 ja parvi</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Välkommen till Malms kulturhus ti 18.2. och onsdag 19.2. kl. 11–13 till sportlovets pysselworkshoppar och att meta skatter!</p><p>På sportlovet åker vi på en Fantastisk solresa! Det glittrande havet bjuder in till fiske! Vilka skatter kan vi meta upp ur havet? <br>Pröva på fiske med simnudelspö, nappar det?</p><p>På solresan kan man ligga och gona sig på en mjuk sandstrand, simma med en jättedonits och njuta av parasollernas färgglans. Entrébiljetten till solresan innehåller tillgång till stranden, segling på vågor, mete av skatter och pyssel!</p><p>I pysselworkshopparna lagar vi bland annat studsande solar, smälta glasstrutar och skojiga kikare!<br>Vi trollar fram ett litet bollspel av studsande och färgglada solar, med hjälp av vilket vi även kan öva våra motoriska färdigheter via lek. Vi formar smälta glasstrutar och lagar skojiga kikare av färgglada koner.</p><p>I pysselworkshopparna använder vi återvunna material.</p><p>Plats: Mötesrum 2 och balkongen</p><p>Fritt inträde!</p>",
                "en": "<p>Join us on Tue, 18 Feb and Wed, 19 Feb, from 11:00 to 13:00 for craft workshops and fishing for treasure during winter break at Malmitalo!</p><p>Let’s go on a Fun-filled holiday in the sun during the winter break! The sparkling sea invites you to go fishing! What treasures might you catch from the sea? Try your hand at fishing with a fun pool-noodle pole! Will you catch a fish?</p><p>The sunny holiday lets you lounge on a soft sandy beach, splash around on a giant doughnut and enjoy the glow of sunshades. The sunny holiday admission ticket includes access to the beach, sailing on the waves, fishing for treasures and crafting!</p><p>The craft workshops include making bouncing suns, melted ice cream cones and funny binoculars!<br>We’ll have a small ball game with the bouncing and colourful suns, which you can use to practise motor skills through playing. We’ll sculpt melted ice cream cones and turn the colourful cones into whimsical binoculars.</p><p>The craft workshops will make use of recycled materials.</p><p>Location: Meeting room 2 and loft</p><p>Admission is free!</p>"
            },
            "short_description": {
                "fi": "Tervetuloa ti 18.2. ja ke 19.2. klo 11–13 Malmitalon talviloman askartelupajoihin ja aarteiden ongintaan!",
                "sv": "Välkommen till Malms kulturhus ti 18.2. och onsdag 19.2. kl. 11–13 till sportlovets pysselworkshoppar och att meta skatter!",
                "en": "Join us on Tue, 18 Feb and Wed, 19 Feb, from 11:00 to 13:00 for craft workshops and fishing for treasure during winter break at Malmitalo!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Hupsansaa ry: Hulvaton aurinkomatka -elämystila ja työpajat – Talvilomatekemistä",
                "sv": "Hupsansaa ry: Fantastisk solresa – upplevelserum och workshoppar – Sportlovsaktiviteter",
                "en": "Hupsansaa ry: Fun-filled holiday in the sun experiential space and workshops – Winter break activities"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65452/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65002",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/matchbox/",
                        "sv": "https://www.lippu.fi/artist/matchbox/",
                        "en": "https://www.lippu.fi/artist/matchbox/"
                    },
                    "price": {
                        "fi": "47,90 €",
                        "sv": "47,90 €",
                        "en": "47,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153333,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-09T15:14:09.591932Z",
                    "last_modified_time": "2024-12-09T15:14:09.591945Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763390.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153333/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-09T15:14:09.567379Z",
            "last_modified_time": "2025-01-23T14:13:35.757637Z",
            "date_published": null,
            "start_time": "2025-01-23T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D9651157B5C47F668F5F87A837A7C258/LOPPUUNMYYTY_Matchbox_UK_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D9651157B5C47F668F5F87A837A7C258/SLUTSALD_Matchbox_UK_",
                "en": "http://www.malmitalo.fi/en/events/event/D9651157B5C47F668F5F87A837A7C258/SOLD_OUT_Matchbox_UK_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Legendaarinen rockabilly-yhtye nyt Malmitalolla!</p><p>Matchbox on harvoja jo 1970-luvulla nähtyjä yhtyeitä, joiden kokoonpano on edelleen sama kuin suurimpien hittien päivinä. Yhtye oli suosionsa huipulla Suomessa 1980-luvun alun rockabilly-boomin aikana.</p><p>Yhtyeen suosittuja kappaleita ovat muun muassa ”Rockabilly Rebel ja ”Midnight Dynamos”.</p><p>Esiintymiset TV:ssä ja kiertueilla mm. Jerry Lee Lewisin, Johnny Cashin ja Chuck Berryn kaltaisten suuruuksien kanssa vain vahvistivat bändin asemaa. Näitä vuosia seuranneen hiljaisemman kauden jälkeen yhtye palasi lavoille uuden rockabilly-boomin nostaessa päätään vuonna 1996 ja on edelleen tällä tiellä keikkaillen Isossa-Britanniassa ja muualla Euroopassa.</p><p>Suomeen yhtye saapuu tammikuussa 2025 ja ensimmäinen keikka järjestetään Helsingin Malmitalossa.<br> <br>Kokoonpano 2024:<br>Graham Fenton - Lead Vocalist,<br>Steve Bloomfield - Lead Guitar / vocals,<br>Jimmy Redhead - Drums / vocals,<br>Gordon Scott - Rhythm Guitar / vocals,<br>Fred Poke - Bass / vocals<br> <br>Kesto: 1 t 15 min, ei väliaikaa</p>",
                "sv": "<p>Det legendariska rockabilly-bandet på Malms kulturhus!</p><p>Matchbox räknas bland de få band som redan sågs på 1970-talet och vars ensemble fortfarande är densamma som då de stora hittarna släpptes. Bandet var som populärast i Finland under rockabilly-boomen i början av 1980-talet.</p><p>Bandets populära låtar inkluderar “Rockabilly Rebel” och “Midnight Dynamos”. Framträdanden i TV och turnéer med bland annat sådana storheter som Jerry Lee Lewis, Johnny Cash och Chuck Berry stärkte bandets ställning ytterligare. Efter den tystare period som följde på dessa år återvände bandet till scenen med den nya rockabilly-boomen år 1996, och är fortfarande på den vägen med spelningar i Storbritannien och på andra håll i Europa.</p><p>Bandet kommer till Finland i januari 2025, och den första spelningen ordnas i Malms kulturhus i Helsingfors.<br> <br>Ensemble 2024:<br>Graham Fenton - Lead Vocalist,<br>Steve Bloomfield - Lead Guitar / vocals,<br>Jimmy Redhead - Drums / vocals,<br>Gordon Scott - Rhythm Guitar / vocals,<br>Fred Poke - Bass / vocals<br> <br>Längd 1 h 15 min., ingen paus</p>",
                "en": "<p>Legendary rockabilly band now at Malmitalo!</p><p>Matchbox is one of the few bands dating back to the 1970s whose line-up remains the same as when they had their biggest hits. The band was at the peak of its popularity in Finland during the rockabilly boom of the early 1980s.</p><p>The band’s popular songs include “Rockabilly Rebel” and “Midnight Dynamos”. Appearances on TV and tours with big names like Jerry Lee Lewis, Johnny Cash and Chuck Berry only strengthened the band’s position. After a quieter period following these years, the band returned to the stage as the new rockabilly boom took hold in 1996 and continues on this journey, touring Great Britain and elsewhere in Europe.</p><p>The band will arrive in Finland in January 2025, and their first show will take place at Malmitalo in Helsinki.<br> <br>Line-up in 2024:<br>Graham Fenton – Lead Vocalist,<br>Steve Bloomfield – Lead Guitar / vocals,<br>Jimmy Redhead – Drums / vocals,<br>Gordon Scott – Rhythm Guitar / vocals,<br>Fred Poke – Bass / vocals<br> <br>Duration: 1 h 15 min, no intermission</p>"
            },
            "short_description": {
                "fi": "Legendaarinen rockabilly-yhtye nyt Malmitalolla!",
                "sv": "Det legendariska rockabilly-bandet på Malms kulturhus!",
                "en": "Legendary rockabilly band now at Malmitalo!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY Matchbox (UK)",
                "sv": "SLUTSÅLD Matchbox (UK)",
                "en": "SOLD OUT Matchbox (UK)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65002/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65421",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sonic-the-hedgehog-3-7-3810800/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sonic-the-hedgehog-3-7-3810800/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sonic-the-hedgehog-3-7-3810800/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153711,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-10T14:14:16.030607Z",
                    "last_modified_time": "2025-01-10T14:14:16.030624Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758980.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153711/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-10T14:14:16.002639Z",
            "last_modified_time": "2025-01-22T08:14:26.973814Z",
            "date_published": null,
            "start_time": "2025-02-08T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BA5C76F10C80623652500FA7A611B644/Sonic_the_Hedgehog_3_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BA5C76F10C80623652500FA7A611B644/Sonic_the_Hedgehog_3_12_",
                "en": "http://www.malmitalo.fi/en/events/event/BA5C76F10C80623652500FA7A611B644/Sonic_the_Hedgehog_3_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Maailman nopein sininen siili Sonic palaa valkokankaille tähänastisista seikkailuistaan jännittävimmässä.</p><p>Sonic, Knuckles ja Tails kohtaavat uuden vastustajan, salaperäisen mustanpunaisen siilin Shadow’n. Team Sonicin kyvyistä ei ole vastusta Shadow’n ylivertaisille voimille ja niinpä heidän on muodostettava odottamaton liitto, jonka avulla he toivovat pysäyttävänsä Shadow’n ja suojelevansa planeettaa.</p><p>Ikäraja: 12<br>Kesto: 110 min.<br>Elokuva on puhuttu suomeksi</p><p>Ensi-ilta: 27.12.2024</p>"
            },
            "short_description": {
                "fi": "Maailman nopein sininen siili Sonic palaa valkokankaille tähänastisista seikkailuistaan jännittävimmässä."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sonic the Hedgehog 3 (12) – Kino Helios",
                "sv": "Sonic the Hedgehog 3 (12) – Kino Helios",
                "en": "Sonic the Hedgehog 3 (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65421/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65415",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sonic-the-hedgehog-3-7-3810800/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sonic-the-hedgehog-3-7-3810800/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sonic-the-hedgehog-3-7-3810800/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153708,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-10T14:14:13.605947Z",
                    "last_modified_time": "2025-01-10T14:14:13.605964Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758971.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153708/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-10T14:14:13.577256Z",
            "last_modified_time": "2025-01-22T08:14:24.515208Z",
            "date_published": null,
            "start_time": "2025-02-01T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7E1B39EDEF3CCBEBD0F2C2F7DD7EB205/Sonic_the_Hedgehog_3_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7E1B39EDEF3CCBEBD0F2C2F7DD7EB205/Sonic_the_Hedgehog_3_12_",
                "en": "http://www.malmitalo.fi/en/events/event/7E1B39EDEF3CCBEBD0F2C2F7DD7EB205/Sonic_the_Hedgehog_3_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Maailman nopein sininen siili Sonic palaa valkokankaille tähänastisista seikkailuistaan jännittävimmässä.</p><p>Sonic, Knuckles ja Tails kohtaavat uuden vastustajan, salaperäisen mustanpunaisen siilin Shadow’n. Team Sonicin kyvyistä ei ole vastusta Shadow’n ylivertaisille voimille ja niinpä heidän on muodostettava odottamaton liitto, jonka avulla he toivovat pysäyttävänsä Shadow’n ja suojelevansa planeettaa.</p><p>Ikäraja: 12<br>Kesto: 110 min.<br>Elokuva on puhuttu suomeksi</p><p>Ensi-ilta: 27.12.2024</p>"
            },
            "short_description": {
                "fi": "Maailman nopein sininen siili Sonic palaa valkokankaille tähänastisista seikkailuistaan jännittävimmässä."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sonic the Hedgehog 3 (12) – Kino Helios",
                "sv": "Sonic the Hedgehog 3 (12) – Kino Helios",
                "en": "Sonic the Hedgehog 3 (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65415/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65414",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sonic-the-hedgehog-3-7-3810800/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sonic-the-hedgehog-3-7-3810800/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sonic-the-hedgehog-3-7-3810800/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153707,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-10T14:14:12.107802Z",
                    "last_modified_time": "2025-01-10T14:14:12.107817Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758962.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153707/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-10T14:14:12.076180Z",
            "last_modified_time": "2025-01-22T08:14:22.705856Z",
            "date_published": null,
            "start_time": "2025-01-25T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E28315BD69BB1E97EFD6C2F499B58168/Sonic_the_Hedgehog_3_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E28315BD69BB1E97EFD6C2F499B58168/Sonic_the_Hedgehog_3_12_",
                "en": "http://www.malmitalo.fi/en/events/event/E28315BD69BB1E97EFD6C2F499B58168/Sonic_the_Hedgehog_3_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Maailman nopein sininen siili Sonic palaa valkokankaille tähänastisista seikkailuistaan jännittävimmässä.</p><p>Sonic, Knuckles ja Tails kohtaavat uuden vastustajan, salaperäisen mustanpunaisen siilin Shadow’n. Team Sonicin kyvyistä ei ole vastusta Shadow’n ylivertaisille voimille ja niinpä heidän on muodostettava odottamaton liitto, jonka avulla he toivovat pysäyttävänsä Shadow’n ja suojelevansa planeettaa.</p><p>Ikäraja: 12<br>Kesto: 110 min.<br>Elokuva on puhuttu suomeksi</p><p>Ensi-ilta: 27.12.2024</p>"
            },
            "short_description": {
                "fi": "Maailman nopein sininen siili Sonic palaa valkokankaille tähänastisista seikkailuistaan jännittävimmässä."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sonic the Hedgehog 3 (12) – Kino Helios",
                "sv": "Sonic the Hedgehog 3 (12) – Kino Helios",
                "en": "Sonic the Hedgehog 3 (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65414/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64995",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 161843,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-21T13:15:02.776792Z",
                    "last_modified_time": "2025-01-21T13:15:02.776809Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763356.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/161843/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-21T13:15:02.749532Z",
            "last_modified_time": "2025-01-21T13:15:02.840298Z",
            "date_published": null,
            "start_time": "2025-05-27T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/301F722863D6F6B0EB036105213D4C8F/Kevathuumaa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/301F722863D6F6B0EB036105213D4C8F/Varyra",
                "en": "http://www.malmitalo.fi/en/events/event/301F722863D6F6B0EB036105213D4C8F/Spring_fever"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tule kuulemaan riemukkaita keväisiä klassikoita Helsingin huiluorkesterin huiluista!</p><p>Orkesteri on vuodesta 2012 toiminut huiluyhtye, jonka jäsenet ovat pitkän linjan harrastajamuusikoita. Ainutlaatuisesta kokoonpanosta löytyy valikoimaa huiluperheen jäsenistä piccolosta bassohuiluun.<br> <br>Musiikin tohtori Kathleen Weidenfellerin johdolla orkesteri on konsertoinut mm. Musiikkitalolla, Lahden Ristinkirkossa ja useilla huilufestivaaleilla.<br> <br>Konserttiin on vapaa pääsy, vapaaehtoinen ohjelmamaksu.</p>",
                "sv": "<p>Kom och hör jublande klassiker på flöjt med Helsingin huiluorkesteri!</p><p>Orkestern är ett flöjtband som har fungerat sedan 2012, och vars medlemmar är erfarna hobbymusiker. Den unika ensemblen inkluderar ett urval flöjtinstrument från piccolo till basflöjt.<br> <br>Orkestern har gett konserter under ledning av musikdoktorn Kathleen Weidenfeller bland annat på Musikhuset, Korsets Kyrka i Lahtis och på flera flöjtfestivaler.<br> <br>Inträdet till konserten är fritt, frivillig avgift för programbladet.</p>",
                "en": "<p>Come and hear joyful spring classics from the flutes of the Helsinki Flute Orchestra!</p><p>This orchestra has been a flute ensemble since 2012, and its members are long-time amateur musicians. The unique ensemble features a range of members of the flute family, from piccolos to bass flutes.<br> <br>Under the direction of Doctor of Music Kathleen Weidenfeller, the orchestra has performed at Musiikkitalo, the Church of the Cross in Lahti, and many flute festivals.<br> <br>Admission to the concert is free, with a voluntary programme fee.</p>"
            },
            "short_description": {
                "fi": "Tule kuulemaan riemukkaita keväisiä klassikoita Helsingin huiluorkesterin huiluista!",
                "sv": "Kom och hör jublande klassiker på flöjt med Helsingin huiluorkesteri!",
                "en": "Come and hear joyful spring classics from the flutes of the Helsinki Flute Orchestra!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Keväthuumaa – Helsingin huiluorkesteri",
                "sv": "Våryra – Helsingin huiluorkesteri",
                "en": "Spring fever – Helsingin huiluorkesteri"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64995/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65484",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 161841,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-21T13:14:57.468500Z",
                    "last_modified_time": "2025-01-21T13:14:57.468520Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759224.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/161841/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-21T13:14:57.426861Z",
            "last_modified_time": "2025-01-21T13:14:57.560210Z",
            "date_published": null,
            "start_time": "2025-04-15T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D85EB32FAE3DF303E9EF213FD326D8EB/Doc_Helios_Kivun_ja_ilon_tyo_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D85EB32FAE3DF303E9EF213FD326D8EB/Doc_Helios_Kivun_ja_ilon_tyo_7_",
                "en": "http://www.malmitalo.fi/en/events/event/D85EB32FAE3DF303E9EF213FD326D8EB/Doc_Helios_Kivun_ja_ilon_tyo_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Synnytyskokemuksella on suuri merkitys. Se voi joko rikkoa tai antaa voimaa.</p><p>Dokumenttielokuvassa Kivun ja ilon työ kaksi synnytyksen ammattilaista, kätilö Kirsi ja synnyttäjien tukihenkilönä toimiva doula Anna-Riitta työskentelevät paremman synnytyskokemuksen ja synnyttäjien itsemääräämisoikeuden puolesta.</p><p>Kätilö Kirsi työskentelee niin sairaalan synnytysosastolla kuin kotikätilönä. Doula Anna-Riitta kouluttaa doulia perustamassaan Doula-akatemiassa ja kulkee asiakasperheen rinnalla kohti synnytystä. Kivun ja ilon työ tutkii syntymän henkilökohtaisia, yhteiskunnallisia ja myyttisiä tasoja, jotka avautuvat niin seurantamateriaalin kuin kätilö Kirsin ja Anna-Riitan intiimien ajatusten ja tarinoiden kautta.</p><p>Doc Helios on Kino Helioksen uusi ilmaisnäytössarja, jossa nähdään tuoreimpia ja ajankohtaisimpia dokumentteja eri aiheista.</p><p>Kesto 85 min<br>Ikäraja 7<br>Puhuttu suomeksi<br>Vapaa pääsy!</p>",
                "sv": "<p>Förlossningsupplevelsen har en stor betydelse. Den kan söndra eller ge kraft.</p><p>I dokumentärfilmen Kivun ja ilon työ jobbar två proffs inom förlossning, barnmorskan Kirsi och doulan Anna-Riitta, som fungerar som stödperson för föderskor, för en bättre förlossningsupplevelse och föderskornas självbestämmanderätt.</p><p>Barnmorskan Kirsi jobbar både på förlossningsavdelningen vid ett sjukhus och som barnmorska i hemmet. Doulan Anna-Riitta utbildar doulor i den Doula-akademi som hon har grundat, och ledsagar kundfamiljer mot förlossningen. Kivun ja ilon työ utforskar födelsens personliga, samhälleliga och mytiska nivåer, som öppnar sig både via uppföljningsmaterialet och barnmorskan Kirsis och Anna-Riitas intima tankar och berättelser.</p><p>Doc Helios är Kino Helios nya gratisvisningsserie, där vi får se de färskaste och mest aktuella dokumentärerna om olika ämnen.</p><p>Längd 85 min.<br>Åldersgräns 7<br>Tal på finska<br>Fritt inträde</p>",
                "en": "<p>The experience of childbirth is very significant. It can either break or empower you.</p><p>In the documentary Kivun ja ilon työ, two childbirth professionals, midwife Kirsi and doula Anna-Riitta, work towards a better childbirth experience and the right to self-determination for those giving birth.</p><p>Kirsi works both in the maternity ward of the hospital and as a private midwife. Doula Anna-Riitta trains doulas at the Doula Academy she founded and supports client families on their journey towards birth. Kivun ja ilon työ explores the personal, social and mythical dimensions of birth, which are revealed both through the documentary footage and the intimate thoughts and stories of Kirsi and Anna-Riitta.</p><p>Doc Helios is Kino Helios’ new free show series, featuring the latest and most topical documentaries on various topics.</p><p>Duration: 85 min<br>Age limit: 7<br>In Finnish<br>Free admission</p>"
            },
            "short_description": {
                "fi": "Synnytyskokemuksella on suuri merkitys. Se voi joko rikkoa tai antaa voimaa.",
                "sv": "Förlossningsupplevelsen har en stor betydelse. Den kan söndra eller ge kraft.",
                "en": "The experience of childbirth is very significant. It can either break or empower you."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Doc Helios: Kivun ja ilon työ (7)",
                "sv": "Doc Helios: Kivun ja ilon työ (7)",
                "en": "Doc Helios: Kivun ja ilon työ (7)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65484/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65413",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153704,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-10T14:14:09.965778Z",
                    "last_modified_time": "2025-01-10T14:14:09.965795Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758953.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153704/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-10T14:14:09.933473Z",
            "last_modified_time": "2025-01-21T13:14:36.725678Z",
            "date_published": null,
            "start_time": "2025-01-18T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D884DD3CC8D8D881ED52BA332BE40582/Sonic_the_Hedgehog_3_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D884DD3CC8D8D881ED52BA332BE40582/Sonic_the_Hedgehog_3_7_",
                "en": "http://www.malmitalo.fi/en/events/event/D884DD3CC8D8D881ED52BA332BE40582/Sonic_the_Hedgehog_3_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Maailman nopein sininen siili Sonic palaa valkokankaille tähänastisista seikkailuistaan jännittävimmässä.</p><p>Sonic, Knuckles ja Tails kohtaavat uuden vastustajan, salaperäisen mustanpunaisen siilin Shadow’n. Team Sonicin kyvyistä ei ole vastusta Shadow’n ylivertaisille voimille ja niinpä heidän on muodostettava odottamaton liitto, jonka avulla he toivovat pysäyttävänsä Shadow’n ja suojelevansa planeettaa.</p><p>Ikäraja: 12<br>Kesto: 110 min.<br>Elokuva on puhuttu suomeksi</p><p>Ensi-ilta: 27.12.2024</p>"
            },
            "short_description": {
                "fi": "Maailman nopein sininen siili Sonic palaa valkokankaille tähänastisista seikkailuistaan jännittävimmässä."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sonic the Hedgehog 3 (7) – Kino Helios",
                "sv": "Sonic the Hedgehog 3 (7) – Kino Helios",
                "en": "Sonic the Hedgehog 3 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65413/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64833",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 161777,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-21T12:14:58.728680Z",
                    "last_modified_time": "2025-01-21T12:14:58.728721Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760397.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/161777/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-21T12:14:58.694828Z",
            "last_modified_time": "2025-01-21T12:14:58.815937Z",
            "date_published": null,
            "start_time": "2025-03-20T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/283D741D3A4EDAAAE1C28870BF497F35/Akateeminen_Saksofonikvartetti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/283D741D3A4EDAAAE1C28870BF497F35/Akateeminen_Saksofonikvartetti",
                "en": "http://www.malmitalo.fi/en/events/event/283D741D3A4EDAAAE1C28870BF497F35/Akateeminen_Saksofonikvartetti_saxophone_quartet_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Svengaava saksofonikvartetti vie kuulijansa jazzin ihmeelliseen ja ihastuttavaan maailmaan.</p><p>Akateeminen Saksofonikvartetti on ilahduttanut yleisöä konsertoimalla säännöllisesti vuodesta 1998 lähtien. AS on kantaesittänyt ja levyttänyt lähes kaikki suomalaiset saksofonikvartetille sävelletyt teokset. Nykyiselleen yhtyeen kokoonpano vakiintui vuonna 2004.</p><p>Vapaa pääsy.</p><p>Kesto: 1 tunti, sis. 10 min väliajan</p>",
                "sv": "<p>Den svängiga saxofonkvartetten tar åhörarna med i jazzens förunderliga och förtjusande värld.</p><p>Akateeminen Saksofonikvartetti har glatt publiken genom regelbundna konserter sedan år 1998. AS har uruppfört och spelat in så gott som alla finländska verk för saxofonkvartett. Den nuvarande ensemblen etablerades år 2004.</p><p>Fritt inträde.</p><p>Längd: 1 h, inklusive en paus på 10 minuter</p>",
                "en": "<p>This swinging saxophone quartet takes the audience on a journey into the wonderful and delightful world of jazz.</p><p>Akateeminen Saksofonikvartetti has been delighting audiences with regular concerts since 1998. AS has premiered and recorded almost all of Finland’s compositions for saxophone quartets. The current line-up of the ensemble was established in 2004.</p><p>Free admission.</p><p>Duration: 1 h, incl. 10 min intermission</p>"
            },
            "short_description": {
                "fi": "Svengaava saksofonikvartetti vie kuulijansa jazzin ihmeelliseen ja ihastuttavaan maailmaan.",
                "sv": "Den svängiga saxofonkvartetten tar åhörarna med i jazzens förunderliga och förtjusande värld.",
                "en": "This swinging saxophone quartet takes the audience on a journey into the wonderful and delightful world of jazz."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Akateeminen Saksofonikvartetti – Gershwinin, Bob Mintzerin, Astor Piazzollan ja Pedro Iturralden musiikkia",
                "sv": "Akateeminen Saksofonikvartetti – Musik av Gershwin, Bob Mintzer, Astor Piazzolla och Pedro Iturralde",
                "en": "Akateeminen Saksofonikvartetti (saxophone quartet) – Music by Gershwin, Bob Mintzer, Astor Piazzolla and Pedro Iturraldo"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64833/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64809",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmijazz/malmijazz-andy-emler-trio-fr-veli-kujala-chansons-3768044/",
                        "sv": "https://www.lippu.fi/artist/malmijazz/malmijazz-andy-emler-trio-fr-veli-kujala-chansons-3768044/",
                        "en": "https://www.lippu.fi/artist/malmijazz/malmijazz-andy-emler-trio-fr-veli-kujala-chansons-3768044/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152990,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-08T08:14:42.336465Z",
                    "last_modified_time": "2024-11-08T08:14:42.336480Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760240.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152990/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-08T08:14:42.306897Z",
            "last_modified_time": "2025-01-21T12:14:58.508570Z",
            "date_published": null,
            "start_time": "2025-03-19T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E8E3A43924E0AC841FF7FD44CC9C22E2/Andy_Emler_Trio_FR_Veli_Kujala",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E8E3A43924E0AC841FF7FD44CC9C22E2/Andy_Emler_Trio_FR_Veli_Kujala",
                "en": "http://www.malmitalo.fi/en/events/event/E8E3A43924E0AC841FF7FD44CC9C22E2/Andy_Emler_Trio_FR_Veli_Kujala"
            },
            "provider": null,
            "description": {
                "fi": "<p>Vapaat äänet -kiertue tuo Malmisaliin ranskalaispianisti Andy Emlerin ikonisen trion basisti Claude Tchamitchianin ja rumpali Eric Echampardin kanssa.</p><p>Illan avaa harmonikkataiteilija Veli Kujalan omaääninen tutkimusmatka ranskalaisen chansonin maailmaan.</p><p>Suomessa useamman kerran vierailut pianisti-säveltäjä Andy Emler kuuluu ranskalaisen jazzin sävykkäisiin persoonallisuuksiin. Hänen pitkäaikainen trionsa basisti Claude Tchamitchianin ja rumpali Eric Echampardin kanssa on valovoimainen yksikkö, jossa tärkein solisti on itse tämä kolmikko. Trion niin ikään polyfoninen monologi ammentaa vaikutteita jazzista, rockista ja nykymusiikista kehittäen kiehtovan kokonaisuuden, josta syntyy lyyrisiä ja hypnoottisia tuulahduksia.</p><p>Vuonna 2022 ilmestynyttä trion neljättä albumia ”The Useful Report” (La Buissonne Records) ylistettiin yksimielisesti alan lehdistössä. April Jazzissa 2013 mielenpainuvassa konsertissa saksofonisti Dave Liebmanin kanssa soittanut trio palaa Suomeen uudella ohjelmistollaan ”There is another way”.</p><p>Andy Emlerin legendaarinen MegaOctet on vuodesta 1989 toiminut pienois-bigband, jonka tarina jatkuu ja kukoistaa ilahduttavilla konserttiohjelmistoillaan. Pitkällä urallaan Emler on tehnyt yhteistyötä monien merkittävien muusikoiden kanssa, mainittakoon kitaristi Marc Ducret ja lyömäsoittaja Trilok Gurtu. Claude Tchamitchian tunnetaan ilmaisuvoimaisena basistina.</p><p>Uudessa soolokonsertissaan hän soittaa yhtä kuuluisan Jean-Francois Jenny-Clarken kontrabassoista. Eric Echampard on rumpali, joka innovatiivisella soittotyylillään on ollut mukana näyttämässä uutta suuntaa rumputyöskentelylle europalaisen jazzmusiikin kentällä. Vuodesta 2001 duona harmonikkataituri Kimmo Pohjosen kanssa soittanut Echampard palaa Pohjosen kanssa konserttilavoille keväällä 2025.  <br> <br>“Veli Kujala on kaikilla tavoilla mitaten poikkeuksellinen muusikko. Kun törmäsin nuoreen Veliin ensimmäisen kerran, tiesin vain, että hän on erinomainen harmonikansoittaja, ykkösluokan lahjakkuus.” sanoo säveltäjä Osmo Tapio Räihälä.</p><p>Vuonna 2010 musiikin tohtoriksi valmistunut Kujala on palkittu useasti kansainvälisissä kilpailuissa sekä harmonikansoittajana että säveltäjänä. Hänen monipuolinen sävellystuotantonsa ulottuu elektroakustistista teoksista orkesteriteoksiin, ja hän on esiintynyt lukuisten orkesterien kanssa. Hänen jo vaikuttavaan ansioluetteloonsa on voitu lisätä toukokuussa 2022 esiintyminen New Yorkin Metropolitan Oopperassa australialaisen säveltäjä Brett Deanin Hamletissa. Mutta vuodesta 1997 Gourmet-sekstetissä soittanut harmonikkavelho on myös koko ajan pysynyt avoimena jazzille, improvisaatiolle ja populaarimusiikille. Nyt vuoden 2008 Juliette Grécon Huvilateltan konsertin avannut Veli Kujala tulkitsee Malmisalissa jazzillisen chansonrepertuaarin ikivihreitä suvereenisti harmonikallaan. <br> <br><b>Kokoonpano</b><br>Veli Kujala, harmonikka</p><p>Andy Emler trio:<br>Andy Emler, piano <br>Claude Tchamitchian, kontrabasso <br>Eric Echampard, rummut <br>Kiertueen tuotanto: compagnie aime l’air, Vapaat äänet, <br>Kiertuetta tukevat: AJC, Adami, CNM, Ranskan Instituutti, Spedidam <br>Yhteistyökumppani: Kumu drums</p><p>Kesto: 2 h, sis. 20 min väliajan</p>",
                "sv": "<p>Turnén Vapaat äänet (Fria röster) hämtar den franske pianisten Andy Emlers ikoniska trio med basisten Claude Tchamitchian och trummisen Eric Echampard till Malmsalen.</p><p>Kvällen öppnas av Veli Kujala, vars särpräglade upptäcktsresa för oss in i den franska chansonens värld.</p><p>Pianisten och kompositören Andy Emler har uppträtt i Finland flera gånger, och räknas bland de färgstarka personligheterna inom fransk jazz. Hans mångåriga trio med basisten Claude Tchamitchian och trummisen Eric Echampard är en ljusstark trio, vars viktigaste solist är hela trion. Bandets stil inhämtar inspiration ur jazz, rock och samtidsmusik och utvecklar en fascinerande helhet som ger liv åt lyriska och hypnotiska fläktar.</p><p>Trions fjärde album “The Useful Report” (La Buissonne Records) som släpptes år 2022 lovprisades enhälligt i branschens tidningspress. Trion gav en minnesvärd konsert tillsammans med saxofonisten Dave Liebman i April Jazz 2013 och återvänder nu till Finland med sitt nya program “There is another way”.</p><p>Före trions konsert tolkar dragspelskonstnären Veli Kujala evergreens ur en jazzig chansonrepertoar i Malmsalen.</p><p><b>Ensemble</b><br>Veli Kujala, dragspel</p><p>Andy Emler trio:<br>Andy Emler, piano <br>Claude Tchamitchian, kontrabas <br>Eric Echampard, trummor <br>Turnéns produktion: compagnie aime l’air, Vapaat äänet, <br>Turnén stöds av: AJC, Adami, CNM, Franska institutet i Finland, Spedidam <br>Samarbetspartner: Kumu drums</p><p>Längd: 2 timmar, inklusive en paus på 20 minuter</p>",
                "en": "<p>The Vapaat äänet tour will bring French pianist Andy Emler’s iconic trio, featuring bassist Claude Tchamitchian and drummer Eric Echampard, to Malmisali.</p><p>The Vapaat äänet tour will bring French pianist Andy Emler’s iconic trio, featuring bassist Claude Tchamitchian and drummer Eric Echampard, to Malmisali.</p><p>The evening will open with accordionist Veli Kujala, whose unique journey of exploration takes him into the world of French chanson.</p><p>Pianist-composer Andy Emler, who has visited Finland several times, is one of the most dynamic personalities in French jazz. His long-standing trio with bassist Claude Tchamitchian and drummer Eric Echampard forms a luminous three-piece, with the entire trio taking on the role of the main soloist. The band’s style draws influences from jazz, rock and contemporary music to create an intriguing mix of lyrical and hypnotic atmospheres.</p><p>The trio’s fourth album, The Useful Report (La Buissonne Records), released in 2022, was unanimously praised by the music press. The trio, who played a memorable concert with saxophonist Dave Liebman at April Jazz 2013, return to Finland with their new programme, “There is another way”.</p><p>Before the trio’s concert, award-winning accordionist Veli Kujala will interpret timeless classics of chanson jazz at Malmisali.</p><p><b>Ensemble:</b><br>Veli Kujala, accordion</p><p>Andy Emler trio:<br>Andy Emler, piano <br>Claude Tchamitchian, double bass <br>Eric Echampard, drums <br>Tour production: compagnie aime l'air, Vapaat äänet, <br>Supporting the tour: AJC, Adami, CNM, French Institute, Spedidam <br>Partner: Kumu drums</p><p>Duration: 2 hours, incl. 20 min intermission</p>"
            },
            "short_description": {
                "fi": "Vapaat äänet -kiertue tuo Malmisaliin ranskalaispianisti Andy Emlerin ikonisen trion basisti Claude Tchamitchianin ja rumpali Eric Echampardin kanssa.",
                "sv": "Turnén Vapaat äänet (Fria röster) hämtar den franske pianisten Andy Emlers ikoniska trio med basisten Claude Tchamitchian och trummisen Eric Echampard till Malmsalen.",
                "en": "The Vapaat äänet tour will bring French pianist Andy Emler’s iconic trio, featuring bassist Claude Tchamitchian and drummer Eric Echampard, to Malmisali."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Andy Emler Trio (FR) + Veli Kujala – MalmiJazz",
                "sv": "Andy Emler Trio (FR) + Veli Kujala – MalmiJazz",
                "en": "Andy Emler Trio (FR) + Veli Kujala – MalmiJazz"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64809/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64908",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/anna-kokkonen-levynjulkaisukonsertti-malmitalo-19411367/",
                        "sv": "https://www.lippu.fi/event/anna-kokkonen-levynjulkaisukonsertti-malmitalo-19411367/",
                        "en": "https://www.lippu.fi/event/anna-kokkonen-levynjulkaisukonsertti-malmitalo-19411367/"
                    },
                    "price": {
                        "fi": "24,80 € /17,80 €",
                        "sv": "24,80 € /17,80 €",
                        "en": "24,80 € /17,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153542,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T14:13:59.661573Z",
                    "last_modified_time": "2024-12-27T14:13:59.661587Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761627.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153542/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T14:13:59.633463Z",
            "last_modified_time": "2025-01-21T11:14:46.544867Z",
            "date_published": null,
            "start_time": "2025-02-27T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D9B902211A86EB0996E6A7A2FB422342/Anna_Kokkonen_levynjulkaisukonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D9B902211A86EB0996E6A7A2FB422342/Anna_Kokkonen_skivslappskonsert",
                "en": "http://www.malmitalo.fi/en/events/event/D9B902211A86EB0996E6A7A2FB422342/Anna_Kokkonen_album_release_concert"
            },
            "provider": null,
            "description": {
                "fi": "<p>Palkittu laulaja-lauluntekijä Anna Kokkonen nousee Malmitalon lavalle yhtyeensä kanssa juhlistamaan viidettä albumiaan ”Kadonneet taivaankappaleet”.</p><p>Kokkosen musiikista säteilee unohdettua taikaa tarujen ja nuotiotulien ääreltä. Hänen satumaiset kappaleensa ovat jo yli kymmenen vuoden ajan ilahduttaneet kuulijoita mm. Radio Suomen ja Aito Iskelmän soittolistoilla. Myös uuden albumin singlet ”Hollywoodin hylkäämä rakkausleffa”, ”Valonkantajat” ja ”Kaikki on hyvin” ovat soineet radiokanavilla ahkerasti.</p><p>Kokkonen vastaa musiikkinsa tuotannosta yhdistelemällä elokuvallisia sävyjä ilmavaan folk-poppiin. Hänelle myönnettiin vuonna 2021 Kullervo Linna -palkinto ansioistaan kotimaisen viihdemusiikin rikastamisessa. Löytyypä artistin takataskusta myös vuoden 2021 Syksyn Sävelen finaalibiisi ”Tuulen<br>tyttö”.</p><p>Anna Kokkonen: laulu ja akustinen kitara<br>Marja Ahlsved: koskettimet ja taustalaulu<br>Niklas Ahlsved: rummut<br>Seidi Guzejev: viulu ja taustalaulu<br>Heikki Selamo: sähkökitara<br>Jani Snellman: basso<br>Janica Pörhönen: sello</p><p>Kesto: 1 t 15 min</p>",
                "sv": "<p>Den prisbelönta sångerskan och låtskrivaren Anna Kokkonen stiger på scenen i Malms kulturhus tillsammans med sitt band för att fira sitt femte album “Kadonneet taivaankappaleet”.</p><p>Kokkonens musik utstrålar bortglömd förtrollning från sagor och lägereldar. Hennes sagolika låtar har redan glatt lyssnare i över tio år, bland annat på Radio Suomis och Aito Iskelmäs spellistor. Även singlarna “Hollywoodin hylkäämä rakkausleffa”, “Valonkantajat” och “Kaikki on hyvin” på det nya albumet har spelats flitigt på radiokanalerna.<br> <br>Kokkonen svarar för produktionen av sin musik genom att kombinera filmatiska toner med luftig folk-pop. Hon belönades med Kullervo Linna-priset år 2021 för sina meriter inom berikandet av den inhemska underhållningsmusiken. I bakfickan har artisten även finalsången “Tuulen tyttö” från tävlingen Syksyn Sävel år 2021.</p><p>Anna Kokkonen: sång och akustisk gitarr<br>Marja Ahlsved: keyboard och bakgrundssång<br>Niklas Ahlsved: trummor<br>Seidi Guzejev: fiol och bakgrundssång<br>Heikki Selamo: elgitarr<br>Jani Snellman: bas<br>Janica Pörhönen: cello</p>",
                "en": "<p>Award-winning singer-songwriter Anna Kokkonen takes to the Malmitalo stage with her band to celebrate her fifth album, Kadonneet taivaankappaleet.</p><p>Kokkonen’s music radiates the forgotten magic of legends and campfires. Her enchanting songs have been delighting listeners for more than ten years on Radio Suomi and Aito Iskelmä playlists, among others. Her new album’s singles, “Hollywoodin hylkäämä rakkausleffa”, “Valonkantajat”, and “Kaikki on Hyvin” have also been getting plenty of airplay on radio stations.<br> <br>Kokkonen is in charge of producing her music, combining cinematic tones with airy folk-pop. In 2021, she was awarded the Kullervo Linna Award for her contribution to enriching Finnish popular music. The artist’s song “Tuulen tyttö” was also a finalist in the 2021 Syksyn Sävel (Autumn Melody) TV song competition.</p><p>Anna Kokkonen: vocals and acoustic guitar<br>Marja Ahlsved: keyboards and backing vocals<br>Niklas Ahlsved: drums<br>Seidi Guzejev: violin and backing vocals<br>Heikki Selamo: electric guitar<br>Jani Snellman: bass<br>Janica Pörhönen: cello</p>"
            },
            "short_description": {
                "fi": "Palkittu laulaja-lauluntekijä Anna Kokkonen nousee Malmitalon lavalle yhtyeensä kanssa juhlistamaan viidettä albumiaan ”Kadonneet taivaankappaleet”.",
                "sv": "Den prisbelönta sångerskan och låtskrivaren Anna Kokkonen stiger på scenen i Malms kulturhus tillsammans med sitt band för att fira sitt femte album “Kadonneet taivaankappaleet”.",
                "en": "Award-winning singer-songwriter Anna Kokkonen takes to the Malmitalo stage with her band to celebrate her fifth album, Kadonneet taivaankappaleet."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Anna Kokkonen – levynjulkaisukonsertti",
                "sv": "Anna Kokkonen – skivsläppskonsert",
                "en": "Anna Kokkonen – album release concert"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64908/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65482",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 161656,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-21T10:14:52.096297Z",
                    "last_modified_time": "2025-01-21T10:14:52.096314Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759229.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/161656/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-21T10:14:52.063184Z",
            "last_modified_time": "2025-01-21T10:14:52.160340Z",
            "date_published": null,
            "start_time": "2025-02-27T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/71F97AFFF5C7D36772F45B17D760208C/Yleison_suosikit_Poor_Things_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/71F97AFFF5C7D36772F45B17D760208C/Publikens_favoriter_Poor_Things_16_",
                "en": "http://www.malmitalo.fi/en/events/event/71F97AFFF5C7D36772F45B17D760208C/Audience_Favourites_Poor_Things_16_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Elokuvantekijä Yorgos Lanthimos ja tuottaja Emma Stone tuovat valkokankaalle mielikuvituksellisen tarinan Bella Baxterin (Stone) uskomattomasta evoluutiosta.</p><p>Bella on nuori nainen, jonka nerokas mutta omintakeinen tiedemies tri Godwin Baxter (Willem Dafoe) herättää henkiin. Aluksi Bella on innokas opettelemaan elämää Baxterin siipien suojassa. Elämänjanossaan hän kuitenkin karkaa sliipatun ja paheellisen lakimiehen Duncan Wedderburnin (Mark Ruffalo) mukana myrskyisälle matkalle halki mantereiden. Sen myötä aikansa ennakkoluulot karistaneesta Bellasta kasvaa vankkumaton vapauden ja tasa-arvon puolustaja.</p><p>Poor Things voitti Venetsian elokuvajuhlien pääpalkinnon ja se sai Suomen ensiesityksensä tuoreeltaan Rakkautta ja anarkiaa -festivaalin R&A-gaalan elokuvana syyskuussa. Emma Stone palkittin Golden Globella suorituksestaan parhaana naisnäyttelijänä komediassa tai musikaalissa. Elokuva voitti myös parhaan elokuvan (komedia tai musikaali) Golden Globe -palkinnon.</p><p><b>Yleisön suosikit</b> on Kino Helioksen uusi elokuvasarja, jossa nähdään Kino Helioksen aikaisempien kausien yleisömenestyselokuvia ilmaisnäytöksinä.</p><p>Kesto: 142 min<br>Ikäraja: 16<br>Tekstitetty suomeksi<br>Vapaa pääsy!</p>",
                "sv": "<p>Filmmakaren Yorgos Lanthimos och producenten Emma Stone hämtar den fantasifulla historian om Bella Baxters (Stone) otroliga evolution till vita duken.</p><p>Bella är en ung kvinna som väcks till liv av den geniala men originella vetenskapsmannen dr Godwin Baxter (Willem Dafoe). Till en början lär sig Bella ivrigt om livet i skydd av Baxters vingar. I sin livstörst rymmer hon dock med den slipade och liderliga advokaten Duncan Wedderburn (Mark Ruffalo) på en stormig resa över kontinenterna. I och med detta skakar Bella av sig sina fördomar och blir en orubblig försvarare av frihet och jämlikhet.</p><p>Poor Things belönades med huvudpriset på filmfestivalen i Venedig, och fick nyligen sitt uruppförande i Finland på Rakkautta ja anarkiaa-festivalens R&A-gala i september. Emma Stone belönades för sin prestation med en Golden Globe för bästa kvinnliga skådespelare i en komedi eller musikal. Filmen fick också Golden Globe-priset för bästa film (komedi eller musikal).</p><p><b>Publikens favoriter</b> är Kino Helios nya filmserie, där vi får se Kino Helios publikfavoriter från tidigare säsonger som gratisvisningar.</p><p>Längd: 142 min.<br>Åldersgräns: 16<br>Textning på finska<br>Fritt inträde!</p>",
                "en": "<p>Filmmaker Yorgos Lanthimos and producer Emma Stone bring the imaginative story of Bella Baxter’s (Stone) incredible evolution to the big screen.</p><p>Bella is a young woman brought back to life by the brilliant but eccentric scientist Dr Godwin Baxter (Willem Dafoe). At first, Bella is eager to learn to live under Baxter’s wing. However, in her thirst for life, she runs away with the slick and immoral lawyer Duncan Wedderburn (Mark Ruffalo) on a turbulent journey across continents. In the process, Bella, who has shaken off the prejudices of her time, becomes a staunch defender of freedom and equality.</p><p>Poor Things won the Venice Film Festival’s Grand Prize and premiered in Finland at the Love and Anarchy Festival’s R&A Gala in September. Emma Stone was awarded a Golden Globe for Best Actress in a Comedy or Musical for her performance. The film also won the Golden Globe Award for Best Motion Picture (Comedy or Musical).</p><p><b>Audience Favourites</b> is Kino Helios’ new film series, featuring free screenings of the best-selling films from previous Kino Helios seasons.</p><p>Duration: 142 min<br>Age limit: 16<br>Finnish subtitles<br>Admission is free!</p>"
            },
            "short_description": {
                "fi": "Elokuvantekijä Yorgos Lanthimos ja tuottaja Emma Stone tuovat valkokankaalle mielikuvituksellisen tarinan Bella Baxterin (Stone) uskomattomasta evoluutiosta.",
                "sv": "Filmmakaren Yorgos Lanthimos och producenten Emma Stone hämtar den fantasifulla historian om Bella Baxters (Stone) otroliga evolution till vita duken.",
                "en": "Filmmaker Yorgos Lanthimos and producer Emma Stone bring the imaginative story of Bella Baxter’s (Stone) incredible evolution to the big screen."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Yleisön suosikit: Poor Things (16)",
                "sv": "Publikens favoriter: Poor Things (16)",
                "en": "Audience Favourites: Poor Things (16)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65482/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65481",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 161655,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-21T10:14:51.365899Z",
                    "last_modified_time": "2025-01-21T10:14:51.365916Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759223.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/161655/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-21T10:14:51.323840Z",
            "last_modified_time": "2025-01-21T10:14:51.456385Z",
            "date_published": null,
            "start_time": "2025-02-25T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/85B08E7DB97E77C6CBEE001AA89B591B/Doc_Helios_Kouluvuosi_Japanissa_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/85B08E7DB97E77C6CBEE001AA89B591B/Doc_Helios_School_Year_in_Japan_T_",
                "en": "http://www.malmitalo.fi/en/events/event/85B08E7DB97E77C6CBEE001AA89B591B/Doc_Helios_The_Making_of_a_Japanese_S_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Elokuva kertoo poikkeuksellisen intiimisti japanilaisesta peruskoulusta, jonka järjestelmä perustuu vanhaan sotilaskoulutukseen ja tiukkaan hierarkiaan.</p><p>Lapset oppivat jo varhain hyviä tapoja, oppivat noudattamaan sääntöjä ja osoittamaan kunnioitusta, aivan erityisesti opettajia (’sensei’) kohtaan.</p><p>Taitava kuvausryhmä on saanut ainutlaatuisen sisäänpääsyn kouluun. Lapset ja opettajat ovat luontevia kameran edessä, ja välittävät koulutyön ilot ja surut. Koulun henkeä kuvastaa ilmaisu “rakastavaa kurinpitoa”.</p><p>Dokumenttielokuva pohtii uniikin ja tiukan japanilaisen koulujärjestelmän ajanmukaisuutta, mutta erityisen vahvasti se osoittaa koulun merkityksen sen kasvattaessa lasta yhteisön jäseneksi.</p><p><b>Doc Helios</b> on Kino Helioksen uusi ilmaisnäytössarja, jossa nähdään tuoreimpia ja ajankohtaisimpia dokumentteja eri aiheista.</p><p>Ikäraja sallittu<br>Kesto 80 min<br>Elokuva on tekstitetty suomeksi<br>Vapaa pääsy!</p>",
                "sv": "<p>Filmen berättar avvikande intimt om den japanska grundskolan, vars system grundar sig på gammal soldatutbildning och strikt hierarki.</p><p>Barnen får redan tidigt lära sig goda seder, att följa regler och visa respekt, alldeles särskilt gentemot lärarna (“sensei”).</p><p>Den skickliga filmgruppen har fått unik tillgång till skolan. Barnen och lärarna är naturliga framför kameran, och förmedlar skolarbetets glädjeämnen och sorger. Skolans anda beskrivs av uttrycket “kärleksfull disciplin”.</p><p>Dokumentären begrundar tidsenligheten för det unika och strikta skolsystemet, men särskilt starkt visar den skolans betydelse för fostran av barnet till en medlem i gemenskapen.</p><p><b>Doc Helios</b> är Kino Helios nya gratisvisningsserie, där vi får se de färskaste och mest aktuella dokumentärerna om olika ämnen.</p><p>Åldersgräns tillåten<br>Längd 80 min.<br>Filmen har textning på finska<br>Fritt inträde!</p>",
                "en": "<p>The film is an exceptionally intimate account of the Japanese primary school system, which is based on old military training and a strict hierarchy.</p><p>From an early age, children learn good manners, to follow rules, and to show respect, especially towards their teachers (‘sensei’).</p><p>The talented film crew has been given exclusive access to the school. The children and teachers are natural in front of the camera, conveying the joys and sorrows of schoolwork. The spirit of the school is reflected in the phrase “loving discipline”.</p><p>The documentary film reflects on the modern relevance of the unique and strict Japanese school system, but it is particularly effective in showing the importance of school in raising a child to become a member of the community.</p><p><b>Doc Helios</b> is Kino Helios’ new free show series, featuring the latest and most topical documentaries on various topics.</p><p>Rating: for all audiences<br>Duration: 80 min<br>The film has Finnish subtitles<br>Admission is free!</p>"
            },
            "short_description": {
                "fi": "Elokuva kertoo poikkeuksellisen intiimisti japanilaisesta peruskoulusta, jonka järjestelmä perustuu vanhaan sotilaskoulutukseen ja tiukkaan hierarkiaan.",
                "sv": "Filmen berättar avvikande intimt om den japanska grundskolan, vars system grundar sig på gammal soldatutbildning och strikt hierarki.",
                "en": "The film is an exceptionally intimate account of the Japanese primary school system, which is based on old military training and a strict hierarchy."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Doc Helios: Kouluvuosi Japanissa (S)",
                "sv": "Doc Helios: School Year in Japan (T)",
                "en": "Doc Helios: The Making of a Japanese (S)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65481/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64812",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/vaskivirtuoosit-viihteellae-3772832/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/vaskivirtuoosit-viihteellae-3772832/",
                        "en": "https://www.lippu.fi/artist/malmitalo/vaskivirtuoosit-viihteellae-3772832/"
                    },
                    "price": {
                        "fi": "22,80 € / 11,10 €",
                        "sv": "22,80 € / 11,10 €",
                        "en": "22,80 € / 11,10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153913,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-15T13:15:42.055821Z",
                    "last_modified_time": "2025-01-15T13:15:42.055882Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760259.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153913/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-15T13:15:42.023468Z",
            "last_modified_time": "2025-01-21T08:14:35.607281Z",
            "date_published": null,
            "start_time": "2025-03-01T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/86248C4994EEBBC4A248A02EEF663776/Vaskivirtuoosit_viihteella_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/86248C4994EEBBC4A248A02EEF663776/Massingsvirtuoserna_roar_sig_",
                "en": "http://www.malmitalo.fi/en/events/event/86248C4994EEBBC4A248A02EEF663776/Brass_virtuosos_having_fun_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Töölö Brass julistaa kevään alkaneeksi lämpimällä tuulahduksella Atlantin rannoilta ja sulattaa lumen ja jään suomalaisesta maisemasta.</p><p>Vaskien huuma ja orkesterin omien solistien taiturillisuus nostavat tunnelman kattoon, mutta pitävät jalat maassa.</p><p>Solistit Tero Lindberg trumpetti, Mikko Pettinen ja Lukas Eckerrot kornetti, Timo Petas flyygelitorvi, Anniina Oksman eufonium.</p><p>Kesto: 1 tunti 45 min, sis. 15 min väliajan</p>",
                "sv": "<p>Töölö Brass firar vårens ankomst med en varm fläkt från Atlantens kuster och smälter snön och isen ur det finländska landskapet.</p><p>Mässingsinstrumentens förtrollning och de egna solisternas virtuositet lyfter stämningen i tak, men håller fötterna på jorden.</p><p>Solisterna Mikko Pettinen och Lukas Eckerrot kornett, Tero Lindberg trumpet, Timo Petas flygelhorn, Anniina Oksman eufonium.</p>",
                "en": "<p>Töölö Brass heralds the start of spring with a warm breeze from the shores of the Atlantic, thawing the snow and ice from the Finnish landscape.</p><p>The soaring brass and the mastery of the orchestra’s soloists raise the atmosphere through the roof, but keep your feet on the ground.</p><p>The soloists Mikko Pettinen and Lukas Eckerrot cornet, Tero Lindberg trumpet, Timo Petas flugelhorn, Anniina Oksman euphonium.</p>"
            },
            "short_description": {
                "fi": "Töölö Brass julistaa kevään alkaneeksi lämpimällä tuulahduksella Atlantin rannoilta ja sulattaa lumen ja jään suomalaisesta maisemasta.",
                "sv": "Töölö Brass firar vårens ankomst med en varm fläkt från Atlantens kuster och smälter snön och isen ur det finländska landskapet.",
                "en": "Töölö Brass heralds the start of spring with a warm breeze from the shores of the Atlantic, thawing the snow and ice from the Finnish landscape."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vaskivirtuoosit viihteellä – Töölö Brass solisteineen",
                "sv": "Mässingsvirtuoserna roar sig – Töölö Brass med solister",
                "en": "Brass virtuosos having fun – Töölö Brass and its soloists"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64812/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}