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/?format=api&hide_recurring_children=true&page=7
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 23124,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=8",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=6"
    },
    "data": [
        {
            "id": "kulke:69623",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-barnens-estrad-julkalas-alfons-aberg-helsinki-vuotalo-21905266/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-barnens-estrad-julkalas-alfons-aberg-helsinki-vuotalo-21905266/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-barnens-estrad-julkalas-alfons-aberg-helsinki-vuotalo-21905266/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 / 13 / 0 €",
                        "sv": "15 / 13 / 0 €",
                        "en": "15 / 13 / 0 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385622,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-16T07:15:48.157879Z",
                    "last_modified_time": "2026-07-16T07:15:48.157895Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785194.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385622/?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": "2026-07-16T07:15:47.908801Z",
            "last_modified_time": "2026-07-21T06:14:58.355785Z",
            "date_published": null,
            "start_time": "2026-12-02T16:00:00Z",
            "end_time": "2026-12-02T16:35: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,
            "name": {
                "fi": "Julkalas, Alfons Åberg – Barnens Estrad | Lasten Estradi",
                "sv": "Julkalas, Alfons Åberg – Barnens Estrad",
                "en": "Julkalas, Alfons Åberg – Barnens Estrad"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Hyvää joulua, Mikko Mallikas ja muihin Gunilla Bergströmin Mikko-kirjoihin pohjautuva esitys nähdään Vuotalossa ruotsiksi 2. ja suomeksi 3. joulukuuta.",
                "sv": "En föreställning baserad på Julkalas, Alfons Åberg och Gunilla Bergströms andra Alfons-böcker spelas på Nordhuset på svenska den 2 december och på finska den 3 december.",
                "en": "A performance based on Julkalas, Alfons Åberg and Gunilla Bergström's other Alfie Atkins books is performed in Vuosaari House in Swedish 2 December and in Finnish 3 December."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BBB5E9ED1C704511D9D6EA8DBD1C965C/Julkalas_Alfons_Aberg",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/BBB5E9ED1C704511D9D6EA8DBD1C965C/Julkalas_Alfons_Aberg",
                "en": "http://www.vuotalo.fi/en/events/event/BBB5E9ED1C704511D9D6EA8DBD1C965C/Julkalas_Alfons_Aberg"
            },
            "description": {
                "fi": "<p>Hyvää joulua, Mikko Mallikas ja muihin Gunilla Bergströmin Mikko-kirjoihin pohjautuva esitys nähdään Vuotalossa ruotsiksi 2. ja suomeksi 3. joulukuuta.</p><p>Molemmat esitykset alkavat klo 18.</p><p>Bergströmin viimeiseksi jäänyt <i>Julkalas, Alfons Åberg</i> julkaistiin Ruotsissa lokakuussa 2025 (suom. <i>Hyvää joulua, Mikko Mallikas</i>, 2026). Lämminhenkinen ja hauska kolmen näyttelijän kiertue-esitys on täynnä kaikkea sitä, mikä tekee Mikosta ja Bergströmin rakastetuista kirjoista niin suosittuja monissa maissa.</p><p>Barnens Estradin Mikon kanssa tehdyt aiemmat, yhteensä yli 400 esitystä kattaneet <i>Alfons och Mållgan</i> -kiertueet ovat osoittaneet, että myös tämän päivän lapset arvostavat rauhallisesti kerrottua nokkelaa tarinaa.<br> <br>Esitys on suunnattu 2–8-vuotiaille lapsille perheineen.  <br>Esityksen kesto n. 35 minuuttia.</p><p>Käsikirjoitus: Matilda Anttila & Jesper Fransson Gunilla Bergströmin lastenkirjojen pohjalta <br>Ohjaus: Matilda Anttila  <br>Puvustus: Sonja Dragon <br>Lavastus, valokuvaus ja graafinen suunnittelu: Lasse Andersson  <br>Tarpeisto: Pia Lindén-Lamoureux <br>Musiikki: Georg Riedel, Stefan “Kilju” Lindblom ja Anders Grönroos <br>Musiikin sovitus, äänitehosteet ja äänitys: Stefan “Kilju” Lindblom <br>Rooleissa: Petra Rauhala, Matilda Lindström ja Kalle Halmén <br>Tuottaja: Anders Grönroos  <br>Esitysoikeuksia valvoo: Bok-Makaren AB</p>",
                "sv": "<p>En föreställning baserad på Julkalas, Alfons Åberg och Gunilla Bergströms andra Alfons-böcker spelas på Nordhuset på svenska den 2 december och på finska den 3 december.</p><p>Båda föreställningarna börjar kl. 18.</p><p>Bergströms sista bok <i>Julkalas, Alfons Åberg</i> gavs ut i Sverige i oktober 2025 (finsk översättning: <i>Hyvää joulua, Mikko Mallikas</i>, 2026). Den roliga, stämningsfulla och varma turnépjäsen med tre skådespelare är fylld av den speciella Alfons-stämning som har gjort honom så populär i många länder.</p><p>Genom våra många turnéer med <i>Alfons och Mållgan</i> (över 400 föreställningar) har det visat sig att också dagens barn uppskattar en finurlig historia berättad i ett lugnt tempo. <br> <br>Publik: 2–8-åringar med familjer<br>Längd: c. 35 minuter</p><p>Dramatisering: Jesper Fransson och Matilda Anttila efter Gunilla Bergströms barnböcker<br>Regi: Jesper Fransson<br>Musik: Georg Riedel och Anders Grönroos<br>Musikarrangemang och inspelning: Stefan ”Kilju” Lindblom <br>Dräkter: Sonja Dragon <br>Dekor, foto & grafik: Lasse Andersson<br>Rekvisitör: Pia Lindén-Lamoureux <br>I rollerna: Petra Rauhala, Matilda Lindström och Kalle Halmén<br>Producent: Anders Grönroos<br>Förlag: Bok-Makaren AB<br>Produktion: Barnens Estrad</p>",
                "en": "<p>A performance based on Julkalas, Alfons Åberg and Gunilla Bergström's other Alfie Atkins books is performed in Vuosaari House in Swedish 2 December and in Finnish 3 December.</p><p>Both performances begin at 18.00.</p><p>Bergrstöm's last book <i>Julkalas, Alfons Åberg</i> was published in Sweden in October 2025 (Finnish translation: <i>Hyvää joulua, Mikko Mallikas</i>, 2026). This warm and funny touring play featuring three actors is full of everything that has made Alfie and Bergström's beloved books so popular in many countries.</p><p>Barnens Estrad's previous <i>Alfons och Mållgan</i> tours with Alfie, totalling over 400 performances, have proven that today's children, too, appreciate a clever story told in a calm fashion.</p><p>The performance is targeted at 2–8-year-olds alongside their families<br>Performance duration: approximately 35 minutes</p><p>Dramaturgy: Matilda Anttila & Jesper Fransson based on Gunilla Bergström's children's books<br>Direction: Matilda Anttila & Jesper Fransson<br>Costumes: Sonja Dragon<br>Scenography, photos and graphic design: Lasse Andersson<br>Set dressing: Pia Lindén-Lamoureux<br>Music: Georg Riedel, Stefan \"Kilju\" Lindblom & Anders Grönroos<br>Music arrangement, sound effects and recording: Stefan \"Kilju\" Lindblom<br>Performers: Petra Rauhala, Matilda Lindström & Kalle Halmén<br>Producer: Anders Grönroos<br>Performance rights: Bok-Makaren AB</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69623/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69441",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385221,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-17T08:14:57.027484Z",
                    "last_modified_time": "2026-06-17T08:14:57.027500Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792265.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385221/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-17T08:14:56.905687Z",
            "last_modified_time": "2026-07-21T06:14:56.536633Z",
            "date_published": null,
            "start_time": "2026-11-26T11:00:00Z",
            "end_time": "2026-11-26T11:50: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,
            "name": {
                "fi": "Taidejumppa – anna taiteen liikuttaa!",
                "sv": "Konstgympa – låt konsten sätta dig i rörelse!",
                "en": "Art exercise – let art get you moving!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.",
                "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.",
                "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/422D7D8E90CD5F093886929013E564F3/Taidejumppa_anna_taiteen_liikuttaa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/422D7D8E90CD5F093886929013E564F3/Konstgympa_lat_konsten_satta_dig_i_rorelse_",
                "en": "http://www.kanneltalo.fi/en/events/event/422D7D8E90CD5F093886929013E564F3/Art_exercise_let_art_get_you_moving_"
            },
            "description": {
                "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>",
                "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>",
                "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69441/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69440",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385220,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-17T08:14:55.753299Z",
                    "last_modified_time": "2026-06-17T08:14:55.753314Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792264.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385220/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-17T08:14:55.648238Z",
            "last_modified_time": "2026-07-21T06:14:54.835355Z",
            "date_published": null,
            "start_time": "2026-11-19T11:00:00Z",
            "end_time": "2026-11-19T11:50: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,
            "name": {
                "fi": "Taidejumppa – anna taiteen liikuttaa!",
                "sv": "Konstgympa – låt konsten sätta dig i rörelse!",
                "en": "Art exercise – let art get you moving!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.",
                "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.",
                "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/71DB66C38C2E1EE0C7BB73BAE29A3B81/Taidejumppa_anna_taiteen_liikuttaa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/71DB66C38C2E1EE0C7BB73BAE29A3B81/Konstgympa_lat_konsten_satta_dig_i_rorelse_",
                "en": "http://www.kanneltalo.fi/en/events/event/71DB66C38C2E1EE0C7BB73BAE29A3B81/Art_exercise_let_art_get_you_moving_"
            },
            "description": {
                "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>",
                "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>",
                "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69440/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69439",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385219,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-17T08:14:54.739663Z",
                    "last_modified_time": "2026-06-17T08:14:54.739679Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792263.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385219/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-17T08:14:54.638127Z",
            "last_modified_time": "2026-07-21T06:14:53.535711Z",
            "date_published": null,
            "start_time": "2026-11-12T11:00:00Z",
            "end_time": "2026-11-12T11:50: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,
            "name": {
                "fi": "Taidejumppa – anna taiteen liikuttaa!",
                "sv": "Konstgympa – låt konsten sätta dig i rörelse!",
                "en": "Art exercise – let art get you moving!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.",
                "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.",
                "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F25BB76F6A327F8B7B1C1F5F77D4E54D/Taidejumppa_anna_taiteen_liikuttaa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F25BB76F6A327F8B7B1C1F5F77D4E54D/Konstgympa_lat_konsten_satta_dig_i_rorelse_",
                "en": "http://www.kanneltalo.fi/en/events/event/F25BB76F6A327F8B7B1C1F5F77D4E54D/Art_exercise_let_art_get_you_moving_"
            },
            "description": {
                "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>",
                "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>",
                "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69439/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69438",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385218,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-17T08:14:53.225264Z",
                    "last_modified_time": "2026-06-17T08:14:53.225280Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792262.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-17T08:14:53.109440Z",
            "last_modified_time": "2026-07-21T06:14:51.977273Z",
            "date_published": null,
            "start_time": "2026-11-05T11:00:00Z",
            "end_time": "2026-11-05T11:50: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,
            "name": {
                "fi": "Taidejumppa – anna taiteen liikuttaa!",
                "sv": "Konstgympa – låt konsten sätta dig i rörelse!",
                "en": "Art exercise – let art get you moving!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.",
                "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.",
                "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9F62EC99FD7F0205D7ADC91CFCE63CAD/Taidejumppa_anna_taiteen_liikuttaa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9F62EC99FD7F0205D7ADC91CFCE63CAD/Konstgympa_lat_konsten_satta_dig_i_rorelse_",
                "en": "http://www.kanneltalo.fi/en/events/event/9F62EC99FD7F0205D7ADC91CFCE63CAD/Art_exercise_let_art_get_you_moving_"
            },
            "description": {
                "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>",
                "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>",
                "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69438/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69437",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385217,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-17T08:14:51.924024Z",
                    "last_modified_time": "2026-06-17T08:14:51.924040Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792261.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-17T08:14:51.797131Z",
            "last_modified_time": "2026-07-21T06:14:49.975313Z",
            "date_published": null,
            "start_time": "2026-10-29T11:00:00Z",
            "end_time": "2026-10-29T11:50: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,
            "name": {
                "fi": "Taidejumppa – anna taiteen liikuttaa!",
                "sv": "Konstgympa – låt konsten sätta dig i rörelse!",
                "en": "Art exercise – let art get you moving!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.",
                "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.",
                "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/62F1C35F0C86003A799C697175171AB8/Taidejumppa_anna_taiteen_liikuttaa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/62F1C35F0C86003A799C697175171AB8/Konstgympa_lat_konsten_satta_dig_i_rorelse_",
                "en": "http://www.kanneltalo.fi/en/events/event/62F1C35F0C86003A799C697175171AB8/Art_exercise_let_art_get_you_moving_"
            },
            "description": {
                "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>",
                "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>",
                "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69437/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69436",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-17T08:14:50.372446Z",
                    "last_modified_time": "2026-06-17T08:14:50.372461Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792260.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-17T08:14:50.246141Z",
            "last_modified_time": "2026-07-21T06:14:47.320883Z",
            "date_published": null,
            "start_time": "2026-10-22T10:00:00Z",
            "end_time": "2026-10-22T10:50: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,
            "name": {
                "fi": "Taidejumppa – anna taiteen liikuttaa!",
                "sv": "Konstgympa – låt konsten sätta dig i rörelse!",
                "en": "Art exercise – let art get you moving!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.",
                "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.",
                "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A4C848139C61C47A7891A6EA43BB1C18/Taidejumppa_anna_taiteen_liikuttaa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A4C848139C61C47A7891A6EA43BB1C18/Konstgympa_lat_konsten_satta_dig_i_rorelse_",
                "en": "http://www.kanneltalo.fi/en/events/event/A4C848139C61C47A7891A6EA43BB1C18/Art_exercise_let_art_get_you_moving_"
            },
            "description": {
                "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>",
                "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>",
                "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69436/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69435",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385215,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-17T08:14:48.513556Z",
                    "last_modified_time": "2026-06-17T08:14:48.513572Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792259.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385215/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-17T08:14:48.406897Z",
            "last_modified_time": "2026-07-21T06:14:44.113263Z",
            "date_published": null,
            "start_time": "2026-10-08T10:00:00Z",
            "end_time": "2026-10-08T10:50: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,
            "name": {
                "fi": "Taidejumppa – anna taiteen liikuttaa!",
                "sv": "Konstgympa – låt konsten sätta dig i rörelse!",
                "en": "Art exercise – let art get you moving!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.",
                "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.",
                "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0FFC129C1F426224EB941600D71B6D87/Taidejumppa_anna_taiteen_liikuttaa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0FFC129C1F426224EB941600D71B6D87/Konstgympa_lat_konsten_satta_dig_i_rorelse_",
                "en": "http://www.kanneltalo.fi/en/events/event/0FFC129C1F426224EB941600D71B6D87/Art_exercise_let_art_get_you_moving_"
            },
            "description": {
                "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>",
                "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>",
                "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69435/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68654",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385460,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-01T12:14:07.488415Z",
                    "last_modified_time": "2026-07-01T12:14:07.488440Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791508.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385460/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-29T10:13:39.381052Z",
            "last_modified_time": "2026-07-21T06:14:43.120241Z",
            "date_published": null,
            "start_time": "2026-10-05T15:00:00Z",
            "end_time": "2026-10-05T17: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,
            "name": {
                "fi": "Yhteisötanssit: Dabkea Yalla Collectiven kanssa – Malmitalon yhteisömaanantait",
                "sv": "Yhteisötanssit: Dabkea Yalla Collectiven kanssa – Malmitalon yhteisömaanantait",
                "en": "Yhteisötanssit: Dabkea Yalla Collectiven kanssa – Malmitalon yhteisömaanantait"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kuun ensimmäinen maanantai tanssitaan Malmitalolla!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B78E4859B245D56D9F1E86C9F9C2207A/Yhteisotanssit_Dabkea_Yalla_Collectiven_kanssa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B78E4859B245D56D9F1E86C9F9C2207A/Yhteisotanssit_Dabkea_Yalla_Collectiven_kanssa",
                "en": "http://www.malmitalo.fi/en/events/event/B78E4859B245D56D9F1E86C9F9C2207A/Yhteisotanssit_Dabkea_Yalla_Collectiven_kanssa"
            },
            "description": {
                "fi": "<p>Kuun ensimmäinen maanantai tanssitaan Malmitalolla!</p><p>Ilmaiset ja kaikille avoimet yhteisötanssit alkavat tanssiopetuksella, jonka jälkeen oppeja pääsee harjoittelemaan livebändin säestyksellä. Tanssittava tyyli vaihtuu joka kuukausi.</p><p>Tervetuloa tanssimaan! Tapahtuma on osa Malmitalon Yhteisömaanantait-sarjaa.</p><p>Al Huriya Dabken tanssitunnilla osallistujat pääsevät tutustumaan Levantin alueella tuhansia vuosia sitten kehittyneeseen perinteiseen rivitanssiin, joka erityisesti Palestiinassa edustaa juhlan ja yhteisöllisyyden lisäksi vastarintaa ja kulttuurin ylläpitämistä.<br> <br>Yalla Collective on vuonna 2022 perustettu DJ-kokoonpano, joka yhdistää elektronista musiikkia SWANA-alueen ja sen diasporien musiikkiin ja kulttuuriin. SWANA on antikolonialistinen termi, jolla viitataan Luoteis-Aasian ja Pohjois-Afrikan alueeseen (<i>South-West Asia and North Africa</i>).</p><p>Aikataulu:<br>18–19 Al Huriya Dabke: Dabke<br>19–20 Yalla Collective</p><p>Vapaa pääsy!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68654/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69434",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385214,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-17T08:14:46.977137Z",
                    "last_modified_time": "2026-06-17T08:14:46.977155Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792258.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385214/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-17T08:14:46.860418Z",
            "last_modified_time": "2026-07-21T06:14:41.452981Z",
            "date_published": null,
            "start_time": "2026-10-01T10:00:00Z",
            "end_time": "2026-10-01T10:50: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,
            "name": {
                "fi": "Taidejumppa – anna taiteen liikuttaa!",
                "sv": "Konstgympa – låt konsten sätta dig i rörelse!",
                "en": "Art exercise – let art get you moving!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.",
                "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.",
                "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8863B965517FCBBC2E54C1F7A8D4E597/Taidejumppa_anna_taiteen_liikuttaa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8863B965517FCBBC2E54C1F7A8D4E597/Konstgympa_lat_konsten_satta_dig_i_rorelse_",
                "en": "http://www.kanneltalo.fi/en/events/event/8863B965517FCBBC2E54C1F7A8D4E597/Art_exercise_let_art_get_you_moving_"
            },
            "description": {
                "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>",
                "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>",
                "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69434/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68623",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmitalo-boppin-pete-the-barnshakers-malmitalo-21603921/",
                        "sv": "https://www.lippu.fi/event/malmitalo-boppin-pete-the-barnshakers-malmitalo-21603921/",
                        "en": "https://www.lippu.fi/event/malmitalo-boppin-pete-the-barnshakers-malmitalo-21603921/"
                    },
                    "description": null,
                    "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": 2384965,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:03.020515Z",
                    "last_modified_time": "2026-06-05T07:14:03.020533Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791290.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384965/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:02.872299Z",
            "last_modified_time": "2026-07-21T06:14:41.085603Z",
            "date_published": null,
            "start_time": "2026-09-30T16:00:00Z",
            "end_time": "2026-09-30T17:45: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,
            "name": {
                "fi": "Boppin Pete & The Barnshakers",
                "sv": "Boppin Pete & The Barnshakers",
                "en": "Boppin Pete & The Barnshakers"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Rock-konkarit lyöttäytyvät harvinaisessa konsertissa, jossa kuullaan Barnshakersien tunnetuimpia raitoja sekä Peten klassikkolevytyksiä – ja paljon muutakin.",
                "sv": "Rockveteraner slår sig samman i en sällsynt konsert, där vi får höra Barnshakers mest kända låtar och Petes klassiska inspelningar – och mycket mer därtill.",
                "en": "Rock veterans are joining forces for a rare concert featuring The Barnshakers’ best-known tracks as well as Pete’s classic recordings – and much more."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/272AEE620FC9CACC730E160FD931E49D/Boppin_Pete_The_Barnshakers",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/272AEE620FC9CACC730E160FD931E49D/Boppin_Pete_The_Barnshakers",
                "en": "http://www.malmitalo.fi/en/events/event/272AEE620FC9CACC730E160FD931E49D/Boppin_Pete_The_Barnshakers"
            },
            "description": {
                "fi": "<p>Rock-konkarit lyöttäytyvät harvinaisessa konsertissa, jossa kuullaan Barnshakersien tunnetuimpia raitoja sekä Peten klassikkolevytyksiä – ja paljon muutakin.</p><p>Boppin' Pete, eli Petri Näsman, on helsinkiläinen pitkän linjan roots-muusikko. Boppin' Pete -nimellä hän nousi yhdeksi suomalaisen 50-luvun rock and roll- ja rockabilly-huuman veturiksi 1980-luvun Näsman teki albumin legendaariselle Rebel-merkille ja esiintyi kulttimaineeseen yltäneessä \"Rokkidiggari\"-elokuvassa.</p><p>The Barnshakers on Suomen kansainvälisesti menestyksekkäin rockabilly-yhtye, jonka yli 30-vuotinen ura on pitänyt sisällään lukuisia kiertueita ympäri maailmaa, yhteistyötä monien artistien kanssa sekä arvostettuja julkaisuja kotimaisella Goofin Recordsilla.</p><p>The Barnshakers:<br>Vesa Haaja - laulu ja kitara<br>Jussi Huhtakangas - kitara<br>Mika Liikari - basso<br>Jani Ahtiainen - rummut<br>Boppin' Pete - laulu ja kitara</p><p>Kesto: 1 h 45 min, sis. 20 min väliajan</p>",
                "sv": "<p>Rockveteraner slår sig samman i en sällsynt konsert, där vi får höra Barnshakers mest kända låtar och Petes klassiska inspelningar – och mycket mer därtill.</p><p>Boppin’ Pete, alias Petri Näsman, är en rootsmusiker från Helsingfors med lång erfarenhet. Under namnet Boppin’ Pete blev han en av drivkrafterna bakom den finska rock’n’roll- och rockabillyvågen på 1950-talet. På 1980-talet spelade Näsman in ett album för det legendariska skivmärket Rebel och medverkade i kultfilmen Rokkidiggari.</p><p>The Barnshakers är Finlands mest framgångsrika rockabillyband internationellt, vars över 30-åriga karriär har omfattat ett flertal turnéer runt om i världen, samarbeten med många artister och uppskattade utgåvor på det inhemska skivbolaget Goofin Records.</p><p>The Barnshakers: <br>Vesa Haaja – sång och gitarr <br>Jussi Huhtakangas – gitarr <br>Mika Liikari – bas <br>Jani Ahtiainen – trummor <br>Boppin' Pete – sång och gitarr</p>",
                "en": "<p>Rock veterans are joining forces for a rare concert featuring The Barnshakers’ best-known tracks as well as Pete’s classic recordings – and much more.</p><p>Boppin’ Pete, otherwise known as Petri Näsman, is a veteran roots musician from Helsinki. Under the name Boppin’ Pete, he became one of the driving forces behind the 1950s’ rock and roll and rockabilly craze in Finland. In the 1980s, Näsman recorded an album for the legendary Rebel label and appeared in the cult film Rokkidiggari.</p><p>The Barnshakers are Finland’s most internationally successful rockabilly band, whose career spanning more than 30 years has included numerous tours around the world, collaborations with many artists, and acclaimed releases on the Finnish label Goofin Records.</p><p>The Barnshakers: <br>Vesa Haaja – vocals and guitar <br>Jussi Huhtakangas – guitar <br>Mika Liikari – bass <br>Jani Ahtiainen – drums <br>Boppin’ Pete – vocals and guitar</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68623/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68648",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:732/?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:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385240,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T06:14:05.747464Z",
                    "last_modified_time": "2026-06-18T06:14:05.747543Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791484.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385240/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T06:14:05.674921Z",
            "last_modified_time": "2026-07-21T06:14:40.481300Z",
            "date_published": null,
            "start_time": "2026-09-28T15:00:00Z",
            "end_time": "2026-09-28T17: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,
            "name": {
                "fi": "Malmitalon teehuone – Malmitalon yhteisömaanantait",
                "sv": "Tesalong på Malms kulturhus – Gemenskapsmåndagar på Malms kulturhus",
                "en": "Malmitalo Tea Room – Community Mondays at Malmitalo"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kuun viimeinen maanantai Malmitalon parvi muuttuu teehuoneeksi, jossa pääset tutustumaan eri maiden teekulttuureihin ohjaajan opastuksella.",
                "sv": "Den sista måndagen i månaden förvandlas Malms kulturhus balkong till en tesalong, där du under ledning av en guide får lära dig mer om olika länders tekulturer.",
                "en": "On the last Monday of the month, the loft at Malmitalo is transformed into a tea room, where you can learn about the tea cultures of different countries under the guidance of an instructor."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6E96ED90D30286D7F0AB3054B36EFBFA/Malmitalon_teehuone",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6E96ED90D30286D7F0AB3054B36EFBFA/Tesalong_pa_Malms_kulturhus",
                "en": "http://www.malmitalo.fi/en/events/event/6E96ED90D30286D7F0AB3054B36EFBFA/Malmitalo_Tea_Room"
            },
            "description": {
                "fi": "<p>Kuun viimeinen maanantai Malmitalon parvi muuttuu teehuoneeksi, jossa pääset tutustumaan eri maiden teekulttuureihin ohjaajan opastuksella.</p><p>Teehuone on yhteisöllinen ja kaikille avoin tila hengähtämiseen, rentoutumiseen ja eri kulttuureista oppimiseen.</p><p>Tarjolla teetä ja pieniä herkkuja.</p><p>Tapahtuma on osa Malmitalon yhteisömaanantait-sarjaa.</p><p>Vapaa pääsy! <br>Malmitalon aula</p>",
                "sv": "<p>Den sista måndagen i månaden förvandlas Malms kulturhus balkong till en tesalong, där du under ledning av en guide får lära dig mer om olika länders tekulturer.</p><p>Tesalongen är en gemenskaplig och för alla öppen plats där man kan ta en paus, koppla av och lära sig om olika kulturer. I oktober får vi lära oss mer om den somaliska tekulturen. Det serveras te och små godsaker. Evenemanget ingår i Malms kulturhus evenemangsserie Gemenskapsmåndagar.</p>",
                "en": "<p>On the last Monday of the month, the loft at Malmitalo is transformed into a tea room, where you can learn about the tea cultures of different countries under the guidance of an instructor.</p><p>The Tea Room is a communal space open to everyone, where you can take a breather, relax and learn about different cultures. In October, we explore Somali tea culture. Tea and small treats are on the menu. The event is part of Malmitalo’s ‘Community Mondays’ series.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68648/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68939",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:734/?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:p11617/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385245,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T07:14:44.157657Z",
                    "last_modified_time": "2026-06-18T07:14:44.157679Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792289.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385245/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-06-18T07:14:44.063981Z",
            "last_modified_time": "2026-07-21T06:14:39.871388Z",
            "date_published": null,
            "start_time": "2026-09-26T07:00:00Z",
            "end_time": "2026-09-26T15: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,
            "name": {
                "fi": "Nezumicon",
                "sv": "Nezumicon",
                "en": "Nezumicon"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Nezumicon on nuorten tuottama Cosplay-tapahtuma Malmitalolla! Tapahtumassa on manga- ja animeaiheista ohjelmaa ja tekemistä.",
                "sv": "Nezumicon är ett Cosplay-evenemang producerat av unga på Malms kulturhus! Evenemanget innehåller program och aktiviteter med manga- och animetema.",
                "en": "Nezumicon is a youth-produced cosplay event at Malmitalo. It features a manga and anime-themed programme and activities."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/88A4527ADF3A0FB1A4E9AB1871237BB2/Nezumicon",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/88A4527ADF3A0FB1A4E9AB1871237BB2/Nezumicon",
                "en": "http://www.malmitalo.fi/en/events/event/88A4527ADF3A0FB1A4E9AB1871237BB2/Nezumicon"
            },
            "description": {
                "fi": "<p>Nezumicon on nuorten tuottama Cosplay-tapahtuma Malmitalolla! Tapahtumassa on manga- ja animeaiheista ohjelmaa ja tekemistä.</p><p>Tapahtuma on maksuton ja suunnattu nuorille.</p><p>Tapahtuman tuottamisessa nuoria auttaa Operaatio Pulssi! Pohjoinen, Malmitalo, Malmin kirjasto ja Malmin nuorisotyöyksikkö.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Nezumicon är ett Cosplay-evenemang producerat av unga på Malms kulturhus! Evenemanget innehåller program och aktiviteter med manga- och animetema.</p><p>Evenemanget är avgiftsfritt och riktar sig till ungdomar. Operaatio Pulssi hjälper ungdomarna med produktionen av evenemanget. Norra, Malms kulturhus, Malms bibliotek och Malms ungdomsarbetsenhet.</p>",
                "en": "<p>Nezumicon is a youth-produced cosplay event at Malmitalo. It features a manga and anime-themed programme and activities.</p><p>The event is free of charge and aimed at young people. It is realised with production support from the Operaatio Pulssi! (‘Operation Pulse!’) project. North, Malmitalo, Malmi Library and the Malmi Youth Work Unit.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68939/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68618",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-a-la-malmi-pekko-kappi-khhl-malmitalo-21485591/",
                        "sv": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-a-la-malmi-pekko-kappi-khhl-malmitalo-21485591/",
                        "en": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-a-la-malmi-pekko-kappi-khhl-malmitalo-21485591/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20€ / 15€",
                        "sv": "20€ / 15€",
                        "en": "20€ / 15€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384964,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:02.326368Z",
                    "last_modified_time": "2026-06-05T07:14:02.326386Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791278.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384964/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T13:14:43.665474Z",
            "last_modified_time": "2026-07-21T06:14:39.651265Z",
            "date_published": null,
            "start_time": "2026-09-25T16:00:00Z",
            "end_time": "2026-09-25T17: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,
            "name": {
                "fi": "Pekko Käppi & K:H:H:L – A la Malmi",
                "sv": "Pekko Käppi & K:H:H:L – A la Malmi",
                "en": "Pekko Käppi & K:H:H:L – A la Malmi"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Pekko Käppi & K:H:H:L on tamperelainen, Suomen folkrocktaivaan nykyhetken kuumin ja kovaäänisin nelikko.",
                "sv": "Pekko Käppi & K:H:H:L är den hetaste och mest högljudda kvartetten inom finsk folkrock just nu.",
                "en": "Pekko Käppi & K:H:H:L from Tampere is the hottest and loudest four-piece in the Finnish folk rock scene today."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7B5959CF25AD1B0ACB1E46428C8B9A77/Pekko_Kappi_K_H_H_L",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7B5959CF25AD1B0ACB1E46428C8B9A77/Pekko_Kappi_K_H_H_L",
                "en": "http://www.malmitalo.fi/en/events/event/7B5959CF25AD1B0ACB1E46428C8B9A77/Pekko_Kappi_K_H_H_L"
            },
            "description": {
                "fi": "<p>Pekko Käppi & K:H:H:L on tamperelainen, Suomen folkrocktaivaan nykyhetken kuumin ja kovaäänisin nelikko.</p><p>Yhtye perustettiin jouhikkotaiteilijana ja laulaja-lauluntekijänä tunnetun <b>Pekko Käpin</b> <i>Rammat jumalat</i> levyn ilmestyttyä vuonna 2013. Sittemmin yhtye on tehnyt kuusi kiiteltyä levyä ja kiertänyt planeettaamme ristiin rastiin.</p><p>Pekko Käpin musiikki yhdistää ilmavaa folk -ilmaisua, bluesin juurekkuutta ja psykedeelisvivahteista rockia. Lopputulos on ihastuttavaa kansanmusiikkia, joka on istutettu omaleimaisen nerokkaalla tavalla helposti lähestyttävän populaarimusiikin muottiin.</p><p>Yhtyeen kuudes albumi <i>Oli kerran ryytimaassa...</i> julkaistiin 2025.<br> <br>‍Yhtye:<br>Pekko Käppi – laulu, jouhikot<br>Tommi Laine – kitara, laulu<br>Nuutti Vapaavuori – basso, laulu<br>Gilbert Kuppusami – rummut, laulu</p><p>Kesto: 1 tunti</p>",
                "sv": "<p>Pekko Käppi & K:H:H:L är den hetaste och mest högljudda kvartetten inom finsk folkrock just nu.</p><p>Gruppen bildades efter att stråkharpisten samt sångaren och låtskrivaren <b>Pekko Käppis</b> skiva <i>Rammat jumalat</i> kom ut år 2013. Sedan dess har bandet släppt sex hyllade album och turnerat över hela världen.  <br> <br>Pekko Käppis musik kombinerar luftiga folkuttryck och rotig blues med psykedelisk rock. Resultatet är förtjusande folkmusik som på ett unikt och genialt sätt har anpassats till den lättillgängliga populärmusikens form.</p><p>Bandets sjätte album <i>Oli kerran ryytimaassa...</i> kom 2025.</p><p>‍Band: <br>Pekko Käppi – sång, stråkharpa <br>Tommi Laine – gitarr, sång <br>Nuutti Vapaavuori – bas, sång <br>Gilbert Kuppusami – trummor, sång</p>",
                "en": "<p>Pekko Käppi & K:H:H:L from Tampere is the hottest and loudest four-piece in the Finnish folk rock scene today.</p><p>The band was formed after the release of singer-songwriter <b>Pekko Käppi’s</b> <i>Rammat jumalat</i> album in 2013. Since then, the band has released six critically acclaimed albums and toured the globe far and wide.</p><p>Pekko Käppi’s music combines airy folk, rootsy blues and psychedelically tinged rock. The result is delightful folk music, which has been skilfully woven into the fabric of accessible popular music in a uniquely ingenious way.</p><p>The band's sixth album <i>Oli kerran ryytimaassa...</i> was released in 2025.</p><p>Band: <br>Pekko Käppi – vocals, jouhikko bowed lyre <br>Tommi Laine – guitar, vocals <br>Nuutti Vapaavuori – bass, vocals <br>Gilbert Kuppusami – drums, vocals</p><p>Duration: 1 h</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68618/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69244",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?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:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://rockcamp.myclub.fi/flow/courses/10799310",
                        "sv": "https://rockcamp.myclub.fi/flow/courses/10799310",
                        "en": "https://rockcamp.myclub.fi/flow/courses/10799310"
                    },
                    "description": null,
                    "price": {
                        "fi": "25€",
                        "sv": "25€",
                        "en": "25€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384953,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T12:13:54.652582Z",
                    "last_modified_time": "2026-06-04T12:13:54.652597Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793483.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384953/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T12:13:54.514947Z",
            "last_modified_time": "2026-07-21T06:14:39.350283Z",
            "date_published": null,
            "start_time": "2026-09-25T14:00:00Z",
            "end_time": "2026-09-25T18: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,
            "name": {
                "fi": "Rock Camp – Musiikkileiri 13–29-v. nuorille",
                "sv": "Rock Camp – Musikläger för ungdomar i åldern 13–29 år",
                "en": "Rock Camp – Music camp for young people aged 13–29"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Oletko 13–29-vuotias ja kiinnostunut musiikista? Tule mukaan syksyn Rock Camp -päiväleirille Helsingin Malmitalolle 25.–27.9.2026!",
                "sv": "Är du mellan 13 och 29 år och intresserad av musik? Kom och delta i höstens dagläger Rock Camp på Malms kulturhus i Helsingfors den 25–27 september 2026!",
                "en": "Are you aged between 13 and 29 and interested in music? Come and join us for the autumn Rock Camp day camp at Malmitalo in Helsinki from 25 to 27 September 2026!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4162B184831D41D1334129262A00F3A3/Rock_Camp",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4162B184831D41D1334129262A00F3A3/Rock_Camp",
                "en": "http://www.malmitalo.fi/en/events/event/4162B184831D41D1334129262A00F3A3/Rock_Camp"
            },
            "description": {
                "fi": "<p>Oletko 13–29-vuotias ja kiinnostunut musiikista? Tule mukaan syksyn Rock Camp -päiväleirille Helsingin Malmitalolle 25.–27.9.2026!</p><p>Leiri järjestetään yhteistyössä Helsingin kaupungin ja Rock Camp Ry:n kanssa. Leirin aikana tapaat uusia kavereita, joita yhdistää sama intohimo musiikkiin, opit uutta ja pääset soittamaan bändissä kokeneiden valmentajien johdolla. Ei väliä, oletko vasta aloittamassa soittamista vai jo kokenut, meidän leirillä kaikki saavat loistaa!</p><p>Osallistumismaksu: 25 €<br><a href=\"https://rockcamp.myclub.fi/flow/courses/10799310\"><u>Ilmoittaudu leirille tämän linkin kautta 11.9. mennessä</u></a>. Mukaan mahtuu 20 osallistujaa.</p>",
                "sv": "<p>Är du mellan 13 och 29 år och intresserad av musik? Kom och delta i höstens dagläger Rock Camp på Malms kulturhus i Helsingfors den 25–27 september 2026!</p><p>Lägret ordnas i samarbete med Helsingfors stad och Rock Camp ry. Under lägret får du träffa nya vänner som delar samma passion för musik, du lär dig nya saker och får spela i ett band under ledning av erfarna instruktörer. Oavsett om du precis har börjat spela eller redan är en erfaren musiker – på vårt läger får alla chansen att glänsa! <br> <br>Deltagaravgift: 25 € <br><a href=\"https://rockcamp.myclub.fi/flow/courses/10799310\"><u>Anmäl dig till lägret via den här länken senast den 11 september (sidan är på finska)</u></a>. Det finns plats för 20 deltagare.</p>",
                "en": "<p>Are you aged between 13 and 29 and interested in music? Come and join us for the autumn Rock Camp day camp at Malmitalo in Helsinki from 25 to 27 September 2026!</p><p>The camp is organised in collaboration with the City of Helsinki and the Rock Camp association. During the camp, you will meet new friends who share your passion for music, learn new things and get to play in a band under the guidance of experienced coaches. Whether you are just starting out or are already an experienced player does not matter – at our camp, everyone gets a chance to shine! <br> <br>Participation fee: €25 <br><a href=\"https://rockcamp.myclub.fi/flow/courses/10799310\"><u>Sign up for the camp via this link by 11 September (page in Finnish)</u></a>. The camp has room for 20 participants.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69244/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68938",
            "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385244,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T07:14:43.609072Z",
                    "last_modified_time": "2026-06-18T07:14:43.609155Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792286.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385244/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T07:14:43.513936Z",
            "last_modified_time": "2026-07-21T06:14:38.586309Z",
            "date_published": null,
            "start_time": "2026-09-24T15:00:00Z",
            "end_time": "2026-09-24T17:04: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,
            "name": {
                "fi": "Downton Abbey: Viimeinen näytös – Yleisön suosikit",
                "sv": "Downton Abbey: The Grand Finale – Publikens favoriter",
                "en": "Downton Abbey: The Grand Finale – Audience Favourites"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.",
                "sv": "I filmserien Publikens favoriter visas en gång i månaden förra säsongens populäraste och mest önskade filmer.",
                "en": "Once a month, the Audience Favourites series presents the most popular and frequently requested films of the previous season."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4C61566C4942ED034C8142E128F5A25C/Downton_Abbey_Viimeinen_naytos",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4C61566C4942ED034C8142E128F5A25C/Downton_Abbey_The_Grand_Finale",
                "en": "http://www.malmitalo.fi/en/events/event/4C61566C4942ED034C8142E128F5A25C/Downton_Abbey_The_Grand_Finale"
            },
            "description": {
                "fi": "<p>Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.</p><p>Rakastetun brittidraaman paluu elokuvateattereihin, seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle.</p><p>Kun rakastetut hahmot yrittävät luotsata Downton Abbeyn kartanoa tulevaisuuteen, heidän on hyväksyttävä muutoksen tuulet ja aloitettava uusi ajanjakso.</p><p>Kesto: 2h 4 min<br>Ikäraja: sallittu<br>Tekstitys: suomi<br>Vapaa pääsy!</p>",
                "sv": "<p>I filmserien Publikens favoriter visas en gång i månaden förra säsongens populäraste och mest önskade filmer.</p><p>Den älskade brittiska dramaserien återvänder till biograferna – följ familjen Crawley och deras tjänstefolk under övergången till 1930-talet. När de älskade karaktärerna försöker leda herrgården Downtown Abbey in i framtiden måste de acceptera förändringens vindar och inleda en ny era.</p><p>Längd: 2 h 4 min. <br>Åldersgräns: barntillåten <br>Textning: finska <br>Fritt inträde!</p>",
                "en": "<p>Once a month, the Audience Favourites series presents the most popular and frequently requested films of the previous season.</p><p>The return of the much-loved British drama to cinemas: follow the Crawley family and their household staff as they navigate the turn of the decade into the 1930s. As the much-loved characters attempt to steer Downton Abbey into the future, they must embrace the winds of change and usher in a new era.</p><p>Duration: 2 h 4 min <br>Age rating: all ages <br>Subtitles: Finnish <br>Free entry!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68938/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69433",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385212,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-17T08:14:44.995797Z",
                    "last_modified_time": "2026-06-17T08:14:44.995813Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792257.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385212/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-17T08:14:44.890317Z",
            "last_modified_time": "2026-07-21T06:14:38.281329Z",
            "date_published": null,
            "start_time": "2026-09-24T10:00:00Z",
            "end_time": "2026-09-24T10:50: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,
            "name": {
                "fi": "Taidejumppa – anna taiteen liikuttaa!",
                "sv": "Konstgympa – låt konsten sätta dig i rörelse!",
                "en": "Art exercise – let art get you moving!"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.",
                "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.",
                "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F4B7DE6A2C4AB498E9E4EE030A321DA1/Taidejumppa_anna_taiteen_liikuttaa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F4B7DE6A2C4AB498E9E4EE030A321DA1/Konstgympa_lat_konsten_satta_dig_i_rorelse_",
                "en": "http://www.kanneltalo.fi/en/events/event/F4B7DE6A2C4AB498E9E4EE030A321DA1/Art_exercise_let_art_get_you_moving_"
            },
            "description": {
                "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>",
                "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>",
                "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69433/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68617",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/4141439",
                        "sv": "https://www.lippu.fi/eventseries/4141439",
                        "en": "https://www.lippu.fi/eventseries/4141439"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385250,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T09:13:43.231221Z",
                    "last_modified_time": "2026-06-18T09:13:43.231234Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791271.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385250/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T09:13:43.076093Z",
            "last_modified_time": "2026-07-21T06:14:37.991617Z",
            "date_published": null,
            "start_time": "2026-09-23T16:00:00Z",
            "end_time": "2026-09-23T18: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,
            "name": {
                "fi": "Kat Baloun | Unna & Helge Tallqvist Band",
                "sv": "Kat Baloun | Unna & Helge Tallqvist Band",
                "en": "Kat Baloun | Unna & Helge Tallqvist Band"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kaksi valovoimaista bluessolistia astuvat Malmitalon lavalle: yhdysvaltalainen Kat Baloun sekä Unna Kortehisto yhtyeensä Unna & Helge Tallqvist Band kanssa.",
                "sv": "Två karismatiska bluessolister kliver upp på scenen på Malms kulturhus: amerikanen Kat Baloun samt Unna Kortehisto tillsammans med sitt band, Unna & Helge Tallqvist Band.",
                "en": "Two charismatic blues soloists take to the stage at Malmitalo: Kat Baloun from the US, and Unna Kortehisto with her band, the Unna & Helge Tallqvist Band."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/66EFFAA12BFAF90BCBCC29F3A340ECA6/Kat_Baloun_Unna_Helge_Tallqvist_Band",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/66EFFAA12BFAF90BCBCC29F3A340ECA6/Kat_Baloun_Unna_Helge_Tallqvist_Band",
                "en": "http://www.malmitalo.fi/en/events/event/66EFFAA12BFAF90BCBCC29F3A340ECA6/Kat_Baloun_Unna_Helge_Tallqvist_Band"
            },
            "description": {
                "fi": "<p>Kaksi valovoimaista bluessolistia astuvat Malmitalon lavalle: yhdysvaltalainen Kat Baloun sekä Unna Kortehisto yhtyeensä Unna & Helge Tallqvist Band kanssa.</p><p>Teksasin El Pasossa syntynyt ja Ohion Cincinnatissa nuoruutensa viettänyt, mutta nykyään Berliinissä asuva <b>Kat Baloun</b> on blueslaulaja ja -huuliharpisti. Hän aloitti ammattilaisuransa 90-luvun alkupuolella San Franciscossa, missä nuoren Katin lauluääni, lavashow ja tyrmäkkä bluesharppu herättivät bluesyleisöjen huomion hänen esiintyessään paikallislegenda Elmer Lee Thomasin yhtyeessä.</p><p>Kat muutti vuonna 1994 Berliinin, ja on siitä lähtien keikkaillut Euroopassa. Hän on levyttänyt mm. Nina ja Eb Davisin sekä Chris Rannenbergin kanssa. Vuonna 2013 hän teki levyn suomalaisen Tomi Leino Trion kanssa.<br>Kat esiintyy Suomessa <b>The Frostbites</b> -yhtyeen – <b>Jonne Kulluvaara (kitara), <b>Jaska Prepula (basso) ja <b>Micha Maass (rummut) – kanssa. Katin viimeisin levyjulkaisu onkin nimenomaan The Frostbitesin kanssa äänitetty livealbumi vuodelta 2024.</p><p><b>Unna & Helge Tallqvist Band</b> -kokoonpanossa yhdistyvät nuori ennakkoluulottomuus ja energisyys sekä vuosikymmenien aikana hioutunut svengi. Solisti <b>Unna Kortehisto</b> on voimakasääninen ja sielukas bluesin, rhythm & bluesin ja soulin tulkitsija. Hänen lauluaan kuullaan myös mm. Saimaa-yhtyeen riveissä.<br>Helge Tallqvist Bandin muut jäsenet edustavat kotimaan roots-genren kokenutta kaartia. Kansainvälisilläkin blues -areenoilla meritoituneeseen kokoonpanoon kuuluvat <b>Helge Tallqvist</b> (huuliharppu), <b>Jonne Kulluvaara</b> (kitara), <b>Jaska Prepula</b> (basso) sekä <b>Tyko Haapala</b> (rummut).</p><p>Kesto: 2 t, sis. 20 min väliajan<br>Avustaja samalla lipulla pyörätuoliasiakkaan saattajana.</p>",
                "sv": "<p>Två karismatiska bluessolister kliver upp på scenen på Malms kulturhus: amerikanen Kat Baloun samt Unna Kortehisto tillsammans med sitt band, Unna & Helge Tallqvist Band.</p><p><b>Kat Baloun</b>, som är född i El Paso i Texas och tillbringade sin ungdom i Cincinnati i Ohio men numera bor i Berlin, är bluessångare och munspelare. Hon inledde sin professionella karriär i början av 90-talet i San Francisco, där den unga Kats sångröst, scenframträdande och kraftfulla bluesmunspel väckte bluespublikens uppmärksamhet när hon uppträdde i den lokala legenden Elmer Lee Thomas band. <br> <br>Kat flyttade till Berlin 1994 och har sedan dess uppträtt runt om i Europa. Hon har spelat in skivor med bland andra Nina och Eb Davis samt Chris Rannenberg. År 2013 spelade hon in en skiva tillsammans med den finska ensemblen Tomi Leino Trio.</p><p>Kat uppträder i Finland tillsammans med bandet <b>The Frostbites</b> – <b>Jonne Kulluvaara (gitarr), <b>Jaska Prepula (bas) och <b>Micha Maass (trummor). Kats senaste skivsläpp är just det livealbum från 2024 som spelades in tillsammans med The Frostbites.</p><p>I gruppen <b>Unna & Helge Tallqvist Band</b> förenas ungdomlig fördomsfrihet och energi med ett gung som slipats fram under årtionden. Solisten <b>Unna Kortehisto</b> är en sångare med kraftfull röst och stor själ som tolkar blues, rhythm & blues och soul. Hennes sång hörs bland annat också i bandet Saimaa.</p><p>De övriga medlemmarna i Helge Tallqvist Band tillhör det erfarna gardet inom den inhemska rootsgenren. Ensemblen, som har gjort sig ett namn även på den internationella bluesscenen, består av <b>Helge Tallqvist</b> (munspel), <b>Jonne Kulluvaara</b> (gitarr), <b>Jaska Prepula</b> (bas) och <b>Tyko Haapala</b> (trummor).</p><p>Längd: 2 h, inklusive 20 minuters paus</p><p>En assistent till en rullstolsanvändare kommer in på samma biljett som ledsagare.</p>",
                "en": "<p>Two charismatic blues soloists take to the stage at Malmitalo: Kat Baloun from the US, and Unna Kortehisto with her band, the Unna & Helge Tallqvist Band.</p><p>Blues singer and harmonica player <b>Kat Baloun</b> was born in El Paso, Texas, spent her youth in Cincinnati, Ohio, and now lives in Berlin. She began her professional career in the early 1990s in San Francisco, where young Kat’s singing voice, stage presence and powerful harmonica playing caught the attention of blues audiences when she was performing with the band of local legend Elmer Lee Thomas. <br> <br>Kat moved to Berlin in 1994 and has been performing across Europe ever since. She has recorded with artists such as Nina and Eb Davis, as well as Chris Rannenberg. In 2013, she recorded an album with the Finnish Tomi Leino Trio.</p><p>Kat is performing in Finland with the band <b>The Frostbites</b> – <b>Jonne Kulluvaara (guitar), <b>Jaska Prepula (bass) and <b>Micha Maass (drums). In fact, Kat’s most recent album release is a live album recorded with The Frostbites in 2024.</p><p><b>Unna & Helge Tallqvist Band</b> combines youthful open-mindedness and energy with a swing that has been honed over decades. Soloist <b>Unna Kortehisto</b> is a soulful performer of blues, rhythm & blues and soul with a powerful voice. Her singing can also be heard in ensembles such as the Saimaa band.</p><p>The other members of the Helge Tallqvist Band are seasoned veterans of the Finnish roots music scene. The line-up, which has made a name for itself on the international blues scene, includes <b>Helge Tallqvist</b> (harmonica), <b>Jonne Kulluvaara</b> (guitar), <b>Jaska Prepula</b> (bass) and <b>Tyko Haapala</b> (drums).</p><p>Duration: 2 h, incl. 20-min intermission</p><p>The assistant of a customer in a wheelchair is admitted with the same ticket.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68617/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68616",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sointi-jazz-orchestra-agatha-malmitalo-21615197/",
                        "sv": "https://www.lippu.fi/event/sointi-jazz-orchestra-agatha-malmitalo-21615197/",
                        "en": "https://www.lippu.fi/event/sointi-jazz-orchestra-agatha-malmitalo-21615197/"
                    },
                    "description": null,
                    "price": {
                        "fi": "28,90 / 11,10 €",
                        "sv": "28,90 / 11,10 €",
                        "en": "28,90 / 11,10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384954,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T13:14:42.691232Z",
                    "last_modified_time": "2026-06-04T13:14:42.691248Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791268.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384954/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T13:14:42.447342Z",
            "last_modified_time": "2026-07-21T06:14:35.952590Z",
            "date_published": null,
            "start_time": "2026-09-18T16:00:00Z",
            "end_time": "2026-09-18T17:10: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,
            "name": {
                "fi": "Sointi Jazz Orchestra: Agatha",
                "sv": "Sointi Jazz Orchestra: Agatha",
                "en": "Sointi Jazz Orchestra: Agatha"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Sointi Jazz Orchestra esittää Kerkko Koskisen Agatha-teoksen alkuperäisessä laajuudessaan!",
                "sv": "Sointi Jazz Orchestra framför Kerkko Koskinens verk Agatha i sin ursprungliga omfattning!",
                "en": "The Sointi Jazz Orchestra performs Kerkko Koskinen’s Agatha in its original length!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/616BCFFF78D80F262DC113B13E1DD64F/Sointi_Jazz_Orchestra_Agatha",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/616BCFFF78D80F262DC113B13E1DD64F/Sointi_Jazz_Orchestra_Agatha",
                "en": "http://www.malmitalo.fi/en/events/event/616BCFFF78D80F262DC113B13E1DD64F/Sointi_Jazz_Orchestra_Agatha"
            },
            "description": {
                "fi": "<p>Sointi Jazz Orchestra esittää Kerkko Koskisen Agatha-teoksen alkuperäisessä laajuudessaan!</p><p>Ultra Bran musiikillisena moottorina tunnetun <b>Kerkko Koskisen</b> ensimmäinen laaja instrumentaaliteos <i>Agatha</i> sai ensiesityksensä lähes 20 vuotta sitten. Jazzia ja klassista musiikkia ennakkoluulottomasti yhdistelevä elokuvallinen kokonaisuus kuullaan nyt monipuolisista esityksistään tunnetun Sointi Jazz Orchestran tulkitsemana. Jazzorkesteria täydentävät käyrätorvet ja perkussiot, jotka tuovat teokseen lisää syvyyttä ja väriä.</p><p>Koskisen musiikin ytimessä ovat kertomuksellisuus ja vahva melodinen ilmaisu. Hänen sävellyksensä ammentavat usein inspiraationsa runoudesta ja muista musiikin ulkopuolisista lähteistä. Tämä kuuluu myös Agatha-kokonaisuudessa, joka on saanut innoituksensa Koskista pitkään kiinnostaneesta Agatha Christien tuotannosta. Teoksessa yhdistyvät laulavat, toisiinsa punoutuvat melodiat ja hallittu harmoninen kaari. Lopputuloksena on musiikillinen maailma, joka luo voimakkaita, elokuvamaisia mielikuvia ja tunnelmia.</p><p>Sointi Jazz Orchestra on yksi Suomen kiinnostavimmista jazzorkestereista. Orkesteri tunnetaan tarkkaan kuratoiduista konserttikokonaisuuksistaan ja rohkeasta suhtautumisestaan uuteen musiikkiin. Orkesteri on toteuttanut lukuisia kantaesityksiä kotimaisin ja kansainvälisin solistein.</p><p>Kesto: 1 t 10 min</p>",
                "sv": "<p>Sointi Jazz Orchestra framför Kerkko Koskinens verk Agatha i sin ursprungliga omfattning!</p><p><b>Kerkko Koskinen</b>, känd som den musikaliska drivkraften bakom Ultra Bra, hade urpremiär för sitt första omfattande instrumentala verk <i>Agatha</i> för nästan 20 år sedan. Det filmiska verket kombinerar på ett fördomsfritt sätt jazz och klassisk musik och framförs nu av Sointi Jazz Orchestra, som är känd för sina mångsidiga framträdanden. Jazzorkestern kompletteras av valthorn och slagverk, som ger verket ytterligare djup och färg.</p><p>Kärnan i Koskinens musik är den berättande karaktären och det starka melodiska uttrycket. Hans kompositioner hämtar ofta inspiration från poesi och andra källor utanför musikens värld. Detta gäller också Agatha-helheten, som Agatha Christies författarskap, som Koski länge har varit intresserad av, gett inspiration till. Verket förenar sjungande, sammanflätade melodier och en välkontrollerad harmonisk utveckling. Resultatet är en musikalisk värld som skapar starka, filmiska bilder och stämningar.</p><p>Sointi Jazz Orchestra är en av Finlands intressantaste jazzorkestrar. Orkestern är känd för sina noggrant sammanställda konsertprogram och sin djärva inställning till ny musik. Orkestern har genomfört ett stort antal uruppföranden med både inhemska och internationella solister.</p><p>Längd: 1 h 10 min.</p>",
                "en": "<p>The Sointi Jazz Orchestra performs Kerkko Koskinen’s Agatha in its original length!</p><p>Known as the musical driving force behind Ultra Bra, <b>Kerkko Koskinen</b> premiered his first major instrumental work, <i>Agatha</i>, almost 20 years ago. This cinematic work, which blends jazz and classical music in an open-minded way, is now performed by Sointi Jazz Orchestra, renowned for its varied repertoire. The jazz orchestra is complemented by French horns and percussion, adding further depth and colour to the piece.</p><p>At the heart of Koskinen’s music lie narrative elements and strong melodic expression. His compositions often draw inspiration from poetry and other sources outside the realm of music. This is also evident in Agatha, which draws its inspiration from the works of Agatha Christie, as they have long fascinated Koskinen. The work combines singing, intertwining melodies and a carefully crafted harmonic progression. The end result is a musical world that evokes powerful, cinematic images and atmospheres.</p><p>Sointi Jazz Orchestra is one of Finland’s most interesting jazz orchestras. The orchestra is known for its carefully curated concert programmes and its bold approach to new music. The orchestra has staged numerous premieres featuring Finnish and international soloists.</p><p>Duration: 1 h 10 min</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68616/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68376",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-21466372",
                        "sv": "https://www.lippu.fi/event/name-21466372",
                        "en": "https://www.lippu.fi/event/name-21466372"
                    },
                    "description": null,
                    "price": {
                        "fi": "24 / 19 €",
                        "sv": "24 / 19 €",
                        "en": "24 / 19 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385206,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-17T07:14:20.701095Z",
                    "last_modified_time": "2026-06-17T07:14:20.701110Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787852.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385206/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-17T07:14:20.600388Z",
            "last_modified_time": "2026-07-21T06:14:35.642621Z",
            "date_published": null,
            "start_time": "2026-09-18T15:00:00Z",
            "end_time": "2026-09-18T16: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,
            "name": {
                "fi": "Uskomaton taikashow",
                "sv": "En otrolig magishow",
                "en": "The Incredible Magic Show"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Koko perheelle suunnattu Uskomaton Taikashow on jatkoa Taikuri Aatu Itkosen ja Mentalisti Jari Hynysen yhteistyölle taikuuden parissa.",
                "sv": "Den otroliga magishowen, som riktar sig till hela familjen, är en fortsättning på samarbetet mellan trollkarlen Aatu Itkonen och mentalisten Jari Hynynen inom magins värld.",
                "en": "Uskomaton taikashow (‘The Incredible Magic Show’), aimed at the whole family, is the latest product of the collaboration between magician Aatu Itkonen and mentalist Jari Hynynen."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4D7FA33FBBBD2D8363FC11937F481462/Uskomaton_taikashow",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4D7FA33FBBBD2D8363FC11937F481462/En_otrolig_magishow",
                "en": "http://www.kanneltalo.fi/en/events/event/4D7FA33FBBBD2D8363FC11937F481462/The_Incredible_Magic_Show"
            },
            "description": {
                "fi": "<p>Koko perheelle suunnattu Uskomaton Taikashow on jatkoa Taikuri Aatu Itkosen ja Mentalisti Jari Hynysen yhteistyölle taikuuden parissa.</p><p>Kaksikon reilu tunnin mittainen show on sekoitus taikuutta, mentalismia, illuusioita ja hulvattoman hauskaa komiikkaa.</p><p>Esitykseen on tuotu runsaasti show-elementtejä ja se on hiottu yhteen musiikin, sekä valojen kanssa. Nuoresta iästään huolimatta esiintyjäkaksikko on viihdyttänyt yleisöjä jo monien vuosien ajan aina lukemattomista tapahtumista televisioon asti. Tervetuloa mukaan taikuuden maailmaan.</p><p>Kesto 1 h<br>Kieli: suomi</p>",
                "sv": "<p>Den otroliga magishowen, som riktar sig till hela familjen, är en fortsättning på samarbetet mellan trollkarlen Aatu Itkonen och mentalisten Jari Hynynen inom magins värld.</p><p>Duons drygt en timme långa show är en blandning av magi, mentalism, illusioner och hejdlöst rolig komik.</p><p>Föreställningen innehåller många showinslag och har finslipats så att den harmonierar med musiken och ljussättningen. Trots sin unga ålder har duon underhållit publiken i många år redan, från otaliga evenemang till tv. Välkommen till magins värld.  <br> <br>Längd: 1 h</p><p>Språk: finska</p>",
                "en": "<p>Uskomaton taikashow (‘The Incredible Magic Show’), aimed at the whole family, is the latest product of the collaboration between magician Aatu Itkonen and mentalist Jari Hynynen.</p><p>Clocking in at just over an hour, the duo’s show is a mix of magic, mentalism, illusions and side-splitting comedy. The performance features a wealth of theatrical elements and has been seamlessly integrated with the music and lighting. Despite their young age, the duo have been entertaining audiences for many years now, from countless events right to television appearances. Join us in the world of magic!  <br> <br>Duration: 1 h</p><p>Language: Finnish</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68376/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}