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

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 ordering is descending order by -last_modified_time. 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&page=8&publisher_ancestor=ahjo%3A00001
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 10295,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=9&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=7&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:66413",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p16919/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1170381,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T08:13:55.819406Z",
                    "last_modified_time": "2025-07-03T08:13:55.819429Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774122.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1170381/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-03T08:13:55.726144Z",
            "last_modified_time": "2025-09-04T12:14:30.637175Z",
            "date_published": null,
            "start_time": "2025-11-29T08:00:00Z",
            "end_time": "2025-11-29T14: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jo perinteeksi muodostuneessa Malmitalon joulun perhepäivässä on luvassa paljon maksutonta ohjelmaa perheille: työpajoja, leffoja ja joulupukki!",
                "sv": "På julens familjedag i Malms kulturhus som redan blivit en tradition, utlovas många avgiftsfria program för familjer: verkstäder, filmer och jultomten!",
                "en": "The Malmitalo Christmas Family Day, which has already become a tradition, offers lots of free activities for families: workshops, films and Father Christmas!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5C45B4E6E31080EA273DCD1ACD964DBA/Joulun_perhepaiva",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5C45B4E6E31080EA273DCD1ACD964DBA/Joulun_perhepaiva",
                "en": "http://www.malmitalo.fi/en/events/event/5C45B4E6E31080EA273DCD1ACD964DBA/Joulun_perhepaiva"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Joulun perhepäivä",
                "sv": "Joulun perhepäivä",
                "en": "Joulun perhepäivä"
            },
            "description": {
                "fi": "<p>Jo perinteeksi muodostuneessa Malmitalon joulun perhepäivässä on luvassa paljon maksutonta ohjelmaa perheille: työpajoja, leffoja ja joulupukki!</p><p>On aika ottaa kevyt varaslähtö kohti joulun perherientoja ihastuttavan ja touhua täynnä olevan päivän myötä. Työpajoissa askarrellaan ja ilmaisissa elokuvanäytöksissä pääsee uppoutumaan Astrid Lindgrenin joulusatuja-elokuvan maailmaan. Lisätietoa työpajoista ja päivän aikatauluista tulee lähempänä joulua.</p><p>Vapaa pääsy!</p>",
                "sv": "<p>På julens familjedag i Malms kulturhus som redan blivit en tradition, utlovas många avgiftsfria program för familjer: verkstäder, filmer och jultomten!</p><p>Det är dags att göra en liten tjuvstart i julbestyren med den härliga dagen full av aktiviteter! I verkstäderna och gratis filmvisningar kan man fördjupa sig i Astrid Lindgrens film Jul med Astrid Lindgren. Mer information om verkstäderna och tidtabellerna för dagen kommer närmare julen.</p><p>Fritt inträde!</p>",
                "en": "<p>The Malmitalo Christmas Family Day, which has already become a tradition, offers lots of free activities for families: workshops, films and Father Christmas!</p><p>Enjoy an early start to Christmas family fun with this delightful day full of activities. In the workshops, participants get to do crafts, while the free film screenings will immerse the audience in the world of the film Astrid Lindgren's Christmas. More information about the workshops and the day's schedule will be provided closer to Christmas.</p><p>Free entry!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66413/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66414",
            "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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1232725,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-11T07:14:27.360443Z",
                    "last_modified_time": "2025-07-11T07:14:27.360460Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774127.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1232725/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-11T07:14:27.215736Z",
            "last_modified_time": "2025-09-04T12:14:30.124802Z",
            "date_published": null,
            "start_time": "2025-11-27T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Venetsian elokuvafestivaalilla lähes kymmenminuuttiset aplodit saaneen Maria-elokuvan on ohjannut palkittu Pablo Larraín, joka jatkaa elokuvallaan tunnettujen naisten kohtaloiden kuvaamista, elokuvien Spencer ja Jackie jälkeen.",
                "sv": "Filmen Maria, som fick en nästan tio minuters applåd på Venedigs filmfestival, är regisserad av den prisbelönta Pablo Larraín som med sin film fortsätter att filma kända kvinnors öden, efter filmerna Spencer och Jackie.",
                "en": "Maria, which received nearly ten minutes of applause at the Venice Film Festival, is directed by acclaimed filmmaker Pablo Larraín, who continues portraying the fates of well-known women following his films Spencer and Jackie."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/03760C14C9F9879F243AED915FE22D7A/Yleison_suosikit_Maria_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/03760C14C9F9879F243AED915FE22D7A/Publikens_favoriter_Maria_12_",
                "en": "http://www.malmitalo.fi/en/events/event/03760C14C9F9879F243AED915FE22D7A/Audience_Favourites_Maria_12"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Yleisön suosikit: Maria (12)",
                "sv": "Publikens favoriter: Maria (12)",
                "en": "Audience Favourites: Maria 12"
            },
            "description": {
                "fi": "<p>Venetsian elokuvafestivaalilla lähes kymmenminuuttiset aplodit saaneen Maria-elokuvan on ohjannut palkittu Pablo Larraín, joka jatkaa elokuvallaan tunnettujen naisten kohtaloiden kuvaamista, elokuvien Spencer ja Jackie jälkeen.</p><p>Oopperalaulaja Maria Callasista kertovan elokuvan pääosassa loistaa parhaan naispääosan Oscar-veikkauksiin jo noussut 49-vuotias Angelina Jolie, joka tekee täten näyttävän paluun valkokankaille.</p><p>1970-luvulla myrskyisän elämän elänyt näyttämöiden kuningatar Maria Callas viettää tietämättään Pariisissa viimeisiä vuosiaan. Sydämensä useasti rakkauden tähden särkenyt Callas menehtyi vain 53-vuotiaana.</p><p>Ikäraja: 12<br>Kesto: 2 t 3 min<br>Kieli: englanti, tekstitys suomi</p><p>Vapaa pääsy</p>",
                "sv": "<p>Filmen Maria, som fick en nästan tio minuters applåd på Venedigs filmfestival, är regisserad av den prisbelönta Pablo Larraín som med sin film fortsätter att filma kända kvinnors öden, efter filmerna Spencer och Jackie.</p><p>I huvudrollen som operasångerskan Maria Callas lyser 49-åriga Angelina Jolie, som har tippats bli Oscarvinnare för bästa kvinnliga huvudroll, och gör därmed en fantastisk comeback på filmduken.</p><p>På 1970-talet tillbringade scenernas drottning Maria Callas, som levde ett stormigt liv, sina sista år i Paris utan att veta om det. Callas, som ofta led av krossat hjärta, dog endast 53 år gammal.</p><p>Åldersgräns: 12<br>Längd: 2 timmar 3 minuter<br>Språk: engelska, undertexter på finska</p><p>Fritt inträde</p>",
                "en": "<p>Maria, which received nearly ten minutes of applause at the Venice Film Festival, is directed by acclaimed filmmaker Pablo Larraín, who continues portraying the fates of well-known women following his films Spencer and Jackie.</p><p>The lead role in the film about opera singer Maria Callas is played by the brilliant 49-year-old Angelina Jolie, who is already predicted to win the Actress in a Leading Role Oscar. With this role, she makes a striking return to the big screen.</p><p>In the 1970s, the queen of the stage Maria Callas, who had lived a tumultuous life, is unknowingly living her final years in Paris. Having had her heart broken many times for love, Callas died at the age of just 53.</p><p>Age limit: 12<br>Duration: 2 hours 3 min<br>Language: English, subtitled in Finnish</p><p>Free entry</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66414/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65979",
            "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/roots-musiikin-evoluutio-malmitalo-20117845/",
                        "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117845/",
                        "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117845/"
                    },
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1155486,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T11:12:38.050181Z",
                    "last_modified_time": "2025-07-01T11:12:38.050194Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769580.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155486/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T11:12:37.983819Z",
            "last_modified_time": "2025-09-04T12:14:29.909547Z",
            "date_published": null,
            "start_time": "2025-11-26T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Malmitalon Roots-musiikin evoluutio -sarja jatkuu! Vuorossa erikoiskonsertti Elvis Presleyn rokkaavan tuotannon tahdissa!",
                "sv": "Serien Roots-musiikin evoluutio i Malms kulturhus fortsätter! I tur står en specialkonsert med Elvis Presleys rockande produktion!",
                "en": "Malmitalo's Roots Music Evolution series continues! Next up is a special concert to the rocking tunes of Elvis Presley!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2EAC951895176DA5FC1BED4238F64273/WHISTLE_BAIT_-_PLAYS_60s_ELVIS_PRESLEY_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2EAC951895176DA5FC1BED4238F64273/WHISTLE_BAIT_-_PLAYS_60s_ELVIS_PRESLEY_",
                "en": "http://www.malmitalo.fi/en/events/event/2EAC951895176DA5FC1BED4238F64273/WHISTLE_BAIT_-_PLAYS_60s_ELVIS_PRESLEY_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "WHISTLE BAIT - PLAYS 60s ELVIS PRESLEY! – Roots-musiikin evoluutio vol. 13",
                "sv": "WHISTLE BAIT - PLAYS 60s ELVIS PRESLEY! – Roots-musiikin evoluutio vol. 13",
                "en": "WHISTLE BAIT - PLAYS 60s ELVIS PRESLEY! – The Evolution of Roots Music Vol. 13"
            },
            "description": {
                "fi": "<p>Malmitalon Roots-musiikin evoluutio -sarja jatkuu! Vuorossa erikoiskonsertti Elvis Presleyn rokkaavan tuotannon tahdissa!</p><p>Haminalaislähtöinen Whistle Bait on yksi maamme pitkäikäisimmistä rock-orkestereista. Viime vuonna yhtye juhli 40-vuotista taivaltaan ja on yhä voimissaan. 50–60-lukujen rock and rolliin musiikkinsa pohjaava bilejyrä tekee yli kymmenen vuoden tauon jälkeen paljon kiitosta saaneen ja kysytyn erikoiskonsertin keskittyen vain ja ainoastaan legendaarisen Elvis Presleyn 1960-luvun tuotantoon, painopisteen ollessa kuninkaan vähemmän livenä kuulluissa elokuvasävelissä! Tulossa siis Viva Las Vegas, Kissin' Cousins, Speedway ja muut helmet – ei viittoja ja saksipotkuja, vaan mahtavaa musiikkia!</p><p><b>Whistle Bait: </b><br>Vesa Haaja (laulu, kitara), Vesa Tynkkynen (kitara), Kim Drockila (koskettimet), Juho Hurskainen (saksofoni), Lasse Sirkko (basso), Juha Tynkkynen (rummut).</p><p>Kesto: 1 h 45 min, sis. 20 min väliajan</p>",
                "sv": "<p>Serien Roots-musiikin evoluutio i Malms kulturhus fortsätter! I tur står en specialkonsert med Elvis Presleys rockande produktion!</p><p>Whistle Bait från Fredrikshamn är en av de mest långlivade rockorkestrarna i vårt land. Förra året firade bandet 40-årsjubileum och de är fortfarande starka. Efter ett uppehåll på mer än tio år framför den 50- och 60-talsbaserade rock'n’roll partyvälten en mycket hyllad och efterfrågad specialkonsert som enbart fokuserar på den legendariska Elvis Presleys 1960-talsproduktion, med tonvikt på kungens mindre hörda live filmsljudspår! Viva Las Vegas, Kissin' Cousins, Speedway och andra pärlor utlovas alltså – inte mantlar och saxar, utan fantastisk musik!</p><p><b>Whistle Bait: </b><br>Vesa Haaja (sång, gitarr), Vesa Tynkkynen (gitarr), Kim Drockila (keyboard), Juho Hurskainen (saxofon), Lasse Sirkko (basgitarr), Juha Tynkkynen (trummor).</p><p>Längd: 1 timme 45 minuter, inklusive paus 20 minuter</p>",
                "en": "<p>Malmitalo's Roots Music Evolution series continues! Next up is a special concert to the rocking tunes of Elvis Presley!</p><p>Whistle Bait, originally from Hamina, are one of Finland's longest-running rock bands. Last year, the band celebrated their 40th anniversary and are still going strong. The party powerhouse, whose music is rooted in 50s and 60s rock'n'roll, are making a much-praised and in-demand special concert after a break of over ten years, focusing solely on the legendary Elvis Presley's 1960s output, with an emphasis on the King's lesser-heard movie songs! Coming up are Viva Las Vegas, Kissin' Cousins, Speedway and other gems – no capes or karate kicks, only magnificent music!</p><p><b>Whistle Bait: </b><br>Vesa Haaja (vocals, guitar), Vesa Tynkkynen (guitar), Kim Drockila (keyboard), Juho Hurskainen (saxophone), Lasse Sirkko (bass), Juha Tynkkynen (drums).</p><p>Duration: 1 hour 45 min, incl. a 20-min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65979/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66096",
            "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/malmin-mieslaulajat-malmitalo-19357848/",
                        "sv": "https://www.lippu.fi/event/malmin-mieslaulajat-malmitalo-19357848/",
                        "en": "https://www.lippu.fi/event/malmin-mieslaulajat-malmitalo-19357848/"
                    },
                    "price": {
                        "fi": "19,80 €",
                        "sv": "19,80 €",
                        "en": "19,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178020,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T07:13:54.796610Z",
                    "last_modified_time": "2025-07-04T07:13:54.796626Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771481.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178020/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T07:13:54.700317Z",
            "last_modified_time": "2025-09-04T12:14:12.500906Z",
            "date_published": null,
            "start_time": "2025-09-16T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Malmin mieslaulajat viettävät syntymäpäiviään upealla juhlakonsertilla Malmitalossa.",
                "sv": "Malmin Mieslaulajat firar sin födelsedag med en fantastisk festkonsert i Malms kulturhus.",
                "en": "The male choir Malmin Mieslaulajat celebrate their anniversary with a spectacular gala concert at Malmitalo."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DF475212D0C4E7D6FC6A1CB1C87682CF/PERUUNTUNUT_Malmin_mieslaulajat_80-vuotisjuhlakonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DF475212D0C4E7D6FC6A1CB1C87682CF/INSTALLT_Malmin_Mieslaulajat_80-arsjubileumskonsert",
                "en": "http://www.malmitalo.fi/en/events/event/DF475212D0C4E7D6FC6A1CB1C87682CF/CANCELLED_Malmin_Mieslaulajat_Choir_80th_Anniversary_Concert"
            },
            "location_extra_info": null,
            "name": {
                "fi": "PERUUNTUNUT Malmin mieslaulajat: 80-vuotisjuhlakonsertti",
                "sv": "INSTÄLLT Malmin Mieslaulajat: 80-årsjubileumskonsert",
                "en": "CANCELLED Malmin Mieslaulajat Choir: 80th Anniversary Concert"
            },
            "description": {
                "fi": "<p>Malmin mieslaulajat viettävät syntymäpäiviään upealla juhlakonsertilla Malmitalossa.</p>",
                "sv": "<p>Malmin Mieslaulajat firar sin födelsedag med en fantastisk festkonsert i Malms kulturhus.</p>",
                "en": "<p>The male choir Malmin Mieslaulajat celebrate their anniversary with a spectacular gala concert at Malmitalo.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66096/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66410",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/",
                        "sv": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/",
                        "en": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/"
                    },
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1227260,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T14:13:03.296490Z",
                    "last_modified_time": "2025-07-10T14:13:03.296502Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774102.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1227260/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-10T14:13:03.245419Z",
            "last_modified_time": "2025-09-04T11:14:23.485582Z",
            "date_published": null,
            "start_time": "2025-11-22T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suuren suosion saavuttanut lastenmusiikkiyhtye Henna ja Supersankarit esittää uutta rytmimusiikkipohjaista lastenmusiikkia!",
                "sv": "Den omåttligt populära barnmusikgruppen Henna och superhjältarna framför ny rytmbaserad barnmusik!",
                "en": "The hugely popular children's music group Henna ja Supersankarit perform new rhythm-based children's music."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CBE8877B5B813BD9810E44D22848B06F/Henna_ja_Supersankarit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CBE8877B5B813BD9810E44D22848B06F/Henna_och_superhjaltarna",
                "en": "http://www.malmitalo.fi/en/events/event/CBE8877B5B813BD9810E44D22848B06F/Henna_and_Superheroes_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Henna ja Supersankarit",
                "sv": "Henna och superhjältarna",
                "en": "Henna and Superheroes"
            },
            "description": {
                "fi": "<p>Suuren suosion saavuttanut lastenmusiikkiyhtye Henna ja Supersankarit esittää uutta rytmimusiikkipohjaista lastenmusiikkia!</p><p>Hennan ja Supersankareiden musiikki innostaa kaikenikäiset kuulijat lauluun, tanssiin, leikkiin ja nauruun! Konserteissa on voimassa voimakas Hyväntuulen varoitus!</p><p>Riemukkaassa Malmitalon lastenkonsertissa matkustetaan Ystävyyden saarelle, jossa juhlitaan ystävyyttä sekä ihanaa luontoa.</p><p>Yhtyeen kappaleita pääsee joraamaan mm. Spotifystä sekä Henna ja Supersankareiden Youtube-kanavalta, joka on kerännyt lyhyessä ajassa yli 100 000 katselukertaa!  <br>Henna ja Supersankareiden lauluja on voinut kuulla Pikku Kakkosen televisioiduissa lastenkonserteissa sekä Yle Areenasta löytyvistä musiikkipodcasteista!</p><p>Yhtye on ollut ehdolla Lastenmusiikin Jellonagaalassa useissa kategorioissa: Vuoden Tulokas, Vuoden Yhtye, Vuoden Lastenmusiikkialbumi, Vuoden Lastenlaulu ja Vuoden Lastenmusiikintekijä!</p><p><b>Malmitalolla lavalle nousevat:</b><br>Henna-Maija Kuki, laulu ja harmonikka <br>Susanna Lukkarinen, taustalaulu ja piano  <br>Alina Kivivuori, taustalaulu ja viulu <br>Teemu Keränen, basso <br>Teemu Eronen, rummut</p><p>Kesto: n. 35 min</p>",
                "sv": "<p>Den omåttligt populära barnmusikgruppen Henna och superhjältarna framför ny rytmbaserad barnmusik!</p><p>Henna och superhjältarnas musik inspirerar lyssnare i alla åldrar till sång, dans, lek och skratt! Konserterna har en stark varning för gott humör!</p><p>På den glada barnkonserten i Malms kulturhus reser vi till Vänskapsön, där vi hyllar vänskap och naturens skönhet.</p><p>Du kan lyssna på bandets låtar på Spotify och Henna och superhjältarnas Youtube-kanal, som på kort tid har haft över 100 000 visningar!  <br>Henna och superhjältarnas sånger har kunnat höras i barnkonserterna som sänts i Pikku Kakkonen och i musikpodcasterna som finns på Yle Arenan.</p><p>Bandet har nominerats i flera kategorier i barnmusik på Jellonagalan: Årets nykomling, Årets band, Årets barnmusikalbum, Årets barnlåt och Årets barnmusikskapare!</p><p><b>På scenen i Malms kulturhus uppträder:</b><br>Henna-Maija Kuki, sång och dragspel <br>Susanna Lukkarinen, bakgrundssång och piano  <br>Alina Kivivuori, bakgrundssång och violin <br>Teemu Keränen, kontrabas <br>Teemu Eronen, trummor</p>",
                "en": "<p>The hugely popular children's music group Henna ja Supersankarit perform new rhythm-based children's music.</p><p>Henna and Supersankarit's music inspires listeners of all ages to sing, dance, play and laugh. A strong Good Mood Warning is in effect at the concerts!</p><p>In the joyful children's concert at Malmitalo, the audience will travel to the Island of Friendship, where friendships and wonderful nature are celebrated.</p><p>The band's songs can be danced to on Spotify and on Henna ja Supersankarit's YouTube channel, which has gathered over 100,000 views in a short time!  <br>Henna ja Supersankarit's songs have also been heard in televised children's concerts on Pikku Kakkonen and music podcasts available on Yle Areena.</p><p>The band have been nominated in several categories at the Jellona gala for children's music: Newcomer of the Year, Band of the Year, Children's Music Album of the Year, Children's Song of the Year and Children's Music Creator of the Year!</p><p><b>On stage at Malmitalo:</b><br>Henna-Maija Kuki: vocals and accordion <br>Susanna Lukkarinen: background vocals and piano  <br>Alina Kivivuori: background vocals and violin <br>Teemu Keränen: bass <br>Teemu Eronen: drums</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66410/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66073",
            "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/topi-saha-ylva-haru-malmitalo-20296422/",
                        "sv": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/",
                        "en": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/"
                    },
                    "price": {
                        "fi": "29,90 € / 24,80 €",
                        "sv": "29,90 € / 24,80 €",
                        "en": "29,90 € / 24,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1227259,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T14:13:03.082209Z",
                    "last_modified_time": "2025-07-10T14:13:03.082221Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771408.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1227259/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-10T14:13:03.009351Z",
            "last_modified_time": "2025-09-04T11:14:23.294476Z",
            "date_published": null,
            "start_time": "2025-11-21T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Arvostetut lauluntekijät Topi Saha ja Ylva Haru yhdistävät jälleen voimansa intiimin ja ainutlaatuisen Kipinöitä II -yhteiskiertueen merkeissä.",
                "sv": "De hyllade låtskrivarna Topi Saha och Ylva Haru återförenas i den intima och unika gemensamma turnén Kipinöitä II.",
                "en": "Renowned songwriters Topi Saha and Ylva Haru are joining forces again for the intimate and unique Kipinöitä II co-tour."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_Ylva_Haru_Kipinoita_II_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_och_Ylva_Haru_Kipinoita_II_",
                "en": "http://www.malmitalo.fi/en/events/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_Ylva_Haru_Kipinoita_II_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Topi Saha & Ylva Haru: Kipinöitä II",
                "sv": "Topi Saha och Ylva Haru: Kipinöitä II",
                "en": "Topi Saha & Ylva Haru: Kipinöitä II"
            },
            "description": {
                "fi": "<p>Arvostetut lauluntekijät Topi Saha ja Ylva Haru yhdistävät jälleen voimansa intiimin ja ainutlaatuisen Kipinöitä II -yhteiskiertueen merkeissä.</p><p>Tarina saa jatkoa viiden vuoden takaisesta Kipinöitä-konseptista, jossa taiteilijat esittivät yhdessä toistensa kappaleita duettomuodossa.</p><p>Tulevilla keikoilla kuullaan taiteilijoiden omaa tuotantoa – uutta ja vanhaa – yksin ja yhdessä: illan aikana on luvassa niin uudet soolokattaukset kuin myöskin duettomuotoinen yhteissetti, jossa lauluntekijät esittävät vanhojen suosikkien lisäksi ennen kuulemattomia lauluja tulevilta albumeiltaan.</p><p>”Ylva Haru on paitsi lempilauluntekijäni myös rakas ystäväni. Muutama vuosi sitten aloitimme yhteiskiertueen, jonka pandemia harmillisesti katkaisi. Tuolloin löysimme nopeasti yhteisen sävelen, ja on ihanaa viimein jatkaa siitä mihin jäimme”, kertoo Topi Saha.</p><p>”On suuri ilo saada jälleen soida rakkaan ja lahjakkaan ystäväni kanssa! Topi on kuin sielunveli, niin ihmisenä kuin myös soitannollisesti ja laulullisesti. Tuntuu antoisalta ja luontevalta jatkaa kappaleiden versioimista yhdessä”, kommentoi Ylva Haru.</p><p>Topi Sahan musiikkia on kuvailtu haikeaksi, kaihoisaksi ja surumieliseksi. Omasta mielestään hän on väärinymmärretty humoristi. Sahan odotettu viides sooloalbumi <i>Öitä</i> ilmestyi tammikuussa 2025.</p><p>Vahvoista melodioista ja pohtivista, runomaisista teksteistä kiitelty Ylva Haru työstää parhaillaan uutta albumia. Intiimeillä keikoilla on mahdollisuus päästä syvemmälle herkän ytimen ääreen, kun laulut soivat kaikkein riisutuimmassa muodossa.</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>",
                "sv": "<p>De hyllade låtskrivarna Topi Saha och Ylva Haru återförenas i den intima och unika gemensamma turnén Kipinöitä II.</p><p>Berättelserna i konceptet Kipinöitä fem år sedan, där konstnärerna tillsammans framförde varandras låtar i duettformfrån, får en fortsättning.</p><p>På de kommande spelningarna får vi höra konstnärernas egen produktion – nytt och gammalt – ensamma och tillsammans. Under kvällen utlovas både nya solon och ett gemensamt duettset där låtskrivarna förutom gamla favoriter framför ohörda låtar från sina kommande album.</p><p>”Ylva Haru är inte bara min favoritlåtskrivare utan också en kär vän. För några år sedan inledde vi en gemensam turné, som tyvärr avbröts av pandemin. Vi hittade snabbt en gemensam melodi då, och det är fantastiskt att äntligen få fortsätta där vi slutade”, säger Topi Saha.</p><p>”Det är ett stort nöje att få spela med min kära och begåvade vän igen! Topi är som en själsfrände, både som människa och när det gäller hans musik och sång. Det känns givande och naturligt att fortsätta att arbeta med versioner av låtarna tillsammans”, säger Ylva Haru.</p><p>Topi Sahas musik har beskrivits som längtansfull, vemodig och sorglig. Enligt min uppfattning är han en missförstådd humorist. Sahas efterlängtade femte soloalbum <i>Öitä</i> släpptes i januari 2025.</p><p>Ylva Haru, som hyllas för sina starka melodier och reflekterande, poetiska texter, arbetar för närvarande på ett nytt album. De intima spelningarna är en chans att komma djupare in i den känsliga kärnan, när sångerna hörs i sin mest avskalade form.</p><p>Längd: 2 timmar inklusive paus 20 minuter</p>",
                "en": "<p>Renowned songwriters Topi Saha and Ylva Haru are joining forces again for the intimate and unique Kipinöitä II co-tour.</p><p>The story continues from the Kipinöitä concept five years ago, where the artists performed each other's songs as duets.</p><p>At the upcoming shows, audiences will hear the artists' own work – both new and old – performed solo and together: the evening will feature new solo sets as well as a duet set, where the songwriters perform both old favourites as well as previously unheard songs from their upcoming albums.</p><p>\"Ylva Haru is not only my favourite songwriter but also a dear friend. A few years ago, we started a joint tour, which was unfortunately interrupted by the pandemic. At that time, we quickly found common ground, and it is wonderful to finally continue from where we left off,\" says Topi Saha.</p><p>\"It is a great pleasure to play again with my dear and talented friend! Topi is like a soulmate, both as a person and musically and vocally. It feels rewarding and natural to continue interpreting songs together,\" says Ylva Haru.</p><p>Topi Saha's music has been described as wistful and melancholic. In his own view, he is a misunderstood humourist. Saha's highly anticipated fifth solo album Öitä was released in January 2025.</p><p>Praised for her strong melodies and reflective, poetic lyrics, Ylva Haru is currently working on a new album. The intimate concerts provide an opportunity to get closer to the sensitive core, as the songs are performed in their most stripped-down form.</p><p>Duration: 2 hours, incl. a 20-min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66073/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66409",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1170048,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T07:22:42.389801Z",
                    "last_modified_time": "2025-07-03T07:22:42.389817Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774100.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1170048/?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": "2025-07-03T07:22:42.246101Z",
            "last_modified_time": "2025-09-04T11:14:22.239512Z",
            "date_published": null,
            "start_time": "2025-11-18T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nuoren sisäisen maailman raivoa ja rakkauden kaipuuta kuvaava Uhma on ravisteleva draama uusioperheessään kipuilevasta Vilmasta (Ona Huczkowski), joka päätyy nuorisokotiin.",
                "sv": "Uhma, som skildrar den ungas inre värld av raseri och längtan efter kärlek, är ett omskakande drama om bonusfamiljens smärtfyllda Vilma (Ona Huczkowski), som hamnar på ett ungdomshem.",
                "en": "Defiant is a gripping drama about the inner fury and longing for love of Vilma (Ona Huczkowski), a troubled teen from a blended family who ends up in a youth home."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/494A6499F4693415CCDC48DA2F63EEA9/Jassari-leffa_Uhma_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/494A6499F4693415CCDC48DA2F63EEA9/Jassari-film_Uhma_12_",
                "en": "http://www.malmitalo.fi/en/events/event/494A6499F4693415CCDC48DA2F63EEA9/Jassari_Film_Defiant_12_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jässäri-leffa: Uhma (12) – Valtuusto 150v",
                "sv": "Jässäri-film: Uhma (12) – Valtuusto 150v",
                "en": "Jässäri Film: Defiant (12) – Valtuusto 150v"
            },
            "description": {
                "fi": "<p>Nuoren sisäisen maailman raivoa ja rakkauden kaipuuta kuvaava Uhma on ravisteleva draama uusioperheessään kipuilevasta Vilmasta (Ona Huczkowski), joka päätyy nuorisokotiin.</p><p>Laitosta johtaa ankaraotteinen henkilökunta (mm. Kati Outinen), jonka mielivaltaisen kohtelun nujertamaksi sisukas Vilma ei suostu. Löytyykö muuta ratkaisua kuin ottaa hatkat, ja kuka on lopulta luottamuksen arvoinen? Elokuva ammentaa yksittäisten nuorten tosipohjaisista tarinoista.</p><p>Elokuvanäytös on suunnattu ainoastaan yli 12-vuotiaille nuorille, joilla on Jässäri-kortti.</p><p>Kesto: 1 t 33 min<br>Ikäraja: 12</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20296574/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>Uhma, som skildrar den ungas inre värld av raseri och längtan efter kärlek, är ett omskakande drama om bonusfamiljens smärtfyllda Vilma (Ona Huczkowski), som hamnar på ett ungdomshem.</p><p>Inrättningen leds av en sträng personal (bl.a. Kati Outinen) med egenmäktiga och stränga metoder som tuffa Vilma vägrar att låta sig kuvas av. Finns det någon annan lösning än att rymma, och vem är egentligen värd ens förtroende? Filmen bygger på enskilda ungdomars berättelser från verkliga livet.</p><p>Filmvisningen riktar sig endast till ungdomar över 12 år som har Jässari-kortet.</p><p>Längd: 1 timme 33 minuter<br>Åldersgräns: 12<br><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025! <br>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20296574/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>Defiant is a gripping drama about the inner fury and longing for love of Vilma (Ona Huczkowski), a troubled teen from a blended family who ends up in a youth home.</p><p>The institution is run by strict staff (including Kati Outinen), whose arbitrary treatment the feisty Vilma refuses to submit to. Is there any solution other than running away, and who can ultimately be trusted? The film draws from real-life stories of individual young people.</p><p>The screening is only intended for young people over 12 years of age who have a Jässäri card.</p><p>Duration: 1 hour 33 min<br>Age limit: 12<br><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20296574/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66409/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65966",
            "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/malmijazz-aki-rissanen-trio-malmitalo-20120688/",
                        "sv": "https://www.lippu.fi/event/malmijazz-aki-rissanen-trio-malmitalo-20120688/",
                        "en": "https://www.lippu.fi/event/malmijazz-aki-rissanen-trio-malmitalo-20120688/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1154485,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T08:13:47.479192Z",
                    "last_modified_time": "2025-07-01T08:13:47.479209Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769562.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154485/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T08:13:47.358755Z",
            "last_modified_time": "2025-09-04T10:14:14.553179Z",
            "date_published": null,
            "start_time": "2025-11-13T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Omaleimainen ja palkittu Aki Rissanen Trio on yksi maamme menestyneimmistä jazzyhtyeistä.",
                "sv": "Den särpräglade och prisbelönta Aki Rissanen Trio är ett av vårt lands mest framgångsrika jazzband.",
                "en": "The distinctive and award-winning Aki Rissanen Trio are one of Finland's most successful jazz ensembles."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EFBF43E41943C03D002C89847184B5B2/Aki_Rissanen_Trio_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EFBF43E41943C03D002C89847184B5B2/Aki_Rissanen_Trio_",
                "en": "http://www.malmitalo.fi/en/events/event/EFBF43E41943C03D002C89847184B5B2/Aki_Rissanen_Trio_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Aki Rissanen Trio – MalmiJazz",
                "sv": "Aki Rissanen Trio – MalmiJazz",
                "en": "Aki Rissanen Trio – MalmiJazz"
            },
            "description": {
                "fi": "<p>Omaleimainen ja palkittu Aki Rissanen Trio on yksi maamme menestyneimmistä jazzyhtyeistä.</p><p>Brittiläisen Edition Recordsin julkaisemat neljä levyä (Amorandom, 2016; Another North, 2017; Art In Motion,  2019 ja Trio Live, 2022) ovat olleet vahva voimannäyttö yhtyeen kyvyistä ja tuoneet pianisti Aki Rissaselle kansainvälisen läpimurron. Debyyttilevy Amorandom voitti parhaan jazzlevyn Emma-palkinnon vuonna 2017, ja Art In Motion valittiin Helsingin Sanomien kahden parhaan jazzlevyn joukkoon ja sai Editor’s Pick maininnan Yhdysvaltojen merkittävimmässä jazzlehdessä Downbeatissa vuonna 2019. <br> <br>Nyt uuden levyn myötä ja kolmen vuoden tauon jälkeen keikoille palaa entistä vahvemmin yhteen hitsautunut trio, jonka soittoa on kuvailtu omaleimaisen erottuvaksi ja kunnianhimoiseksi. Rissasen oma tuntemus vahvistaa arviot: “Uuden materiaalin harjoittelu on osoittanut, että soundimme erottuu entistä enemmän muista yhtyeistä. Vaikka trio kantaakin nimeäni, Antin ja Tepon panos soundiin on ollut merkittävä. On mahtava huomata, että bändillä on aina jotakin uutta sanottavaa.” <br> <br>Trion uusin levy Imaginary Mountains julkaistaan kesäkuussa 2025. <br> <br><b>Kokoonpano </b><br>Aki Rissanen, piano <br>Antti Lötjönen, basso <br>Teppo Mäkynen, rummut <br> <br>Kesto: 1 h 40 min, sis. 20 min väliajan</p>",
                "sv": "<p>Den särpräglade och prisbelönta Aki Rissanen Trio är ett av vårt lands mest framgångsrika jazzband.</p><p>De fyra album som släppts av det brittiska skivbolaget Edition Records (Amorandom, 2016; Another North, 2017; Art In Motion, 2019 och Trio Live, 2022) har varit en stark uppvisning av bandets talanger och har gett pianisten Aki Rissanen ett internationellt genombrott. Hans debutalbum Amorandom vann Emma Award för bästa jazzalbum 2017, Art In Motion valdes som ett av de två bästa jazzalbumen av Helsingin Sanomat och han fick en Editor's Pick i Downbeat 2019, en av de viktigaste amerikanska jazztidskrifterna. <br> <br>Nu, med den nya skivan och efter ett uppehåll på tre år, återvänder en ännu starkare <br>sammansvetsad trio, vars spelningar har beskrivits som särpräglade och <br>ambitiösa. Rissanens egen känslor bekräftar recensionerna: ”Övningarna i det nya materialet har visat att vårt sound allt mer skiljer sig från andra band. Även om trion bär mitt namn har Antti och Tepos bidrag till soundet varit betydande. Det är fantastiskt att se att bandet alltid har något nytt att säga.” <br> <br>Trions senaste album Imaginary Mountains släpptes i juni 2025. <br> <br><b>Sammansättning: </b><br>Aki Rissanen, piano <br>Antti Lötjönen, kontrabas <br>Teppo Mäkynen, trummor <br> <br>Längd: 1 timme 40 minuter, inklusive paus 20 minuter</p>",
                "en": "<p>The distinctive and award-winning Aki Rissanen Trio are one of Finland's most successful jazz ensembles.</p><p>The four albums released by the British label Edition Records (Amorandom, 2016; Another North, 2017; Art In Motion, 2019; and Trio Live, 2022) have been a powerful showcase of the trio's talent and have led pianist Aki Rissanen to an international breakthrough. The debut album Amorandom won the Emma Award for Best Jazz Album in 2017, while Art In Motion was selected as one of the two best jazz albums by Helsingin Sanomat and received an Editor's Pick mention in the most prominent US jazz magazine, Downbeat, in 2019. <br> <br>Now, with a new album and after a three-year break, the tight-knit trio, whose playing has been described as uniquely distinctive and ambitious, <br>return to the stage <br>stronger than ever. Rissanen's own thoughts confirm the assessments: \"Rehearsing the new material has shown that our sound stands out more than ever from other bands. Even though the trio bears my name, Antti's and Teppo's contribution to the sound has been significant. It is amazing to see that the band always has something new to say.\" <br> <br>The trio's latest album, Imaginary Mountains, will be released in June 2025. <br> <br><b>Line-up: </b><br>Aki Rissanen: piano <br>Antti Lötjönen: bass <br>Teppo Mäkynen: drums<br> <br>Duration: 1 hour 40 min, incl. a 20-min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65966/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66124",
            "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/malmijazz-etnosoi-trio-raulin-fr-bekkas-mar-biayenda-cg-malmitalo-20243041/",
                        "sv": "https://www.lippu.fi/event/malmijazz-etnosoi-trio-raulin-fr-bekkas-mar-biayenda-cg-malmitalo-20243041/",
                        "en": "https://www.lippu.fi/event/malmijazz-etnosoi-trio-raulin-fr-bekkas-mar-biayenda-cg-malmitalo-20243041/"
                    },
                    "price": {
                        "fi": "20€ / 15 €",
                        "sv": "20€ / 15 €",
                        "en": "20€ / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1154484,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T08:13:46.535276Z",
                    "last_modified_time": "2025-07-01T08:13:46.535292Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772217.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154484/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T08:13:46.377647Z",
            "last_modified_time": "2025-09-04T10:14:12.695567Z",
            "date_published": null,
            "start_time": "2025-11-03T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jazzin, gnawan ja Keski-Afrikan vastustamaton fuusio.",
                "sv": "En oemotståndlig fusion av jazz, gnawa och Centralafrika.",
                "en": "An irresistible fusion of jazz, Gnawa and Central African music."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F72B29101EF77A33C7816C4BE69B75AE/Trio_Raulin_-_Bekkas_-_Biayenda_FR-MAR-CG_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F72B29101EF77A33C7816C4BE69B75AE/Trio_Raulin_-_Bekkas_-_Biayenda_FR-MAR-CG_",
                "en": "http://www.malmitalo.fi/en/events/event/F72B29101EF77A33C7816C4BE69B75AE/Trio_Raulin_-_Bekkas_-_Biayenda_FR-MAR-CG_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Trio Raulin - Bekkas - Biayenda (FR-MAR-CG) – MalmiJazz & Etnosoi!",
                "sv": "Trio Raulin - Bekkas - Biayenda (FR-MAR-CG) – MalmiJazz & Etnosoi!",
                "en": "Trio Raulin - Bekkas - Biayenda (FR-MAR-CG) – MalmiJazz & Etnosoi!"
            },
            "description": {
                "fi": "<p>Jazzin, gnawan ja Keski-Afrikan vastustamaton fuusio.</p><p>Malmisalin Lavalle astuu kolme mestaria, jotka yhdistävät voimansa tutkiskelemalla yhteisiä kulttuuripiirteitään ja leikkimällä taustojensa eroilla. Tämän veljeskunnan käsissä jazzpianismi tanssittaa moninaisin kuvioin, hypnoottinen gnawa-transsi hurmaa laulullaan ja guembri-bassollaan ja Kongon polyrytmisestä perinteestä vapautuu vastustamaton syke.</p><p>Trio Raulin-Bekkas-Biayenda sai alkunsa 2018 Ranskassa arvostetulla Les détours de Babel -festivaalilla ja on sen jälkeen menestyksekkäästi kiertänyt Keski-Eurooppaa ja Marokkoa.</p><p>Pianisti-säveltäjä Francois Raulin (1956) on pitkän linjan muusikko, joka on ollut mukana vaikuttamassa uuden ranskalaisen jazz-skenen syntyyn 80-luvulla. Ranskan Alpeilta kotoisin oleva Raulin tuli tunnetuksi yhteistyöstään klarinetisti Louis Sclavisin kanssa, jonka kanssa kiersi ahkerasti Eurooppaa. Hän on yksi Grenoblessa sijaitsevan La Forge -muusikoiden kollektiivin perustajajäsen. Raulin on hionut kykyään yhdistää jazz ja improvisaatio kansanmusiikkiin, nykymusiikkivaikutteita unohtamatta, luodakseen vaikuttavia poikkitaiteellisia projekteja elokuvan, teatterin ja sarjakuvan kanssa. Lähes kaikilla mantereilla esiintynyt pianisti on vuosien varrella kehittänyt oman suhteen afrikkalaiseen musiikkiin.</p><p>Marokkolainen Majid Bekkas (s. 1957) on guembrin taitaja. Guembri on pitkäkaulainen, kolmikielinen bassoluuttu, jota orjien jälkeläisistä polveutuvat pohjoisafrikkalaiset gnawat käyttävät usein omassa spirituaalisessa musiikissaan ja seremonioissaan. Perinteen ja modernin puolessa välissä Bekkas yhdistelee gnawa-musiikkia ja afro-amerikkalaista bluesia. Hän on myös Rabatin konservatorion opettaja ja Festival Jazz au Chellah de Rabatin taiteellinen johtaja vuodesta 1996. Tämä monipuolinen taiteilija sai arabiankielisen kulttuurin tärkeimpiin palkintoihin kuuluvan Al Farabi -palkinnon vuoden 2010 lopussa. Bekkas teki näyttävän Suomen debyyttinsä Tampere Jazz Happeningissa 2021 Magic Spirit Quartetin kanssa, jossa hänen lisäkseen soittavat tanskalainen rumpali Stefan Pasborg , ruotsalainen kosketinsoittaja Jesper Nordenström ja ruotsalainen trumpetisti Goran Kajfeš.</p><p>Kongon Brazzavillessä syntynyt rumpali, lyömäsoittaja ja säveltäjä Emile Biayenda perusti vuonna 1991 Brazzavillen kaupunginosien nuorille kongolaisille suunnatun koulutustyöpajan, josta sai alkunsa kuuluisa yhtye Les tambours de Brazza. Hän on sovittanut perinteisiä ngoma-rummun rytmejä sekä B’aaaka-pygmien perinnettä omaan persoonalliseen soittoonsa. Hän on kiertänyt ympäri maailmaa ja tehnyt levytyksiä joillekin Afrikan johtaville pop-artisteille, kuten Ray Lema, Rokia Traoré.... Biayenda on asunut Ranskassa vuodesta 1993 lähtien ja soittanut lukuisten eri artistien kanssa. Hän on yhtä lailla kotonaan afrikkalaisessa perinteessä kuin eurooppalaisessa improvisoidussa musiikissa. Hän on aiemmin kiertänyt Suomea pianisti Benoît Delbecqin triossa vuosina 2012 ja 2018 ja yhteistyö tämän arvostetun ranskalaispianistin kanssa kukoistaa edelleen.</p><p>Konsertin tuotanto: Malmitalo<br>Kiertueen tuotanto: Vapaat äänet, La Forge<br>Kiertuetta tukevat AJC, Spedidam<br>Yhteistyökumppani: Etnosoi!, Kumu drums</p><p>Kesto: 1 h 15 min</p>",
                "sv": "<p>En oemotståndlig fusion av jazz, gnawa och Centralafrika.</p><p>Tre mästare intar scenen i salen i Malms kulturhus och förenar sina krafter genom att utforska sina gemensamma kulturdrag och leka med skillnaderna i bakgrunderna. I händerna på detta brödraskap dansar jazzpianismen i många olika mönster, den hypnotiska gnawa-transen charmar med sin sång och guembri-bas och den kongolesiska polyrytmen frigör en oemotståndlig puls.<br>Trio Raulin–Bekkas–Biayenda fick sin början 2018 i Frankrike med den prestigefyllda festivalen Les détours de Babel och har sedan dess turnerat framgångsrikt i Centraleuropa och Marocko.</p><p>Pianisten och kompositören Francois Raulin (1956) är en väletablerad musiker som deltog i att påverka den nya franska jazzscenen på 1980-talet. Raulin, som kommer från de franska Alperna, blev känd för sitt samarbete med klarinettisten Louis Sclavis som han turnerade flitigt med i Europa. Han är en av grundarmedlemmarna av det Grenoble-baserade musikerkollektivet La Forge. Raulin har finslipat sin förmåga att kombinera jazz och improvisation med folkmusik, utan att glömma nutida musikinfluenser, för att skapa gripande tvärkonstnärliga projekt med film, teater och serier. Pianisten som uppträtt på nästan alla kontinenter har genom åren utvecklat ett eget förhållande till afrikansk musik.</p><p>Majid Bekkas (f. 1957) från Marocko är en guembri-konstnär. Guembri är en långhalsad, tresträngad basluta som nordafrikanska gnawaer, som härstammar från slavarnas ättlingar, ofta använder i sin egen spirituella musik och i ceremonier. Halvvägs mellan det traditionella och det moderna kombinerar Bekkas gnawamusik och afro-amerikansk blues. Han är också lärare vid konservatoriet i Rabat och har varit konstnärlig ledare för Festival Jazz au Chellah de Rabat sedan 1996. Denna mångsidiga konstnär tilldelades Al Farabi-priset, ett av de främsta priserna inom arabisk kultur, i slutet av 2010. Bekkas gjorde sin imponerade finländska debut i Tammerfors Jazz Happening 2021 med Magic Spirit Quartet, där han spelar tillsammans med trumslagaren Stefan Pasborg från Danmark samt keyboardisten Jesper Nordenström och Goran Kajfeš från Sverige.</p><p>Trumslagaren, slagverkaren och kompositören Emile Biayenda, född i Brazzaville i Kongo, grundade 1991 en utbildningsworkshop för unga kongoleser i stadsdelarna i Brazzaville, där det berömda bandet Les tambours de Brazza fick sin början. Han har anpassat traditionella ngoma-trumrytmer och B'aaaka-pygméernas tradition till sin egen personliga spelstil. Han har turnerat världen över och gjort skivinspelningar för några av Afrikas ledande popartister som Ray Lema, Rokia Traoré... Biayenda har bott i Frankrike sedan 1993 och har spelat med en mängd olika artister. Han känner sig lika hemma inom den afrikanska traditionen som inom den europeiska improvisationsmusiken. Han har tidigare turnerat i Finland med pianisten Benoît Delbecqs trio 2012 och 2018, och samarbetet med denna uppskattade franska pianist blomstrar fortsättningsvis.</p><p>Konsertproduktion: Malms kulturhus<br>Turnéproduktion: Vapaat äänet, La Forge<br>Turnén stöds av AJC, Spedidam<br>Samarbetspartner: Etnosoi!, Kumu drums</p>",
                "en": "<p>An irresistible fusion of jazz, Gnawa and Central African music.</p><p>Three masters take the stage at Malmisali, combining their strengths by exploring shared cultural traits and playfully contrasting their differing backgrounds. In the hands of this brotherhood, the jazz piano dances in intricate patterns, hypnotic Gnawa trance enchants with its singing and guembri bass, and the polyrhythmic tradition of Congo unleashes an irresistible beat.<br>The Raulin – Bekkas – Biayenda trio was formed in 2018 at the esteemed Les détours de Babel festival in France and has since toured successfully throughout Central Europe and Morocco.</p><p>Pianist-composer Francois Raulin (born 1956) is a seasoned musician who played a role in the emergence of the new French jazz scene in the 1980s. Originally from the French Alps, Raulin became known for his collaboration with clarinet player Louis Sclavis, with whom he toured extensively around Europe. He is one of the founding members of La Forge, a musicians' collective based in Grenoble. Raulin has refined his ability to blend jazz and improvisation with folk music, without forgetting contemporary music influences, to create impactful interdisciplinary projects involving film, theatre and comics. Having performed on nearly every continent, the pianist has developed a deep connection with African music over the years.</p><p>Majid Bekkas (b. 1957) is a Moroccan guembrist. The guembri is a long-necked, three-stringed bass lute often used by North African Gnawa, descendants of slaves, in their spiritual music and ceremonies. Straddling tradition and modernity, Bekkas blends Gnawa music with Afro-American blues. He is also a teacher at the Rabat Conservatory and has been the artistic director of the Festival Jazz au Chellah in Rabat since 1996. This versatile artist received the Al Farabi Award, one of the most prestigious honours in Arabic culture, at the end of 2010. Bekkas made an impressive Finnish debut at the Tampere Jazz Happening in 2021 with the Magic Spirit Quartet, which besides him included Danish drummer Stefan Pasborg, Swedish keyboardist Jesper Nordenström and Swedish trumpeter Goran Kajfeš.</p><p>Born in Brazzaville, Congo, drummer, percussionist and composer Emile Biayenda founded a workshop in 1991 aimed at young Congolese in the neighbourhoods of Brazzaville, which gave rise to the famous band Les tambours de Brazza. He has adapted traditional ngoma drum rhythms and the heritage of the B'aaaka Pygmies into his distinctive playing style. He has toured worldwide and recorded with some of Africa's leading pop artists, such as Ray Lema and Rokia Traoré... Biayenda has lived in France since 1993 and has played with a wide variety of artists. He is as much at home in the African tradition as in European improvised music. He previously toured Finland with pianist Benoît Delbecq's trio in 2012 and 2018, and his collaboration with this acclaimed French pianist continues to flourish.</p><p>Concert production: Malmitalo<br>Tour production: Vapaat äänet, La Forge<br>The tour is supported by AJC, Spedidam<br>Partner: Etnosoi!, Kumu drums</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66124/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65965",
            "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/a-la-malmi-raejaeyttaejaet-malmitalo-20139421",
                        "sv": "https://www.lippu.fi/event/a-la-malmi-raejaeyttaejaet-malmitalo-20139421",
                        "en": "https://www.lippu.fi/event/a-la-malmi-raejaeyttaejaet-malmitalo-20139421"
                    },
                    "price": {
                        "fi": "15 € / 20 €",
                        "sv": "15 € / 20 €",
                        "en": "15 € / 20 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1155817,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T12:13:59.299717Z",
                    "last_modified_time": "2025-07-01T12:13:59.299733Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769560.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155817/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T12:13:59.172659Z",
            "last_modified_time": "2025-09-04T10:14:10.849461Z",
            "date_published": null,
            "start_time": "2025-10-24T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Räjäyttäjät saapuvat uuden levyn saattelemana Malmitalolle!",
                "sv": "Räjäyttäjät anländer till Malms kulturhus med en ny skiva!",
                "en": "Räjäyttäjät arrive at Malmitalo with a new album in tow!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3527D353934FADD0C974E367A04F5448/Rajayttajat",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3527D353934FADD0C974E367A04F5448/Rajayttajat",
                "en": "http://www.malmitalo.fi/en/events/event/3527D353934FADD0C974E367A04F5448/Rajayttajat"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Räjäyttäjät – A la Malmi",
                "sv": "Räjäyttäjät – A la Malmi",
                "en": "Räjäyttäjät – A la Malmi"
            },
            "description": {
                "fi": "<p>Räjäyttäjät saapuvat uuden levyn saattelemana Malmitalolle!</p><p>Vuonna 2011 Jyväskylässä perustettu kolmihenkinen Räjäyttäjät on tullut tunnetuksi vauhdikkaista live-esiintymisistään ja suomenkielisestä jytärockistaan. Yli kymmenvuotisella urallaan yhtye on ansaitusti vakiinnuttanut paikkansa aikamme kotimaisen indieskenen kaanonissa. Räjä ’n’ rollia soittava yhtyeen ilmaisussa on juuri sopiva ripaus hölmöä tee-se-itse -tykittelyä, kunnon meininkiä sekä tarkkanäköisen rehellistä rokkia.</p><p>Jyväskylässä 2011 perustettu Räjäyttäjät julkaisi uuden pitkäsoiton 18.4.2025. Kyseessä on tupla-LP, jolla on kaikkien yhtyeen jäsenten eli Alex Reedin (rummut ja laulu), Mikko Siltasen (basso ja laulu) ja Jukka Nousiaisen (kitara ja laulu) tekemiä ja laulamia kappaleita. Skaala ulottuu psykedeelisestä folkista keskiaikaisen progen kautta mielipuolisen meluamiseen ja rokkaukseen.</p><p>Rock on ikuinen, uusi vesimiehen aika koittaa, kaikki kukat kukkivat, värit pärisevät!</p><p>Kesto: 1 t 20 min</p>",
                "sv": "<p>Räjäyttäjät anländer till Malms kulturhus med en ny skiva!</p><p>Trion Räjäyttäjät, som grundades i Jyväskylä 2011, har blivit kända för sina fartfyllda liveframträdanden och dånande rock på finska. Under sin över tio år långa karriär har bandet med rätta etablerat sig på vår tids inhemska indiescen. I bandets Räjä ’n’ roll finns precis en lagom touch av fånig gör-det-själv-bombardering, en ordentlig stämning och klarsynt ärlig rock.</p><p>Räjäyttäjät, som grundades i Jyväskylä 2011, släppte en ny lp-skiva den 18 april 2025. Det är en dubbel-LP med låtar som är skrivna och sjungs av samtliga bandmedlemmar: Alex Reed (trummor och sång), Mikko Siltanen (basgitarr och sång) och Jukka Nousiainen (gitarr och sång). Skalan sträcker sig från psykedelisk folk via medeltida proge till vanvettigt oväsen och rock.</p><p>Rocken är evig, den nya vattumannens tid är inne, alla blommor blommar, färgerna sprakar!</p><p>Längd: 1 timme 20 minuter</p>",
                "en": "<p>Räjäyttäjät arrive at Malmitalo with a new album in tow!</p><p>Formed in 2011 in Jyväskylä, this three-member band has become known for their high-energy live performances and Finnish-language hard rock. Over their decade-long career, they have rightfully cemented their place in the canon of contemporary Finnish indie. Playing what they call räjä'n'roll, the band's sound is a perfectly measured mix of goofy DIY firepower, solid attitude and sharp, honest rock.</p><p>Formed in Jyväskylä in 2011, Räjäyttäjät released a new full-length album on 18 April 2025. The double LP features songs written and sung by all three band members, i.e. Alex Reed (drums and vocals), Mikko Siltanen (bass and vocals) and Jukka Nousiainen (guitar and vocals). The musical range spans from psychedelic folk through medieval prog to insane noise and rock.</p><p>Rock is eternal, the new age of Aquarius is dawning, all flowers bloom and the colours are buzzing!</p><p>Duration: 1 hour 20 min</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65965/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65978",
            "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/roots-musiikin-evoluutio-malmitalo-20117742/",
                        "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117742/",
                        "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-20117742/"
                    },
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1154817,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T09:12:26.279634Z",
                    "last_modified_time": "2025-07-01T09:12:26.279648Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769578.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154817/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T09:12:26.218897Z",
            "last_modified_time": "2025-09-04T10:14:10.012812Z",
            "date_published": null,
            "start_time": "2025-10-22T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Malmitalon suosittu Roots-musiikin evoluutio -sarja jatkuu Helsinki Blues Machinen keikalla!",
                "sv": "Den populära serien Roots-musiikin evoluutio i Malms kulturhus fortsätter i spelningen Helsinki Blues Machine!",
                "en": "Malmitalo's popular Roots Music Evolution series continues with Helsinki Blues Machine's gig!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7E95B9C02933BD01D0307B7AA9EC3298/Helsinki_Blues_Machine",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7E95B9C02933BD01D0307B7AA9EC3298/Helsinki_Blues_Machine",
                "en": "http://www.malmitalo.fi/en/events/event/7E95B9C02933BD01D0307B7AA9EC3298/Helsinki_Blues_Machine"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Helsinki Blues Machine – Roots-musiikin evoluutio vol. 12",
                "sv": "Helsinki Blues Machine – Roots-musiikin evoluutio vol. 12",
                "en": "Helsinki Blues Machine – Roots-musiikin evoluutio vol. 12"
            },
            "description": {
                "fi": "<p>Malmitalon suosittu Roots-musiikin evoluutio -sarja jatkuu Helsinki Blues Machinen keikalla!</p><p>Helsinki Blues Machine soittaa huuliharppuvetoista 1950- ja 60-lukujen henkistä blues-ohjelmistoa sodanjälkeisen Chicagon, Louisianan, Mississippin ja Kalifornian laulumailta.</p><p>Tästä kokoonpanosta ei soittotaitoa puutu: <br>- Big Dog Andy Scherer on pitkän linjan huuliharpisti ja laulaja, jonka blues-taival ulottuu Teksasin skenestä kansainvälisille lavoille. <br>- Esa \"Bluesministeri\" Kuloniemi on suomalaisen bluesin kulmakivi, tunnettu Honey B & T-Bonesista ja Yleisradion bluesohjelmista. <br>- Topi Karvonen on monipuolinen kontrabasisti, joka on soittanut lukuisissa blues- ja juurimusiikkikokoonpanoissa. <br>- Erik Nickull on nuoresta iästään huolimatta jo tunnettu rumpali. Hän on soittanut mm. Honey B & T-Bonesissa, Ikka Rantamäen Bluesbrokersissa ja johtaa omaa Kinky Thing -yhtyettään.</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>",
                "sv": "<p>Den populära serien Roots-musiikin evoluutio i Malms kulturhus fortsätter i spelningen Helsinki Blues Machine!</p><p>Helsinki Blues Machine spelar ett munspelsdrivet bluesprogram i 1950- och 60-talsanda från efterkrigstidens Chicago, Louisiana, Mississippi och Kalifornien.</p><p>Det råder ingen brist på spelskicklighet i den här sammansättningen: <br>– Big Dog Andy Scherer är en väletablerad munspelare och sångare, och hans bluesresa sträcker sig från scener i Texas till internationella scener. <br>– Esa ”Blues Minister” Kuloniemi är en av hörnstenarna inom finländsk blues och är känd från Honey B & T-Bones och Rundradions bluesprogram. <br>– Topi Karvonen är en mångsidig kontrabasist som har spelat i många sammansättningar inom blues- och rootsmusiken. <br>– Erik Nickull är trots sin unga ålder redan en välkänd batterist. Han har spelat i bland annat Honey B & T-Bones, Ikka Rantamäkis Bluesbrokers och leder sitt eget band; Kinky Thing.</p><p>Längd: 1 timme 45 minuter, inklusive paus 20 minuter</p>",
                "en": "<p>Malmitalo's popular Roots Music Evolution series continues with Helsinki Blues Machine's gig!</p><p>Helsinki Blues Machine performs harmonica-driven blues inspired by the 50s and 60s, drawing from the musical landscapes of postwar Chicago, Louisiana, Mississippi and California.</p><p>This line-up is overflowing with musical talent: <br>- Big Dog Andy Scherer is a seasoned harmonica player and singer whose blues journey spans from the Texas scene to international stages. <br>- Esa \"Bluesministeri\" Kuloniemi is a cornerstone of Finnish blues, known for Honey B & T-Bones and Yleisradio's blues programmes. <br>- Topi Karvonen is a versatile double bassist who has played in numerous blues and roots music ensembles. <br>- Despite his young age, Erik Nickull is already a well-known drummer. He has played in Honey B & T-Bones, Ikka Rantamäki's Bluesbrokers and leads his own band, Kinky Thing.</p><p>Duration: 1 hour 45 min, incl. a 20-min intermission</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65978/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66697",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1211367,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-08T13:14:19.095151Z",
                    "last_modified_time": "2025-07-08T13:14:19.095167Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774075.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1211367/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-08T13:14:19.011302Z",
            "last_modified_time": "2025-09-04T10:14:08.506123Z",
            "date_published": null,
            "start_time": "2025-10-16T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Pajassa pääset rakentamaan oman saaren, joka kertoo jotain persoonallisuudestasi.",
                "sv": "I verkstaden kan du bygga en egen ö som berättar något om din personlighet.",
                "en": "In the workshop, you will get to build your own island that says something about your personality."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AD9AC122F019E40DC4172B3E29CC0CE6/Syysloman_tyopaja_Persoonallisuussaaripaja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/AD9AC122F019E40DC4172B3E29CC0CE6/Verkstad_for_personlighetsoar_Hostlovsaktiviteter",
                "en": "http://www.malmitalo.fi/en/events/event/AD9AC122F019E40DC4172B3E29CC0CE6/Personality_Island_Workshop_Autumn_Break_Activities"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Syysloman työpaja: Persoonallisuussaaripaja",
                "sv": "Verkstad för personlighetsöar Höstlovsaktiviteter",
                "en": "Personality Island Workshop Autumn Break Activities"
            },
            "description": {
                "fi": "<p>Pajassa pääset rakentamaan oman saaren, joka kertoo jotain persoonallisuudestasi.</p><p>Esitteleekö ehkäpä hassuttelusaari sinun luonnettasi, kuvastaako kitarasaari harrastustasi vaiko koirasaari mielenkiinnonkohdettasi?</p><p>Syyslomalla Malmitalolla järjestetään maksuttomia työpajoja. Luvassa on askarreltavaa ja muuta kivaa puuhaa lapsille ja perheille. Jokaiselle työpajalle on oma teemansa, joka on inspiroitunut kyseisen päivän syyslomaleffasta.</p><p>Vapaa pääsy!</p><p>Paikka: Malmitalon parvi</p>",
                "sv": "<p>I verkstaden kan du bygga en egen ö som berättar något om din personlighet.</p><p>Speglar kanske en rolig ö din personlighet, en gitarrö din hobby eller en hundö ditt intresse?</p><p>Under höstlovet ordnas avgiftsfria verkstäder i Malms kulturhus. Pyssel och andra roliga aktiviteter utlovas för barn och familjer. Varje verkstad har sitt eget tema, inspirerat av den aktuella dagens höstlovsfilm. <br>Fritt inträde!<br>Plats: Loftet i Malms kulturhus</p>",
                "en": "<p>In the workshop, you will get to build your own island that says something about your personality.</p><p>Perhaps a goofy island reflects your personality, a guitar island your hobby or a dog island your passion?</p><p>During the autumn break, free workshops will be held at Malmitalo. There will be crafts and other fun activities for children and families. Each workshop has its own theme, inspired by the autumn break film of the day. <br>Free entry!<br>Location: Malmitalo gallery</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66697/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66653",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1441471,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-08T15:13:15.426946Z",
                    "last_modified_time": "2025-08-08T15:13:15.426961Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775477.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1441471/?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": "2025-08-08T15:13:15.329895Z",
            "last_modified_time": "2025-09-04T09:14:02.287506Z",
            "date_published": null,
            "start_time": "2025-10-03T07:00:00Z",
            "end_time": "2025-10-03T10:30: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Huippuammattilaisten esitys- ja työpajakokonaisuus yläkouluikäisille ja toisen asteen opiskelijoille.",
                "sv": "Avancerade experters helhet med föreställning och verkstad för högstadieelever och studerande inom andra stadiet.",
                "en": "A series of presentations and workshops by top professionals for lower secondary school and secondary school students."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/5C2EB580407FE5384BCF0C85CD9DEC08/How_s_your_ego_today_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/5C2EB580407FE5384BCF0C85CD9DEC08/How_s_your_ego_today_",
                "en": "http://www.stoa.fi/en/events/event/5C2EB580407FE5384BCF0C85CD9DEC08/How_s_your_ego_today_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "How's your ego today? – Nomads Festival",
                "sv": "How's your ego today? – Nomads Festival",
                "en": "How's your ego today? – Nomads Festival"
            },
            "description": {
                "fi": "<p>Huippuammattilaisten esitys- ja työpajakokonaisuus yläkouluikäisille ja toisen asteen opiskelijoille.</p><p>Koreografiduo Linder&Semler esittelee uuden teoksensa ”How’s your ego today?”, joka on kiehtova monitaiteellinen esitys. Teos yhdistää videoprojisointeja, akryylivalua, nykytanssia, katutanssia ja tekstiä luoden ainutlaatuisen kokemuksen. Keskeisiä teemoja ovat breaking, nykytanssi, teatteri, komedia ja kuvataide.<br> <br>– Tavoitteenamme on käsitellä egoa abstraktisti ja löytää tasapaino vakavan ja humoristisen kerronnan välille, duo kuvailee. Toivomme inspiroivamme yleisöä pohtimaan epäitsekkyyttä. Esitys ammentaa omista kokemuksistamme egoismista ja machokulttuurin eri puolista.</p><p>Nuorten työpaja: <br>Työpajassa nuoret pääsevät kokeilemaan breakingiä (breakdance), hip hopia ja nykytanssia huippuammattilaisten kanssa. Sisältö sopii kaikille, niin aloittelijoille kuin edistyneemmille. Työpajan lopussa kerromme vähän itsestämme ja osallistujat voivat esittää kysymyksiä halutessaan.</p><p>Päivän aikataulut:<br>klo 10–11 esitys ja keskustelu<br>klo 11–11.30 lounastauko<br>klo 11.30–13.30 työpajat</p><p>Työpajan kieli: ruotsi, englanti<br>Idea, esitys ja koreografia: Pontus Linder ja Erwin Semler (Linder&Semler)<br>Kesto: noin 45 minuuttia<br>Musiikki: Peter Svenzon<br>Dramaturgi: Martina Viglietti<br>Visuaalinen taide, ulkopuolinen silmä: Petra Kinnunen<br>Kiitokset: Svenska Kulturfonden, Kulturfonden för Sverige och Finland, Produktionshuset SITE, Julian Owusu, Dansverkstæðið, Nordens hus Islanti ja Danscenter Stockholm.</p><p>Linkki traileriin:<br>https://drive.google.com/file/d/1ocrH_lEmxNHOXsXwDGMHTnXTusJycpMz/view?usp=drive_link</p><p>Lisätiedot ja ilmoittautuminen: sanna.nuutinen@hel.fi</p>",
                "sv": "<p>Avancerade experters helhet med föreställning och verkstad för högstadieelever och studerande inom andra stadiet.</p><p>Koreografduon Linder & Semler presenterar sitt nya verk ”How´s your ego today?”, som är en fascinerande mångkonstnärlig framställning. Verket förenar videoprojiceringar, akrylgjutning, nutidsdans, gatudans och texter genom att skapa en unik upplevelse. Centrala teman är breaking, nutidsdans, teater, komedi och bildkonst.<br> <br>– Vårt mål är att hantera egot abstrakt och hitta en balans mellan en allvarlig och humoristisk framställning, beskriver duon. Vi hoppas att vi inspirerar publiken att fundera på osjälviskhet. Föreställningen baserar sig på egna erfarenheter om egoism och olika delar av machokulturen.<br>Ungdomsverkstad:</p><p>I verkstaden får ungdomarna tillsammans med avancerade experter pröva på breaking (breakdance), hiphop och nutidsdans. Innehållet lämpar sig för alla, för såväl nybörjare som för personer med längre erfarenhet. I slutet av verkstaden berättar vi lite om oss och deltagarna kan ställa frågor om de så vill.</p><p>Dagens tidtabell<br>kl. 10–11 föreställning ja diskussion<br>kl. 11–11.30 lunchpaus<br>kl. 11.30–13.30 verkstäder</p><p>Språket i verkstaden: svenska, engelska<br>Idé, föreställning och koreografi: Pontus Linder och Erwin Semler (Linder&Semler)<br>Längd: cirka 45 min.<br>Musik: Peter Svenzon<br>Dramaturg: Martina Viglietti<br>Visuell konst, externt öga: Petra Kinnunen</p><p>Tack: Svenska Kulturfonden, Kulturfonden för Sverige och Finland, Produktionshuset SITE, Julian Owusu, Dansverkstæðið, Nordens hus Island och Danscenter Stockholm.</p><p>Mer information och anmälan: sanna.nuutinen@hel.fi</p>",
                "en": "<p>A series of presentations and workshops by top professionals for lower secondary school and secondary school students.</p><p>Choreographer duo Linder&Semler present their new work \"How's your ego today?\", a fascinating multi-art performance. The work combines video projections, acrylic pouring, contemporary and street dance and text to create a unique experience. Key themes include breaking, contemporary dance, theatre, comedy and visual arts.<br> <br>“Our goal is to consider the ego in an abstract way and find a balance between serious and humorous narrative,” the duo explains. “We hope to inspire the public to reflect on selflessness. The show draws on our own experiences of egoism and the different facets of macho culture.”</p><p>Youth workshop: <br>The workshop gives young people the chance to try out breakdancing – or ‘breaking’ – hip hop and contemporary dance with top professionals. The content is suitable for everyone, from beginners to more advanced learners. At the end of the workshop, we will tell you a bit about ourselves and participants will have the opportunity to ask questions.</p><p>Timetable for the day<br>10:00–11:00 performance and discussion<br>11:00–11:30 lunch break<br>11:30–13:30 workshops</p><p>Workshop language: Swedish, English<br>Idea, performance and choreography: Pontus Linder and Erwin Semler (Linder&Semler)<br>Duration: approximately 45 minutes<br>Music: Peter Svenzon<br>Dramaturgy: Martina Viglietti<br>Visual art, an outside eye: Petra Kinnunen<br>Acknowledgements: Svenska Kulturfonden, Kulturfonden för Sverige och Finland, Produktionshuset SITE, Julian Owusu, Dansverkstæðið, Nordens hus Iceland and Danscenter Stockholm.</p><p>Additional information and registration: sanna.nuutinen@hel.fi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66653/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66654",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1441470,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-08T15:13:15.038746Z",
                    "last_modified_time": "2025-08-08T15:13:15.038761Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775479.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1441470/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-08T15:13:14.965390Z",
            "last_modified_time": "2025-09-04T09:14:01.925871Z",
            "date_published": null,
            "start_time": "2025-10-02T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Linder & Semler -koreografiduon uusin teos yhdistää videoprojisointeja, akryylivalua, nykytanssia, katutanssia ja tekstiä luoden ainutlaatuisen kokemuksen.",
                "sv": "Koreografiduon Linder & Semlers nyaste verk förenar videoprojiceringar, akrylgjutning, nutidsdans, gatudans och text genom att skapa unika erfarenheter.",
                "en": "The latest work by the choreographer duo Linder & Semler combines video projections, acrylic pouring, contemporary and street dance and text to create a unique experience."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/B6C4367158FD852DBA7ADDBF7825625E/How_s_your_ego_today_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/B6C4367158FD852DBA7ADDBF7825625E/How_s_your_ego_today_",
                "en": "http://www.stoa.fi/en/events/event/B6C4367158FD852DBA7ADDBF7825625E/How_s_your_ego_today_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "How's your ego today? – Nomads Festival",
                "sv": "How's your ego today? – Nomads Festival",
                "en": "How's your ego today? – Nomads Festival"
            },
            "description": {
                "fi": "<p>Linder & Semler -koreografiduon uusin teos yhdistää videoprojisointeja, akryylivalua, nykytanssia, katutanssia ja tekstiä luoden ainutlaatuisen kokemuksen.</p><p>Teoksen keskeisiä teemoja ovat breaking, nykytanssi, teatteri, komedia ja kuvataide. <br>  <br> – Tavoitteenamme on käsitellä egoa abstraktisti ja löytää tasapaino vakavan ja humoristisen kerronnan välille, duo kuvailee. Toivomme inspiroivamme yleisöä pohtimaan epäitsekkyyttä. Esitys ammentaa omista kokemuksistamme egoismista ja machokulttuurin eri puolista. <br>Idea, esitys ja koreografia: Pontus Linder ja Erwin Semler (Linder&Semler)</p><p>Musiikki: Peter Svenzon <br>Dramaturgi: Martina Viglietti <br>Visuaalinen taide, ulkopuolinen silmä: Petra Kinnunen <br>Kesto: noin 45 minuuttia  <br>Kiitokset: Svenska Kulturfonden, Kulturfonden för Sverige och Finland, Produktionshuset SITE, Julian Owusu, Dansverkstæðið, Nordens hus Islanti ja Danscenter Stockholm.</p><p>Linkki traileriin: <br>https://drive.google.com/file/d/1ocrH_lEmxNHOXsXwDGMHTnXTusJycpMz/view?usp=drive_link</p>",
                "sv": "<p>Koreografiduon Linder & Semlers nyaste verk förenar videoprojiceringar, akrylgjutning, nutidsdans, gatudans och text genom att skapa unika erfarenheter.</p><p>Verkets centrala teman är breaking, nutidsdans, teater, komedi och bildkonst.</p><p>– Vi försöker abstrahera ego som ämne och vill hitta en balans av allvar och komik i vår berättarteknik, säger duon om verket. Med ett hopp om att komma ur denna process och förmedla till andra en inspiration av att vara lite mer osjälvisk. Stoffet i idén bygger till stor del på våra egna resor kring egoism och olika delar av machokultur. <br> <br>Idé, performance och koreografi: Linder&Semler Pontus Linder och Erwin Semler.<br>Längd: ca 45min<br>Musik: Peter Svenzon<br>Dramaturg: Martina Viglietti<br>Yttre öga visuell konst: Petra Kinnunen<br>Tack till: Svenska Kulturfonden, Kulturfonden för Sverige och Finland, Produktionshuset SITE, Julian Owusu, Dansverkstæðið, Nordens hus Island och Danscenter Stockholm.</p><p>Länk till trailer:<br>https://drive.google.com/file/d/1ocrH_lEmxNHOXsXwDGMHTnXTusJycpMz/view?usp=drive_link</p>",
                "en": "<p>The latest work by the choreographer duo Linder & Semler combines video projections, acrylic pouring, contemporary and street dance and text to create a unique experience.</p><p>The piece’s key themes include breaking, contemporary dance, theatre, comedy and visual arts.</p><p>“Our goal is to consider the ego in an abstract way and find a balance between serious and humorous narrative,” the duo explains. “We hope to inspire the public to reflect on selflessness. The show draws on our own experiences of egoism and the different facets of macho culture.”</p><p>Idea, performance and choreography: Pontus Linder and Erwin Semler (Linder&Semler)<br>Duration: approximately 45 minutes<br>Music: Peter Svenzon<br>Dramaturgy: Martina Viglietti<br>Visual art, an outside eye: Petra Kinnunen<br>Acknowledgements: Svenska Kulturfonden, Kulturfonden för Sverige och Finland, Produktionshuset SITE, Julian Owusu, Dansverkstæðið, Nordens hus Iceland and Danscenter Stockholm.</p><p>Link to the trailer: https://drive.google.com/file/d/1ocrH_lEmxNHOXsXwDGMHTnXTusJycpMz/view?usp=drive_link</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66654/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66652",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1441469,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-08T15:13:14.698066Z",
                    "last_modified_time": "2025-08-08T15:13:14.698081Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775475.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1441469/?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": "2025-08-08T15:13:14.564687Z",
            "last_modified_time": "2025-09-04T09:14:01.705223Z",
            "date_published": null,
            "start_time": "2025-10-02T07:00:00Z",
            "end_time": "2025-10-02T10:30: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Huippuammattilaisten esitys- ja työpajakokonaisuus yläkouluikäisille ja toisen asteen opiskelijoille.",
                "sv": "Avancerade experters helhet med föreställning och verkstad för högstadieelever och studerande inom andra stadiet.",
                "en": "A series of presentations and workshops by top professionals for lower secondary school and secondary school students."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/81F0E2EA0F7A8565CD529609FC5190DB/How_s_your_ego_today_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/81F0E2EA0F7A8565CD529609FC5190DB/How_s_your_ego_today_",
                "en": "http://www.stoa.fi/en/events/event/81F0E2EA0F7A8565CD529609FC5190DB/How_s_your_ego_today_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "How's your ego today? – Nomads Festival",
                "sv": "How's your ego today? – Nomads Festival",
                "en": "How's your ego today? – Nomads Festival"
            },
            "description": {
                "fi": "<p>Huippuammattilaisten esitys- ja työpajakokonaisuus yläkouluikäisille ja toisen asteen opiskelijoille.</p><p>Koreografiduo Linder&Semler esittelee uuden teoksensa ”How’s your ego today?”, joka on kiehtova monitaiteellinen esitys. Teos yhdistää videoprojisointeja, akryylivalua, nykytanssia, katutanssia ja tekstiä luoden ainutlaatuisen kokemuksen. Keskeisiä teemoja ovat breaking, nykytanssi, teatteri, komedia ja kuvataide.<br> <br>– Tavoitteenamme on käsitellä egoa abstraktisti ja löytää tasapaino vakavan ja humoristisen kerronnan välille, duo kuvailee. Toivomme inspiroivamme yleisöä pohtimaan epäitsekkyyttä. Esitys ammentaa omista kokemuksistamme egoismista ja machokulttuurin eri puolista.</p><p>Nuorten työpaja: <br>Työpajassa nuoret pääsevät kokeilemaan breakingiä (breakdance), hip hopia ja nykytanssia huippuammattilaisten kanssa. Sisältö sopii kaikille, niin aloittelijoille kuin edistyneemmille. Työpajan lopussa kerromme vähän itsestämme ja osallistujat voivat esittää kysymyksiä halutessaan.</p><p>Päivän aikataulut:<br>klo 10–11 esitys ja keskustelu<br>klo 11–11.30 lounastauko<br>klo 11.30–13.30 työpajat</p><p>Työpajan kieli: ruotsi, englanti<br>Idea, esitys ja koreografia: Pontus Linder ja Erwin Semler (Linder&Semler)<br>Kesto: noin 45 minuuttia<br>Musiikki: Peter Svenzon<br>Dramaturgi: Martina Viglietti<br>Visuaalinen taide, ulkopuolinen silmä: Petra Kinnunen<br>Kiitokset: Svenska Kulturfonden, Kulturfonden för Sverige och Finland, Produktionshuset SITE, Julian Owusu, Dansverkstæðið, Nordens hus Islanti ja Danscenter Stockholm.</p><p>Linkki traileriin:<br>https://drive.google.com/file/d/1ocrH_lEmxNHOXsXwDGMHTnXTusJycpMz/view?usp=drive_link</p><p>Lisätiedot ja ilmoittautuminen: sanna.nuutinen@hel.fi</p>",
                "sv": "<p>Avancerade experters helhet med föreställning och verkstad för högstadieelever och studerande inom andra stadiet.</p><p>Koreografduon Linder & Semler presenterar sitt nya verk ”How´s your ego today?”, som är en fascinerande mångkonstnärlig framställning. Verket förenar videoprojiceringar, akrylgjutning, nutidsdans, gatudans och texter genom att skapa en unik upplevelse. Centrala teman är breaking, nutidsdans, teater, komedi och bildkonst.<br> <br>– Vårt mål är att hantera egot abstrakt och hitta en balans mellan en allvarlig och humoristisk framställning, beskriver duon. Vi hoppas att vi inspirerar publiken att fundera på osjälviskhet. Föreställningen baserar sig på egna erfarenheter om egoism och olika delar av machokulturen.<br>Ungdomsverkstad:</p><p>I verkstaden får ungdomarna tillsammans med avancerade experter pröva på breaking (breakdance), hiphop och nutidsdans. Innehållet lämpar sig för alla, för såväl nybörjare som för personer med längre erfarenhet. I slutet av verkstaden berättar vi lite om oss och deltagarna kan ställa frågor om de så vill.</p><p>Dagens tidtabell<br>kl. 10–11 föreställning ja diskussion<br>kl. 11–11.30 lunchpaus<br>kl. 11.30–13.30 verkstäder</p><p>Språket i verkstaden: svenska, engelska<br>Idé, föreställning och koreografi: Pontus Linder och Erwin Semler (Linder&Semler)<br>Längd: cirka 45 min.<br>Musik: Peter Svenzon<br>Dramaturg: Martina Viglietti<br>Visuell konst, externt öga: Petra Kinnunen</p><p>Tack: Svenska Kulturfonden, Kulturfonden för Sverige och Finland, Produktionshuset SITE, Julian Owusu, Dansverkstæðið, Nordens hus Island och Danscenter Stockholm.</p><p>Mer information och anmälan: sanna.nuutinen@hel.fi</p>",
                "en": "<p>A series of presentations and workshops by top professionals for lower secondary school and secondary school students.</p><p>Choreographer duo Linder&Semler present their new work \"How's your ego today?\", a fascinating multi-art performance. The work combines video projections, acrylic pouring, contemporary and street dance and text to create a unique experience. Key themes include breaking, contemporary dance, theatre, comedy and visual arts.<br> <br>“Our goal is to consider the ego in an abstract way and find a balance between serious and humorous narrative,” the duo explains. “We hope to inspire the public to reflect on selflessness. The show draws on our own experiences of egoism and the different facets of macho culture.”</p><p>Youth workshop: <br>The workshop gives young people the chance to try out breakdancing – or ‘breaking’ – hip hop and contemporary dance with top professionals. The content is suitable for everyone, from beginners to more advanced learners. At the end of the workshop, we will tell you a bit about ourselves and participants will have the opportunity to ask questions.</p><p>Timetable for the day<br>10:00–11:00 performance and discussion<br>11:00–11:30 lunch break<br>11:30–13:30 workshops</p><p>Workshop language: Swedish, English<br>Idea, performance and choreography: Pontus Linder and Erwin Semler (Linder&Semler)<br>Duration: approximately 45 minutes<br>Music: Peter Svenzon<br>Dramaturgy: Martina Viglietti<br>Visual art, an outside eye: Petra Kinnunen<br>Acknowledgements: Svenska Kulturfonden, Kulturfonden för Sverige och Finland, Produktionshuset SITE, Julian Owusu, Dansverkstæðið, Nordens hus Iceland and Danscenter Stockholm.</p><p>Additional information and registration: sanna.nuutinen@hel.fi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66652/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:77a42e2e-5989-f011-b4cc-7ced8d7420c5",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:f560adec-c8ae-465b-97a4-c09333d6f840/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/919fddf8-6182-f011-b4cc-000d3ab0762c?readableEventId=DEMO__Annantalon_tuotanto_4920255771604500"
                    },
                    "price": {
                        "fi": "0"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "created_time": "2025-09-04T08:03:32.599933Z",
            "last_modified_time": "2025-09-04T08:20:56.635175Z",
            "date_published": "2025-09-04T06:34:24Z",
            "start_time": "2025-09-23T05:00:00Z",
            "end_time": "2025-09-23T07:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 8,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-09-04T08:00:00+03:00",
            "enrolment_end_time": "2025-09-22T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "test"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Parkkipaikkoja vähäisesti"
            },
            "name": {
                "fi": "DEMO - Annantalon tuotanto 4.9.2025"
            },
            "description": {
                "fi": "<div><p>test</p></div>"
            },
            "provider": {
                "fi": "Annantalo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:77a42e2e-5989-f011-b4cc-7ced8d7420c5/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:f560adec-c8ae-465b-97a4-c09333d6f840",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/919fddf8-6182-f011-b4cc-000d3ab0762c?readableEventId=DEMO_-_Annantalon_tuotanto_492025577160450"
                    },
                    "price": {
                        "fi": "0"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:77a42e2e-5989-f011-b4cc-7ced8d7420c5/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "created_time": "2025-09-04T07:42:08.179308Z",
            "last_modified_time": "2025-09-04T08:10:43.897421Z",
            "date_published": "2025-09-04T06:34:11Z",
            "start_time": "2025-09-23T05:00:00Z",
            "end_time": "2025-09-23T07:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 8,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-09-04T08:00:00+03:00",
            "enrolment_end_time": "2025-09-22T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "test"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Parkkipaikkoja vähäisesti"
            },
            "name": {
                "fi": "DEMO - Annantalon tuotanto 4.9.2025"
            },
            "description": {
                "fi": "<div><p>test</p></div>"
            },
            "provider": {
                "fi": "Annantalo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:f560adec-c8ae-465b-97a4-c09333d6f840/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66352",
            "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:50/?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:596/?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:p21812/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1146595,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T08:12:42.687062Z",
                    "last_modified_time": "2025-06-30T08:12:42.687080Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773509.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1146595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-30T08:12:42.530172Z",
            "last_modified_time": "2025-09-04T07:14:22.654024Z",
            "date_published": null,
            "start_time": "2025-09-12",
            "end_time": "2025-10-30",
            "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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Legendaarisen valokuvaajan Risto Vuorimiehen näyttely Kanneltalon galleriassa esittelee ikonisia musiikkikuvia Suomesta.",
                "sv": "Den legendariska fotografen Risto Vuorimies utställning i Gamlasgårdens galleri förevisar ikoniska musikbilder från Finland.",
                "en": "The exhibition by legendary photographer Risto Vuorimies at Kanneltalo's gallery showcases iconic music photographs from Finland."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D79649EC0C3D5BF905420477E9289DC7/Risto_Vuorimies_LOVE-kuvia_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D79649EC0C3D5BF905420477E9289DC7/Risto_Vuorimies_LOVE-bilder_",
                "en": "http://www.kanneltalo.fi/en/events/event/D79649EC0C3D5BF905420477E9289DC7/Risto_Vuorimies_LOVE_Images_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Risto Vuorimies: LOVE-kuvia+",
                "sv": "Risto Vuorimies: LOVE-bilder+",
                "en": "Risto Vuorimies: LOVE Images+"
            },
            "description": {
                "fi": "<p>Legendaarisen valokuvaajan Risto Vuorimiehen näyttely Kanneltalon galleriassa esittelee ikonisia musiikkikuvia Suomesta.</p><p>Risto Vuorimies aloitti Love Records -levy-yhtiön kannentekijänä keväällä 1973. Aluksi suunniteltiin Hurriganesin ensimmäinen levynkansi Rock'n'Roll All Night Long. Samaan aikaan Vuorimies valokuvasi Rauli Badding Somerjoen Muotokuva 1 -levynkannen kuvan, jossa mies nojailee baaripöytään pienessä Hämeentien kahvilassa. Tästä eteenpäin Vuorimies teki kolmen vuoden ajan muutamia, myöhemmin varsin merkittäviksi muodostuneita levyjen kansia, mm. Hurriganesin Roadrunnerin.</p><p>Isokynä, Kojo, Badding, Maijanen, Tolonen ja monet muut 1970-luvulla esiintymisensä aloittaneet suomalaisen nuorisomusiikin edustajat ovat saavuttaneet jo seitsemänkympin iän. Siis ne, jotka elävät. Näiden kuvien kuvausaikoina sekä valokuvaaja että muusikot olivat noin kaksikymppisiä. Vuorimiehen mukaan on ollut mielenkiintoista selailla vanhoja filminegatiiveja, jotka ovat erittäin hyvässä kunnossa ja järjestyksessä hänen mapeissaan. Niistä Vuorimies on saanut nykytekniikalla valmistettua tämän LOVE-kuvia valokuvanäyttelyn. Hurriganes, Tasavallan Presidentti, Wigwam, Dave, Alatalo ja muut tuon ajan Love-artistit näyttävät tyylikkäiltä ja jopa historiallisilta seinälle ripustettuina.</p><p>Kamera on merkittävä dokumentoinnin väline. Ilman 1970-luvun kuvamuistoja moni tuskin muistaisi näiden taiteilijoiden ilmeitä ja olemuksia, vaikka ne ääninä eri medioissa keskuuteemme tänä päivänä tunkeutuvatkin. Mustavalkoinen valokuva kertoo elämän sävyistä ja sävelmistä.</p><p>Tuoreimpana aineistona valokuvaaja esittelee vuosien 1973–76 Hurriganes-aiheisen kokoelman, joka perustuu uuteen kirjaan Hurriganes – Pyörremyrsky. Sen lisäksi näyttelyyn on lisätty joukko kuvia Wigwamista sekä Dave Lindholmista.</p><p>Näyttelyä ovat tukeneet Taiteen edistämiskeskus, Vapriikki-museo sekä Kuusankoskitalo.</p><p><b>Kaikki ovat tervetulleita gallerianäyttelyn avajaisiin to 11.9. klo 17–19.30 ja 16th Avenue -bändin esitykseen klo 18–19 kahvilan stagella.</b></p><p>Risto Vuorimies on valokuvaaja, muusikko ja musiikkitoimittaja.<br>1970-luvun alussa Vuorimies opiskeli valokuvausta Tukholmassa. Opiskelutoverinsa Ben Kailan kanssa Vuorimies kuvasi tuolloin ruotsinsuomalaisia maahanmuuttajia. Itsenäisyyspäivänä 1972 kuvista koottiin Vanhalle ylioppilastalolle näyttely ja parikymmentä vuotta myöhemmin tehtiin valokuvateos Siirtosuomalainen (Musta Taide, 1994), joka toi tekijöille valokuvataiteen valtionpalkinnon.<br>Vuorimies on suuri kuubalaisen musiikin ystävä, ja hän on laulanut ja soittanut Septeto Son -yhtyeessä sekä tehnyt radio-ohjelmia nimellä Papá Montero.</p>",
                "sv": "<p>Den legendariska fotografen Risto Vuorimies utställning i Gamlasgårdens galleri förevisar ikoniska musikbilder från Finland.</p><p>Risto Vuorimies började som pärmbildsdesigner på skivbolaget Love Records våren 1973. Först designades skivomslaget till Hurriganes första skiva, Rock’n’Roll All Night Long. Samtidigt fotograferade Vuorimies omslagsbilden till Rauli ”Badding” Somerjokis album Muotokuva 1, där han lutar sig mot ett bord i ett litet café på Tavastvägen. Efteråt under tre års tid designade Vuorimies några skivomslag som senare blev synnerligen betydande, bl.a. Hurriganes Roadrunner.</p><p>Isokynä, Kojo, Badding, Maijanen, Tolonen och många andra representanter för den finländska ungdomsmusiken som inledde sina karriärer på 1970-talet har redan uppnått sjuttio års ålder. Alltså de som lever. När fotografierna togs var både fotografen och musikerna tjugo-någonting. Enligt Vuorimies har det varit intressant att bläddra bland gamla filmnegativ som är i mycket gott skick och i bra ordning i hans mappar. Av dessa har Vuorimies med dagens teknik tillverkat den här fotoutställningen LOVE-bilder. Hurriganes, Tasavallan Presidentti, Wigwam, Dave, Alatalo och många andra av den tidens Love-artister ser stiliga och rent av historiska ut uppe på väggen.</p><p>Kameran är ett viktigt redskap för dokumentering. Utan fotografiska minnen från 1970-talet skulle få komma ihåg dessa artisters ansiktsuttryck och väsen, även om de som ljud fortfarande finns bland oss även idag. Ett svartvitt fotografi berättar om livets nyanser och melodier.</p><p>Som nyaste material presenterar fotografen 1973–76 års Hurriganes-samling som baserar sig på den nya boken Hurriganes – Pyörremyrsky. Utställningen har dessutom utökats med bilder på Wigwam och Dave Lindholm.</p><p>Utställningen har understötts av Centret för konstfrämjande, Vapriikki-museet och Kuusankoskitalo.</p><p>Alla är välkomna till invigningen av galleriutställningen to 11.9 kl. 17–19.30 och till konserten med 16th Avenue kl. 18–19 på kaféets scen.</p><p>Risto Vuorimies är fotograf, musiker och musikredaktör.</p><p>I början av 1970-talet studerade Vuorimies fotografering i Stockholm. Med sin studiekamrat Ben Kaila fotograferade Vuorimies då svenskfinländska invandrare. På självständighetsdagen 1972 sammanställdes en utställning på Gamla studenthuset och cirka tjugo år senare skapades fotografiverket Siirtosuomalainen (Musta Taide, 1994), som gav upphovsmännen statspriset i fotokonst.</p><p>Vuorimies är en stor vän av kubansk musik och har sjungit och spelat i Septeto Son-bandet och gjort radioprogram under namnet Papá Montero.</p>",
                "en": "<p>The exhibition by legendary photographer Risto Vuorimies at Kanneltalo's gallery showcases iconic music photographs from Finland.</p><p>Risto Vuorimies began working as a cover designer for the record label Love Records in spring 1973. One of his first projects was designing the album cover for Hurriganes' debut Rock'n'Roll All Night Long. At the same time, Vuorimies photographed the cover image for Rauli Badding Somerjoki's album Muotokuva 1, in which the artist is leaning against a bar table in a small café on Hämeentie. From that point on, Vuorimies spent three years creating a number of covers for albums that would later become highly influential, including Hurriganes' Roadrunner.</p><p>Artists like Isokynä, Kojo, Badding, Maijanen, Tolonen and many others who began performing in the 1970s as part of Finland's youth music scene have now reached their seventies. That is, those who are still alive. At the time these photos were taken, both the photographer and the musicians were in their twenties. According to Vuorimies, it has been fascinating to browse through the old film negatives, which are in excellent condition and neatly organised in his binders. Using modern technology, Vuorimies has produced this LOVE Images+ photo exhibition from those negatives. Hurriganes, Tasavallan Presidentti, Wigwam, Dave, Alatalo and other Love artists from that era appear stylish, even historic, when displayed on the gallery walls.</p><p>The camera is an essential tool for documentation. Without the photographic memories of the 1970s, many would hardly remember the faces and presence of these artists, even though their voices still reach us through various media today. A black-and-white photo tells the story of the tones and melodies of life.</p><p>As his most recent material, the photographer presents a Hurriganes-themed collection from 1973–1976, based on the new book Hurriganes – Pyörremyrsky (\"Hurriganes – Whirlwind\"). In addition, the exhibition includes a selection of photographs of Wigwam and Dave Lindholm.</p><p>The exhibition has been supported by the Arts Promotion Centre Finland, the Vapriikki Museum Centre and Kuusankoskitalo.</p><p>Everyone is welcome to the gallery exhibition opening on Thursday, 11 September, at 17:00–19:30, and to 16th Avenue's performance on the café stage at 18:00–19:00.</p><p>Risto Vuorimies is a photographer, musician and music journalist.</p><p>In the early 1970s, he studied photography in Stockholm. Together with his fellow student Ben Kaila, Vuorimies photographed Finnish immigrants living in Sweden. On Finnish Independence Day in 1972, these photographs were exhibited at the Old Student House in Helsinki, and about twenty years later they were published in the photo book Siirtosuomalainen (Musta Taide, 1994), which earned the authors the State Prize for Photographic Art.</p><p>Vuorimies is a great admirer of Cuban music; he has sung and played in the band Septeto Son and produced radio programmes under the name Papá Montero.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66352/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66962",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo"
                    },
                    "price": {
                        "fi": "13/14 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490627,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-03T15:14:22.697661Z",
                    "last_modified_time": "2025-09-03T15:14:22.697688Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776921.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490627/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-03T15:14:22.499340Z",
            "last_modified_time": "2025-09-03T15:14:22.906412Z",
            "date_published": null,
            "start_time": "2025-09-23T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/4DCFF9470E0DA6C80406C6C4C825E1F5/Pulpettikinon_lyhytelokuvanaytos"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Pulpettikinon lyhytelokuvanäytös – Rakkautta & Anarkiaa 18.–28.9.2025"
            },
            "description": {
                "fi": "<p>Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.</p><p>Pulpettikinon lyhytelokuvanäytös esittelee hurmaavan kattauksen eurooppalaisia animaatioita pienille elokuvan ystäville. Näytöksessä tavataan värikäs joukko erilaisia tyyppejä monenlaisissa tilanteissa: esittämässä hassunhauskaa musikaalia, liitelemässä öisen meren yllä, kaivamassa tunnelia maapallon toiselle puolelle ja seikkailemassa avaruudessa asti!</p><p>Yötunneli</p><p>Ohjaus Annechien Strouven<br>Maa Belgia<br>Kesto 9 min<br>Vuosi 2024<br>Alkuperäinen nimi Le Tunnel de la nuit<br>Levittäjä L’Agence du court métrage</p><p>Tyttö ja ruutusilmät</p><p>Ohjaus André Carrilho<br>Maa Portugali<br>Kesto 8 min<br>Vuosi 2024<br>Alkuperäinen nimi A Menina com os Olhos Ocupados<br>Levittäjä Bear With Me Distribution</p><p>Animanimusikaali</p><p>Ohjaus Julia Ocker<br>Maa Saksa<br>Kesto 4 min<br>Vuosi 2024<br>Levittäjä Studio FILM BILDER</p><p>Filante</p><p>Ohjaus Marion Jamault<br>Maa Ranska<br>Kesto 9 min<br>Vuosi 2024<br>Levittäjä MIYU Distribution</p><p>Kielet No dialogue<br>Tekstitykset N/A<br>Ikäraja S<br>Kesto 30 min<br>Teema Pulpettikino</p>"
            },
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66962/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66616",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:758/?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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/white-lies-3922699/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/white-lies-3922699/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/white-lies-3922699/"
                    },
                    "price": {
                        "fi": "20 € / 7 €",
                        "sv": "20 € / 7 €",
                        "en": "20 € / 7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1162436,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-02T08:13:47.057289Z",
                    "last_modified_time": "2025-07-02T08:13:47.057304Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775116.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1162436/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-02T08:13:46.963277Z",
            "last_modified_time": "2025-09-03T13:14:13.253501Z",
            "date_published": null,
            "start_time": "2025-10-29T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "white lies -esitys on paradokseihin eksynyt yrityksemme paljastaa ja romuttaa valkoisuuden valtaa kehoissamme ja näyttämöillämme.",
                "sv": "Föreställningen white lies är ett paradoxalt försök att avslöja och förstöra vithetens makt i våra kroppar och på våra scener.",
                "en": "The ‘white lies’ performance is our attempt, lost in paradoxes, to expose and demolish the power of whiteness in our bodies and on our stages."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/C1B411BD5947A8494D0C8768CB1EF40E/white_lies",
                "sv": "http://www.caisa.fi/sv/evenemang/event/C1B411BD5947A8494D0C8768CB1EF40E/white_lies",
                "en": "http://www.caisa.fi/en/events/event/C1B411BD5947A8494D0C8768CB1EF40E/white_lies"
            },
            "location_extra_info": null,
            "name": {
                "fi": "white lies – Disembodying whiteness -hankkeen työryhmä",
                "sv": "white lies – Arbetsgruppen för projektet Disembodying whiteness",
                "en": "white lies – Disembodying whiteness project working group"
            },
            "description": {
                "fi": "<p>white lies -esitys on paradokseihin eksynyt yrityksemme paljastaa ja romuttaa valkoisuuden valtaa kehoissamme ja näyttämöillämme.</p><p>white lies on kehontaiteellinen näyttämöesitys, joka yrittää parhaansa paljastaa valkoisuuden sepitelmän naurettavuuden. Esitys penkoo esiin valkoisuuden varaan rakennetun “kulttuurin” kuonaa kehoistamme, tarinoistamme ja näyttämöistämme.</p><p>Näkymättömäksi tekeytyvä valkoisuus pyritään sysäämään päivänvaloon ja paljastamaan kaikessa kauheudessaan. Olemassa olevien valtahierarkioiden kritisoinnin lisäksi white lies-teos pyrkii ehdottamaan niiden tilalle mielekkäämpiä ja elinvoimaisempia, vilpittömiä yhdessäolon muotoja.</p><p>Teoksen tekijät ovat nuorehkoja valkoisia queereja esityksentekijöitä, joita yhdistää into taiteen ja poliittisen vaikuttamisen monissa risteyksissä toimimiseen.</p><p>Ikäsuositus: 15+<br>Tapahtuman kieli: suomi ja englanti tarpeen mukaan<br>Sisältöhuomio: esitys sisältää viittauksia kauhuun, väkivaltaan ja rasistisiin rakenteisiin.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Huomioithan esityksen teemat ja ikäsuosituksen.</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381815/?affiliate=FSF#tab=>TÄSTÄ</a></u></p>",
                "sv": "<p>Föreställningen white lies är ett paradoxalt försök att avslöja och förstöra vithetens makt i våra kroppar och på våra scener.</p><p>white lies är en kroppskonstnärlig scenföreställning som gör sitt bästa för att avslöja det skrattretande i vithetens fuskverk. Föreställningen gräver upp skräpet från en ”kultur”, som bygger på vithet, från våra kroppar, berättelser och arenor.</p><p>Man försöker kasta ut vitheten som låtsas vara osynlig i dagsljuset och avslöja den i all dess fasa. Utöver kritiken av de existerande makthierarkierna strävar verket white lies efter att i stället för dem föreslå meningsfullare och livskraftigare, uppriktiga former av samvaro.</p><p>Konstnärerna är unga, vita, queera föreställningsskapare som förenas av en passion för att arbeta i de många skärningspunkterna mellan konst och politisk påverkan.</p><p>Åldersrekommendation: +15<br>Evenemangets språk: finska och engelska enligt behov<br>Notera om innehållet: föreställningen innehåller referenser till skräck, våld och rasistiska strukturer.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Observera föreställningens teman och åldersrekommendationen.</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381815/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>The ‘white lies’ performance is our attempt, lost in paradoxes, to expose and demolish the power of whiteness in our bodies and on our stages.</p><p>white lies is a physical stage performance that tries its best to expose the ridiculousness of the fabrication of whiteness. The performance digs up the dross of a “culture” built on whiteness from our bodies, our stories and our stages. The aim is to shove whiteness feigning invisibility into the daylight and expose it in all of its horror. In addition to critiquing existing power hierarchies, the work seeks to propose better and more vital, sincere forms of coexistence to replace them.</p><p>The artists are relatively young white queer performers who are united by a passion for working at the many intersections of art and political influencing.</p><p>Recommended age: 15+<br>Language of the event: Finnish and English as needed<br>Please note: the performance contains references to horror, violence and racist structures</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Please note the performance themes and the age recommendation.</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kulttuurikeskus-caisa-helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-20381815/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66616/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}