Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 22622,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=10",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=8"
    },
    "data": [
        {
            "id": "kulke:68271",
            "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:596/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1674197,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T15:14:02.902267Z",
                    "last_modified_time": "2026-03-19T15:14:02.902283Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786140.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1674197/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T15:14:02.758211Z",
            "last_modified_time": "2026-06-04T12:13:39.839416Z",
            "date_published": null,
            "start_time": "2026-06-12T11:30:00Z",
            "end_time": "2026-06-12T17: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,
            "short_description": {
                "fi": "Helsinki-päivä Malmilla tarjoaa yhteisötaidetta, tanssia ja illan huippukeikat: Laineen Kasperi ja F. Tule juhlimaan kesäistä kaupunkipäivää!",
                "sv": "Helsingforsdagen i Malm bjuder på samhällskonst, dans och spelningar med Laineen Kasperi och F på kvällen. Kom och fira sommardagen i staden!",
                "en": "Helsinki Day in Malmi will offer community art, dance and the evening's top performances: Laineen Kasperi and F. Come and celebrate a summer’s day in the city!"
            },
            "description": {
                "fi": "<p>Helsinki-päivä Malmilla tarjoaa yhteisötaidetta, tanssia ja illan huippukeikat: Laineen Kasperi ja F. Tule juhlimaan kesäistä kaupunkipäivää!</p><p><b>Aikataulu</b><br>14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa yhteisötaidetta kaiken ikäisille <br>16.00–19.00 Malmin seurakunnan toimintapiste <br>16.00–16.45 Kaupunkitanssit <br>17.00–18.00 Laineen Kasperi<br>18.00–19.00 MALMI/Kollektiivi: Koe Malmi nuorten silmin -videoteos<br>19.00–20.00 F</p><p><b>klo 14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa yhteisötaidetta kaiken ikäisille</b><br>Malmin nuorisotyöyksikön kesätyöntekijät toteuttavat kaikille avointa hyvänmielen toimintaa. Tule mukaan!</p><p><b>klo 16.00–19.00 Malmin seurakunnan toimintapiste</b></p><p><b>klo 16.00–16.45 Kaupunkitanssit</b><br>Tanssiteatteri Tsuumin ammattilaisten ohjauksella järjestettävää matalan kynnyksen tanssinopetusta, johon kaikki ovat tervetulleita. Helsinki-päivän tanssilajina svengaava bugg!</p><p><b>18.00–19.00 MALMI/Kollektiivi: Koe Malmi nuorten silmin –videoteos</b><br>Tule Malmitalon auditorioon kokemaan vaikuttava videoteos, Kerroksia, joka tuo valkokankaalle nuorten dokumentaarisia valokuvia Malmista. Kerroksia tarjoaa ainutlaatuisen ja tuoreen näkökulman tuttuihin kulmiin – näe ja tunne kaupunginosa nuorten omien kokemusten kautta.</p><p>Teoksen ovat toteuttaneet Stadin ammattiopiston media-alan opiskelijat, yhteistyössä MALMI/Kollektiivin kanssa.</p><p><b>klo 17.00–18.00 Laineen Kasperi</b><br>Laineen Kasperi tunnetaan räppärinä, tuottajana, sekä yleisön tajuntaa ravistelevana esiintyjänä. Laine on työskennellyt uransa aikana lähes kaikilla taiteen alueilla ja tehnyt yhteistyötä lukuisten maamme ykkösartistien kanssa.</p><p>Laineen Kasperin uusin albumi ”Jumala on lomalla” ilmestyi keväällä 2025, ja on saanut mitä parhaimman vastaanoton.<br>Alla Laineen Kasperin puhelimeen keikan jälkeen saapunut viesti:<br>”Siis voihan vid-du et oli hieno keikka eilen!</p><p>Suorastaan spirituaalinen kokemus! Uskomatonta tsekata noin voimakasta lähetystä ja kuunnella lyyristä viestiä, joka tuntuu kanavoituvan suoraan sieltä jostain ikuisen viisauden lähteestä. Oot kyllä huippu tekijä ja universaalin ymmärryksen sanoiksi pukija.”</p><p><b>klo 19–20 F</b><br>Emma-palkittu rap/R&B-artisti F julkaisi keväällä 2024 uuden albuminsa Self-helpless. Self-helpless on antiteesi itsensä jatkuvalle kehittämiselle ja ylistys keskeneräisyydelle.<br>Visuaalisesti albumi kumartaa 90-luvun ikonisten tähtien, kuten Anna Nicole Smithin ja Pamela Andersonin suuntaan. Albumilta julkaistiin viisi singleä: musiikkivideollaan vakuuttanut Taas mennään, Muija on ku kone, Teetä (feat. Tuplakääk), <br>Naispaholainen II ja Exit. Rohkeista ja visuaalisesti kekseliäistä livekeikoistaan ylistetty F tunnetaan parhaiten kultaa myyneestä Ihana-hitistään.</p><p>Monipuolinen, vahvoja albumikokonaisuuksia luova artisti on ollut ehdolla Emma Gaalassa useasti ja vuonna 2021 hänet palkittiin vuoden musiikkivideopalkinnolla.</p><p><b>Tapahtumiin on vapaa pääsy!</b></p>",
                "sv": "<p>Helsingforsdagen i Malm bjuder på samhällskonst, dans och spelningar med Laineen Kasperi och F på kvällen. Kom och fira sommardagen i staden!</p><p>Tidtabell<br>14.30–18.30 Unga sommarjobbare vid Malms ungdomsarbetsenhet har planerat samhällskonst för alla åldrar <br>16.00–19.00 Malms församlings aktivitetspunkt <br>16.00–16.45 Stadsdans <br>17.00–18.00 Laineen Kasperi <br>19.00–20.00 F</p><p>kl. 14.30–18.30 Unga sommarjobbare vid Malms ungdomsarbetsenhet har planerat samhällskonst för alla åldrar<br>Sommarjobbarna vid enheten för ungdomsarbete i Malm ordnar feel good-verksamhet som är öppen för alla. Kom med!<br>kl. 16.00–19.00 Malms församlings aktivitetspunkt</p><p>kl. 16.00–16.45 Stadsdans<br>Danslektioner med låg tröskel under ledning av proffs från Tanssiteatteri Tsuumi, där alla är välkomna.</p><p>kl. 17–18 Laineen Kasperi<br>Laineen Kaseri är känd som en rappare, producent och artist som skakar om publikens medvetande. Under sin karriär har Laine arbetat med nästan alla konstarter, och han har samarbetat med många av de största artisterna i vårt land. <br>Laineen Kasperis senaste album ”Jumala on lomalla” kom våren 2025 och har fått ett fint mottagande.</p><p>Nedan följer ett meddelande som kom till Laineen Kasperis telefon efter en spelning:<br>”Alltså vilken jä--a bra spelning i går! <br>En rent spirituell upplevelse! Fantastiskt att se en så mäktig sändning och höra det lyriska budskapet, som känns som att det kanaliseras direkt ur nån evig visdomskälla. Du är superbra och klär den universella förståelsen i ord.”</p><p>kl. 19–20 F<br>Den Emma-belönade rap/R&B-artisten F släppte sitt nya album Self-helpless våren 2024. Self-helpless är en antites till att hela tiden utveckla sig själv och en hyllning till det halvfärdiga.</p><p>Visuellt bugar albumet mot ikoniska 90-talsstjärnor som Anna Nicole Smith och Pamela Anderson. Från albumet släpptes fem singlar: Taas mennään, som imponerade med sin musikvideo, Muija on ku kone, Teetä (feat. Tuplakääk), Naispaholainen II och Exit. F, som hyllats för sina djärva och visuellt uppfinningsrika livespelningar, är bäst känd för sin hit Ihana, som sålt guld.</p><p>F är en mångsidig artist som skapar starka albumhelheter och har varit nominerad på Emma-galan flera gånger. År 2021 belönades hon med priset för årets musikvideo.</p><p>Evenemangen har fritt inträde!</p>",
                "en": "<p>Helsinki Day in Malmi will offer community art, dance and the evening's top performances: Laineen Kasperi and F. Come and celebrate a summer’s day in the city!</p><p>Schedule<br>14.30–18.30 Community art for all ages, created by Malmi Youth Work Unit's summer interns <br>16.00–19.00 Malmi parish activity point <br>16.00–16.45 Dancing in the City <br>17.00–18.00 Laineen Kasperi <br>19.00–20.00 F</p><p>14.30–18.30 Community art for all ages, created by the Malmi Youth Work Unit's summer interns<br>Malmi Youth Work Unit’s summer workers host pleasant activities open to all. Join us!<br>16.00–19.00 Malmi parish activity point</p><p>16.00–16.45 Dancing in the City<br>Low-threshold dance classes for everyone hosted by Tsuumi Dance Theatre professionals.</p><p>17.00–18.00 Laineen Kasperi<br>Laineen Kasperi is known as a rapper, producer and performer who shakes the audience to their core. During his career, Laine has worked in almost every field of art and collaborated with many of the top artists in Finland. <br>Laineen Kasperi's latest album Jumala on lomalla was released in spring 2025, and has been very well received.</p><p>Below is a message that Laineen Kasperi received on his phone after a show:<br>\"I mean, God-damn, you gave a great performance last night! <br>It was a truly spiritual experience! It's incredible to watch such a powerful performer and listen to a lyrical message that seems to be channeled directly from some source of eternal wisdom. But you are a top creator and a poet that can put the universal understanding into words.\"</p><p>19.00–20.00 F<br>Emma Award-winning rap/R&B artist F released her new album Self-helpless in spring 2024. Self-helpless is the antithesis of continuous self-improvement and a celebration of unfinished business.</p><p>Visually, the album bows to iconic 90s stars like Anna Nicole Smith and Pamela Anderson. Five singles were released from the album: Taas mennään, Muija on ku kone, Teetä (feat. Double Head), Female Devil II and Exit. Praised for her bold and visually inventive live shows, F is best known for her gold-selling hit Ihana.</p><p>A versatile artist who creates strong albums, she has been nominated in the Emma Gaala awards several times, and she won Music Video of the Year in 2021.</p><p>Entry to the events is free of charge!</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/01BA3D940BFC1583059744C211303906/Helsinki-paiva_Malmilla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/01BA3D940BFC1583059744C211303906/Helsingforsdagen_i_Malm",
                "en": "http://www.malmitalo.fi/en/events/event/01BA3D940BFC1583059744C211303906/Helsinki_Day_in_Malmi"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Helsinki-päivä Malmilla – Malmin tapahtumakesä 2026",
                "sv": "Helsingforsdagen i Malm – Malms evenemangssommar 2026",
                "en": "Helsinki Day in Malmi – Malmi Summer of Events 2026"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68271/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpd6vh4b4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p2787/?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:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2201331,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-19T08:05:52.260454Z",
                    "last_modified_time": "2026-05-19T08:05:52.260467Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/4b7f190c-20a6-46af-b1f9-a8376cd63cd0.png",
                    "name": "",
                    "cropping": "336,0,1200,864",
                    "photographer_name": "Sanna Korkelainen",
                    "alt_text": "vinyylileikkurin materiaalirullia ja kangaskasseja, pride sateenkaari",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201331/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-19T08:13:04.740100Z",
            "last_modified_time": "2026-06-04T11:09:30.815005Z",
            "date_published": null,
            "start_time": "2026-06-11T13:00:00Z",
            "end_time": "2026-06-11T15: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,
            "short_description": {
                "fi": "tule tuunaamaan pride teemainen kangaskassi",
                "sv": "Kom och dekorera en tygkasse med Pride-tema",
                "en": "Come design a Pride-themed tote bag"
            },
            "description": {
                "fi": "Kangaskassipaja<p><strong>To 11.6.2026 klo 16-18 | Entressen kirjaston paja</strong></p><p><strong>Tote-ally Proud - Ylpeydellä Kannettu</strong></p><p>Haluatko tulla tuunaamaan omia vaatteitasi tai kulkuelippua? Teemme pajassa vinyylileikkurilla värikkäitä silitettäviä kuvioita kankaalle. 50 ensimmäiselle kangaskassi kirjastolta.</p><p>Pajassa voi tehdä myös tarroja! </p><p>Espoon kaupunki on tänä vuonna Helsinki Priden Working with Pride -kumppani. Lue lisää Espoon kirjastojen sekä koko Espoon kaupungin Pride-kuukauden ohjelmasta Espoon kaupungin Pride-sivulta <a href=\"https://www.espoo.fi/fi/kaupunki-ja-paatoksenteko/espoon-kaupunki-x-helsinki-pride\">Espoon kaupunki x Helsinki Pride | Espoon kaupunki&nbsp;</a></p>",
                "sv": "Tygkasseverkstad&nbsp;<p><strong>Torsdag 11 juni 2026 kl. 16–18 | Verkstaden på Entressen-biblioteket</strong></p><p><strong>Tote-ally Proud – Bär med stolthet</strong></p><p>Vill du komma och piffa upp dina egnakläder eller din flagga? I verkstaden skapar vi färgglada, strykbara mönster på tyg med hjälp av en vinylskärare. De 50 första får en tygkasse från biblioteket.</p><p>I verkstaden kan man också göra klistermärken!&nbsp;</p><p>Esbo stad är i år partner till Helsingfors Pride inom ramen för Working with Pride. Läs mer om programmet för Pride-månaden i Esbos bibliotek och hela Esbo stad på Esbo stads Pride-sida <a href=\"https://www.espoo.fi/sv/staden-och-beslutsfattandet/esbo-stad-x-helsinki-pride\">Esbo stad x Helsingfors Pride | Esbo stad&nbsp;</a></p>",
                "en": "Tote Bag Workshop&nbsp;<p><strong>Thu, June 11, 2026, 4:00–6:00 p.m. | Entresse Library Workshop</strong></p><p><strong>Tote-ally Proud – Carried with Pride</strong></p><p>Would you like to come and customize your own clothes or flags? In this workshop, we’ll use a vinyl cutter to create colorful iron-on designs on fabric. The first 50 participants will receive a tote bag from the library.</p><p>You can also make stickers at the workshop!&nbsp;</p><p>This year, the City of Espoo is a “Working with Pride” partner of Helsinki Pride. Read more about the Pride Month program for Espoo libraries and the entire City of Espoo on the City of Espoo’s Pride page: <a href=\"https://www.espoo.fi/en/city-and-decision-making/city-espoo-x-helsinki-pride\">City of Espoo x Helsinki Pride | City of Espoo&nbsp;</a></p>"
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Verkstad",
                "en": "Maker Space"
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/kaupunki-ja-paatoksenteko/espoon-kaupunki-x-helsinki-pride",
                "sv": "https://www.espoo.fi/sv/staden-och-beslutsfattandet/esbo-stad-x-helsinki-pride",
                "en": "https://www.espoo.fi/en/city-and-decision-making/city-espoo-x-helsinki-pride"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Kirjasto",
                "sv": "Biblioteket",
                "en": "Library"
            },
            "name": {
                "fi": "Kangaskassipaja",
                "sv": "Tygpåseverkstad",
                "en": "Tote bag workshop"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpd6vh4b4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpgslee6y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2384769,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-27T10:20:41.415348Z",
                    "last_modified_time": "2026-05-27T10:20:41.415366Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/051f5a6b-ba74-4875-8540-b97ae1ee9ab4.png",
                    "name": "",
                    "cropping": "1036,0,3111,2074",
                    "photographer_name": "Canva",
                    "alt_text": "piirroskuvat hamsteri, siili, sammakko katsoo yhdessä elokuvaa syöden poppareita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384769/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-27T10:21:25.621777Z",
            "last_modified_time": "2026-06-04T11:08:02.340980Z",
            "date_published": null,
            "start_time": "2026-06-05T14:30:00Z",
            "end_time": "2026-06-05T16: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,
            "short_description": {
                "fi": "Tule mukaan katsomaan leffaa kirjastolle!"
            },
            "description": {
                "fi": "Queer-kino leffailta (K-7)<p>Perjantaina 5.6. Entressen kirjaston sinisessä huoneessa klo 17.30-19.30</p><p>Tule mukaan katsomaan leffaa kirjastolle!</p><p><br></p><p>Espoon kaupunki on tänä vuonna Helsinki Priden Working with Pride -kumppani. Lue lisää Espoon kirjastojen sekä koko Espoon kaupungin Pride-kuukauden ohjelmasta Espoon kaupungin Pride-sivulta <a href=\"https://www.espoo.fi/fi/kaupunki-ja-paatoksenteko/espoon-kaupunki-x-helsinki-pride\">Espoon kaupunki x Helsinki Pride | Espoon kaupunki&nbsp;</a></p><p><br></p><p>Tapahtuman järjestää kirjasto</p>"
            },
            "location_extra_info": {
                "fi": "Sininen huone"
            },
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Queer-kino leffailta (K-7)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpgslee6y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpjeyby7i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2384948,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-06-03T07:18:06.469218Z",
                    "last_modified_time": "2026-06-03T07:18:06.469231Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/43f9d634-4a3d-4e30-bd32-51adf8c5a3be.jfif",
                    "name": "Ilmaisia Kuvia : lelu, hauska, pelit, viihde, gesellschaftsspiel,",
                    "cropping": "46,0,229,183",
                    "photographer_name": "",
                    "alt_text": "Ilmaisia Kuvia : lelu, hauska, pelit, viihde, gesellschaftsspiel,",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384948/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-04T10:50:17.954509Z",
            "last_modified_time": "2026-06-04T10:56:25.666973Z",
            "date_published": null,
            "start_time": "2026-06-10T10:00:00Z",
            "end_time": "2026-06-10T12: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,
            "short_description": {
                "fi": "Tapahtuma on tarkoitettu alakoululaisille."
            },
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu alakoululaisille. Se pidetään Lastenosastossa. Vapaa pääsy.</p>"
            },
            "location_extra_info": {
                "fi": "Lasten osasto"
            },
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Lautapelikerho"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpjeyby7i/?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": [],
                    "price": {
                        "fi": "15 / 7 €",
                        "sv": "15 / 7 €",
                        "en": "15 / 7 €"
                    },
                    "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/"
                    },
                    "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-04T10:13:55.333700Z",
            "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,
            "short_description": null,
            "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>"
            },
            "location_extra_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_"
            },
            "provider_contact_info": null,
            "provider": 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"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69233/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69232",
            "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: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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 / 7 €",
                        "sv": "15 / 7 €",
                        "en": "15 / 7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702287/",
                        "sv": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702287/",
                        "en": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702287/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384945,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T10:13:52.719757Z",
                    "last_modified_time": "2026-06-04T10:13:52.719772Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791964.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384945/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T10:13:52.369602Z",
            "last_modified_time": "2026-06-04T10:13:52.878330Z",
            "date_published": null,
            "start_time": "2026-10-30T17:00:00Z",
            "end_time": "2026-10-30T19: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,
            "short_description": {
                "fi": "Luciana García Ensemble tuo yhteen queer-taiteilijoita monipuolisista kulttuurisista taustoista tutkimaan ääntä identiteetin, vastarinnan ja kollektiivisen mielikuvituksen tilana.",
                "en": "Luciana García Ensemble brings together queer musicians from diverse cultural and national backgrounds to explore sound as a space of identity, resistance, and collective imagination."
            },
            "description": {
                "fi": "<p>Luciana García Ensemble tuo yhteen queer-taiteilijoita monipuolisista kulttuurisista taustoista tutkimaan ääntä identiteetin, vastarinnan ja kollektiivisen mielikuvituksen tilana.</p><p>Jazzin, vapaan improvisaation, maailmanlaajuisten vaikutteiden ja tajunnanvirtaan pohjautuvan esitystavan kautta yhtye luo musiikillisia kertomuksia, jotka haastavat konventioita ja juhlistavat moninaisuutta.</p><p>Luciana Garcían sävellykset ammentavat queer-teorian tutkimuksesta ja eletyistä queer-kokemuksista, tavoitteenaan edistää tasa-arvoa, lisätä LGBTQIA+-yhteisön näkyvyyttä ja vahvistaa yhteisöllisyyttä musiikin välityksellä. Garcían projekti tutkii, kuinka musiikki ja taide voivat jatkaa mahdollisuuksiensa laajentamista ja purkaa ennakkokäsityksiä siitä, miten asioiden pitäisi olla.</p><p>Luciana García (CH) – piano, sävellys <br>Devina Boughton (USA/FI) – trumpetti <br>Ami Kajan (FI) – basso <br>Vilho Louhivuori (FI) – rummut <br>Agnieszka Placzek (PO) – saksofonit <br>Alisa Khodos (USA) – viulu</p><p><b>Luciana García</b> on Santiago de Chilestä kotoisin oleva pianisti, visionäärinen säveltäjä, improvisoija ja väitöstutkija, joka asuu nykyään Helsingissä. Hänet tunnetaan ainutlaatuisesta tavastaan yhdistää sävelkielessään modernia jazzia ja latinalaisamerikkalaisia vaikutteita.</p><p>García kanavoi musiikissaan intohimoansa sosiaalista oikeudenmukaisuutta kohtaan, käyttäen sitä välineenä inspiroidakseen muutosta ja vahvistaakseen yhteisöllisiä siteitä. García punoo jokaisessa projektissaan ja esiintymisessään syvällisiä kulttuurisia kertomuksia, jotka heijastavat hänen sitoutumistaan yhdenvertaisuuteen ja pyrkimykseen kohti muutosta.</p>",
                "en": "<p>Luciana García Ensemble brings together queer musicians from diverse cultural and national backgrounds to explore sound as a space of identity, resistance, and collective imagination.</p><p>Through jazz, free improvisation, global influences, and stream-of-consciousness performance, this ensemble creates musical narratives that challenge conventions and celebrate multiplicity.</p><p>The compositions created by Luciana García draw from research in queer theory and lived queer experiences, aiming to promote equity, amplify LGBTQIA+ visibility, and foster a sense of community through music. García’s project explores how music and art can continue to expand their possibilities and dismantle all preconceived notions of what should be.   <br> <br>Luciana García (CH) – piano, compositions <br>Devina Boughton (USA/FI) – trumpet <br>Ami Kajan (FI) – bass <br>Vilho Louhivuori (FI) – drums <br>Agnieszka Placzek (PO) – saxophones <br>Alisa Khodos (USA) – violin</p><p><b>Luciana García</b> is a Chilean pianist, visionary composer, improviser, and doctoral researcher from Santiago de Chile and based in Helsinki. They are renowned for their innovative fusion of contemporary jazz and Latin American roots.</p><p>Luciana channels their passion for social justice into their music, using it as a powerful platform for inspiring change and fostering community connections. With each performance and project, García weaves deep cultural narratives that reflect their commitment to equity and transformation.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/AF8043AFA23C9A82F0871693042F7CA3/Caisa_30_Club_-_Luciana_Garcia_Ensemble",
                "sv": "http://www.caisa.fi/sv/evenemang/event/AF8043AFA23C9A82F0871693042F7CA3/Caisa_30_Club_-_Luciana_Garcia_Ensemble",
                "en": "http://www.caisa.fi/en/events/event/AF8043AFA23C9A82F0871693042F7CA3/Caisa_30_Club_-_Luciana_Garcia_Ensemble"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Caisa 30 Club - Luciana Garcia Ensemble",
                "sv": "Caisa 30 Club - Luciana Garcia Ensemble",
                "en": "Caisa 30 Club - Luciana Garcia Ensemble"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69232/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69223",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "59-79 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoy-teatteri/we-jazz-presents-bill-frisell-trio-us-4171788/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384944,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T09:13:54.963613Z",
                    "last_modified_time": "2026-06-04T09:13:54.963629Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793529.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384944/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T09:13:54.600072Z",
            "last_modified_time": "2026-06-04T09:13:55.156883Z",
            "date_published": null,
            "start_time": "2027-02-16",
            "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,
            "short_description": {
                "fi": "Rakastettu Bill Frisell Trio palaa Suomeen helmikuussa 2027"
            },
            "description": {
                "fi": "<p>Rakastettu Bill Frisell Trio palaa Suomeen helmikuussa 2027</p><p><b>Legendaarinen amerikkalaiskitaristi Bill Frisell palaa Suomeen 16.2.2027 ja esiintyy Helsingin Savoy-teatterissa triokokoonpanonsa kanssa. Edellisellä kerralla Helsingin-konserttinsa loppuunmyynyt Bill Frisell Trio tuo kitaristin yhteen basisti Thomas Morganin ja rumpali Rudy Roystonin kanssa, ja kolmikon pitkään hioutunut yhtyessoitto on konserttitilanteessa maagista kuultavaa.</b></p><p>Maailman arvostetuimpiin jazz-yhtyeisiin lukeutuva <b>Bill Frisell Trio</b> palaa Helsinkiin ja esiintyy tiistaina 16.2. Savoy-teatterissa. Kitaristi <b>Bill Frisellin</b>, basisti <b>Thomas Morganin</b> ja rumpali <b>Rudy Roystonin</b> muodostama kokoonpano on tunnettu taianomaisen intensiivisistä konserteistaan, jossa musiikki soljuu ajatuksen lailla jo pitkään yhdessä musisoineen kokoonpanon kuljettaessa tarinaa. Vuonna 2020 julkaistu albumi <i>Valentine</i> (Blue Note Records) on trion mestariteos, ja livenä musiikki löytää saa vielä uusia tasoja. Bill Frisell Trio myi edellisen Helsingin-keikkansa loppuun keväällä 2025, jonka jälkeen yhtyeen paluuta on odotettu innokkaaasti. Tänä vuonna 75-vuotisjuhlakonserttiensa myötä laajasti esiintynyt tyylikkään kitarismin mestari on uransa vedossa ja odotettavissa onkin jopa hurjat odotuksen ylittävä talvinen tiistai-ilta Savoyssa.</p><p>Bill Frisell Trion Helsingin-esiintymisen järjestäjänä toimii helsinkiläinen We Jazz, joka on hiljattain laajentanut toimintaansa levymerkkinsä, lehtensä ja festivaalituotantojensa ohella aktiiviseksi keikkajärjestäjäksi. We Jazz Agency järjestää keikkoja jatkossa säännöllisesti esitellen artisteja, joiden musiikkiin se uskoo. Erityisesti Helsingin keikkatarjonnan piristäminen ympärivuotisesti on We Jazzin fokuksessa.</p><p><i>“With Valentine, Frisell, Royston and Morgan revel in the tight but loose interplay that is a hallmark of the best groups, plying a course as deeply lyrical as it is adventurous. Feels like the beginning of a great adventure.”</i> — AllAboutJazz</p><p><i>\"Kitaristi Bill Frisell soittaa melkein mitä tahansa, mutta kuulostaa silti aina itseltään.\"</i> – Helsingin Sanomat</p><p>Ovet klo 18.00. Showtime vahvistuu myöhemmin.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/4F8661641CE7F07C4F551F5AA5B40563/We_Jazz_presents_BILL_FRISELL_TRIO_US_"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "We Jazz Oy"
            },
            "name": {
                "fi": "We Jazz presents: BILL FRISELL TRIO (US)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69223/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69220",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "24,80 € / 20 € / 15 €",
                        "sv": "24,80 € / 20 € / 15 €",
                        "en": "24,80 € / 20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697155/",
                        "sv": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697155/",
                        "en": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697155/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384943,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T08:13:51.288141Z",
                    "last_modified_time": "2026-06-04T08:13:51.288155Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793522.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384943/?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-04T08:13:51.178755Z",
            "last_modified_time": "2026-06-04T08:13:51.453857Z",
            "date_published": null,
            "start_time": "2026-10-24T15: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,
            "short_description": {
                "fi": "Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.",
                "en": "One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking."
            },
            "description": {
                "fi": "<p>Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.</p><p><i>A Fistful of Funk</i> on katutanssia, absurdia teatteria ja livemusiikkia yhdistelevä englanninkielinen esitys, joka käsittelee ystävyyttä, sukupuoliroolien ja maskuliinisuuden teemoja leikin, huumorin ja virtuoosimaisen katutanssin avulla.</p><p>Teoksessa viisi yksinäistä cowboyta lähtee yhdessä eeppiselle matkalle halki aavikon. Matkalla 1970-luvun funk-tanssi yhdistyy näytelmäkirjailija Juho Keräsen tekstiin, jonka inspiraationa on Sergio Leonen lännenelokuvien toksinen machismo ja hypermaskuliinisuus.</p><p>Katutanssityyli <i>locking</i> toimii <i>A Fistful of Funk</i> -teoksen punaisena lankana, josta lähdetään kutomaan yhteyksiä tanssiteatterin ja klovnerian maailmaan. Tästä sopasta syntyy hurmaavan päätön seikkailu, jossa kunkin esiintyjän omintakeisuus ja ainutlaatuisuus ruokkii toisiaan.</p><p>Locking on 1970-luvulla Yhdysvaltain länsirannikolla afrikkalaisamerikkalaisten keskuudessa syntynyt tanssityyli, jolle ovat ominaisia terävät pysähdykset, groovaavat askeleet ja akrobaattiset temput. Esityksessä syvennytään yhteen lockingin keskeisistä elementeistä: <i>characteriin</i> eli tanssijan ominaislaatuun. Western-tyylilajia käytetään ponnahduslautana keskusteluille ystävyyden ja veljeyden teemoista, sekä leikkisästä kilpailusta katutanssikulttuurille ominaisten kaksintaistelujen, eli battlejen muodossa.</p><p>Will Funk For Food on vuonna 2008 perustettu, yksi Suomen kansainvälisesti menestyneimmistä katutanssiryhmistä, joka on erikoistunut locking-tanssityyliin. WFFF tekee tanssilajiaan tunnetuksi Suomessa, ja pyrkii toiminnallaan vakiinnuttamaan katutanssia osaksi suomalaista kulttuuritarjontaa sekä tuomaan iloa ja riemua kaikenikäisille. Tanssiryhmän suurimpia meriittejä ovat kolminkertainen peräkkäinen SM-kulta, sekä esityksiä niin Japanissa, Ranskassa kuin Itämeren takana Ruotsissa. <br> <br>Lavalla nähdään Will Funk For Foodin jäsenistä Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg ja Sami Pajari sekä äänisuunnittelija-muusikko Sebastian Kurtén ja rumpali Elias Ojutkangas.</p><p>Esityskieli: englanti<br>Kesto: 75 min</p>",
                "en": "<p>One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking.</p><p>The work is inspired by the hypermasculinity and toxic machismo of western films and the genre's cavalcade of characters. A Fistful of Funk revolves around locking from which it begins to weave connections to the world of contemporary dance theatre.</p><p>The performance dives head-first into one of the main elements of locking dance: character. Ultimately, character is the distinctive feature that separates dancers from each other and contributes to the uniqueness of their individual styles.</p><p>The group seeks to dismantle the masculinity familiar from westerns and explore what masculinity and masculine encounters can be instead. In addition to exploring the themes of friendship and brotherhood, the performance uses the western setting as a platform for playful street dance duels, known as battles in street dance culture.</p><p>Locking, which was originally danced to funk music, was created by African Americans living on the West Coast of the United States in the 1970s. Locking is characterised by precise, sharp pauses and acrobatic tricks, combined with the grooving 'party steps' of the West Coast social dances.</p><p>In addition to locking, the performance utilises the movement language of contemporary dance, physical theatre, and clown techniques. The aim is to create an adventurous, narrative stage where each performer’s originality and uniqueness feed each other.</p><p>Will Funk For Food, founded in 2008, is one of the most internationally successful street dance groups in Finland specialised in locking. WFFF is making locking known in Finland and aims to establish street dance as part of the Finnish cultural scene and bring joy to all ages. The dance group has won three consecutive Finnish Championships and performed internationally in Japan, France, and Sweden.</p><p>The stage will feature Will Funk For Food's Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg and Sami Pajari, as well as sound designer and musician Sebastian Kurtén, and drummer Elias Ojutkangas.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6114EEBE6655621C6C513B53F58CFDDB/Will_Funk_For_Food_A_Fistful_of_Funk",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6114EEBE6655621C6C513B53F58CFDDB/Will_Funk_For_Food_A_Fistful_of_Funk",
                "en": "http://www.kanneltalo.fi/en/events/event/6114EEBE6655621C6C513B53F58CFDDB/Will_Funk_For_Food_A_Fistful_of_Funk"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Will Funk For Food: A Fistful of Funk",
                "sv": "Will Funk For Food: A Fistful of Funk",
                "en": "Will Funk For Food: A Fistful of Funk"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69220/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69219",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "24,80 € / 20 € / 15 €",
                        "sv": "24,80 € / 20 € / 15 €",
                        "en": "24,80 € / 20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697154/",
                        "sv": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697154/",
                        "en": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697154/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384942,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T08:13:50.663782Z",
                    "last_modified_time": "2026-06-04T08:13:50.663800Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793521.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384942/?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-04T08:13:50.513970Z",
            "last_modified_time": "2026-06-04T08:13:50.882563Z",
            "date_published": null,
            "start_time": "2026-10-23T15: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,
            "short_description": {
                "fi": "Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.",
                "en": "One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking."
            },
            "description": {
                "fi": "<p>Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.</p><p><i>A Fistful of Funk</i> on katutanssia, absurdia teatteria ja livemusiikkia yhdistelevä englanninkielinen esitys, joka käsittelee ystävyyttä, sukupuoliroolien ja maskuliinisuuden teemoja leikin, huumorin ja virtuoosimaisen katutanssin avulla.</p><p>Teoksessa viisi yksinäistä cowboyta lähtee yhdessä eeppiselle matkalle halki aavikon. Matkalla 1970-luvun funk-tanssi yhdistyy näytelmäkirjailija Juho Keräsen tekstiin, jonka inspiraationa on Sergio Leonen lännenelokuvien toksinen machismo ja hypermaskuliinisuus.</p><p>Katutanssityyli <i>locking</i> toimii <i>A Fistful of Funk</i> -teoksen punaisena lankana, josta lähdetään kutomaan yhteyksiä tanssiteatterin ja klovnerian maailmaan. Tästä sopasta syntyy hurmaavan päätön seikkailu, jossa kunkin esiintyjän omintakeisuus ja ainutlaatuisuus ruokkii toisiaan.</p><p>Locking on 1970-luvulla Yhdysvaltain länsirannikolla afrikkalaisamerikkalaisten keskuudessa syntynyt tanssityyli, jolle ovat ominaisia terävät pysähdykset, groovaavat askeleet ja akrobaattiset temput. Esityksessä syvennytään yhteen lockingin keskeisistä elementeistä: <i>characteriin</i> eli tanssijan ominaislaatuun. Western-tyylilajia käytetään ponnahduslautana keskusteluille ystävyyden ja veljeyden teemoista, sekä leikkisästä kilpailusta katutanssikulttuurille ominaisten kaksintaistelujen, eli battlejen muodossa.</p><p>Will Funk For Food on vuonna 2008 perustettu, yksi Suomen kansainvälisesti menestyneimmistä katutanssiryhmistä, joka on erikoistunut locking-tanssityyliin. WFFF tekee tanssilajiaan tunnetuksi Suomessa, ja pyrkii toiminnallaan vakiinnuttamaan katutanssia osaksi suomalaista kulttuuritarjontaa sekä tuomaan iloa ja riemua kaikenikäisille. Tanssiryhmän suurimpia meriittejä ovat kolminkertainen peräkkäinen SM-kulta, sekä esityksiä niin Japanissa, Ranskassa kuin Itämeren takana Ruotsissa.</p><p>Lavalla nähdään Will Funk For Foodin jäsenistä Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg ja Sami Pajari sekä äänisuunnittelija-muusikko Sebastian Kurtén ja rumpali Elias Ojutkangas.</p><p>Esityskieli: englanti<br>Kesto: 75 min</p>",
                "en": "<p>One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking.</p><p>The work is inspired by the hypermasculinity and toxic machismo of western films and the genre's cavalcade of characters. A Fistful of Funk revolves around locking from which it begins to weave connections to the world of contemporary dance theatre.</p><p>The performance dives head-first into one of the main elements of locking dance: character. Ultimately, character is the distinctive feature that separates dancers from each other and contributes to the uniqueness of their individual styles.</p><p>The group seeks to dismantle the masculinity familiar from westerns and explore what masculinity and masculine encounters can be instead. In addition to exploring the themes of friendship and brotherhood, the performance uses the western setting as a platform for playful street dance duels, known as battles in street dance culture.</p><p>Locking, which was originally danced to funk music, was created by African Americans living on the West Coast of the United States in the 1970s. Locking is characterised by precise, sharp pauses and acrobatic tricks, combined with the grooving 'party steps' of the West Coast social dances.</p><p>In addition to locking, the performance utilises the movement language of contemporary dance, physical theatre, and clown techniques. The aim is to create an adventurous, narrative stage where each performer’s originality and uniqueness feed each other.</p><p>Will Funk For Food, founded in 2008, is one of the most internationally successful street dance groups in Finland specialised in locking. WFFF is making locking known in Finland and aims to establish street dance as part of the Finnish cultural scene and bring joy to all ages. The dance group has won three consecutive Finnish Championships and performed internationally in Japan, France, and Sweden.</p><p>The stage will feature Will Funk For Food's Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg and Sami Pajari, as well as sound designer and musician Sebastian Kurtén, and drummer Elias Ojutkangas.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3D5186F0397CA11109A4134517C6DBB6/Will_Funk_For_Food_A_Fistful_of_Funk",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3D5186F0397CA11109A4134517C6DBB6/Will_Funk_For_Food_A_Fistful_of_Funk",
                "en": "http://www.kanneltalo.fi/en/events/event/3D5186F0397CA11109A4134517C6DBB6/Will_Funk_For_Food_A_Fistful_of_Funk"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Will Funk For Food: A Fistful of Funk",
                "sv": "Will Funk For Food: A Fistful of Funk",
                "en": "Will Funk For Food: A Fistful of Funk"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69219/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69218",
            "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: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:41/?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": [],
                    "price": {
                        "fi": "24,80 € / 20 €",
                        "sv": "24,80 € / 20 €",
                        "en": "24,80 € / 20 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi//artist/piirpauke/piirpauke-4057795/",
                        "sv": "https://www.lippu.fi//artist/piirpauke/piirpauke-4057795/",
                        "en": "https://www.lippu.fi//artist/piirpauke/piirpauke-4057795/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384941,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T07:14:04.286037Z",
                    "last_modified_time": "2026-06-04T07:14:04.286052Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793520.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384941/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T07:14:04.130603Z",
            "last_modified_time": "2026-06-04T07:14:04.508919Z",
            "date_published": null,
            "start_time": "2026-10-17T15: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,
            "short_description": {
                "fi": "Maailmanmusiikin legenda Piirpauke konsertoi Kanneltalossa."
            },
            "description": {
                "fi": "<p>Maailmanmusiikin legenda Piirpauke konsertoi Kanneltalossa.</p><p>Kiistatta kautta aikain suosituimpiin kotimaisiin instrumentaaliyhtyeisiin lukeutuva Piirpauke on sukeltanut vuosien saatossa ennakkoluulottomasti monien eri kulttuurien musiikkiperinteisiin, joihin lukeutuvat mm. nuevo flamenco, mbalax, jazz, progressiivinen rock, musica llanera sekä romanialainen ja turkkilainen musiikki. Piirpaukeen tuoreimman albumin <i>Lumon</i> hengessä Kanneltalon keikalla kuullaan muun muassa Jean Sibeliuksen, Oskari Merikannon, Toivo Kuulan, Selim Palmgrenin ja Yrjö Kilpisen sävellyksistä.</p><p>Vuonna 1975 syntynsä Pori Jazzeilla saaneen yhtyeen debyyttialbumia on myyty enemmän kuin mitään muuta Suomessa julkaistua pelkästään soitinmusiikkia sisältävää pitkäsoittoa. Laajaa arvostusta nauttiva, genrensä merkittävimpiin nimiin lukeutuva Piirpauke on merkittävän uransa aikana soittanut satoja konsertteja ympäri maailman ja esiintynyt samoilla areenoilla huippunimien, kuten Miles Davis, Ravi Shankar, Astor Piazzolla ja Nirvana, kanssa. <br> <br>Kokoonpano:<br>Sakari Kukko – piano, saksofonit, huilut<br>Matti Salo – kitarat<br>Ari Hossi – basso<br>Ilmari Heikinheimo – rummut, perkussiot</p><p>Kesto 2 t sis. väliaika</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3B06A297742011CB6953FF880E05BBCE/Piirpauke",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3B06A297742011CB6953FF880E05BBCE/Piirpauke",
                "en": "http://www.kanneltalo.fi/en/events/event/3B06A297742011CB6953FF880E05BBCE/Piirpauke"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Piirpauke",
                "sv": "Piirpauke",
                "en": "Piirpauke"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69218/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68524",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p2625/?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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17-77 €, S&D 139 €",
                        "en": "17-77 €, S&D 139 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/show-dinner/savoy-the-glanz-of-berlin-roaring-20s-show-4146054/",
                        "en": "https://www.lippu.fi/artist/show-dinner/savoy-the-glanz-of-berlin-roaring-20s-show-4146054/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1913059,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T10:13:28.299302Z",
                    "last_modified_time": "2026-05-05T10:13:28.299318Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789970.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913059/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T10:13:28.139623Z",
            "last_modified_time": "2026-06-03T15:13:24.014325Z",
            "date_published": null,
            "start_time": "2026-11-28T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Astu sisään 1920-luvun Berliinin villiin, säihkyvään yöhön!",
                "en": "Step into the wild, glittering night of 1920s Berlin!"
            },
            "description": {
                "fi": "<p>Astu sisään 1920-luvun Berliinin villiin, säihkyvään yöhön!</p><p>Dekadentteja iltoja, hurmaavaa loistoa, maailmanluokan esiintyjiä ja vastustamatonta musiikkia – <b>The Glanz of Berlin</b> on unohtumaton matka legendaariseen Berliinin kaksikymmentäluvun sykkeeseen. Esityksen tähtenä loistaa <b>Evi Niessner</b> – <i>The Voice of Vintage</i>, joka tuo Weimarin ajan yöelämän huuman tähän päivään.</p><p>The Glanz of Berlin on ilotulitusta: musiikkia, tanssia, akrobatiaa, kabareeta, huumoria ja vintage glamouria. Kansainvälinen live orkesteri <b>THE GLANZ</b> ympäröi yleisön jazzin, tangon ja swingin sävelillä.</p><p>Esitys yhdistää show’lle luodut koreografiat ja akrobaattiset numerot aitoihin Weimarin ajan kappaleisiin, niiden moderneihin sovituksiin ja täysin uusiin sävellyksiin kuten esityksen nimikkokappaleeseen <i>Glanz auf dem Vulkan</i>. 1920-luku ei ole koskaan kuulostanut näin raikkaalta ja sähäkältä.</p><p>Evi Niessnerin suunnittelema kokonaisuus - vaikuttavat videoprojisoinnit, draaman täyttämä valosuunnittelu ja ylelliset käsintehdyt puvut luovat lavalle hohtavan maailman, joka kutsuu sukeltamaan ajan henkeen.</p><p>Show’ta on esitetty Saksassa menestyksekkäästi vuodesta 2020 alkaen, sen saksankielisellä nimellä <i>Glanz auf dem Vulkan</i>. Esitys on ollut sekä yleisömenestys että kriitikkojen suosiossa. Nyt The Glanz of Berlin nähdään Suomessa ensimmäistä kertaa!</p><p>The Glanz of Berlin on kunnianosoitus 1920-luvun rohkeille naisille ja pelottomille taiteilijoille, jotka loivat aikakauden täynnä vapautta, luovuutta ja ennakkoluulottomuutta. Show muistuttaa, että taide, huumori ja intohimo ovat edelleen vahvimmat vastavoimamme elämän myllerryksille.</p><p><b>Luvassa on ainutlaatuinen taiteen, vapauden ja ihmisyyden juhla! Iloinen 20-luku on jälleen täällä!</b></p><p>Esityksen kieli: englanti ja saksa, suomenkielinen tekstitys</p><p>Kesto n.  2 h 20 min, sis. 30 min väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b><i>Show & Dinner</b></i><br>Tarjolla myös herkulliset <i>Show & Dinner</i> -paketit – nauti päivällistä teatterin yhteydessä sijaitsevassa Ravintola Minne Gardenissa ennen esitystä klo 17.00!</p><p><i>Show & Dinner liput 139 € sisältävät parhaat paikat, kolmen ruokalajin illallisen ja naulakkopalvelumaksun.</p><p><b><i>Show & Dinner -paketit ovat myynnissä omina lipputyyppeinään Lippu.fi verkkokaupassa. <br>Pe 27.11. on toistaiseksi täyteen varattu.</b></i></p><p>Menu-vaihtoehdot:</p><p><b>Kabaree 1920</b><br>Porsaanpotkaterriiniä, hyydytettyä madeiralientä ja knöödeliä L<br>Yön yli mureaksi haudutettu häränrinta-sauerbraten, punakaalipaistosta ja perunafondant  L,G<br>Omenastruudeli, kirsikkahilloa ja vaniljajäätelöä L<br> <br><b>Grün 1920 (kasvismenu)</b><br>Maa-artisokkakeittoa L,G<br>Kotijuustoschnitzel, savojinkaalta ja perunafondant L<br>Omenastruudeli, kirsikkahilloa ja vaniljajäätelöä L</p><p>- Menun hinta ei sisällä juomia.<br>- Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua (klo 17.00).<br>- Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</i></p><p><b>Jatkot 1920-luvun hengessä</b><br>Perjantain esityksen jälkeen luvassa myös riemukkaat 20-luvun jatkobileet salakapakkahenkeen muuntautuvassa Ravintola Minnessä n. klo 21.15-00.00. Vapaa pääsy! Savoy-teatterin narikka palvelee jatkojen loppuun saakka.</p>",
                "en": "<p>Step into the wild, glittering night of 1920s Berlin!</p><p>Decadent evenings, dazzling glamour, world class performers and irresistible music – <b>The Glanz of Berlin</b> is an unforgettable journey into the legendary pulse of Berlin in the Roaring Twenties. Shining at the heart of the show is <b>Evi Niessner – The Voice of Vintage</b>, who brings the intoxicating nightlife of the Weimar era vividly into the present day.</p><p><b>The Glanz of Berlin</b> is a spectacular fireworks display of music, dance, acrobatics, cabaret, humor, and vintage glamour. The international live orchestra <b>THE GLANZ</b> surrounds the audience with the sounds of jazz, tango, and swing.</p><p>The show combines specially created choreography and acrobatic numbers with authentic Weimar era songs, their modern arrangements, and entirely new compositions, including the show’s signature piece <i>Glanz auf dem Vulkan</i>. The 1920s have never sounded this fresh or electrifying.</p><p>Designed by Niessner – the stunning video projections, drama filled lighting design, and luxurious handmade costumes create a luminous world on stage that invites the audience to dive into the spirit of the era.</p><p>The show has been performed to great success in Germany since 2020, known as Glanz auf dem Vulkan, winning both audiences and critics alike. <b>Now, The Glanz of Berlin arrives in Finland for the very first time!</b></p><p><b>The Glanz of Berlin</b> is a tribute to the bold women and fearless artists of the 1920s who created an era defined by freedom, creativity, and open mindedness. The show reminds us that art, humor, and passion remain our strongest forces in times of turbulence.</p><p><b>An extraordinary celebration of art, freedom, and humanity awaits! The Roaring Twenties are here again!</b></p><p>Languages: English and German, with Finnish subtitles</p><p>Duration: 2 h 20 min, including a 30 minute intermission</p><p>The floor: R18 alcohol serving area. The balcony: no age restrictions, no alcohol serving.</p><p><b><i>Show & Dinner</b></i><br>Delicious <i>Show & Dinner</i> packages are also available – enjoy dinner at Restaurant Minne Garden, located in connection with the theater, before the performance at 5:00 PM.</p><p><i>Show & Dinner tickets (€139) include the best seats, a three course dinner, and cloakroom service.</p><p>Menu options</p><p><b>Kabaree 1920</b><br>Pork hock terrine with jellied Madeira jus and dumpling (L)<br>Slow braised beef sauerbraten, sautéed red cabbage and potato fondant (L,G)<br>Apple strudel with cherry jam and vanilla ice cream (L)</p><p><b>Grün 1920 (vegetarian menu)</b><br>Jerusalem artichoke soup (L,G)<br>House cheese schnitzel, savoy cabbage and potato fondant (L)<br>Apple strudel with cherry jam and vanilla ice cream (L)</p><p>Please note:<br>The menu price does not include beverages.<br>Dinner is served at Restaurant Minne Garden in the Savoy Theatre two hours before the performance (at 5:00 PM).<br>Special dietary requirements are accommodated with advance notice (no later than three days before the performance).</p><p><b>Afterparty in 1920s Style</b><br>After the Friday performance, the celebration continues with joyous Roaring Twenties themed afterparty festivities at Restaurant Minne, Free admission! The Savoy Theatre cloakroom will remain open until the end of the afterparty.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/ED206D52BE77B6A07C9B114AFABB9E15/The_Glanz_of_Berlin_Roaring_20_s_show",
                "en": "http://www.savoyteatteri.fi/en/events/event/ED206D52BE77B6A07C9B114AFABB9E15/The_Glanz_of_Berlin_Roaring_20_s_show"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Savoy-teatteri",
                "en": "Savoy Theatre"
            },
            "name": {
                "fi": "The Glanz of Berlin – Roaring 20’s show",
                "en": "The Glanz of Berlin – Roaring 20’s show"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68524/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68523",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p2625/?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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17-77 €, S&D 139 €",
                        "en": "17-77 €, S&D 139 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/show-dinner/savoy-the-glanz-of-berlin-roaring-20s-show-4146054/",
                        "en": "https://www.lippu.fi/artist/show-dinner/savoy-the-glanz-of-berlin-roaring-20s-show-4146054/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1913057,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T10:13:27.751991Z",
                    "last_modified_time": "2026-05-05T10:13:27.752004Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789968.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1913057/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T10:13:27.571258Z",
            "last_modified_time": "2026-06-03T15:13:23.676603Z",
            "date_published": null,
            "start_time": "2026-11-27T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Astu sisään 1920-luvun Berliinin villiin, säihkyvään yöhön!",
                "en": "Step into the wild, glittering night of 1920s Berlin!"
            },
            "description": {
                "fi": "<p>Astu sisään 1920-luvun Berliinin villiin, säihkyvään yöhön!</p><p>Dekadentteja iltoja, hurmaavaa loistoa, maailmanluokan esiintyjiä ja vastustamatonta musiikkia – <b>The Glanz of Berlin</b> on unohtumaton matka legendaariseen Berliinin kaksikymmentäluvun sykkeeseen. Esityksen tähtenä loistaa <b>Evi Niessner</b> – <i>The Voice of Vintage</i>, joka tuo Weimarin ajan yöelämän huuman tähän päivään.</p><p>The Glanz of Berlin on ilotulitusta: musiikkia, tanssia, akrobatiaa, kabareeta, huumoria ja vintage glamouria. Kansainvälinen live orkesteri <b>THE GLANZ</b> ympäröi yleisön jazzin, tangon ja swingin sävelillä.</p><p>Esitys yhdistää show’lle luodut koreografiat ja akrobaattiset numerot aitoihin Weimarin ajan kappaleisiin, niiden moderneihin sovituksiin ja täysin uusiin sävellyksiin kuten esityksen nimikkokappaleeseen <i>Glanz auf dem Vulkan</i>. 1920-luku ei ole koskaan kuulostanut näin raikkaalta ja sähäkältä.</p><p>Evi Niessnerin suunnittelema kokonaisuus - vaikuttavat videoprojisoinnit, draaman täyttämä valosuunnittelu ja ylelliset käsintehdyt puvut luovat lavalle hohtavan maailman, joka kutsuu sukeltamaan ajan henkeen.</p><p>Show’ta on esitetty Saksassa menestyksekkäästi vuodesta 2020 alkaen, sen saksankielisellä nimellä <i>Glanz auf dem Vulkan</i>. Esitys on ollut sekä yleisömenestys että kriitikkojen suosiossa. Nyt The Glanz of Berlin nähdään Suomessa ensimmäistä kertaa!</p><p>The Glanz of Berlin on kunnianosoitus 1920-luvun rohkeille naisille ja pelottomille taiteilijoille, jotka loivat aikakauden täynnä vapautta, luovuutta ja ennakkoluulottomuutta. Show muistuttaa, että taide, huumori ja intohimo ovat edelleen vahvimmat vastavoimamme elämän myllerryksille.</p><p><b>Luvassa on ainutlaatuinen taiteen, vapauden ja ihmisyyden juhla! Iloinen 20-luku on jälleen täällä!</b></p><p>Esityksen kieli: englanti ja saksa, suomenkielinen tekstitys</p><p>Kesto n.  2 h 20 min, sis. 30 min väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b><i>Show & Dinner</b></i><br>Tarjolla myös herkulliset <i>Show & Dinner</i> -paketit – nauti päivällistä teatterin yhteydessä sijaitsevassa Ravintola Minne Gardenissa ennen esitystä klo 17.00!</p><p><i>Show & Dinner liput 139 € sisältävät parhaat paikat, kolmen ruokalajin illallisen ja naulakkopalvelumaksun.</p><p><b><i>Show & Dinner -paketit ovat myynnissä omina lipputyyppeinään Lippu.fi verkkokaupassa. <br>Pe 27.11. on toistaiseksi täyteen varattu.</b></i></p><p>Menu-vaihtoehdot:</p><p><b>Kabaree 1920</b><br>Porsaanpotkaterriiniä, hyydytettyä madeiralientä ja knöödeliä L<br>Yön yli mureaksi haudutettu häränrinta-sauerbraten, punakaalipaistosta ja perunafondant  L,G<br>Omenastruudeli, kirsikkahilloa ja vaniljajäätelöä L<br> <br><b>Grün 1920 (kasvismenu)</b><br>Maa-artisokkakeittoa L,G<br>Kotijuustoschnitzel, savojinkaalta ja perunafondant L<br>Omenastruudeli, kirsikkahilloa ja vaniljajäätelöä L</p><p>- Menun hinta ei sisällä juomia.<br>- Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua (klo 17.00).<br>- Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</i></p><p><b>Jatkot 1920-luvun hengessä</b><br>Perjantain esityksen jälkeen luvassa myös riemukkaat 20-luvun jatkobileet salakapakkahenkeen muuntautuvassa Ravintola Minnessä n. klo 21.15-00.00. Vapaa pääsy! Savoy-teatterin narikka palvelee jatkojen loppuun saakka.</p>",
                "en": "<p>Step into the wild, glittering night of 1920s Berlin!</p><p>Decadent evenings, dazzling glamour, world class performers and irresistible music – <b>The Glanz of Berlin</b> is an unforgettable journey into the legendary pulse of Berlin in the Roaring Twenties. Shining at the heart of the show is <b>Evi Niessner – The Voice of Vintage</b>, who brings the intoxicating nightlife of the Weimar era vividly into the present day.</p><p><b>The Glanz of Berlin</b> is a spectacular fireworks display of music, dance, acrobatics, cabaret, humor, and vintage glamour. The international live orchestra <b>THE GLANZ</b> surrounds the audience with the sounds of jazz, tango, and swing.</p><p>The show combines specially created choreography and acrobatic numbers with authentic Weimar era songs, their modern arrangements, and entirely new compositions, including the show’s signature piece <i>Glanz auf dem Vulkan</i>. The 1920s have never sounded this fresh or electrifying.</p><p>Designed by Niessner – the stunning video projections, drama filled lighting design, and luxurious handmade costumes create a luminous world on stage that invites the audience to dive into the spirit of the era.</p><p>The show has been performed to great success in Germany since 2020, known as Glanz auf dem Vulkan, winning both audiences and critics alike. <b>Now, The Glanz of Berlin arrives in Finland for the very first time!</b></p><p><b>The Glanz of Berlin</b> is a tribute to the bold women and fearless artists of the 1920s who created an era defined by freedom, creativity, and open mindedness. The show reminds us that art, humor, and passion remain our strongest forces in times of turbulence.</p><p><b>An extraordinary celebration of art, freedom, and humanity awaits! The Roaring Twenties are here again!</b></p><p>Languages: English and German, with Finnish subtitles</p><p>Duration: 2 h 20 min, including a 30 minute intermission</p><p>The floor: R18 alcohol serving area. The balcony: no age restrictions, no alcohol serving.</p><p><b><i>Show & Dinner</b></i><br>Delicious <i>Show & Dinner</i> packages are also available – enjoy dinner at Restaurant Minne Garden, located in connection with the theater, before the performance at 5:00 PM.</p><p><i>Show & Dinner tickets (€139) include the best seats, a three course dinner, and cloakroom service.</p><p>Menu options</p><p><b>Kabaree 1920</b><br>Pork hock terrine with jellied Madeira jus and dumpling (L)<br>Slow braised beef sauerbraten, sautéed red cabbage and potato fondant (L,G)<br>Apple strudel with cherry jam and vanilla ice cream (L)</p><p><b>Grün 1920 (vegetarian menu)</b><br>Jerusalem artichoke soup (L,G)<br>House cheese schnitzel, savoy cabbage and potato fondant (L)<br>Apple strudel with cherry jam and vanilla ice cream (L)</p><p>Please note:<br>The menu price does not include beverages.<br>Dinner is served at Restaurant Minne Garden in the Savoy Theatre two hours before the performance (at 5:00 PM).<br>Special dietary requirements are accommodated with advance notice (no later than three days before the performance).</p><p><b>Afterparty in 1920s Style</b><br>After the Friday performance, the celebration continues with joyous Roaring Twenties themed afterparty festivities at Restaurant Minne, Free admission! The Savoy Theatre cloakroom will remain open until the end of the afterparty.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/53B3685E5B1C3F9D0B722FA5726C767C/The_Glanz_of_Berlin_Roaring_20_s_show",
                "en": "http://www.savoyteatteri.fi/en/events/event/53B3685E5B1C3F9D0B722FA5726C767C/The_Glanz_of_Berlin_Roaring_20_s_show"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Savoy-teatteri",
                "en": "Savoy Theatre"
            },
            "name": {
                "fi": "The Glanz of Berlin – Roaring 20’s show",
                "en": "The Glanz of Berlin – Roaring 20’s show"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68523/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68128",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "22,80-43,90 €"
                    },
                    "info_url": {
                        "fi": "https://web.lippu.fi/palautus/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494939,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-24T14:13:08.352861Z",
                    "last_modified_time": "2026-02-24T14:13:08.352874Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785683.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494939/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-24T14:13:08.241624Z",
            "last_modified_time": "2026-06-03T12:14:23.057024Z",
            "date_published": null,
            "start_time": "2026-12-12T17: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,
            "short_description": null,
            "description": {
                "fi": "<p><b>La 12.12.2026 Duke Robillard & Band -konsertti peruuntuu Savoy-teatterista ja tapahtumajärjestäjästä (Deelen Consultancies) riippumattomista syistä.</b></p><p>Jo maksetuista lipuista tulee hakea rahanpalautusta ma 30.11.2026 mennessä.<br> <br>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/<br> <br>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).</p><p>****</p><p>Ainutkertainen merkkivuosi-show - ainoa konsertti Suomessa.</p><p><b>Duke Robillard</b> on ainutlaatuinen bluesin tulkitsija ja tyyliniekka.</p><p>Hän on uudelleen määritellyt bluesin genren ja jättänyt jälkensä siihen niin käänteentekevillä sooloalbumeillaan Rounders-levymerkille kuin legendaarisine yhteistöineen Roomful of Blues ja The Fabulous Thunderbirds yhtyeiden kanssa.</p><p>Robillardin viimevuotinen show Savoy-teatterissa oli yksi meidän kriittisesti menestyneimmistä konserteistamme koko vuonna. Tämän vuoksi Duke palaa uudestaan ja lupaa tällä kertaa vielä erityisemmän shown, joka tarjoilee lukuisia musiikillisia kohokohtia hänen menneisyydestään. Duke on aina tuntenut erityistä yhteyttä Suomeen ja on iloinen saadessaan tuoda shown ainukertaisena kokemuksena Savoy-teatteriin.</p><p>Robillard tuo mukanaan jälleen saman hienon bändin, <b>The Blues Delights</b>, joka yllätti kaikki viime kerralla. Mukana on <b>Damien Daigneua</b> pianossa ja laulussa, <b>Matteo Giannetti</b> bassossa, <b>Matthieu Gastaldi</b> rummuissa, <b>Franck Mottin</b> saksofonissa ja <b>David Cayrou</b> trumpetissa.</p><p>Luvassa on todella mahtava ilta niin bluesmusiikin ystäville kuin kelle tahansa musiikin ystävälle. Duke Robillard on taiteensa mestari, joka yhä 78-vuotiaana jatkaa yllättämistä ja ilahduttamista tavaramerkiksi muodostuneella kitarasoundillaan ja sielukkaalla laulullaan.</p><p>Ei kannata missata.</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/992DB2600727E0DEE674AA66BD9D3F82/PERUTTU_Duke_Robillard_Band_USA_"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Deelen Consultancies"
            },
            "name": {
                "fi": "PERUTTU: Duke Robillard & Band (USA) – KONSERTTI ON PERUTTU!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68128/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69102",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:46/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384765,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-27T07:14:15.209322Z",
                    "last_modified_time": "2026-05-27T07:14:15.209339Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785662.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384765/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-27T07:14:15.060050Z",
            "last_modified_time": "2026-06-03T12:14:17.483345Z",
            "date_published": null,
            "start_time": "2026-09-26T06:00:00Z",
            "end_time": "2026-09-26T09: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,
            "short_description": {
                "fi": "Hypätään yhdessä värikkäälle tanssilattialle, missä arabihitit pauhaavat, ilmapallot lentelevät ja nauru raikaa!",
                "sv": "Kom med på disko där arabiska hits spelas, ballonger svävar omkring och skrattet bubblar!",
                "en": "Come join us on a colorful dance floor where Arabic hits are playing, balloons float around, and laughter fills the air!"
            },
            "description": {
                "fi": "<p>Hypätään yhdessä värikkäälle tanssilattialle, missä arabihitit pauhaavat, ilmapallot lentelevät ja nauru raikaa!</p><p>Yalla Collectiven DJ pistää bileet käyntiin, Ramithawi tuo taian lavalle live-musiikillaan ja Mo-Clown hassuttelee. Leikit ja erilaiset taidetyöpajat tempaavat koko perheen mukaansa. Kasvomaalaus voi muuttaa sinut vaikka tiikeriksi. Nähdään tanssilattialla!</p><p>Kaikki ovat tervetulleita!</p><p>Yalla Disko on osa Nomads Festivaalia. Tapahtuman tuottaa Kulttuuriyhdistämö Interkult yhteistyössä Annantalon kanssa.</p>",
                "sv": "<p>Kom med på disko där arabiska hits spelas, ballonger svävar omkring och skrattet bubblar!</p><p>Yalla Collectives DJ sätter igång festen, Ramithawi bjuder på härlig livemusik, Mo-Clown skojar och hittar på bus, och det finns roliga lekar och kreativa verkstäder för alla. I ansiktsmålningen kan du till exempel bli en tiger!</p><p>Yalla Disko är en del av Nomads Festival och ordnas av Interkult tillsammans med Annegården.</p>",
                "en": "<p>Come join us on a colorful dance floor where Arabic hits are playing, balloons float around, and laughter fills the air!</p><p>Yalla Collective’s DJ gets the party started, Ramithawi brings magic to the stage with live music, Mo-Clown brings fun and silliness, and there are playful games and creative workshops for everyone. At the face painting station, you can even turn into a tiger!</p><p>Yalla Disco is part of the Nomads Festival and is produced by Interkult in collaboration with Annantalo.</p>",
                "ar": "<p><p lang=\"ar\" dir=\"rtl\"><br>انضموا إلينا إلى ساحة رقص مليئة بالألوان، حيث تُعزف أشهر الأغاني العربية، وتطفو البالونات في كل مكان، ويملأ الضحك الأجواء! يفتتح دي جي \"مجموعة يلا\" الحفلة، ويقدّم \"راميثاوي\" سحره على المسرح من خلال عرض موسيقي حي، بينما يضيف المهرّج \"مو\" أجواءً من المرح والضحك، كما تتوفر ألعاب ممتعة وورش إبداعية للجميع. وفي ركن رسم الوجوه، يمكنكِ حتى أن تتحول إلى نمر!<br></p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/489CCC9709BE14B9F746E90CEE31A5FD/Yalla_Disko",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/489CCC9709BE14B9F746E90CEE31A5FD/Yalla_Disko",
                "en": "http://www.annantalo.fi/en/events/event/489CCC9709BE14B9F746E90CEE31A5FD/Yalla_Disko"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Yalla Disko",
                "sv": "Yalla Disko",
                "en": "Yalla Disko"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69102/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpi24ioou",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24ikqm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24ilma/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24il7e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24imsu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24inf4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24in2i/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494687,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-30T07:31:57.519589Z",
                    "last_modified_time": "2026-01-30T07:31:57.519604Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a7ae893a-d1e2-4f7e-b561-df2727c27ce6.png",
                    "name": "",
                    "cropping": "55,0,353,298",
                    "photographer_name": "",
                    "alt_text": "Kirjoja ja neuleita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494687/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-03T11:44:45.806814Z",
            "last_modified_time": "2026-06-03T11:44:45.806826Z",
            "date_published": null,
            "start_time": "2026-08-13T07:00:00Z",
            "end_time": "2026-12-10T09:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kuunnellaan novelleja ja tehdään käsitöitä",
                "sv": "Vi lyssnar på noveller och handarbetar",
                "en": "We listen to short stories and do handicrafts"
            },
            "description": {
                "fi": "<p>Tervetuloa istahtamaan alas, kuuntelemaan novelleja ja tekemään samalla omaa käsityötä. Novellit suomenkielellä.</p><p>Novellikoukku jokaisen kuukauden toisena torstaina klo 10.00-11:30:</p><p>13.8. </p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>",
                "sv": "<p>Välkommen att slå dig ner, lyssna på noveller och samtidigt arbeta med ditt eget hantverk. Novellerna är på finska.</p><p>Novellkroken ordnas den andra torsdag varje månad kl. 10:00–11:30:</p><p>13.8. </p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>",
                "en": "<p>Welcome to sit down, listen to short stories, and work on your own handicraft at the same time. The short stories are in Finnish.</p><p>Short Story Crochet Hook takes place on the second Thursday of each month from 10:00 to 11:30:</p><p>13.8.</p><p>10.9.</p><p>8.10.</p><p>12.11.</p><p>10.12.</p>"
            },
            "location_extra_info": {
                "fi": "Aula",
                "sv": "Lobby",
                "en": "Lobby"
            },
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Novellikoukku",
                "sv": "Novellvirkningshake",
                "en": "Short story crochet hook"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24ioou/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpi24iq2q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24ipce/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24ipqi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24ip7e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24iqni/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494598,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-22T07:49:24.977352Z",
                    "last_modified_time": "2026-01-22T07:49:24.977367Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/8d1e3ef4-b9ff-4d37-aeb1-ec63a9ebc236.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lautapeli",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494598/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2026-06-03T11:23:12.212693Z",
            "last_modified_time": "2026-06-03T11:32:24.656871Z",
            "date_published": null,
            "start_time": "2026-09-14T11:00:00Z",
            "end_time": "2026-12-14T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Oletko tuuminut, että lautapelien pelaaminen näyttää hauskalta ja jumppaisi varmaan aivoja. Mitähän jos sinäkin? ",
                "sv": "Bordspelsstund för seniorer",
                "en": "Board Game Session for Seniors"
            },
            "description": {
                "fi": "<p>Oletko tuuminut, että lautapelien pelaaminen näyttää hauskalta ja jumppaisi varmaan aivoja. Mitähän jos sinäkin?</p><p>&nbsp;</p><p>Nyt sinulla on tilaisuus tulla harjoittelemaan rauhallisessa,</p><p>aloittelijoille ja erityisesti ikääntyneille suunnatussa pelituokiossa Sellon kirjastossa!</p><p><br></p><p>Maanantaisin 14.9., 12.10., 9.11. ja 14.12.</p><p>Kello 14-16:30</p>",
                "sv": "<p>Har du tänkt på att det verkar roligt att spela brädspel och att det säkert är bra träning för hjärnan? Vad sägs om att prova själv?</p><p><br></p><p>Nu har du chansen att komma och träna i en lugn</p><p>spelstund på Sello-biblioteket, som riktar sig till nybörjare och särskilt till äldre!</p>",
                "en": "<p>Have you ever thought that playing board games looks like fun and would probably give your brain a workout? Why not give it a try?</p><p><br></p><p>Now you have the chance to come and practice in a relaxed</p><p>game session at the Sello Library, designed for beginners and especially for seniors!</p>"
            },
            "location_extra_info": {
                "fi": "Mörkö",
                "sv": "Mörkö",
                "en": "Mörkö"
            },
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Senioreiden lautapelituokio",
                "sv": "Bordspelsstund för seniorer",
                "en": "Board Game Session for Seniors"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi24iq2q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpi2orsh4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi2ornau/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi2ornxm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi2oroe4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi2oror4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi2oro6q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi2orpmq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi2orpza/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi2orqfq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi2orqsu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi2orrae/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi2orrnu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi2orr3e/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490116,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-24T11:41:28.628680Z",
                    "last_modified_time": "2025-01-30T08:53:02.449159Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0b77eee3-7b76-4897-ba24-d739cdd915b9.jpg",
                    "name": "",
                    "cropping": "280,0,1000,720",
                    "photographer_name": "Ali Al-Zaini",
                    "alt_text": "Kuvassa on kuvitettu lasten avonainen satukirja, joka on muuntautunut mereksi. Meressä seilaa lapsi purjeveneellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490116/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-03T10:16:55.278476Z",
            "last_modified_time": "2026-06-03T10:16:55.278487Z",
            "date_published": null,
            "start_time": "2026-06-09T14:30:00Z",
            "end_time": "2026-08-25T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Arabiankielinen satuhetki",
                "sv": "Sagostund på arabiska",
                "en": "Storytime in Arabic"
            },
            "description": {
                "fi": "<p>Tervetuloa rakkaat pienet lapset arabiankieliselle satuhetkelle. Sukellamme seikkailujen, mielikuvituksen ja unelmien maailmaan. Sanaa kertoo sinulle satuja joka tiistai Jaminurkassa klo 17:30</p><p><br></p><p>Kuva: Ali Al-Zaini</p>",
                "sv": "<p>Välkommen Det är sagostund på arabiska för våra älskade småttingar. Vi kommer att dyka in i en värld av äventyr, fantasi och drömmar. Sanaa berättar för dig varje tisdag. kl. 17:30.</p><p><br></p><p>Foto: Ali Al-Zaini</p>",
                "en": "<p>Welcome It's storytime in Arabic for our beloved little ones. We will dive into the world of adventures, imagination and dreams. It will be narrated to you by Sanaa every Tuesday at 17:30.</p><p><br></p><p>Photo: Ali Al-Zaini</p>"
            },
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Arabiankielinen satuhetki",
                "sv": "Sagostund på arabiska",
                "en": "Storytime in Arabic"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpi2orsh4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68324",
            "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: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:596/?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:p39492/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1721275,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-24T11:14:12.015114Z",
                    "last_modified_time": "2026-03-24T11:14:12.015135Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785923.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1721275/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-24T11:14:11.879655Z",
            "last_modified_time": "2026-06-03T10:13:12.960966Z",
            "date_published": null,
            "start_time": "2026-06-04",
            "end_time": "2026-06-13",
            "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,
            "short_description": {
                "fi": "Malmin oma kaupunkifestivaali elävöittää Ala-Malmin toria konserteilla, työpajoilla, lasten tapahtumilla ja muulla yhteisellä tekemisellä!",
                "sv": "Malms egen stadsfestival livar upp Nedre Malms torg med konserter, verkstäder, evenemang för barn och andra gemensamma aktiviteter!",
                "en": "Malmi’s very own urban festival will enliven Ala-Malmi Square with concerts, workshops, children’s events and other shared activities!"
            },
            "description": {
                "fi": "<p>Malmin oma kaupunkifestivaali elävöittää Ala-Malmin toria konserteilla, työpajoilla, lasten tapahtumilla ja muulla yhteisellä tekemisellä!</p><p>Malmin tapahtumakesä 2026 käynnistyy 4.6. uudessa tapahtumapaikassa Ala-Malmin torilla, kun Ala-Malmin puistoa remontoidaan.</p><p>Kesäkuun aikana torin Konttilavalla nähdään mm. Vimma, Nyrkkitappelu, Tuula Amberla & Pieni Jazzorkesteri, Mara Balls ja Rosettes.</p><p><b>Kesäkuun ohjelma</b></p><p><b>4.6. Vimma, Dragsvik</b><br>14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa luovaa toimintaa kaikenikäisille<br>17–19 Helsinki EkoArt<br>17.30–18.20 Dragsvik <br>19–20 Vimma<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/BC7E23145ED3EE112007BDC5171F83A3/Vimma__Dragsvik_ja_luovaa_tekemist__kaikille\">Katso päivän ohjelma</a></u></p><p><b> 5.6. Nyrkkitappelu, Saa kiljua</b><br>14.30–18.30 ympäristöteemaista toimintaa kaikenikäisille <br>17–20 Forum Virium: Vehreä ja viihtyisä Ala-Malmin tori kaikille kaupunkilaisille 2027<br>17.30–18.20 Saa kiljua <br>19–20 Nyrkkitappelu<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/07AA5D12A68CB870C58948E46914D876/Nyrkkitappelu__Saa_kiljua_ja_ymp_rist_teemaista_tekemist_\">Katso päivän ohjelma</a></u></p><p><b> 6.6. Lasten lauantai: Rokkasoppa, riemukas perhemuskari, kirjaston lukukeidas ja työpajoja</b><br>10–16 Kirjaston lukukeidas<br>11–15 Lasten uimataidon edistäminen<br>12–16 Malmin nuorisotyöyksikön kesätyönuorten ideoimia pelejä ja leikkejä perheen pienille <br>12-15 Forum Virium: Vehreä ja viihtyisä Ala-Malmin tori kaikille kaupunkilaisille 2027<br>12–14 Pukinmäen taidekoulu: Klovni Dattarataa <br>12–14 Pohjois-Helsingin kuvataidekoulun pinssityöpaja <br>12–14 Yksin hanke: Kollaasitaidetta ja tikkariperhosia <br>13–13.30 Riemukas perhemuskari<br>14–14.45 Rokkasoppa<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/CF826880E5BB479091D11E88120EA497/Lasten_lauantai__Rokkasoppa__Riemukas_perhemuskari__kirjaston_lukukeidas_ja_ty_pajoja\">Katso päivän ohjelma</a></u></p><p><b> 9.6. Tuula Amberla & Pieni Jazzorkesteri</b><br>13–14 Kirjaston lukuhetki <br>16–16.45 Kaupunkitanssit<br>19–20 Tuula Amberla & Pieni Jazzorkesteri<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/A6FD16785CE476C66954F655A87939CC/Tuula_Amberla___Pieni_Jazzorkesteri__Kaupunkitanssit_ja_kirjaston_lukuhetki\">Katso päivän ohjelma</a></u></p><p><b>10.6. Mara Balls ja Satanen</b><br>17.30–18.20 Satanen <br>19–20 Mara Balls<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/AA3A2D05D104F072E0A9A7FA1A40039E/Mara_Balls_ja_Satanen\">Katso päivän ohjelma</a></u></p><p><b>11.6. Suuri sambapäivä</b><br>14.30–18.30 Kesätyönuorten ideoimaa kisailua ja visailua kaiken ikäisille <br>17–17.30 Samigon Sambapaja kaikille <br>17.30–18 Samigo & Samba Amigos: 1. setti <br>18–18.20 Samba-tanssin opetusta <br>18.30–19.15 Samigo & Samba Amigos: 2. setti <br>19.15–19.30 Samba-show <br>19.30–19.50 Samba-rumpuryhmän ja tanssijoiden johtama sambakulkue<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/CDF84A0B7E02853CCDF416B49B787E89/Suuri_sambap_iv___Samigo___Samba_Amigos__sambaty_paja__tanssiopetusta_ja_kulkue\">Katso päivän ohjelma</a></u></p><p><b>12.6. Helsinki-päivä</b><br>14.30–18.30 Kesätyönuorten ideoimaa yhteisötaidetta<br>16–19 Malmin seurakunnan toimintapiste <br>16–16.45 Kaupunkitanssit <br>17–18 Laineen Kasperi <br>19–20 F<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/01BA3D940BFC1583059744C211303906/Helsinki-p_iv__Malmilla\">Katso päivän ohjelma</a></u></p><p><b>13.6. Rosettes, Nevala</b><br>14.30–18.30 Kesätyönuorten ideoimaa kivaa kesätekemistä ja kohtaamisia kaiken ikäisille<br>15–16 Nevala <br>17–18 Rosettes<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/27A936EFADAC1A0D50FED0CE4AE42AAA/Rosettes__Nevala___kes_tekemist__ja_kohtaamisia\">Katso päivän ohjelma</a></u></p><p>Tapahtumiin on vapaa pääsy! Muutokset ovat mahdollisia. Rankkasateen sattuessa tapahtumat siirtyvät sisätiloihin Malmitaloon. Malmin tapahtumakesä jatkuu elokuussa 13.8. alkaen. <a href=\"https://malmitalo.fi/fi/tapahtumat/event/F137D945311F42A01E82737A62AF349B/Malmin_Tapahtumakes__2026\"><u>Katso elokuun ohjelma täältä</u></a>.</p>",
                "sv": "<p>Malms egen stadsfestival livar upp Nedre Malms torg med konserter, verkstäder, evenemang för barn och andra gemensamma aktiviteter!</p><p>Malms evenemangssommar 2026 drar igång den 4 juni på den nya evenemangsplatsen Nedre Malms torg, eftersom Nedre Malms park renoveras.</p><p>I juni får vi bland annat se Vimma, Nyrkkitappelu, Tuula Amberla & Pieni Jazzorkesteri, Mara Balls och Rosettes på containerscenen på torget.</p><p><b>Program i juni</b></p><p><b>Torsdag 4.6 Vimma, Dragsvik och kreativa aktiviteter för alla</b><br>14.30–18.30 Kreativ verksamhet för alla, som planerats av unga sommarjobbare vid Malms ungdomsarbetsenhet<br>17.30–18.20 Dragsvik<br>19.00–20.00 Vimma<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/BC7E23145ED3EE112007BDC5171F83A3/Vimma__Dragsvik_ja_luovaa_tekemist__kaikille\">Se dagens program</a></u></p><p><b>Fredag 5.6 Nyrkkitappelu, Saa kiljua och aktiviteter med miljötema</b><br>14.30–18.30 Aktiviteter med miljötema för alla åldrar<br>17.30–18.20 Saa kiljua<br>19.00–20.00 Nyrkkitappelu<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/07AA5D12A68CB870C58948E46914D876/Nyrkkitappelu__Saa_kiljua_ja_ymp_rist_teemaista_tekemist_\">Se dagens program</a></u></p><p><b>Lördag 6.6 Barnens lördag: Rokkasoppa, glatt familjemusiklekis, bibliotekets läsoas och verkstäder</b><br>10.00–16.00 Bibliotekets läsoas<br>11.00–15.00 Främjande av barns simkunskaper<br>12.00–16.00 Spel och lekar för de yngsta, som planerats av unga sommarjobbare vid Malms ungdomsarbetsenhet<br>12.00–14.00 Pukinmäen taidekoulut: Clownen Dattarataa<br>12.00–14.00 Pohjois-Helsingin kuvataidekoulus pinsverkstad<br>12.00–14.00 Yksin-projektet: Collagekonst och slickepinnsfjärilar<br>13.00–13.30 Glatt familjemusiklekis<br>14.00–14.45 Rokkasoppa<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/CF826880E5BB479091D11E88120EA497/Lasten_lauantai__Rokkasoppa__Riemukas_perhemuskari__kirjaston_lukukeidas_ja_ty_pajoja\">Se dagens program</a></u></p><p><b>Tisdag 9.6 Tuula Amberla & Pieni Jazzorkesteri, stadsdans och bibliotekets lässtund</b><br>13.00–14.00 Bibliotekets lässtund<br>16.00–16.45 Stadsdans<br>19.00–20.00 Tuula Amberla & Pieni Jazzorkesteri<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/A6FD16785CE476C66954F655A87939CC/Tuula_Amberla___Pieni_Jazzorkesteri__Kaupunkitanssit_ja_kirjaston_lukuhetki\">Se dagens program</a></u></p><p><b>Onsdag 10.6 Mara Balls och Satanen</b><br>17.30–18.20 Satanen<br>19.00–20.00 Mara Balls<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/AA3A2D05D104F072E0A9A7FA1A40039E/Mara_Balls_and_Satanen\">Se dagens program</a></u></p><p><b>Torsdag 11.6 Stora sambadagen: Samigo & Samba Amigos, sambaverkstad, dansundervisning och parad</b><br>14.30–18.30 Tävlingar och frågesporter för alla åldrar som planerats av unga sommarjobbare vid Malms ungdomsarbetsenhet 17.00–17.30 Samigos sambaverkstad för alla<br>17.30–18.00 Samigo & Samba Amigos: Set 1<br>18.00–18.20 Lektioner i sambadans<br>18.30–19.15 Samigo & Samba Amigos: Set 2<br>19.15–19.30 Samba-show<br>19.30–19.50 Sambaparad ledd av en sambatrumgrupp och dansare<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/CDF84A0B7E02853CCDF416B49B787E89/Great_samba_day__Samigo___Samba_Amigos__samba_workshop__dance_lessons_and_a_parade\">Se dagens program</a></u></p><p><b>Fredag 12.6 Helsingforsdagen</b><br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/01BA3D940BFC1583059744C211303906/Helsinki-p_iv__Malmilla\">Se dagens program</a></u></p><p><b>Lördag 13.6 Rosettes, Nevala samt sommaraktiviteter och möten som planerats av Malms ungdomsarbetsenhet</b><br>14.30–18.30 Trevliga sommaraktiviteter och möten för alla åldrar som planerats av unga sommarjobbare vid Malms ungdomsarbetsenhet<br>15.00–16.00 Nevala<br>17.00–18.00 Rosettes<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/27A936EFADAC1A0D50FED0CE4AE42AAA/Rosettes__Nevala___kes_tekemist__ja_kohtaamisia\">Se dagens program</a></u></p><p>Evenemangen har fritt inträde! Ändringar är möjliga. Vid kraftigt regn ordnas evenemangen inomhus på Malms kulturhus.</p><p>Malms evenemangssommar fortsätter i augusti från och med den 13 augusti. <a href=\"https://malmitalo.fi/sv/evenemangen/event/F137D945311F42A01E82737A62AF349B/Malmin_Tapahtumakes__2026\"><u>Se augustis evenemang här</u></a>.</p>",
                "en": "<p>Malmi’s very own urban festival will enliven Ala-Malmi Square with concerts, workshops, children’s events and other shared activities!</p><p>The 2026 Malmi Summer of Events will kick off on 4 June at a new venue on Ala-Malmi Square while Ala-Malmi Park is being renovated.</p><p>During June, the container stage on the square will host acts such as Vimma, Nyrkkitappelu, Tuula Amberla & Pieni Jazzorkesteri, Mara Balls and Rosettes.</p><p><b>June programme</b></p><p><b>4 June: Vimma, Dragsvik</b><br>14.30–18.30: Creative activities for people of all ages, organised by the young summer workers of the Malmi Youth Work Unit<br>17.30–18.20: Dragsvik<br>19.00–20.00: Vimma<br><u><a href=\"https://malmitalo.fi/en/events/event/BC7E23145ED3EE112007BDC5171F83A3/Vimma__Dragsvik_ja_luovaa_tekemist__kaikille\">See the programme for the day</a></u></p><p><b>5 June: Nyrkkitappelu, Saa kiljua</b><br>14.30–18.30 Environment-themed activities for all ages<br>17.30–18.20: Saa kiljua<br>19.00–20.00: Nyrkkitappelu<br><u><a href=\"https://malmitalo.fi/en/events/event/07AA5D12A68CB870C58948E46914D876/Nyrkkitappelu__Saa_kiljua_ja_ymp_rist_teemaista_tekemist_\">See the programme for the day</a></u></p><p><b>6 June: Children’s Saturday: Rokkasoppa, a joyful family music playschool</b><br>10.00–16.00: Reading oasis in the library<br>11.00–15.00: Promoting children's swimming skills<br>12.00–16.00: Games and play activities for the youngest members of the family, created by the Malmi Youth Work Unit’s young summer workers<br>12.00–14.00: Pukinmäki Art School: Clown Dattarataa<br>12.00–14.00: Pin-making workshop by Helsinki Upper Secondary School of Visual Arts<br>12.00–14.00: The Yksin (‘Alone’) project: Collage art and lollipop butterflies<br>13.00–13.30: Joyful family music playschool<br>14.00–14.45: Rokkasoppa<br><u><a href=\"https://malmitalo.fi/en/events/event/CF826880E5BB479091D11E88120EA497/Lasten_lauantai__Rokkasoppa__Riemukas_perhemuskari__kirjaston_lukukeidas_ja_ty_pajoja\">See the programme for the day</a></u></p><p><b>9 June: Tuula Amberla & Pieni Jazzorkesteri</b><br>13.00–14.00: Reading moment in the library<br>16.00–16.45: Dancing in the City<br>19.00–20.00: Tuula Amberla & Pieni Jazzorkesteri<br><u><a href=\"https://malmitalo.fi/en/events/event/A6FD16785CE476C66954F655A87939CC/Tuula_Amberla___Pieni_Jazzorkesteri__Kaupunkitanssit_ja_kirjaston_lukuhetki\">See the programme for the day</a></u></p><p><b>10 June: Mara Balls and Satanen</b><br>17.30–18.20: Satanen<br>19.00–20.00: Mara Balls<br><u><a href=\"https://malmitalo.fi/en/events/event/AA3A2D05D104F072E0A9A7FA1A40039E/Mara_Balls_and_Satanen\">See the programme for the day</a></u></p><p><b>11 June: Great samba day</b><br>14.30–18.30: competitions and quizzes for all ages, organised by the Malmi Youth Work Unit’s young summer workers 17.00–17.30: Samigo samba workshop for all<br>17.30–18.00: Samigo & Samba Amigos: 1st set<br>18.00–18.20: Samba dance lessons<br>18.30–19.15: Samigo & Samba Amigos: 2nd set<br>19.15–19.30: Samba show<br>19.30–19.50: Samba parade led by a drum group and dancers<br><u><a href=\"https://malmitalo.fi/en/events/event/CDF84A0B7E02853CCDF416B49B787E89/Suuri_sambap_iv___Samigo___Samba_Amigos__sambaty_paja__tanssiopetusta_ja_kulkue\">See the programme for the day</a></u></p><p><b>12 June: Helsinki Day</b><br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/01BA3D940BFC1583059744C211303906/Helsinki-p_iv__Malmilla\">See the programme for the day</a></u></p><p><b>13 June: Rosettes, Nevala</b><br>14.30–18.30: Fun summer activities and encounters for all ages, organised by the Malmi Youth Work Unit’s young summer workers<br>15.00–16.00: Nevala<br>17.00-18.00: Rosettes<br><u><a href=\"https://malmitalo.fi/en/events/event/27A936EFADAC1A0D50FED0CE4AE42AAA/Rosettes__Nevala___kes_tekemist__ja_kohtaamisia\">See the programme for the day</a></u></p><p>Entry to the events is free of charge! Changes are possible. In the event of heavy rain, the events will be held inside Malmitalo.</p><p>Malmi Summer of Events will continue from 13 August onwards. <u><a href=\"https://malmitalo.fi/en/events/event/F137D945311F42A01E82737A62AF349B/Malmin_Tapahtumakes__2026\">See the August programme here</u></a>.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5DAD7B3D863A88635448462D6610CAED/Malmin_tapahtumakesa_2026",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5DAD7B3D863A88635448462D6610CAED/Malms_evenemangssommar_2026",
                "en": "http://www.malmitalo.fi/en/events/event/5DAD7B3D863A88635448462D6610CAED/Malmi_Summer_of_Events_2026"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Malmin tapahtumakesä 2026 – kesäkuun ohjelma",
                "sv": "Malms evenemangssommar 2026 – program i juni",
                "en": "Malmi Summer of Events 2026 – June programme"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68324/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agpizx3jqm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:21/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:22/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null,
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:58/?format=api"
                }
            ],
            "created_time": "2026-06-03T09:45:12.381836Z",
            "last_modified_time": "2026-06-03T09:46:10.553747Z",
            "date_published": null,
            "start_time": "2026-06-04T09:12:00Z",
            "end_time": "2026-06-05T13:16: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": "2026-06-03T12:48:00+03:00",
            "enrolment_end_time": "2026-06-05T15:15:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Testitapahtuma PT-453:n & PT-2007:n testaamista varten #1",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Testitapahtuma PT-453:n &amp; PT-2007:n testaamista varten #1</p>\n",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://example.org/testitapahtuma36423642346/",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Testitapahtuma PT-453:n & PT-2007:n testaamista varten #1",
                "sv": "",
                "en": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agpizx3jqm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpiyj2kpu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2a7u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2bvy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2ce4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2csa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2c54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2djq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2dwa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2eca/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2eoe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2e2m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2fgu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2fsi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2f6a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2gki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2gwq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2hc4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2hpq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2h4e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2ija/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2iuq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2i74/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2jma/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2jyi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2kea/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2384926,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-03T05:52:39.972907Z",
                    "last_modified_time": "2026-06-03T05:52:39.972923Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/08d940d8-d5cd-4562-bdd1-b1d09364b80e.png",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Haavepuisto",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384926/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-03T05:55:29.285786Z",
            "last_modified_time": "2026-06-03T09:41:21.878355Z",
            "date_published": null,
            "start_time": "2026-06-03T05:00:00Z",
            "end_time": "2026-06-30T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tänä kesänä Koivu-tila muuttuu kirjailija Eppu Nuotion luomaksi Haavepuistoksi. Tule kasvattamaan haaveiden puutarhaa kirjoittamalla tai piirtämällä!",
                "sv": "Den här sommaren har författaren Eppu Nuotio gjort om mötesrummet Koivu till sommarrummet Haavepuisto. Rita, skriv och odla tillsammans i drömmarnas park.",
                "en": "Come visit a Haavepuisto (Dream garden) summer room at Tapiola library. Make the garden grow with your own written or drawn dreams."
            },
            "description": {
                "fi": "<p>Tänä kesänä Koivu-tila muuttuu kirjailija Eppu Nuotion luomaksi Haavepuistoksi. Tule kasvattamaan haaveiden puutarhaa kirjoittamalla tai piirtämällä!</p>",
                "sv": "<p>Den här sommaren har författaren Eppu Nuotio gjort om mötesrummet Koivu till sommarrummet Haavepuisto (fritt översatt Drömmarnas park). Rita, skriv och odla tillsammans i drömmarnas park.</p>",
                "en": "<p>Come visit a Haavepuisto (Dream garden) summer room at Tapiola library. Make the garden grow with your own written or drawn dreams.</p>"
            },
            "location_extra_info": {
                "fi": "Koivu",
                "sv": "Koivu",
                "en": "Koivu"
            },
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Haavepuisto - kesähuone",
                "sv": "Haavepuisto - sommarrummet",
                "en": "Haavepuisto - summer room"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2kpu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}