Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&page=23&show_all=true
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 34806,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=24&show_all=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=22&show_all=true"
    },
    "data": [
        {
            "id": "kulke:68623",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmitalo-boppin-pete-the-barnshakers-malmitalo-21603921/",
                        "sv": "https://www.lippu.fi/event/malmitalo-boppin-pete-the-barnshakers-malmitalo-21603921/",
                        "en": "https://www.lippu.fi/event/malmitalo-boppin-pete-the-barnshakers-malmitalo-21603921/"
                    },
                    "price": {
                        "fi": "24,80 € / 17,80 €",
                        "sv": "24,80 € / 17,80 €",
                        "en": "24,80 € / 17,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384965,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:03.020515Z",
                    "last_modified_time": "2026-06-05T07:14:03.020533Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791290.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384965/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:02.872299Z",
            "last_modified_time": "2026-06-18T08:13:44.635335Z",
            "date_published": null,
            "start_time": "2026-09-30T16:00:00Z",
            "end_time": "2026-09-30T17:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Boppin Pete & The Barnshakers",
                "sv": "Boppin Pete & The Barnshakers",
                "en": "Boppin Pete & The Barnshakers"
            },
            "short_description": {
                "fi": "Rock-konkarit lyöttäytyvät harvinaisessa konsertissa, jossa kuullaan Barnshakersien tunnetuimpia raitoja sekä Peten klassikkolevytyksiä – ja paljon muutakin."
            },
            "description": {
                "fi": "<p>Rock-konkarit lyöttäytyvät harvinaisessa konsertissa, jossa kuullaan Barnshakersien tunnetuimpia raitoja sekä Peten klassikkolevytyksiä – ja paljon muutakin.</p><p>Boppin' Pete, eli Petri Näsman, on helsinkiläinen pitkän linjan roots-muusikko. Boppin' Pete -nimellä hän nousi yhdeksi suomalaisen 50-luvun rock and roll- ja rockabilly-huuman veturiksi 1980-luvun Näsman teki albumin legendaariselle Rebel-merkille ja esiintyi kulttimaineeseen yltäneessä \"Rokkidiggari\"-elokuvassa.</p><p>The Barnshakers on Suomen kansainvälisesti menestyksekkäin rockabilly-yhtye, jonka yli 30-vuotinen ura on pitänyt sisällään lukuisia kiertueita ympäri maailmaa, yhteistyötä monien artistien kanssa sekä arvostettuja julkaisuja kotimaisella Goofin Recordsilla.</p><p>The Barnshakers:<br>Vesa Haaja - laulu ja kitara<br>Jussi Huhtakangas - kitara<br>Mika Liikari - basso<br>Jani Ahtiainen - rummut<br>Boppin' Pete - laulu ja kitara</p><p>Kesto: 1 h 45 min, sis. 20 min väliajan</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/272AEE620FC9CACC730E160FD931E49D/Boppin_Pete_The_Barnshakers",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/272AEE620FC9CACC730E160FD931E49D/Boppin_Pete_The_Barnshakers",
                "en": "http://www.malmitalo.fi/en/events/event/272AEE620FC9CACC730E160FD931E49D/Boppin_Pete_The_Barnshakers"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68623/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68618",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-a-la-malmi-pekko-kappi-khhl-malmitalo-21485591/",
                        "sv": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-a-la-malmi-pekko-kappi-khhl-malmitalo-21485591/",
                        "en": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-a-la-malmi-pekko-kappi-khhl-malmitalo-21485591/"
                    },
                    "price": {
                        "fi": "20€ / 15€",
                        "sv": "20€ / 15€",
                        "en": "20€ / 15€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384964,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:02.326368Z",
                    "last_modified_time": "2026-06-05T07:14:02.326386Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791278.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384964/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T13:14:43.665474Z",
            "last_modified_time": "2026-06-18T08:13:43.946855Z",
            "date_published": null,
            "start_time": "2026-09-25T16:00:00Z",
            "end_time": "2026-09-25T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pekko Käppi & K:H:H:L – A la Malmi",
                "sv": "Pekko Käppi & K:H:H:L – A la Malmi",
                "en": "Pekko Käppi & K:H:H:L – A la Malmi"
            },
            "short_description": {
                "fi": "Pekko Käppi & K:H:H:L on tamperelainen, Suomen folkrocktaivaan nykyhetken kuumin ja kovaäänisin nelikko."
            },
            "description": {
                "fi": "<p>Pekko Käppi & K:H:H:L on tamperelainen, Suomen folkrocktaivaan nykyhetken kuumin ja kovaäänisin nelikko.</p><p>Yhtye perustettiin jouhikkotaiteilijana ja laulaja-lauluntekijänä tunnetun <b>Pekko Käpin</b> <i>Rammat jumalat</i> levyn ilmestyttyä vuonna 2013. Sittemmin yhtye on tehnyt kuusi kiiteltyä levyä ja kiertänyt planeettaamme ristiin rastiin.</p><p>Pekko Käpin musiikki yhdistää ilmavaa folk -ilmaisua, bluesin juurekkuutta ja psykedeelisvivahteista rockia. Lopputulos on ihastuttavaa kansanmusiikkia, joka on istutettu omaleimaisen nerokkaalla tavalla helposti lähestyttävän populaarimusiikin muottiin.</p><p>Yhtyeen kuudes albumi <i>Oli kerran ryytimaassa...</i> julkaistiin 2025.<br> <br>‍Yhtye:<br>Pekko Käppi – laulu, jouhikot<br>Tommi Laine – kitara, laulu<br>Nuutti Vapaavuori – basso, laulu<br>Gilbert Kuppusami – rummut, laulu</p><p>Kesto: 1 tunti</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7B5959CF25AD1B0ACB1E46428C8B9A77/Pekko_Kappi_K_H_H_L",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7B5959CF25AD1B0ACB1E46428C8B9A77/Pekko_Kappi_K_H_H_L",
                "en": "http://www.malmitalo.fi/en/events/event/7B5959CF25AD1B0ACB1E46428C8B9A77/Pekko_Kappi_K_H_H_L"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68618/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68938",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385244,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T07:14:43.609072Z",
                    "last_modified_time": "2026-06-18T07:14:43.609155Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792286.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385244/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T07:14:43.513936Z",
            "last_modified_time": "2026-06-18T08:13:43.422794Z",
            "date_published": null,
            "start_time": "2026-09-24T15:00:00Z",
            "end_time": "2026-09-24T17:04:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Downton Abbey: Viimeinen näytös – Yleisön suosikit",
                "sv": "Downton Abbey: Viimeinen näytös – Yleisön suosikit",
                "en": "Downton Abbey: Viimeinen näytös – Yleisön suosikit"
            },
            "short_description": {
                "fi": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia."
            },
            "description": {
                "fi": "<p>Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.</p><p>Rakastetun brittidraaman paluu elokuvateattereihin, seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle.</p><p>Kun rakastetut hahmot yrittävät luotsata Downton Abbeyn kartanoa tulevaisuuteen, heidän on hyväksyttävä muutoksen tuulet ja aloitettava uusi ajanjakso.</p><p>Kesto: 2h 4 min<br>Ikäraja: sallittu<br>Tekstitys: suomi<br>Vapaa pääsy!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4C61566C4942ED034C8142E128F5A25C/Downton_Abbey_Viimeinen_naytos",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4C61566C4942ED034C8142E128F5A25C/Downton_Abbey_Viimeinen_naytos",
                "en": "http://www.malmitalo.fi/en/events/event/4C61566C4942ED034C8142E128F5A25C/Downton_Abbey_Viimeinen_naytos"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68938/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67585",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/ilkka-rantamaki-the-bluesbrokers-british-blues-night-malmitalo-21243436/",
                        "sv": "https://www.lippu.fi/event/ilkka-rantamaki-the-bluesbrokers-british-blues-night-malmitalo-21243436/",
                        "en": "https://www.lippu.fi/event/ilkka-rantamaki-the-bluesbrokers-british-blues-night-malmitalo-21243436/"
                    },
                    "price": {
                        "fi": "22,80 € / 17,80 €",
                        "sv": "22,80 € / 17,80 €",
                        "en": "22,80 € / 17,80 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494624,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-26T10:12:54.544019Z",
                    "last_modified_time": "2026-01-26T10:12:54.544033Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781972.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494624/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-26T10:12:54.439770Z",
            "last_modified_time": "2026-06-18T08:13:41.992618Z",
            "date_published": null,
            "start_time": "2026-09-19T16:00:00Z",
            "end_time": "2026-09-19T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ilkka Rantamäki $ The Bluesbrokers: British Blues Night",
                "sv": "Ilkka Rantamäki $ The Bluesbrokers: British Blues Night",
                "en": "Ilkka Rantamäki $ The Bluesbrokers: British Blues Night"
            },
            "short_description": {
                "fi": "Ilkka Rantamäki $ The Bluesbrokers tuo kaikuja 60-luvun puolivälin sumuisen Lontoon psykedeelisiltä klubeilta.",
                "sv": "Ilkka Rantamäki $ The Bluesbrokers tar sina åhörare till det dimmiga Londons psykedeliska klubbar i mitten av 60-talet!",
                "en": "Ilkka Rantamäki & The Bluesbrokers transport their audience to the psychedelic clubs of foggy late-1960s London!"
            },
            "description": {
                "fi": "<p>Ilkka Rantamäki $ The Bluesbrokers tuo kaikuja 60-luvun puolivälin sumuisen Lontoon psykedeelisiltä klubeilta.</p><p>Yhtye soittaa aikakauden autenttisella soundilla ikonisten brittibluesbändien kuten John Mayall’s Bluesbreakersin, Peter Green’s Fleetwood Macin ja Juicy Lucyn tuotantoa. Setteihin on sulautettu myös muutama mainio pala John Hisemanin Tempest yhtyeen ensimmäiseltä levyltä.</p><p>Ilkka Rantamäki: kitara, lap-steel, laulu<br>Hannu Sorsa: urut, piano, laulu<br>Harri Vainikka: basso, laulu<br>Petteri Määttänen: rummut, laulu</p><p>Kesto: 2 t, sis. 20min väliajan</p>",
                "sv": "<p>Ilkka Rantamäki $ The Bluesbrokers tar sina åhörare till det dimmiga Londons psykedeliska klubbar i mitten av 60-talet!</p><p>Med sitt autentiska sound och grepp hämtar bandet tidsperiodens produktion av ikoniska brittiska bluesband, såsom John Mayall’s Bluesbreakers, Peter Green’s Fleetwood Mac och Juicy Lucy till scenen i Malms kulturhus.</p><p><b>Ensemble</b><br>Ilkka Rantamäki: gitarr, lap-steel, sång<br>Hannu Sorsa: orgel, piano, sång<br>Harri Vainikka: bas, sång<br>Petteri Määttänen: trummor, sång</p><p>Längd: 2 h min., inklusive en paus på 20 minuter</p>",
                "en": "<p>Ilkka Rantamäki & The Bluesbrokers transport their audience to the psychedelic clubs of foggy late-1960s London!</p><p>With their authentic sound and style, the band brings the music of iconic British blues bands of the era – such as John Mayall’s Bluesbreakers, Peter Green’s Fleetwood Mac and Juicy Lucy – to the Malmitalo stage.</p><p><b>Ensemble:</b><br>Ilkka Rantamäki: guitar, lap-steel, vocals<br>Hannu Sorsa: organ, piano, vocals<br>Harri Vainikka: bass, vocals<br>Petteri Määttänen: drums, vocals</p><p>Duration: 2 h, includes 20 min intermission</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BC2D3AE02DDF87525D54153A9E3E1014/Ilkka_Rantamaki_The_Bluesbrokers_British_Blues_Night",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BC2D3AE02DDF87525D54153A9E3E1014/Ilkka_Rantamaki_The_Bluesbrokers_British_Blues_Night",
                "en": "http://www.malmitalo.fi/en/events/event/BC2D3AE02DDF87525D54153A9E3E1014/Ilkka_Rantamaki_The_Bluesbrokers_British_Blues_Night"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67585/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68616",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sointi-jazz-orchestra-agatha-malmitalo-21615197/",
                        "sv": "https://www.lippu.fi/event/sointi-jazz-orchestra-agatha-malmitalo-21615197/",
                        "en": "https://www.lippu.fi/event/sointi-jazz-orchestra-agatha-malmitalo-21615197/"
                    },
                    "price": {
                        "fi": "11,10 / 28,90€",
                        "sv": "11,10 / 28,90€",
                        "en": "11,10 / 28,90€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384954,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T13:14:42.691232Z",
                    "last_modified_time": "2026-06-04T13:14:42.691248Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791268.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384954/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T13:14:42.447342Z",
            "last_modified_time": "2026-06-18T08:13:41.488046Z",
            "date_published": null,
            "start_time": "2026-09-18T16:00:00Z",
            "end_time": "2026-09-18T17:10:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sointi Jazz Orchestra: Agatha",
                "sv": "Sointi Jazz Orchestra: Agatha",
                "en": "Sointi Jazz Orchestra: Agatha"
            },
            "short_description": {
                "fi": "Sointi Jazz Orchestra esittää Kerkko Koskisen Agatha-teoksen alkuperäisessä laajuudessaan!"
            },
            "description": {
                "fi": "<p>Sointi Jazz Orchestra esittää Kerkko Koskisen Agatha-teoksen alkuperäisessä laajuudessaan!</p><p>Ultra Bran musiikillisena moottorina tunnetun <b>Kerkko Koskisen</b> ensimmäinen laaja instrumentaaliteos <i>Agatha</i> sai ensiesityksensä lähes 20 vuotta sitten. Jazzia ja klassista musiikkia ennakkoluulottomasti yhdistelevä elokuvallinen kokonaisuus kuullaan nyt monipuolisista esityksistään tunnetun Sointi Jazz Orchestran tulkitsemana. Jazzorkesteria täydentävät käyrätorvet ja perkussiot, jotka tuovat teokseen lisää syvyyttä ja väriä.</p><p>Koskisen musiikin ytimessä ovat kertomuksellisuus ja vahva melodinen ilmaisu. Hänen sävellyksensä ammentavat usein inspiraationsa runoudesta ja muista musiikin ulkopuolisista lähteistä. Tämä kuuluu myös Agatha-kokonaisuudessa, joka on saanut innoituksensa Koskista pitkään kiinnostaneesta Agatha Christien tuotannosta. Teoksessa yhdistyvät laulavat, toisiinsa punoutuvat melodiat ja hallittu harmoninen kaari. Lopputuloksena on musiikillinen maailma, joka luo voimakkaita, elokuvamaisia mielikuvia ja tunnelmia.</p><p>Sointi Jazz Orchestra on yksi Suomen kiinnostavimmista jazzorkestereista. Orkesteri tunnetaan tarkkaan kuratoiduista konserttikokonaisuuksistaan ja rohkeasta suhtautumisestaan uuteen musiikkiin. Orkesteri on toteuttanut lukuisia kantaesityksiä kotimaisin ja kansainvälisin solistein.</p><p>Kesto: 1 t 10 min</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/616BCFFF78D80F262DC113B13E1DD64F/Sointi_Jazz_Orchestra_Agatha",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/616BCFFF78D80F262DC113B13E1DD64F/Sointi_Jazz_Orchestra_Agatha",
                "en": "http://www.malmitalo.fi/en/events/event/616BCFFF78D80F262DC113B13E1DD64F/Sointi_Jazz_Orchestra_Agatha"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68616/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68652",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p39492/?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": 2385249,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T08:13:40.924006Z",
                    "last_modified_time": "2026-06-18T08:13:40.924021Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791505.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385249/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T08:13:40.801428Z",
            "last_modified_time": "2026-06-18T08:13:41.077037Z",
            "date_published": null,
            "start_time": "2026-09-18T14:00:00Z",
            "end_time": "2026-09-18T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Africa Day",
                "sv": "Africa Day",
                "en": "Africa Day"
            },
            "short_description": {
                "fi": "Malmitalolla ensimmäistä kertaa järjestettävä Africa Day esittelee musiikin, ruoan ja tanssin kautta senegalilaista, kenialaista ja kamerunilaista kulttuuria."
            },
            "description": {
                "fi": "<p>Malmitalolla ensimmäistä kertaa järjestettävä Africa Day esittelee musiikin, ruoan ja tanssin kautta senegalilaista, kenialaista ja kamerunilaista kulttuuria.</p><p>Tule juhlistamaan afrikkalaista kulttuuria! Päivän aikana osallistujat pääsevät nauttimaan Tossy Mboup & Gaal-Guin sekä Es-Ow'n ja The Ridial Bandin afropopista, kokeilemaan tanssia ja rummutusta yhdistävää sabaria sekä tuomaroimaan kokkikilpailua, jossa eri maiden ruokakulttuurit ottavat mittaa toisistaan.</p><p><b>Tossy Mboup & Gaal Gui</b> on kahdeksanhenkinen afroyhtye. Vuodesta 2013 Suomessa asuneen senegalilaisen laulaja-perkussionisti Tossy Mboupin johtama bändi yhdistelee musiikissaan lukuisia tyylejä afro-popista funkin ja salsan kautta mbalaxiin. Tossy Mboup julkaisi debyyttialbuminsa <i>Aduna</i> vuonna 2020.</p><p>Senegalilainen afropop-artisti <b>Es-Ow</b> perusti <b>The Ridial Band</b> -yhtyeen muutettuaan Suomeen vuonna 2012. Es-Ow'n musiikki on energinen sekoitus afrojuurista ammentavia monenkirjavia rytmejä, ääniä ja melodioita. Es-Ow ja The Ridial Band ovat esiintyneet Suomessa lukuisissa eri musiikkitapahtumissa, joista mainittakoon esimerkiksi World Village, Funky Elefant ja Afro Jazz -festivaalit.</p><p>Lähde matkalle Senegaliin <b>Malick Ndiayen</b> johdolla! <b>Sabar</b> ei ole vain tanssia, vaan kokonaisvaltainen perinne, jossa liike ja musiikki ovat erottamattomia. Se on tunnettu hienostuneesta rytmiikastaan, suurista ja sähäköistä liikkeistään sekä ilmeikkäästä tarinankerronnasta. Tunnilla opitaan Sabarin perusaskelia ja tutustutaan sen rikkaaseen rytmimaailmaan Malickin asiantuntevassa opastuksessa. Tule kokemaan, miten perinne muuttuu moderniksi energiaksi!</p><p><b>Aikataulu:</b><br>17–18: Tossy Mboup & Gaal-Gui<br>18–19: Kokkikisa! Ruokien maistelua ja voittajan valinta parvella<br>19–20: Sabarin opetusta aulassa Malick Ndiayen johdolla<br>20–21: Es-Ow ja The Ridial Band</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0D1D102D65B5D3769F3F5BF85C88A15C/Africa_Day",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0D1D102D65B5D3769F3F5BF85C88A15C/Africa_Day",
                "en": "http://www.malmitalo.fi/en/events/event/0D1D102D65B5D3769F3F5BF85C88A15C/Africa_Day"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68652/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68615",
            "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/artist/malmijazz/",
                        "sv": "https://www.lippu.fi/artist/malmijazz/",
                        "en": "https://www.lippu.fi/artist/malmijazz/"
                    },
                    "price": {
                        "fi": "20€/15€",
                        "sv": "20€/15€",
                        "en": "20€/15€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384952,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T12:13:53.618170Z",
                    "last_modified_time": "2026-06-04T12:13:53.618185Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791266.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384952/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T12:13:53.501079Z",
            "last_modified_time": "2026-06-18T08:13:40.571146Z",
            "date_published": null,
            "start_time": "2026-09-17T16:00:00Z",
            "end_time": "2026-09-17T17:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Riitta Paakki Quartet – MalmiJazz",
                "sv": "Riitta Paakki Quartet – MalmiJazz",
                "en": "Riitta Paakki Quartet – MalmiJazz"
            },
            "short_description": {
                "fi": "Omaperäisiä ja raikkaita sävellyksiä ja jazzin alkulähteiltä kumpuavaa svengiä."
            },
            "description": {
                "fi": "<p>Omaperäisiä ja raikkaita sävellyksiä ja jazzin alkulähteiltä kumpuavaa svengiä.</p><p>Riitta Paakki Quartet on vuonna 2013 perustettu alansa ansioituneimpiin lukeutuvan pianisti <b>Riitta Paakin</b> säveltämää musiikkia soittava yhtye. Kvartetin ilmaisussa kohtaavat malmilaisen Paakin selkeä soittotyyli, <b>Manuel Dunkelin</b> voimakas ja vivahteikas soundi sekä <b>Antti Lötjösen</b> ja <b>Joonas Riipan</b> muodostama poreileva rytmisektio. Yhteissoitossa hehkuu musiikin ilo, joka välittyy myös kuulijoiden sydämiin. Paakin vauhdikkaammat sävellykset soivat arvonsa tuntevasti vuosikymmenten takaista bebopia, rauhallisemmat maalailevat perisuomalaisia melankolisia maisemia. Musiikki huokuu kypsää näkemystä ja valoisaa asennetta.</p><p>Yhtyeen ensimmäinen levy on liveäänitys, <i>Live at Koko Jazz Club</i> (2018). Vuonna 2020 julkaistu <i>Piste</i> oli Emma-palkintoehdokas vuoden jazz-albumiksi. <i>Väri</i> vuodelta 2023 sai myös hyvän vastaanoton.</p><p>Yhtye valmistelee parhaillaan uutta julkaisua ja keikalla kuullaan myös uutta materiaalia!</p><p>Manuel Dunkel – saksofoni<br>Riitta Paakki – piano<br>Antti Lötjönen – basso<br>Joonas Riippa – rummut</p><p>Kesto: 1 t 15 min</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2A1E211749E4F6D12C6AB522BD5354A0/Riitta_Paakki_Quartet",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2A1E211749E4F6D12C6AB522BD5354A0/Riitta_Paakki_Quartet",
                "en": "http://www.malmitalo.fi/en/events/event/2A1E211749E4F6D12C6AB522BD5354A0/Riitta_Paakki_Quartet"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68615/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68813",
            "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: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:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385248,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T08:13:40.048679Z",
                    "last_modified_time": "2026-06-18T08:13:40.048694Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792027.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385248/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T08:13:39.926547Z",
            "last_modified_time": "2026-06-18T08:13:40.188678Z",
            "date_published": null,
            "start_time": "2026-09-17T15:00:00Z",
            "end_time": "2026-09-17T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Tuomari Nurmio – 13 kylmää laulua (7) – Doc Helios",
                "sv": "Tuomari Nurmio – 13 kylmää laulua (7) – Doc Helios",
                "en": "Tuomari Nurmio – 13 kylmää laulua (7) – Doc Helios"
            },
            "short_description": {
                "fi": "Valitettavan ajankohtaisia yhteiskunnallisia lauluja Tuomari Nurmion katalogista yli 40 vuoden ajalta."
            },
            "description": {
                "fi": "<p>Valitettavan ajankohtaisia yhteiskunnallisia lauluja Tuomari Nurmion katalogista yli 40 vuoden ajalta.</p><p>Teemakonsertti ”Lauluja sodasta ja diktatuurista” esitettiin Helsingin juhlaviikkojen Huvilateltassa, Tampereen Tavara-asemalla ja vielä 30.9 2024 Tavastia -klubilla, missä tämä dokumentti tallennettiin.</p><p>Tuomari Nurmio kommentoi itse näin: ”Olen kirjoittanut nämä laulut yli 40 vuoden aikajänteellä, ja ne ovat pysyneet ajankohtaisina valitettavan hyvin. Vaikka teemat ovat pohjavireeltään synkkiä, niiden musta huumori toivottavasti toimii myös terapiana näinäkin pelon ja epävarmuuden aikoina.”</p><p>Kesto: 1 t 2 min<br>Kieli: suomi<br>Ikäraja: 7<br>Vapaa pääsy</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C26BDCFACEFB9ECE9F1EF9E258E7CEBD/Tuomari_Nurmio_13_kylmaa_laulua_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C26BDCFACEFB9ECE9F1EF9E258E7CEBD/Tuomari_Nurmio_13_kylmaa_laulua_7_",
                "en": "http://www.malmitalo.fi/en/events/event/C26BDCFACEFB9ECE9F1EF9E258E7CEBD/Tuomari_Nurmio_13_kylmaa_laulua_7_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68813/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69454",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@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": 2385247,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T08:13:39.484006Z",
                    "last_modified_time": "2026-06-18T08:13:39.484020Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791474.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385247/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-06-18T08:13:39.374723Z",
            "last_modified_time": "2026-06-18T08:13:39.638045Z",
            "date_published": null,
            "start_time": "2026-09-16T14:00:00Z",
            "end_time": "2026-09-16T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Piirustus- ja maalauspaja",
                "sv": "Piirustus- ja maalauspaja",
                "en": "Piirustus- ja maalauspaja"
            },
            "short_description": {
                "fi": "Tervetuloa piirtämään ja maalaamaan ammattitaiteilijan ohjauksessa!"
            },
            "description": {
                "fi": "<p>Tervetuloa piirtämään ja maalaamaan ammattitaiteilijan ohjauksessa!</p><p>Piirustus-maalaus työpajassa pääset sekä oppimaan tekniikoita, että toteuttamaan omaa luovuuttasi ja ideoitasi kiinnostuksesi mukaan. Työpajoissa saa keskittyä tekemiseen musiikkia kuunnellen. Voit olla vasta-alkaja tai jo jonkin verran kuvataidetta tehnyt, opettaja osaa ottaa huomioon yksilöllisesti.</p><p>Helsingin Taiteilijaseura ylläpitää myös näyttelyitä Malmitalon galleriassa ja voimme tehdä vierailuja vaihtuviin näyttelyihin yhdessä. Kurssi on maksuton, mutta vaatii ilmoittautumisen. Kurssille mahtuu 12 osallistujaa. Kurssi on osa nuorten Operaatio Pulssi-toimintaa.</p><p>Kurssi järjestetään keskiviikkoisin 16.9.–11.11., muttei syyslomaviikolla 14.10.</p><p><u><a>href=\"https://linkedregistration.hel.fi/fi/registration/1631/signup-group/create\">Ilmoittaudu mukaan!</u></a></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F6CEAAA433232D2B7500BAAC52C46D5C/Piirustus-_ja_maalauspaja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F6CEAAA433232D2B7500BAAC52C46D5C/Piirustus-_ja_maalauspaja",
                "en": "http://www.malmitalo.fi/en/events/event/F6CEAAA433232D2B7500BAAC52C46D5C/Piirustus-_ja_maalauspaja"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69454/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69453",
            "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:733/?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:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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": 2385246,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T08:13:37.710610Z",
                    "last_modified_time": "2026-06-18T08:13:37.710628Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792229.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385246/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T08:13:37.519423Z",
            "last_modified_time": "2026-06-18T08:13:37.936398Z",
            "date_published": null,
            "start_time": "2026-09-10T10: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,
            "name": {
                "fi": "Hetki ennen valoa – HopeaCine",
                "sv": "Hetki ennen valoa – HopeaCine",
                "en": "Hetki ennen valoa – HopeaCine"
            },
            "short_description": {
                "fi": "Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa."
            },
            "description": {
                "fi": "<p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa.</p><p>Klaus Härön uutuuselokuva <i>Hetki ennen valoa</i>kertoo kahden naisen kohtaamisesta keskellä hoitoalan kriisiä. Erikoissairaanhoitaja Inka (Laura Birn) tekee työtään suurella sydämellä vaativien työolosuhteiden ja oman perhe-elämänsä ristipaineessa. Lenin (Oona Airola) ja Karin (Jussi Vatanen) onni rakoilee, kun heidän vastasyntynyt vauvansa kiidätetään äkillisesti tehohoitoon.</p><p>Sairaanhoitajat suunnittelevat lakkoa parempien työolosuhteiden puolesta, ja epävarmuuden hetkellä hämmentynyt Leni löytää tukea ja toivoa Inkasta. Inka on kuitenkin vaikeiden päätösten äärellä. Molemmat naiset toimivat rakkaudesta ja velvollisuudesta – mutta miten tehdä oikea valinta, kun vaakalaudalla ovat oma ja toisten elämä?</p><p>Kuhunkin HopeaCine-esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi. Vieraat julkistetaan myöhempänä ajankohtana. HopeaCine näytökset löydät myös Cinema Orionista ja Vuotalolta.</p><p>Syyskuun elokuva: Hetki ennen valoa<br>Malmitalo to 10.9. klo 13.00<br>Cinema Orion ke 23.9. klo 13.00<br>Vuotalo ti 29.9. klo 14.00</p><p>Lokakuun elokuva: Presidentin kyyditys<br>Cinema Orion ke 14.10. klo 13.00<br>Malmitalo to 22.10. klo 13.00<br>Vuotalo ti 27.10. klo 14.00</p><p>Marraskuun elokuva: Lapin sota<br>Malmitalo to 12.11. klo 13.00<br>Cinema Orion ke 18.11. klo 13.00<br>Vuotalo ti 24.11. klo 14.00</p><p>Joulukuun elokuva: Kerro kaikille<br>Cinema Orion ke 9.12. klo 13.00<br>Malmitalo to 10.12. klo 13.00<br>Vuotalo ti 15.12. klo 14.00</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6AF276ECCB969D04ABE575CEF6E048F1/Hetki_ennen_valoa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6AF276ECCB969D04ABE575CEF6E048F1/Hetki_ennen_valoa",
                "en": "http://www.malmitalo.fi/en/events/event/6AF276ECCB969D04ABE575CEF6E048F1/Hetki_ennen_valoa"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69453/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68939",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385245,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T07:14:44.157657Z",
                    "last_modified_time": "2026-06-18T07:14:44.157679Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792289.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385245/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-06-18T07:14:44.063981Z",
            "last_modified_time": "2026-06-18T07:14:44.289515Z",
            "date_published": null,
            "start_time": "2026-09-26T07:00:00Z",
            "end_time": "2026-09-26T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Nezumicon",
                "sv": "Nezumicon",
                "en": "Nezumicon"
            },
            "short_description": {
                "fi": "Nezumicon on nuorten tuottama Cosplay-tapahtuma Malmitalolla! Tapahtumassa on manga- ja animeaiheista ohjelmaa ja tekemistä."
            },
            "description": {
                "fi": "<p>Nezumicon on nuorten tuottama Cosplay-tapahtuma Malmitalolla! Tapahtumassa on manga- ja animeaiheista ohjelmaa ja tekemistä.</p><p>Tapahtuma on maksuton ja suunnattu nuorille.</p><p>Tapahtuman tuottamisessa nuoria auttaa Operaatio Pulssi! Pohjoinen, Malmitalo, Malmin kirjasto ja Malmin nuorisotyöyksikkö.</p><p>Vapaa pääsy</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/88A4527ADF3A0FB1A4E9AB1871237BB2/Nezumicon",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/88A4527ADF3A0FB1A4E9AB1871237BB2/Nezumicon",
                "en": "http://www.malmitalo.fi/en/events/event/88A4527ADF3A0FB1A4E9AB1871237BB2/Nezumicon"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68939/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69228",
            "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/artist/malmitalo/tuomari-nurmio-folk-liisa-4175834/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/tuomari-nurmio-folk-liisa-4175834/",
                        "en": "https://www.lippu.fi/artist/malmitalo/tuomari-nurmio-folk-liisa-4175834/"
                    },
                    "price": {
                        "fi": "20 / 15 €",
                        "sv": "20 / 15 €",
                        "en": "20 / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385243,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T07:14:40.734059Z",
                    "last_modified_time": "2026-06-18T07:14:40.734096Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793540.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385243/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T07:14:40.628060Z",
            "last_modified_time": "2026-06-18T07:14:40.849718Z",
            "date_published": null,
            "start_time": "2026-09-09T16:00:00Z",
            "end_time": "2026-09-09T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Tuomari Nurmio & Folk-Liisa",
                "sv": "Tuomari Nurmio & Folk-Liisa",
                "en": "Tuomari Nurmio & Folk-Liisa"
            },
            "short_description": {
                "fi": "Tuomari Nurmio & Folk-Liisa on duo, joka yhdistää kansanmusiikin perinteet, rosoisuuden ja tarinallisen syvyyden ainutlaatuisella tavalla."
            },
            "description": {
                "fi": "<p>Tuomari Nurmio & Folk-Liisa on duo, joka yhdistää kansanmusiikin perinteet, rosoisuuden ja tarinallisen syvyyden ainutlaatuisella tavalla.</p><p>Yhtyeen muodostavat suomalaisen rockin ja kansanmusiikin legenda Tuomari Nurmio sekä folk-musiikkiin syvälle sukeltanut Liisa Eskola. Kaksikko kutsuu itse musiikkiaan ”keittiömusiikiksi tai urbaaniksi sähköfolkiksi”.<br> <br><b>Tuomari Nurmio</b> on suomalaisen rockmusiikin paitsi keskeisimpiä biisintekijöitä ja vaikuttajia, myös eräs uudistumiskykyisimmistä esiintyjistä. Vuonna 1979 alkaneen uransa aikana Tuomari Nurmio on julkaissut 19 studioalbumia, joista kaksi on myynyt kultaa. Kriitikoiden klassikkoluokkaan nostamien julkaisujen, juhlittujen konserttien ja tunnustusten lista on pitkä – mainittakoon tässä Nurmiolle ainoana rockmuusikkona myönnetty Eino Leinon kirjallisuuspalkinto.</p><p><b>Liisa \"Folk Liisa\" Eskola</b> on puolestaan laulanut ja soittanut kitaraa Ajopuut-yhtyessä sekä duona Tuomari Nurmion kanssa vuodesta 2008.</p><p>Kesto: 2 t, sis. 20 min väliajan</p><p>Malmitalolla nähdään myös <i>Tuomari Nurmio – 13 kylmää laulua</i> -dokumentti torstaina 17.9. klo 18 osana Doc Helios -sarjaa! Liput näytökseen tulevat myyntiin elokuun loppuun mennessä.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DC5E638E835E278E96D8DBB3990435C5/Tuomari_Nurmio_Folk-Liisa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DC5E638E835E278E96D8DBB3990435C5/Tuomari_Nurmio_Folk-Liisa",
                "en": "http://www.malmitalo.fi/en/events/event/DC5E638E835E278E96D8DBB3990435C5/Tuomari_Nurmio_Folk-Liisa"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69228/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68619",
            "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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385242,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T07:14:40.081399Z",
                    "last_modified_time": "2026-06-18T07:14:40.081413Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791280.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385242/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T07:14:39.972028Z",
            "last_modified_time": "2026-06-18T07:14:40.241706Z",
            "date_published": null,
            "start_time": "2026-09-08T14:00:00Z",
            "end_time": "2026-09-08T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Malmitalon yhteislaulut",
                "sv": "Malmitalon yhteislaulut",
                "en": "Malmitalon yhteislaulut"
            },
            "short_description": {
                "fi": "Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2026!"
            },
            "description": {
                "fi": "<p>Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2026!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja. <br>  <br>Yhteislauluja järjestetään Malmitalon pienessä salissa kerran kuussa tiistaisin seuraavasti: <br>  <br>Ti 8.9. klo 17 <br>Ti 27.10. klo 17 <br>Ti 24.11. klo 17 <br>Ti 8.12. klo 17 <br> <br>Kesto: 1 tunti <br> <br>Tervetuloa mukaan! Vapaa pääsy.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6EC89164809A520154F0B04D5C4A2D45/Malmitalon_yhteislaulut_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6EC89164809A520154F0B04D5C4A2D45/Malmitalon_yhteislaulut_",
                "en": "http://www.malmitalo.fi/en/events/event/6EC89164809A520154F0B04D5C4A2D45/Malmitalon_yhteislaulut_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68619/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68639",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385241,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T07:14:39.516437Z",
                    "last_modified_time": "2026-06-18T07:14:39.516492Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791357.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385241/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T07:14:39.369180Z",
            "last_modified_time": "2026-06-18T07:14:39.669779Z",
            "date_published": null,
            "start_time": "2026-09-07T15:00:00Z",
            "end_time": "2026-09-07T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Yhteisötanssit: Salsaa Bomba Buena Social Clubin kanssa – Malmitalon yhteisömaanantait",
                "sv": "Yhteisötanssit: Salsaa Bomba Buena Social Clubin kanssa",
                "en": "Yhteisötanssit: Salsaa Bomba Buena Social Clubin kanssa"
            },
            "short_description": {
                "fi": "Kuun ensimmäisenä maanantaina tanssitaan Malmitalolla!"
            },
            "description": {
                "fi": "<p>Kuun ensimmäisenä maanantaina tanssitaan Malmitalolla!</p><p>Ilmaiset ja kaikille avoimet yhteisötanssit alkavat tanssiopetuksella, jonka jälkeen oppeja pääsee harjoittelemaan livebändin säestyksellä. Tanssittava tyyli vaihtuu joka kuukausi. Tervetuloa tanssimaan! Tapahtuma on osa Malmitalon yhteisömaanantait-sarjaa.</p><p>Suomalais-kuubalainen Bomba Buena vie kuulijansa pikavisiitille Vanhaan Havannaan. Mehukkaasta groovesta ja autenttisesta fiiliksestään tunnettu son- ja timbamusiikin tehobändi soittaa Kuuban rikkaan musiikkiperinteen helmiä tunteella, taidolla sekä kuolematonta elämäniloa ja asennetta pursuavalla energialla.<br> <br>Aikataulu:<br>18–19 Queerlatindance: Salsa<br>19–20 Bomba Buena Social Club</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0DBE12BA0FA40A4FE9DABD27B8020569/Yhteisotanssit_Salsaa_Bomba_Buena_Social_Clubin_kanssa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0DBE12BA0FA40A4FE9DABD27B8020569/Yhteisotanssit_Salsaa_Bomba_Buena_Social_Clubin_kanssa",
                "en": "http://www.malmitalo.fi/en/events/event/0DBE12BA0FA40A4FE9DABD27B8020569/Yhteisotanssit_Salsaa_Bomba_Buena_Social_Clubin_kanssa"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68639/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69233",
            "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:223/?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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p360/?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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702290/",
                        "sv": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702290/",
                        "en": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702290/"
                    },
                    "price": {
                        "fi": "15 / 7 €",
                        "sv": "15 / 7 €",
                        "en": "15 / 7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384946,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T10:13:55.160756Z",
                    "last_modified_time": "2026-06-04T10:13:55.160772Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791976.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384946/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T10:13:55.034450Z",
            "last_modified_time": "2026-06-18T06:14:10.617597Z",
            "date_published": null,
            "start_time": "2026-11-27T17:00:00Z",
            "end_time": "2026-11-27T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "We Music: EMILII – Kaisa Ollila – Milou – Vilma Talvitie Caisa 30 Club",
                "sv": "We Music: EMILII – Kaisa Ollila – Milou – Vilma Talvitie Caisa 30 Club",
                "en": "We Music: EMILII – Kaisa Ollila – Milou – Vilma Talvitie Caisa 30 Club"
            },
            "short_description": {
                "fi": "We Music – EMILII, Kaisa Ollila, Milou ja Vilma Talvitie – on vastavoima yksilökeskeiselle artistikulttuurille."
            },
            "description": {
                "fi": "<p>We Music – EMILII, Kaisa Ollila, Milou ja Vilma Talvitie – on vastavoima yksilökeskeiselle artistikulttuurille.</p><p>Taiteilijakollektiivi juhlii yhteisöllisyyttä ja yhteenkuuluvuutta. Kollektiivissa kannustetaan eri taiteiden muotojen yhdistämiseen, musiikkigenrejen sekoittamiseen, kokeiluun ja kielten diversiteettiin.</p><p>We Musicin debyyttiesitys nähdään kulttuurikeskus Caisassa 27.11. Illan aikana koetaan neljä erilaista esitystä, jotka yhdistelevät musiikkia, teatteria, visuaalisuutta ja liikettä. Artistit vierailevat myös toistensa esityksissä ja ovat näin hetken osa toistensa taidetta. Illan esitykset ovat siksi uniikkeja.</p><p><b>EMILII</b> on eksistentiaalinen kriisi kiedottuna elektroniseen soundiin. <br><b>Kaisla Ollila</b> on minimusikaali lavalla ja luonnossa.  <br><b>Milou</b> on suomalaista melankoliaa ranskaksi romantisoituna.<br><b>Vilma Talvitie</b> on yhden naisen maailmaa kiertävä yhtye, jossa ääni, keho ja piano sulautuvat yhdeksi.</p><p>Esityskielet: suomi, ranska, englanti <br>Esityksen kesto: 2 t 20 min sisältäen väliajan <br>Liput: 15 / 7 euroa osoitteesta lippu.fi</p><p>Esitys sopii nuorille ja aikuisille, monikieliselle yleisölle ja kaikille monimuotoisesta taiteesta kiinnostuneille.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/A30CB5D0F313FCDE93ADD51AE9BE95FA/We_Music_EMILII_Kaisa_Ollila_Milou_Vilma_Talvitie_Caisa_30_Club_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/A30CB5D0F313FCDE93ADD51AE9BE95FA/We_Music_EMILII_Kaisa_Ollila_Milou_Vilma_Talvitie_Caisa_30_Club_",
                "en": "http://www.caisa.fi/en/events/event/A30CB5D0F313FCDE93ADD51AE9BE95FA/We_Music_EMILII_Kaisa_Ollila_Milou_Vilma_Talvitie_Caisa_30_Club_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69233/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68648",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385240,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T06:14:05.747464Z",
                    "last_modified_time": "2026-06-18T06:14:05.747543Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791484.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385240/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T06:14:05.674921Z",
            "last_modified_time": "2026-06-18T06:14:05.841985Z",
            "date_published": null,
            "start_time": "2026-09-28T15:00:00Z",
            "end_time": "2026-09-28T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Malmitalon teehuone – Malmitalon yhteisömaanantait",
                "sv": "Malmitalon teehuone – Malmitalon yhteisömaanantait",
                "en": "Malmitalon teehuone – Malmitalon yhteisömaanantait"
            },
            "short_description": {
                "fi": "Kuun viimeinen maanantai Malmitalon parvi muuttuu teehuoneeksi, jossa pääset tutustumaan eri maiden teekulttuureihin ohjaajan opastuksella."
            },
            "description": {
                "fi": "<p>Kuun viimeinen maanantai Malmitalon parvi muuttuu teehuoneeksi, jossa pääset tutustumaan eri maiden teekulttuureihin ohjaajan opastuksella.</p><p>Teehuone on yhteisöllinen ja kaikille avoin tila hengähtämiseen, rentoutumiseen ja eri kulttuureista oppimiseen.</p><p>Tarjolla teetä ja pieniä herkkuja.</p><p>Tapahtuma on osa Malmitalon yhteisömaanantait-sarjaa.</p><p>Vapaa pääsy! <br>Malmitalon aula</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6E96ED90D30286D7F0AB3054B36EFBFA/Malmitalon_teehuone",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6E96ED90D30286D7F0AB3054B36EFBFA/Malmitalon_teehuone",
                "en": "http://www.malmitalo.fi/en/events/event/6E96ED90D30286D7F0AB3054B36EFBFA/Malmitalon_teehuone"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68648/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69135",
            "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: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:747/?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:p13050/?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": 2384808,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-01T13:14:33.379480Z",
                    "last_modified_time": "2026-06-01T13:14:33.379502Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790406.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T13:14:33.245269Z",
            "last_modified_time": "2026-06-18T06:14:02.866167Z",
            "date_published": null,
            "start_time": "2026-09-14",
            "end_time": "2026-12-07",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän aikuisilleen (FI/ENG/RU)",
                "sv": "Dans och lek – Verkstad för småbarn (1–3 år) och deras vuxna",
                "en": "Dance and play – Workshop for children aged 1.5–3, and their adults (FI/ENG)"
            },
            "short_description": {
                "fi": "Tervetuloa tanssin ja leikin maailmaan Caisassa maanantaisin klo 9.15 ja 10.15!",
                "sv": "Välkommen till en värld av dans och lek på Caisa, måndagar kl. 9.15 och 10.15!",
                "en": "Welcome to the world of dance and play in Caisa on Mondays at 9:15 and 10:15!"
            },
            "description": {
                "fi": "<p>Tervetuloa tanssin ja leikin maailmaan Caisassa maanantaisin klo 9.15 ja 10.15!</p><p><b>Työpajat maanantaisin 14.9.–7.12.<br>Työpaja 1: klo 9.15–10.00<br>Työpaja 2: klo 10.15–11.00</b><br>Työpajoja ei järjestetä syyslomaviikon maanantaina 12.10.</p><p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta. Työpaja on suunnattu 1–3-vuotiaille taaperoille ja heidän aikuisilleen. Taaperon tulisi osata jo kävellä. Sopii osallistujille erilaisilla kyvyillä, myös erityistarpeet huomioiden. Vanhemmat sisarukset ovat tervetulleita mukaan.</p><p>Työpajassa lapset leikkivät, kommunikoivat ja ilmaisevat itseään liikkeen ja tanssin kautta. Liike toimii kaikille yhteisenä kielenä. Työpajat on suunniteltu huomioimaan osallistujien yksilöllisiä tarpeita osana sosiaalista ryhmätilannetta. Tavoitteena on kehittää sosiaalisia suhteita ikätovereiden kanssa, sekä löytää uusia vuorovaikutuksen tapoja oman aikuisen kanssa. Turvallisessa ja ystävällisessä ilmapiirissä syntyvät positiiviset kokemukset edesauttavat osallistujia oppimaan uusia taitoja.</p><p>Työpajan ohjaa Vera Lapitskaya, tanssitaiteilija ja inklusiivinen tanssiohjaaja.</p><p>Opetuskieli: suomi (englanti, venäjä, espanja tarvittaessa)</p><p>Osallistuminen:</p><p>Työpajaan voi osallistua silloin kun se itselle sopii: kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista; paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä lasta aikuisen seurassa.</p><p>Tiedustelut ja kysymykset: teemu.savikurki@hel.fi</p>",
                "sv": "<p>Välkommen till en värld av dans och lek på Caisa, måndagar kl. 9.15 och 10.15!</p><p><b>Verkstäder måndagar 14.9–7.12.<br>Verkstad 1: kl. 9.15–10.00<br>Verkstad 2: kl. 10.15–11.00</b><br>Vi anordnar inga verkstäder måndagen den 12.10 under höstlovsveckan.</p><p>Dans och lek-verkstaden introducerar barnen till dansens värld genom rörelse, musik och lek. Verkstaden riktar sig till barn i åldern 1–3 år och deras vuxna. Barnet behöver kunna gå. Passar för deltagare med olika förmågor, även sådana som har särskilda behov. Äldre syskon är välkomna att vara med.</p><p>I verkstaden får barnen leka, kommunicera och uttrycka sig genom rörelse och dans. Rörelsen fungerar som ett gemensamt språk för alla. Verkstäderna är planerade för att ta hänsyn till deltagarnas individuella behov som en del av en social gruppsituation. Målet är att utveckla de sociala relationerna med jämnåriga och att hitta nya sätt att samspela med den vuxna. Positiva upplevelser i en trygg och vänlig miljö hjälper deltagarna att lära sig nya färdigheter.</p><p>Verkstaden leds av Vera Lapitskaya, danskonstnär och inkluderande dansinstruktör.</p><p>Undervisningsspråk: finska (engelska, ryska, spanska vid behov)</p><p>Deltagande</p><p>Du kan delta i workshopen när det passar dig, alla gånger eller bara några av dem. Välj en tid som passar dig och kom i tid. Ingen förhandsanmälan, platserna fylls enligt ”först till kvarn”-principen. De 12 första barnen i sällskap med en vuxen får plats.</p><p>Frågor och förfrågningar: teemu.savikurki@hel.fi</p>",
                "en": "<p>Welcome to the world of dance and play in Caisa on Mondays at 9:15 and 10:15!</p><p><b>Workshops on Mondays, 14 September–7 December<br>Workshop 1: 9:15–10:00.<br>Workshop 2: 10:15–11:00</b><br>We will not be holding workshops on Monday, 12 October, during the autumn holiday week.</p><p>The dance and play workshops introduce children to the world of dance through movement, music and play. The workshop is aimed at toddlers aged 1–3 and their adults. Participating toddlers should be already able to walk. Suitable for participants with varied ableness, including those with special needs. Older siblings are welcome to join.</p><p>In the workshop, children play, communicate and express themselves through movement and dance. Movement acts as a common language for everyone. The workshops are designed to take into account the individual needs of the participants as part of a social group situation. The goal is to develop social relationships with their peers, and to find new ways of interacting with their own adult. The positive experiences created in a safe and friendly atmosphere help participants learn new skills.</p><p>The workshop is directed by Vera Lapitskaya, dance artist and inclusive dance instructor.</p><p>Language of instruction: Finnish (English, Russian, Spanish if necessary)</p><p>Participation:</p><p>The workshop is free of charge. You can participate in the workshop whenever it suits you: each time, or just sometimes. Choose a time that suits you and please arrive on time. No pre-registration necessary; places will be filled on a first-come, first-served basis. The first 12 children with an adult may join.</p><p>Questions and inquiries: teemu.savikurki@hel.fi</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/37A077C19A795C1F3A003FFE51535D21/Tanssi_ja_leikki",
                "sv": "http://www.caisa.fi/sv/evenemang/event/37A077C19A795C1F3A003FFE51535D21/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/37A077C19A795C1F3A003FFE51535D21/Dance_and_play"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69135/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68738",
            "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:33/?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: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": 2385239,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T06:14:01.299015Z",
                    "last_modified_time": "2026-06-18T06:14:01.299035Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791865.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385239/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T06:14:01.173166Z",
            "last_modified_time": "2026-06-18T06:14:01.476536Z",
            "date_published": null,
            "start_time": "2026-09-07T14:30:00Z",
            "end_time": "2026-09-07T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Monenkielinen teatteri",
                "sv": "Monenkielinen teatteri",
                "en": "Monenkielinen teatteri"
            },
            "short_description": {
                "fi": "On aika uskaltaa! Tule tutustumaan teatteriin ja esiintymiseen.",
                "en": "It's time to dare! Come and explore theater and theatre performing."
            },
            "description": {
                "fi": "<p>On aika uskaltaa! Tule tutustumaan teatteriin ja esiintymiseen.</p><p>Sinun ei tarvitse osata näytellä, riittää, että sinua kiinnostaa esiintyminen muiden kanssa. Kurssi kestää kaksi erillistä lukukautta, toinen on syksyllä ja toinen keväällä. Syksyn kurssilla perehdytään näyttelemisen perusteisiin erilaisten harjoitteiden, leikkien ja pelien kautta. Keväällä harjoitellaan pienimuotoinen esitys kurssin päätteeksi.</p><p>Kurssilla opit esiintymistaitoa, itseilmaisua ja äänenkäyttöä sekä näyttelemisen peruskäsitteitä.  Kurssin opetuskieli on suomi ja luonnollisesti kehonkieli.  Apukielenä on englanti. Opettaja taitaa myös jonkin verran saksaa, vähän venäjää, sekä muutamia lauseita malesianmalaijia.</p><p>Kurssi kestää kaksi erillistä lukukautta, joista toinen on syksyllä ja toinen keväällä. Kevätkaudella on kaksi harjoituskertaa viikossa, joista sovitaan tarkemmin syksyn aikana. Syksyn aikana kurssi kokoontuu <b>maanantaisin 7.9.–30.11.</b>, muttei syyslomaviikolla 12.10.</p><p><u><a href=\"https://ilmonet.fi/course/H263774\">Ilmoittaudu mukaan tästä linkistä</u></a>!</p>",
                "en": "<p>It's time to dare! Come and explore theater and theatre performing.</p><p>You don't need to know how to act; all you need is an interest in performing with others. The course lasts two separate semesters, one in the fall and the other in the spring. The fall course introduces the basics of acting through various exercises, games, and activities. In the spring, a small-scale performance is practiced at the end of the course.</p><p>In the course, you will learn performance skills, self-expression, and voice use, as well as the basic concepts of acting. The language of instruction for the course is Finnish and, of course, body language. The auxiliary language is English. The teacher also speaks some German, a little Russian and a few phrases of Malaysian Malay.</p><p>The course lasts two separate semesters, one in the fall and the other in the spring. There are two lessons per week in the spring semester. The exact dates will be agreed upon in the fall. During Autumn, the course meets <b>on Mondays from 7 September till 30 November</b>, but not on the Autumn break week on 12 October.</p><p><u><a href=\"https://ilmonet.fi/course/H263774?lang=en\">Register now via this link</u></a>!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E7E866991DA3C5EED3DED9222D7EF6BA/Monenkielinen_teatteri",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E7E866991DA3C5EED3DED9222D7EF6BA/Monenkielinen_teatteri",
                "en": "http://www.malmitalo.fi/en/events/event/E7E866991DA3C5EED3DED9222D7EF6BA/Monenkielinen_teatteri"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68738/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68752",
            "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: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: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": 2385238,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T06:14:00.751919Z",
                    "last_modified_time": "2026-06-18T06:14:00.751937Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791911.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385238/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T06:14:00.569194Z",
            "last_modified_time": "2026-06-18T06:14:00.965068Z",
            "date_published": null,
            "start_time": "2026-09-07T11:00:00Z",
            "end_time": "2026-09-07T12: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,
            "name": {
                "fi": "Malmitalon monikulttuurinen naiskuoro",
                "sv": "Malmitalon monikulttuurinen naiskuoro",
                "en": "Malmitalon monikulttuurinen naiskuoro"
            },
            "short_description": {
                "fi": "Malmitalossa aloittaa uusi lauluryhmä naisille. Tervetuloa mukaan laulamaan!"
            },
            "description": {
                "fi": "<p>Malmitalossa aloittaa uusi lauluryhmä naisille. Tervetuloa mukaan laulamaan!</p><p>Tämä ryhmä on tarkoitettu erityisesti maahanmuuttajataustaisille naisille, mutta mukaan ovat tervetulleita myös suomea äidinkielenään puhuvat naislaulajat. Voit tuoda mukanasi oman kulttuurisi lauluja ja oppia eri maista tulevia lauluja.</p><p>Ryhmän opettajana on musiikinopettaja Mirva Soininen. Hän johtaa myös Maailmanmusiikkikuoro Sawa Sawaa Opistotalossa.</p><p>Kuoro on ilmainen, mutta siihen tulee ilmoittautua. <u><a> href=\"https://ilmonet.fi/course/H264371\">Ilmoittautuminen tapahtuu tämän linkin kautta</a></u>, tai Helsingin työväenopiston asiakaspalvelupisteellä (Malmitalo, 1. krs). Voit myös tulla ensimmäiselle kerralle, jolloin opettaja neuvoo ilmoittautumisessa.</p><p>Ryhmä kokoontuu joka toinen maanantai Isoluokassa (työväenopiston käytävä, 1.krs):</p><p>ma 7.9.<br>ma 21.9.<br>ma 5.10.<br>ma 19.10.<br>ma 2.11.<br>ma 16.11.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/292BF224CB5D490CA4B045EE7E5D3CCF/Malmitalon_monikulttuurinen_naiskuoro",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/292BF224CB5D490CA4B045EE7E5D3CCF/Malmitalon_monikulttuurinen_naiskuoro",
                "en": "http://www.malmitalo.fi/en/events/event/292BF224CB5D490CA4B045EE7E5D3CCF/Malmitalon_monikulttuurinen_naiskuoro"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68752/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68345",
            "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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385048,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-10T09:13:47.523436Z",
                    "last_modified_time": "2026-06-10T09:13:47.523449Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787747.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385048/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-10T09:13:47.421396Z",
            "last_modified_time": "2026-06-18T06:13:57.889533Z",
            "date_published": null,
            "start_time": "2026-08-27T14:00:00Z",
            "end_time": "2026-08-27T15: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,
            "name": {
                "fi": "Metsän suojassa – Luontoyhteystyöpaja",
                "sv": "Metsän suojassa",
                "en": "Metsän suojassa"
            },
            "short_description": {
                "fi": "Työpajassa Virpi Koskela alustaa luontoyhteyden kokonaisvaltaisesti tervehdyttävästä ja elvyttävästä vaikutuksesta mieleen, kehoon, jaksamiseen ja luovuuteen."
            },
            "description": {
                "fi": "<p>Työpajassa Virpi Koskela alustaa luontoyhteyden kokonaisvaltaisesti tervehdyttävästä ja elvyttävästä vaikutuksesta mieleen, kehoon, jaksamiseen ja luovuuteen.</p><p>Alustuksen jälkeen tehdään aiheeseen liittyviä harjoituksia, joiden antamia kokemuksia jaetaan yhdessä keskustellen.</p><p>Harjoitukset ja keskustelut toteutetaan auditorion tuoleissa istuen turvallisemman ja luottamuksellisen tilan periaatteita noudattaen.</p><p>Tapahtuma on osa moniaistista <i>Metsän suojassa</i> näyttelyä ja tapahtumakokonaisuutta, joka kutsuu pohtimaan metsän tulevaisuutta taiteen, tieteen ja osallistumisen kautta. <u><a href=\"https://kanneltalo.fi/fi/tapahtumat/?q=Mets%C3%A4n%20suojassa\">Katso tarkemmat tiedot tapahtumista tapahtumakalenteristamme</u></a>.</p><p><b>pe 14. – la 29.8.</b> | Metsän suojassa -näyttely Kanneltalon galleriassa<br><b>la 15.8. klo 13</b> | Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia<br><b>Taiteiden yö, to 20.8. klo 17</b> | Katja Luhtala & kollektiivi: Metsä M<br><b>Taiteiden yö, to 20.8. klo 17.30</b> | Metsänpohja – yhteisötaideteos<br><b>Pe 21.8. klo 17</b> | Metsähaikutyöpaja<br><b>La 22.8. klo 13</b> | Metsäimprodialogi<br><b>La 22.8. klo 15</b> | Taiteilijatapaaminen: Susu Rytteri<br><b>To 27.8. klo 17</b> | Luontoyhteystyöpaja<br><b>Pe 28.8. klo 16</b> | Utopiapedagogiikkaa-luento<br><b>Pe 28.8. klo 18</b> | Legioonateatterin metsäteatterikollektiivi: Niin metsä vastaa<br><b>Suomen luonnon päivä, la 29.8. klo 13</b> | Pyöreän pöydän keskustelu utopiatulevaisuudesta | Suomen luonnon päivä<br><b>Suomen luonnon päivä, la 29.8. klo 15</b> | Katja Luhatala ja Metsä M -kollektiivi: Metsäsydän – Oodi lähimetsille</p><p>Näyttely ja tapahtumat ovat osa Helsingin kaupungin kulttuuripalveluiden ympäristöohjelmaa. <u><a href=\"https://kanneltalo.fi/fi/talonesittely#Ymp%C3%A4rist%C3%B6vastuu\">Lue lisää ympäristöohjelmasta</u></a>.</p><p>Näyttelyyn ja tapahtumiin on vapaa pääsy.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F6AA33660122344520E39144F2120A8C/Metsan_suojassa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F6AA33660122344520E39144F2120A8C/Metsan_suojassa",
                "en": "http://www.kanneltalo.fi/en/events/event/F6AA33660122344520E39144F2120A8C/Metsan_suojassa"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68345/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}