Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

Default ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 23534,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=20",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=18"
    },
    "data": [
        {
            "id": "kulke:65777",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 771041,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-15T12:14:24.039181Z",
                    "last_modified_time": "2025-05-15T12:14:24.039200Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767414.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/771041/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-05-15T12:14:23.913737Z",
            "last_modified_time": "2025-08-08T11:12:43.373845Z",
            "date_published": null,
            "start_time": "2025-08-14T13:00:00Z",
            "end_time": "2025-08-14T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5310377AC07F772E84DAFC81A69405ED/Taiteiden_yo_Sitratorilla",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5310377AC07F772E84DAFC81A69405ED/Taiteiden_yo_Sitratorilla",
                "en": "http://www.kanneltalo.fi/en/events/event/5310377AC07F772E84DAFC81A69405ED/Taiteiden_yo_Sitratorilla"
            },
            "name": {
                "fi": "Taiteiden yö Sitratorilla",
                "sv": "Taiteiden yö Sitratorilla",
                "en": "Taiteiden yö Sitratorilla"
            },
            "description": {
                "fi": "<p>Sitratorilla juhlitaan taidetta musiikin ja tarinoiden maailmassa.</p><p><b>INDABAn</b> lämminhenkinen lastenkonsertti juhlii afrosuomalaisten identiteettien rikasta kudelmaa musiikin, tanssin ja tarinankerronnan kautta.</p><p>Kannelmäkeläisen <b>Stinan</b> Kabylian kansanmusiikista ammentavissa kappaleissa liikutaan kaihoisankauniista tunnelmista tanssittaviin rytmeihin.</p><p>Sitratorin kesälavalla saamme musiikin lisäksi maistiaisen myös Soledad – Yksinolla -flamencoesityksestä. Sitratorilla taiteillaan metsäisiä asetelmia Hupsansaan työpajassa, kirjaston satutuokioissa kuullaan tarinoita suomeksi ja arabiaksi ja Auditoriossa lauletaan kesäisisiä yhteislauluja.  <br> <br>Tapahtumiin on vapaa pääsy!<br> <br>Sateen sattuessa esitykset ja työpajat siirtyvät Kanneltalon sisätiloihin.</p><p><b>ESITYKSET</b></p><p><b>Klo 16.15 Huudeilla: FiBO </b><br>Suomalaisen barokkiorkesterin (FiBO) muusikot Anna Oramo ja Aino Peltomaa soittavat keskiaikaista cembaloa ja harppua.  <br>paikka: Galleria</p><p><b>Klo 16.45 Soledad – Yksinolla </b><br>Maistiainen Katja Lundénin ja Janne Marja-ahon flamencoa, jazzia ja afrikkalaista musiikkiperinnettä yhdistävästä kantaesityksestä. Ensi-ilta Kanneltalossa 4.9.</p><p><b>klo 17–17.45 Lastenkonsertti INDABA</b><br>INDABA on lämminhenkinen lastenkonsertti, joka juhlii afrosuomalaisten identiteettien rikasta kudelmaa musiikin, tanssin ja tarinankerronnan kautta. Esityksessä puhutaan ja lauletaan suomeksi, englanniksi, kiswahiliksi ja kisumbwaksi.<br>Esiintyjät: Ayla Brinkmann (FIN/RSA), Kasheshi Makena (TZA/FIN), Pietari Kauppinen (FIN/ETH)<br>Kesto: 45 minuuttia</p><p><b>klo 18.00–18.30 Joku random duo</b></p><p><b>klo 18–19 Kesän muistoja -yhteislaulut</b><br>Tervetuloa laulamaan kesäisiä sävelmiä. Laulattajana työväenopiston musiikin suunnittelijaopettaja, MuM, Satu Luomajoki. <br>Paikka: Auditorio</p><p><b>klo 19–20 Stina </b><br>Stina esittää trioineen Kabylian kansanmusiikkia, tuoden esiin alueen rikkaan kulttuuriperinnön. Kabylit ovat Pohjois-Afrikassa asuva amazigh-kansa, jolla on pitkä historia ja vahva kulttuurinen identiteetti. Kappaleissa liikutaan kaihoisankauniista tunnelmista tanssittaviin rytmeihin<br>Esiintyjät: Stina (laulu, piano), Janne Ahonen (kitara), Helena Holm (huilu, lyömäsoittimet)</p><p><b>MUU OHJELMA<br>klo 16–18 Kirjojen Kannelmäki -kirjakävely</b><br>Miltä Kantsu näyttää kirjallisuudessa – tule kirjalliselle kävelylle Kantsuun. Voit lainata kirjastosta kävelyn kirjat. Lähtö klo 16 Kanneltalon portailta.</p><p><b>klo 16–19 “Maitolabra”-työpaja</b><br>”Maitolabrassa\" tehdään non-stop periaatteella helppoa, iloisen väristä marmorointia paperille. Sisään taideluokkaan tasatunnein. Lapset ja lapsiperheet, Tervetuloa! <br>Paikka: Työväenopiston taideluokka, Kanneltalon 2. krs.</p><p><b>klo 16.30 ja klo 18 Satutuokiot kirjastossa</b><br>Kesto 30 min. Kielinä suomi ja arabia.<br>Paikka: Tempo, Kannelmäen kirjasto.</p><p><b>klo 17–19 Huudeilla: Red Nose Company & FiBO</b><br>Huudeilla ovat myös Red Nose Companyn klovnit ja Suomalaisen barokkiorkesterin aluemuusikot, jotka kohtaavat, ilahduttavat ja yllättävät juhlakansan keskellä. <br>Paikka: Sitratori</p><p><b>klo 17–19 Metsäinen asetelma</b> <br>Hupsansaan työpajassa loihditaan metsäisiä ja vehreitä kukkakoristeita. Valmiiseen koristepohjaan voit helposti asetella omanlaisen metsäisen maiseman. Upota kuivakukkia, puuhelmiä, havuja, metsän oksia ja lehtiä.<br>Paikka: Sitratori</p><p><b> klo 17-18.30 Sitratorin tulevaisuuspiste kesäkeitaalla </b> <br>Kesäkeitaan tulevaisuuspisteellä hypätään tulevaisuuteen ja ideoidaan piirtäen, kirjoittaen tai keskustellen Sitratorin tulevaisuutta. Tervetuloa tapaamaan Sitratorin kesäkeitaan tekijöitä, kertomaan palautetta kesäkeitaan toteutuksesta ja ideoimaan tulevaisuutta Taiteiden yönä! <br>Paikka: Sitratori<br> <br><b> Klo 17-19 D-asema Kannelmäki – Rauhan paikka </b> <br>Taiteiden yön työpaja on tila, jossa keskustelua rakkaudesta, toivosta ja lempeydestä käydään materiaalin ja ihmisten välillä. Tilassa voit muotoilla savesta ruukun. Ruukkuihin lisätään myöhemmin niittykukkasekoitusta ja ne istutetaan alueelle niityn pohjaksi, joka saa jatkaa omaa elämäänsä monilajise</p>",
                "sv": "<p>På Cittertorget firas konsten i musikens och berättelsernas värld.</p><p><b>INBADAs</b> barnkonsert firar den afrofinländska identitetens rika väv genom musik, dans och berättelser.</p><p><b>Stina</b>från Gamlas framför låtar som öser ur den kabyliska folkmusiken, och som rör sig mellan vemodigt vackra stämningar och dansanta rytmer.</p><p>Under bibliotekets sagostunder får man lyssna på sagor på finska och arabiska. På Cittertorget får var och en skapa skogiga arrangemang i Hupsansaas workshop. Evenemangen har fritt inträde!</p><p><b>MUSIKPROGRAM</b></p><p><b>17–17.45 Barnkonsert INDABA</b><br>INDABA är en varmhjärtad barnkonsert, som firar den afrofinländska identitetens rika väv genom musik, dans och berättelser. Artisterna talar och sjunger på finska, engelska, swahili och kisumbwa.<br>Längd: 45 minuter</p><p><b>kl. 18.00–18.30 Joku random duo</b></p><p><b>kl18–19 Allsång på temat sommarminnen</b><br>Kom och sjung somriga sånger. Sångledare är arbetarinstitutets planerarlärare inom musik, MuM, Satu Luomajoki.<br>Plats: Auditoriet</p><p><b>kl. 19–20 Stina</b><br>Stina med trio framför folkmusik från Kabylien och lyfter fram områdets rika kulturarv. Kabylierna hör till amazigh-folket i norra Afrika, som har en lång historia och en stark kulturell identitet. Låtarna rör sig mellan vemodigt vackra stämningar och dansanta rytmer.</p><p><b>ANNAT PROGRAM<br>kl. 16–18 Bokpromenaden Böckernas Gamlas</b><br>Hur ser Gamlas ut i litteraturen? Kom med på en litterär promenad i Gamlas. Du kan låna böcker för promenaden på biblioteket. Start kl. 16 från Gamlasgårdens trappa.</p><p><b>kl. 16–19 ”Mjölklabb”-workshop</b><br>I ”mjölklabbet” får man göra enkel marmorering i glada färger på papper enligt nonstop-principen. Du kan gå in i konstklassrummet vid jämna timmar. Barn och barnfamiljer, välkomna!<br>Arbetarinstitutets konstklassrum, Gamlasgårdens 2:a våning.<br>Kl. 16.30 och 18 Sagostunder på biblioteket<br>Längd 30 min. Språk finska och arabiska.<br>Plats: Tempo, Gamlas bibliotek.</p><p><b>kl. 17–19 Huudeilla: Red Nose Company & FiBO</b><br>Också Red Nose Companys clowner och Finländska barockorkesterns regionmusiker kommer inom ramarna för projektet Huudeilla för att möta, glädja och överraska besökarna.<br>Plats: Cittertorget</p><p><b>kl. 17–19 Skogiga arrangemang</b> <br>Vi skapar skogiga och grönskande blomsterdekorationer i Hupsansaas workshop. På den färdiga mallen kan du lätt placera ut ditt skogslandskap. Använd torkade blommor, träpärlor, ris, grenar och löv.<br>Plats: Cittertorget</p>",
                "en": "<p>Celebrate art on Sitratori square by entering the world of music and stories.</p><p>The warm children’s concert by <b>INDABA</b>celebrates the rich weave of Afro-Finnish identities through music, dance and storytelling.</p><p>Songs by Kannelmäki-<b>Stina</b> are inspired by Kabylian folk music and travel between nostalgic yearning and groovy rhythms.</p><p>Story time at the library includes stories in Finnish and Arabic. At Sitratori square, everyone will be able to create forest arrangements at the Hupsansaa workshop. Entry to the events is free of charge!</p><p><b>MUSIC PROGRAMME</b></p><p><b>17:00–17:45 Children’s concert INDABA</b><br>INDABA is a warm children’s concert celebrating the rich weave of Afro-Finnish identities through music, dance and storytelling. The performance features speech and singing in Finnish, English, Kiswahili and Sisumbwa.<br>Duration: 45 minutes</p><p><b>18:00–18:30 Joku random duo</b></p><p><b>18:00–19:00 Summer memories singalong</b><br>Come along and sing summery compositions. Hosted by Planner-Teacher, Master of Music Satu Luomajoki from the adult education centre.<br>Location: Auditorium</p><p><b>19:00–20:00 Stina</b><br>Stina and her trio play Kabylian folk music highlighting the rich cultural traditions of the region. The Kabyle people are Berbers living in North Africa with a long history and strong cultural identity. The songs evoke moods from the beautiful and nostalgic to the rhythmic and joyous.</p><p><b>OTHER PROGRAMME<br>16:00–18:00 Kirjojen Kannelmäki – ‘Kannelmäki in literature’ walking tour</b><br>What does Kannelmäki look like in literature? Come and find out on a book-themed walking tour. You can borrow the books the tour is based on from the library. We depart from the Kanneltalo stairs at 16:00.</p><p><b>16:00–19:00 Milk lab workshop</b><br>In the non-stop ‘milk lab’ workshop, you can create easy, colourful marbling on paper. Participants can enter the art class every hour, on the hour. Intended for children and families with children, come along!<br>Arts class at the adult education centre, Kanneltalo, second floor.<br>16:30 and 18:00 Story time at the library<br>Duration: 30 min. Languages: Finnish and Arabic.<br>Location: Tempo, Kannelmäki Library.</p><p><b>17:00–19:00 Huudeilla – In the ‘hood: Red Nose Company & FiBO</b><br>The clowns of the Red Nose Company will also be in the ‘hood, along with the regional musicians of the Finnish Baroque Orchestra, meeting with, delighting and surprising the visitors.<br>Location: Sitratori square</p><p><b>17:00–19:00 A forest arrangement</b> <br>Come to the Hupsansaa workshop to conjure up flowery decorations inspired by the green forest. You can easily arrange a unique forest landscape in a ready-made decoration base. Embed dried flowers, wooden beads, pine and spruce twigs, branches and leaves into the base.<br>Location: Sitratori square</p>"
            },
            "short_description": {
                "fi": "Sitratorilla juhlitaan taidetta musiikin ja tarinoiden maailmassa.",
                "sv": "På Cittertorget firas konsten i musikens och berättelsernas värld.",
                "en": "Celebrate art on Sitratori square by entering the world of music and stories."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65777/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66559",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1225311,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T08:14:23.074500Z",
                    "last_modified_time": "2025-07-10T08:14:23.074516Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775015.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1225311/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-10T08:14:22.969975Z",
            "last_modified_time": "2025-08-08T09:12:45.623509Z",
            "date_published": null,
            "start_time": "2025-11-18T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/0EDFC2B1F6A322BE52737426AB0DAC73/Gula_Giraffens_Djurberattelser_I",
                "sv": "http://www.stoa.fi/sv/evenemang/event/0EDFC2B1F6A322BE52737426AB0DAC73/Gula_Giraffens_Djurberattelser_I",
                "en": "http://www.stoa.fi/en/events/event/0EDFC2B1F6A322BE52737426AB0DAC73/Gula_Giraffens_Djurberattelser_I"
            },
            "name": {
                "fi": "Gula Giraffens Djurberättelser I – Skidikino på svenska",
                "sv": "Gula Giraffens Djurberättelser I – Skidikino på svenska",
                "en": "Gula Giraffens Djurberättelser I – Skidikino på svenska"
            },
            "description": {
                "fi": "<p>Ruotsinkielisessä Skidikinossa nähdään Antonia Ringbomin suosittuja Keltainen kirahvi -animaatioita.</p><p>Elokuvat sopivat myös suomenkielisille tai kielikylpyryhmille.</p><p>Rakastettavat ja sisintä lämmittävät runolliset tarinat kiehtovat taianomaisuudellaan. Yhdessä animaation hehkuvien värien ja upeiden yksityiskohtien sekä huumorin kanssa näistä tarinoista välittyy lämpöä, joka valloittaa ja koskettaa ikään katsomatta. Sarjan kertoja, Keltainen Kirahvi, seikkailee tarinoissa eri puolilla maailmaa ja tapaa retkillään eläinystäviään. Jokaiseen tarinaan sisältyy eläimestä kertova tunnettu runo.</p><p>Palkittu kuvittaja ja animaattori Antonia Ringbom (s.1946) Korppoosta on työskennellyt Yleisradiossa ja toiminut itsenäisenä ohjaaja/tuottajana. sekä perustanut Senegaliin tytöille animaatiokoulun.</p><p>Elokuva koostuu 7 min lyhytelokuvista, jotka näytetään kahdessa erässä.</p><p>• kl. 9.15 Vattenråttan Torsten Borst, Sparven, Mötet, Katten och Månen, Broder Sol och syster Måne, Björnen, 42 min. <br>• kl. 10.15 Mammuten, Hunden i Livorno, Vårfjord, Pantern, Månen, Den märkvärdiga tapiren 42 min.</p><p>Ålder/ ikäsuositus: 3-7 år/v <br>Plats/ Paikka: Stoa teater /teatterisali <br>Fritt inträde, anmälan via kultus.hel.fi /Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.hel.fi 13.8. klo 10 alkaen. <br>Mer information/ Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>I den svenskspråkiga Skidikino förevisas Antonia Ringboms populära animationer Gula Giraffens Djurberättelser I</p><p>Skidikino är en kvalitativ kortfilmsvisning för barn över 3 år. Lämpar sig för daghemsgrupper eller för barn under skolåldern som vårdas hemma tillsammans med en förälder.</p><p>Skidikinona lämpar sig även för finskspråkiga och barn som går i språkbad.</p><p>Illustratören och animatorn Antonia Ringbom (född 1946) från Korpo arbetade som freelancer tillsammans med Camilla Mickwitz på Rundradion mellan åren 1969-89. Sedan dess har hon fungerat som självständig regissör-producent. Hon bland annat fått UNICEFs pris (tillsammans med Jaana Wahlforss, för animationsserierna ”Solen är en gul giraff” och ”Den gula giraffens djurberättelser”. Tillsammans med Finlandssvenskt Filmcentrum har hon grundat kulturcentret RIAC i Senegal, där unga afrikanska flickor får lära sig att göra animationer.</p><p>Filmen består av 7 min. filmsnuttar.<br>• kl. 9.15 Vattenråttan Torsten Borst, Sparven, Mötet, Katten och Månen, Broder Sol och syster Måne, Björnen, 42 min. <br>• kl. 10.15 Mammuten, Hunden i Livorno, Vårfjord, Pantern, Månen, Den märkvärdiga tapiren 42 min.</p><p>Ålder/ ikäsuositus: 3-7 år/v <br>Plats/ Paikka: Stoa teater /teatterisali <br>Fritt inträde, anmälan via kultus.hel.fi /Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.hel.fi 13.8. klo 10 alkaen. <br>Mer information/ Lisätiedot: hanna.westerholm@hel.fi</p>",
                "en": "<p>Skidikino in Swedish features Antonia Ringbom's popular Yellow Giraffe animations.</p><p>Skidikino offers high-quality short film screenings for children over the age of three. Suitable for daycare groups and children under school age in home care with an adult accompanying them.</p><p>Skidikinos are also suitable for Finnish-speaking or language immersion groups. Children in home care and their adults are also welcome to join in without advance registration.<br> <br>Recommended age: 3–7-year-olds <br>Place: theatre hall</p><p>Language: Swedish <br>Free admission, groups are required to register in advance: kultus.hel.fi from 13 August at 10:00.</p>"
            },
            "short_description": {
                "fi": "Ruotsinkielisessä Skidikinossa nähdään Antonia Ringbomin suosittuja Keltainen kirahvi -animaatioita.",
                "sv": "I den svenskspråkiga Skidikino förevisas Antonia Ringboms populära animationer Gula Giraffens Djurberättelser I",
                "en": "Skidikino in Swedish features Antonia Ringbom's popular Yellow Giraffe animations."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66559/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66779",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/"
                    },
                    "price": {
                        "fi": "10€ / 8€",
                        "sv": "10€ / 8€",
                        "en": "10€ / 8€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1271735,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T12:14:26.283312Z",
                    "last_modified_time": "2025-07-16T12:14:26.283328Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775285.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1271735/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T12:14:26.158835Z",
            "last_modified_time": "2025-08-08T09:12:44.646426Z",
            "date_published": null,
            "start_time": "2025-11-04T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Ruotsalaisuuden_viikon_tiistaimatineassa_Pentti_Hild_n_Mikko_Helenius_Samboromb_nista_Pohjolan_rannikoille_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Svenska_veckans_Tisdagsmatin_med_Pentti_Hild_n_Mikko_Helenius_Fran_Samborombon_till_den_nordiska_kusten",
                "en": "http://www.vuotalo.fi/en/events/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Swedish_Week_Tuesday_matin_e_with_Pentti_Hild_n_Mikko_Helenius_From_Samboromb_n_to_the_Nordic_coast"
            },
            "name": {
                "fi": "Ruotsalaisuuden viikon tiistaimatineassa Pentti Hildén & Mikko Helenius: Samborombónista Pohjolan rannikoille – Musiikkimatka Evert Tauben jalanjäljissä",
                "sv": "Svenska veckans Tisdagsmatiné med Pentti Hildén & Mikko Helenius: Från Samborombon till den nordiska kusten – En musikalisk resa i Evert Taubes fotspår",
                "en": "Swedish Week Tuesday matinée with Pentti Hildén & Mikko Helenius: From Samborombón to the Nordic coast – A musical journey in the footsteps of Evert Taube"
            },
            "description": {
                "fi": "<p>Ohjelmassa on runsas ja monipuolinen kattaus Evert Tauben laululyriikkaa ja monia hänen rakastetuimmista teoksistaan sekä harvemmin kuultuja ”unohdettuja” helmiä.</p><p>Saaristolaisvalssien ja luonnonkuvausten ohella luvassa on myös lauluja, joiden inspiraation lähteenä on Evertin Argentiinassa viettämä aika (1910–1915).</p><p>Argentiinalainen kansanmusiikki ja tango ovat olleet erittäin tärkeitä molemmille artisteille: Pentti on sekä opiskellut että tehnyt yhteistyötä kuuluisien argentiinalaisten kitaristien, kuten Eduardo ja Juan Falún, Jorge Cardoson ja Jorge Morelin kanssa. Bandoneónvirtuoosi Mikko on ollut kiertueella tangolaulaja Martin Alvaradon säestäjänä. Tämän lisäksi Mikko on säestänyt muun muassa Sven Bertil Taubea.</p><p>Pentti Hildén: laulu ja kitara<br>Mikko Helenius: bandoneón, haitari, piano ja laulu<br>Kesto n. 60 min.</p>",
                "sv": "<p>Programmet bjuder på en rik och mångsidig dukning av Evert Taubes sånglyrik och inrymmer många av hans mest älskade verk jämsides med sällan hörda, ”bortglömda ” pärlor.</p><p>Skärgårdsvalserna och naturskildringarna har sin givna plats men programmet tar lika mycket  sånger inspirerade av Everts vistelse (1910-1915) i Argentina.</p><p>Argentinsk folkmusik och tango har varit väldigt viktiga för båda artisterna: Pentti har både studerat för och samarbetat med Argentinska gitarrens stora namn såsom Eduardo oah Juan Falú, Jorge Cardoso och Jorge Morel.   Bandoneonvirtuosen Mikko har turnerat flirtigt som ackompanjatör för tangosångaren Martin Alvarado. Utöver Tango kan det nämnas att Mikko  ackompanjerat  bl.a. Sven Bertil Taube.</p><p>Pentti Hildén: sång och gitarr<br>Mikko Helenius bandoneon, dragspel, piano och sång. <br>Längd ca 60 min.</p>",
                "en": "<p>The programme offers a rich and varied selection of Evert Taube’s songs and includes many of his most beloved works alongside more rarely heard, \"forgotten\" gems.</p><p>The waltzes about the archipelago and descriptions of nature have their rightful place, but the programme also includes songs inspired by Evert's stay in Argentina (1910–1915).</p><p>Argentine folk music and tango have been very important to both artists: Pentti has both studied under and collaborated with great names within Argentine guitar, such as Eduardo and Juan Falú, Jorge Cardoso and Jorge Morel. Bandoneon virtuoso Mikko has toured extensively accompanying tango singer Martin Alvarado. In addition to Tango, Mikko has accompanied Sven Bertil Taube, among others.</p><p>Pentti Hildén: vocals and guitar<br>Mikko Helenius: bandoneon, accordion, piano and vocals<br>Duration apx 60 min.</p>"
            },
            "short_description": {
                "fi": "Ohjelmassa on runsas ja monipuolinen kattaus Evert Tauben laululyriikkaa ja monia hänen rakastetuimmista teoksistaan sekä harvemmin kuultuja ”unohdettuja” helmiä.",
                "sv": "Programmet bjuder på en rik och mångsidig dukning av Evert Taubes sånglyrik och inrymmer många av hans mest älskade verk jämsides med sällan hörda, ”bortglömda ” pärlor.",
                "en": "The programme offers a rich and varied selection of Evert Taube’s songs and includes many of his most beloved works alongside more rarely heard, \"forgotten\" gems."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66779/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66809",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/matineakonserttimatinekonsert-a-tribute-to-billie-3933522/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/matineakonserttimatinekonsert-a-tribute-to-billie-3933522/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/matineakonserttimatinekonsert-a-tribute-to-billie-3933522/"
                    },
                    "price": {
                        "fi": "10€ / 8€",
                        "sv": "10€ / 8€",
                        "en": "10€ / 8€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1410897,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-04T11:14:44.273937Z",
                    "last_modified_time": "2025-08-04T11:14:44.273954Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775281.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1410897/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2025-08-04T11:14:44.144025Z",
            "last_modified_time": "2025-08-08T09:12:39.930926Z",
            "date_published": null,
            "start_time": "2025-09-16T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E88372C15B438316D942AD01CCE67BCF/Mirella_Pendolin",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/E88372C15B438316D942AD01CCE67BCF/Mirella_Pendolin",
                "en": "http://www.vuotalo.fi/en/events/event/E88372C15B438316D942AD01CCE67BCF/Mirella_Pendolin"
            },
            "name": {
                "fi": "Mirella Pendolin – A Tribute to Billie",
                "sv": "Mirella Pendolin – A Tribute to Billie",
                "en": "Mirella Pendolin – A Tribute to Billie"
            },
            "description": {
                "fi": "<p>A Tribute to Billie on 1930-luvun hengessä toteutettu konsertti, jossa kuullaan jazzlegenda Billie Holidayn rakastetuimpia kappaleita tarinoineen.</p><p>Lavalla kuulemme Mirella Pendolinin tulkitsevan Holidayn kappaleita yhdessä pianisti Kalle Katzin, basisti Ulf Krokforsin ja rumpali Thomas Törnroosin kanssa.</p><p>Illan aikana yleisö saa kuulla henkilökohtaisia tulkintoja muun muassa kappaleista Fine and Mellow, Gloomy Sunday, God Bless the Child ja monista muista.</p><p>Mirella Pendolin on laulaja, joka tunnetaan monista eri kokoonpanoista sekä sooloartistina. Hänellä on erityinen rakkaus vanhaa jazzperinnettä kohtaan – erityisesti naisartisteja – joita hän oppi tuntemaan jo lapsena kotonaan. Hänen äitinsä, jazzlaulaja Raili Pendolin, soitti usein mm. Ella Fitzgeraldin, Sarah Vaughanin ja Dinah Washingtonin musiikkia.</p><p>Tervetuloa kokemaan tunnelmallinen ja inspiroiva konserttielämys, lämpimästi tervetuloa! Kesto n. 90 min.</p>",
                "sv": "<p>A Tribut to Billie är en konsert i 30-tals anda med jazzlegenden Billie Holidays mest älskade låtar varvat med anekdoter ur hennes spännande och dramatiska liv.</p><p>På scenen hör vi Mirella Pendolin tolka Holidays låtar, tillsammans med pianisten Kalle Katz, basisten Ulf Krokfors och Thomas Törnroos på trummor.</p><p>Vi bjuder på en helkvälls konsert var tolkningarna av Billie Holidays låtar, deras personlighet, sårbarhet och Billies livsöde, inte lämnar någon oberörd. Under kvällen får publiken höra personliga tolkningar av låtar som Fine and mellow, Gloomy sunday, God bless the child och många fler.</p><p>Mirella Pendolin är en sångerska välkänd från många olika ensembler samt som soloartist. Mirella har en förkärlek för den gamla jazz traditionen, och speciellt de kvinnliga artisterna, som hon blev bekant med redan som barn hemma där hennes mamma, jazzsångerskan Raili Pendolin, spelade musik av sångerskor som bl.a Ella Fitzgerald, Sarah Vaughan och Dinah Washington.</p><p>Vi vill bjuda på en stämningsfull och inspirerande konsertupplevelse, varmt välkomna! Längd ca 90 min.</p>",
                "en": "<p>‘A Tribute to Billie’ is a 1930s-inspired concert featuring some of jazz legend Billie Holiday’s most beloved songs and their stories.</p><p>On stage, we will hear Mirella Pendolin interpret Holiday’s songs together with pianist Kalle Katz, bassist Ulf Krokfors and drummer Thomas Törnroos.</p><p>During the evening, the audience will hear personal interpretations of songs such as Fine and Mellow, Gloomy Sunday, God Bless the Child and many others.</p><p>Mirella Pendolin is a singer known for her work in various ensembles and as a solo artist. She has a special love for the old jazz tradition – especially the women artists – that she got to know as a child at home. Her mother, jazz singer Raili Pendolin, would often play the music of Ella Fitzgerald, Sarah Vaughan and Dinah Washington, among others.</p><p>Join us for an atmospheric and inspiring concert experience. We are looking forward to seeing you! Duration apx 90 min.</p>"
            },
            "short_description": {
                "fi": "A Tribute to Billie on 1930-luvun hengessä toteutettu konsertti, jossa kuullaan jazzlegenda Billie Holidayn rakastetuimpia kappaleita tarinoineen.",
                "sv": "A Tribut to Billie är en konsert i 30-tals anda med jazzlegenden Billie Holidays mest älskade låtar varvat med anekdoter ur hennes spännande och dramatiska liv.",
                "en": "‘A Tribute to Billie’ is a 1930s-inspired concert featuring some of jazz legend Billie Holiday’s most beloved songs and their stories."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66809/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65950",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 484627,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-07T11:13:34.258520Z",
                    "last_modified_time": "2025-04-07T11:13:34.258537Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769543.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/484627/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-04-07T11:13:34.244103Z",
            "last_modified_time": "2025-08-08T08:14:04.589769Z",
            "date_published": null,
            "start_time": "2025-09-13T08:00:00Z",
            "end_time": "2025-09-13T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/66291869FDAB81ECCC13105A2A410B17/Annantalon_taidelauantai_Avaruuskantele",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/66291869FDAB81ECCC13105A2A410B17/Annegardens_konstlordag_Rymdkantele",
                "en": "http://www.annantalo.fi/en/events/event/66291869FDAB81ECCC13105A2A410B17/Annantalo_Art_Saturday_The_Space_Kantele"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Avaruuskantele",
                "sv": "Annegårdens konstlördag: Rymdkantele – En tvåspråkig workshop: finska och svenska",
                "en": "Annantalo Art Saturday: The Space Kantele"
            },
            "description": {
                "fi": "<p>Vietetään yhdessä avaruusteemaista Kanteleen päivää! Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b> Osallistu koko perheen kantelejameihin</b> <br>Tule luomaan yhteistä konserttielämystä ja soittamaan 5-kielistä kanteletta. Voit soittaa, kuunnella tai vain nauttia kanteleiden luomasta rauhoittavasta äänimaisemasta. Ohjaajana toimii muusikko Marjo Smolander. Paikan päältä saat soittimen lainaan soittohetken ajaksi, tai voit halutessasi tuoda mukana oman 5-kielisen kanteleesi. Ohjaajat voivat myös virittää soitintasi ja tarvittaessa vaihtaa kieliä pientä materiaalimaksua vastaan.</p><p><b>Valmista oma avaruuskantele</b> <br>Työpajassa valmistamme arkisista materiaaleista omat avaruuskanteleet ja koristelemme ne. Miltäköhän avaruusorkesteri kuulostaa? Ota siitä selvää ja valmista oma kosminen avaruussoitin!  Työpajan ohjaavat näyttelijä Mari-Helen Hyvärinen ja muusikko John Mattas. Ohjaajat puhuvat suomea, ruotsia ja englantia. <br> <br><b> Tutustu Alkuräjähdys -näyttelyyn</b> <br>Annantalon Pohjoisgalleriassa on avoinna Helsingin kuvataidelukion näyttely. Opiskelijoiden teokset sukeltavat avaruuden ihmeelliseen maailmaan. Paikalla on näyttelyn nuoria taiteilijoita kertomassa teoksistaan ja näyttelyn synnystä.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Kanteleen päivä on lauantaina 13.9.2025 järjestettävä valtakunnallinen juhlapäivä, jota vietetään ympäri Suomea. <br> <br>Nähdään Annantalolla lauantaisin!</p>",
                "sv": "<p>Låt oss fira Kanteledagen tillsammans med ett rymdtema! På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b> Delta i familjens kantelejamsession </b> <br>Kom och skapa en gemensam konsertupplevelse och spela femsträngad kantele. Du kan spela, lyssna eller bara njuta av det lugnande ljudlandskap som kantele skapar. Musikern Marjo Smolander leder sessionen. Instrument finns att låna på plats under spelstunden, eller ta med din egen femsträngade kantele om du vill. Instruktörerna kan också stämma ditt instrument och vid behov byta strängar mot en liten materialavgift</p><p><b> Skapa en egen rymdkantele </b> <br>Vi skapar egna rymdinstrument av enkla material och dekorerar dem. Hur låter en rymdorkester? Det kan du ta reda på genom att skapa din egen rymdkantele! Workshopen leds av skådespelare Mari-Helen Hyvärinen och musiker John Mattas. Instruktörerna talar finska, svenska och engelska.</p><p><b> Upptäck Alkuräjähdys-utställningen </b> <br>I Annegårdens Nordgalleri visas en utställning av elever från Helsingfors finskspråkig bildkonstgymnasium. Deras verk tar med dig på en resa in i rymdens fascinerande värld. Några av de unga konstnärerna finns på plats för att berätta om sina verk och utställningens tillkomst.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum.</p><p>Kanteledagen är en nationell festdag som firas över hela Finland lördagen den 13 september 2025.</p><p>Vi ses på Annantalo på lördagar.</p>",
                "en": "<p>Let’s celebrate the Kantele Day with a space-themed twist! On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Join the Kantele Jam Session</b> <br> Create a shared concert experience by playing the five-string kantele. The whole family can play, listen, or simply enjoy the soothing soundscape created by the instruments. The session is led by musician Marjo Smolander. Instruments are available to borrow on-site for the jam, or you’re welcome to bring your own five-string kantele. If needed, the instructors can tune your instrument and even replace strings with a small fee to cover materials.</p><p><b>Make Your Own Space Kantele</b> <br> In this hands-on workshop, we’ll build and decorate our own space kanteles using everyday materials. What might a space orchestra sound like? Come find out by creating your own cosmic space instrument! The workshop is led by actor Mari-Helen Hyvärinen and musician John Mattas. The instructors speak Finnish, Swedish, and English.</p><p><b>Explore the Big Bang Exhibition</b> <br>Visit the Northern Gallery at Annantalo to see an exhibition by students of Helsinki Upper Secondary School of Visual Arts (Helsingin Kuvataidelukio). Their works dive into the wondrous world of space. Some of the young artists will be present to talk about their creations and the story behind the exhibition.</p><p>No skills required to participate. Everyone is welcome. If needed, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>Kantele Day is a national celebration taking place across Finland on Saturday, September 13, 2025. The kantele is a traditional Finnish string instrument.</p>"
            },
            "short_description": {
                "fi": "Vietetään yhdessä avaruusteemaista Kanteleen päivää! Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Låt oss fira Kanteledagen tillsammans med ett rymdtema! På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.",
                "en": "Let’s celebrate the Kantele Day with a space-themed twist! On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65950/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000354",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849165/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000354/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000354/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000354/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 408450,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-26T08:16:01.191774Z",
                    "last_modified_time": "2025-03-26T08:16:01.191790Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/9a/14/star222uusi-tickets_373231_3144943_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/408450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:18.707290Z",
            "last_modified_time": "2025-08-07T23:15:06.252472Z",
            "date_published": null,
            "start_time": "2025-08-07T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Little_Star95 - Ooksä Online? Ensi-Ilta"
            },
            "description": {
                "fi": "<p>Sara Koiranen, Iida Hägglund &amp; työryhmä<br><strong>LITTLE_STAR95 – OOKSÄ ONLINE?</strong></p><p>little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneeseen ja illanviettoon 2000-luvun alun internetissä. Offline- ja online-maailmojen välillä seikkaileva esitys kysyy, millaisia minäkuvia ja ihmissuhteita internet on synnyttänyt.<br>Teinidraama löytää tiensä koulusta nettiin, meseen ja galtsuun. Kuka omistaa kenelle ja mitä, kuka on online ja kuka ihan vaan out? Tyttöjen väliset kipeät hierarkiat piirtyvät esiin herkkyydellä ja tarkkuudella tietokoneen näytölle. Elokuussa 2025 uuden sukupolven teatterintekijöistä koostuva työryhmä vie katsojat aikaan, jolloin internetissä ei oltu, vaan sinne piti mennä. Irc-galleria, MSN Messenger sekä demi.fi toimivat tämän esityksen ympäristöinä ja materiaaleina. Mitä 2000-luvun sosiaalinen media teki nollarinuorille – erityisesti tytöille ja naisille? Se selviää kirjautumalla sisään.</p><p>Esiintyjä: Hilma Kotkaniemi</p><p>Esityskonsepti: Sara Koiranen, Iida Hägglund &amp; työryhmä<br>Dramaturgi: Sara Koiranen<br>Lukeva dramaturgi: Mimmi Ahonen<br>Skenografi, puvustus ja naamiointi: Vera Kotkaniemi<br>Valo- ja videosuunnittelu: Elli Maria Kujansuu<br>Äänisuunnittelu ja sävellys: Iida Hägglund</p>"
            },
            "short_description": {
                "fi": "Sara Koiranen, Iida Hägglund & työryhmä LITTLE_STAR95 – OOKSÄ ONLINE? little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneese"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000354/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66832",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1434093,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-07T15:14:20.431587Z",
                    "last_modified_time": "2025-08-07T15:14:20.431605Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774941.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1434093/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-07T15:14:20.309155Z",
            "last_modified_time": "2025-08-07T15:14:20.588736Z",
            "date_published": null,
            "start_time": "2025-11-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/64301C6D4F4D738F825D4A3B893D81C1/Monikatisesti_yhdessa_pianistit_kuin_orkesteri_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/64301C6D4F4D738F825D4A3B893D81C1/Flerhandigt_tillsammans_pianister_likt_en_orkester_Monikatisesti_yhdessa_pianistit_kuin_orkesteri_",
                "en": "http://www.vuotalo.fi/en/events/event/64301C6D4F4D738F825D4A3B893D81C1/Together_with_many_hands_pianists_like_an_orchestra_"
            },
            "name": {
                "fi": "Monikätisesti yhdessä: pianistit kuin orkesteri – Lastenkulttuuria jokaiselle",
                "sv": "Flerhändigt tillsammans: pianister likt en orkester (Monikätisesti yhdessä: pianistit kuin orkesteri) – Lastenkulttuuria jokaiselle",
                "en": "Together, with many hands – pianists like an orchestra – Lastenkulttuuria jokaiselle"
            },
            "description": {
                "fi": "<p>Itä-Helsingin musiikkiopiston pianistit soittavat tuttuja ja tuntemattomia lauluja monet kädet ristiin, rastiin ja rinnakkain.</p><p>Itä-Helsingin musiikkiopiston pianistit esiintyvät Lasten oikeuksien päivänä Vuotalon salissa kolmessa konsertissa. <br>Klo 10:00 kutsutaan päiväkotiyleisöä <br>Klo 11:30 kutsutaan koululaisia <br>Klo 18:00 kaikille avoin konsertti<br>Yhden konsertin kesto: noin 40 minuuttia</p><p>Kohderyhmä: yli 4-vuotiaat<br>Kieli: suomi ja musiikinkieli<br>Paikka: Vuotalo</p>",
                "sv": "<p>Pianisterna vid Östra Helsingfors musikinstitut spelar bekanta och okända sånger med många händer korsade, kryssade och parallella.</p><p>Pianisterna vid Östra Helsingfors musikinstitut uppträder på Barnkonventionens dag med tre konserter i Nordhusets sal. <br>Klo 10:00 inbjuds daghemspubliken <br>Klo 11:30 inbjuds skoleleverna <br>Kl. 18.00 konserten är öppen för alla<br>Längden på enskild konsert: cirka 40 minuter</p><p>Målgrupp: över 4-åringar<br>Språk: finska och musikspråk<br>Plats: Nordhuset</p>",
                "en": "<p>The pianists of the East Helsinki Music Institute perform classics and less-known pieces with multiple hands flying across the keys.</p><p>The pianists of the East Helsinki Music Institute perform in three separate concerts at Cultural Centre Vuotalo on Children’s Day. <br>10:00 daycare centre audiences invited <br>11:30 school pupil audiences invited <br>18:00 open concert for all ages<br>Duration of one concert: approximately 40 minutes</p><p>Target groups: children over four years<br>Language: Finnish and the language of music<br>Location: Cultural Centre Vuotalo</p>"
            },
            "short_description": {
                "fi": "Itä-Helsingin musiikkiopiston pianistit soittavat tuttuja ja tuntemattomia lauluja monet kädet ristiin, rastiin ja rinnakkain.",
                "sv": "Pianisterna vid Östra Helsingfors musikinstitut spelar bekanta och okända sånger med många händer korsade, kryssade och parallella.",
                "en": "The pianists of the East Helsinki Music Institute perform classics and less-known pieces with multiple hands flying across the keys."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66832/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66831",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1434092,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-07T15:14:20.021773Z",
                    "last_modified_time": "2025-08-07T15:14:20.021789Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774944.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1434092/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-07T15:14:19.905985Z",
            "last_modified_time": "2025-08-07T15:14:20.174079Z",
            "date_published": null,
            "start_time": "2025-11-20T09:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C1216382D83BB5903E74F0831E6B4588/Monikatisesti_yhdessa_pianistit_kuin_orkesteri_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C1216382D83BB5903E74F0831E6B4588/Flerhandigt_tillsammans_pianister_likt_en_orkester_Monikatisesti_yhdessa_pianistit_kuin_orkesteri_",
                "en": "http://www.vuotalo.fi/en/events/event/C1216382D83BB5903E74F0831E6B4588/Together_with_many_hands_pianists_like_an_orchestra_"
            },
            "name": {
                "fi": "Monikätisesti yhdessä: pianistit kuin orkesteri – Lastenkulttuuria jokaiselle",
                "sv": "Flerhändigt tillsammans: pianister likt en orkester (Monikätisesti yhdessä: pianistit kuin orkesteri) – Lastenkulttuuria jokaiselle",
                "en": "Together, with many hands – pianists like an orchestra – Lastenkulttuuria jokaiselle"
            },
            "description": {
                "fi": "<p>Itä-Helsingin musiikkiopiston pianistit soittavat tuttuja ja tuntemattomia lauluja monet kädet ristiin, rastiin ja rinnakkain.</p><p>Itä-Helsingin musiikkiopiston pianistit esiintyvät Lasten oikeuksien päivänä Vuotalon salissa kolmessa konsertissa. <br>Klo 10:00 kutsutaan päiväkotiyleisöä <br>Klo 11:30 kutsutaan koululaisia <br>Klo 18:00 kaikille avoin konsertti<br>Yhden konsertin kesto: noin 40 minuuttia</p><p>Kohderyhmä: yli 4-vuotiaat<br>Kieli: suomi ja musiikinkieli<br>Paikka: Vuotalo</p>",
                "sv": "<p>Pianisterna vid Östra Helsingfors musikinstitut spelar bekanta och okända sånger med många händer korsade, kryssade och parallella.</p><p>Pianisterna vid Östra Helsingfors musikinstitut uppträder på Barnkonventionens dag med tre konserter i Nordhusets sal. <br>Klo 10:00 inbjuds daghemspubliken <br>Klo 11:30 inbjuds skoleleverna <br>Kl. 18.00 konserten är öppen för alla<br>Längden på enskild konsert: cirka 40 minuter</p><p>Målgrupp: över 4-åringar<br>Språk: finska och musikspråk<br>Plats: Nordhuset</p>",
                "en": "<p>The pianists of the East Helsinki Music Institute perform classics and less-known pieces with multiple hands flying across the keys.</p><p>The pianists of the East Helsinki Music Institute perform in three separate concerts at Cultural Centre Vuotalo on Children’s Day. <br>10:00 daycare centre audiences invited <br>11:30 school pupil audiences invited <br>18:00 open concert for all ages<br>Duration of one concert: approximately 40 minutes</p><p>Target groups: children over four years<br>Language: Finnish and the language of music<br>Location: Cultural Centre Vuotalo</p>"
            },
            "short_description": {
                "fi": "Itä-Helsingin musiikkiopiston pianistit soittavat tuttuja ja tuntemattomia lauluja monet kädet ristiin, rastiin ja rinnakkain.",
                "sv": "Pianisterna vid Östra Helsingfors musikinstitut spelar bekanta och okända sånger med många händer korsade, kryssade och parallella.",
                "en": "The pianists of the East Helsinki Music Institute perform classics and less-known pieces with multiple hands flying across the keys."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66831/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66830",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1434091,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-07T15:14:19.615377Z",
                    "last_modified_time": "2025-08-07T15:14:19.615392Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774943.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1434091/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-07T15:14:19.489668Z",
            "last_modified_time": "2025-08-07T15:14:19.773249Z",
            "date_published": null,
            "start_time": "2025-11-20T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/284662684E70607AFA48D02B25A0EF31/Monikatisesti_yhdessa_pianistit_kuin_orkesteri_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/284662684E70607AFA48D02B25A0EF31/Flerhandigt_tillsammans_pianister_likt_en_orkester_Monikatisesti_yhdessa_pianistit_kuin_orkesteri_",
                "en": "http://www.vuotalo.fi/en/events/event/284662684E70607AFA48D02B25A0EF31/Together_with_many_hands_pianists_like_an_orchestra_"
            },
            "name": {
                "fi": "Monikätisesti yhdessä: pianistit kuin orkesteri – Lastenkulttuuria jokaiselle",
                "sv": "Flerhändigt tillsammans: pianister likt en orkester (Monikätisesti yhdessä: pianistit kuin orkesteri) – Lastenkulttuuria jokaiselle",
                "en": "Together, with many hands – pianists like an orchestra – Lastenkulttuuria jokaiselle"
            },
            "description": {
                "fi": "<p>Itä-Helsingin musiikkiopiston pianistit soittavat tuttuja ja tuntemattomia lauluja monet kädet ristiin, rastiin ja rinnakkain.</p><p>Itä-Helsingin musiikkiopiston pianistit esiintyvät Lasten oikeuksien päivänä Vuotalon salissa kolmessa konsertissa. <br>Klo 10:00 kutsutaan päiväkotiyleisöä <br>Klo 11:30 kutsutaan koululaisia <br>Klo 18:00 kaikille avoin konsertti<br>Yhden konsertin kesto: noin 40 minuuttia</p><p>Kohderyhmä: yli 4-vuotiaat<br>Kieli: suomi ja musiikinkieli<br>Paikka: Vuotalo</p>",
                "sv": "<p>Pianisterna vid Östra Helsingfors musikinstitut spelar bekanta och okända sånger med många händer korsade, kryssade och parallella.</p><p>Pianisterna vid Östra Helsingfors musikinstitut uppträder på Barnkonventionens dag med tre konserter i Nordhusets sal. <br>Klo 10:00 inbjuds daghemspubliken <br>Klo 11:30 inbjuds skoleleverna <br>Kl. 18.00 konserten är öppen för alla<br>Längden på enskild konsert: cirka 40 minuter</p><p>Målgrupp: över 4-åringar<br>Språk: finska och musikspråk<br>Plats: Nordhuset</p>",
                "en": "<p>The pianists of the East Helsinki Music Institute perform classics and less-known pieces with multiple hands flying across the keys.</p><p>The pianists of the East Helsinki Music Institute perform in three separate concerts at Cultural Centre Vuotalo on Children’s Day. <br>10:00 daycare centre audiences invited <br>11:30 school pupil audiences invited <br>18:00 open concert for all ages<br>Duration of one concert: approximately 40 minutes</p><p>Target groups: children over four years<br>Language: Finnish and the language of music<br>Location: Cultural Centre Vuotalo</p>"
            },
            "short_description": {
                "fi": "Itä-Helsingin musiikkiopiston pianistit soittavat tuttuja ja tuntemattomia lauluja monet kädet ristiin, rastiin ja rinnakkain.",
                "sv": "Pianisterna vid Östra Helsingfors musikinstitut spelar bekanta och okända sånger med många händer korsade, kryssade och parallella.",
                "en": "The pianists of the East Helsinki Music Institute perform classics and less-known pieces with multiple hands flying across the keys."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66830/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66828",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1434090,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-07T15:14:19.124015Z",
                    "last_modified_time": "2025-08-07T15:14:19.124030Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774939.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1434090/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-07T15:14:18.993646Z",
            "last_modified_time": "2025-08-07T15:14:19.294922Z",
            "date_published": null,
            "start_time": "2025-11-19T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/748EDC7AF73E6EDA1D4EE72043716095/Flow_7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/748EDC7AF73E6EDA1D4EE72043716095/Flow_7_",
                "en": "http://www.vuotalo.fi/en/events/event/748EDC7AF73E6EDA1D4EE72043716095/Flow_7_"
            },
            "name": {
                "fi": "Flow (7) – Keskiviikkokino",
                "sv": "Flow (7) – Keskiviikkokino",
                "en": "Flow (7) – Keskiviikkokino"
            },
            "description": {
                "fi": "<p>Flow on uskomattoman hyvin animoitu ja tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa.</p><p>Rohkea kissa kohtaa suuren hyökyaallon. Kissa pelastautuu veneeseen iloisen koiran, väsyneen kapybaran, ilkikurisen makin ja äkäisen linnun kanssa. Eläimet tekevät seikkailuntäyteisen matkan läpi upean luonnon ja salaperäisten kaupunkien – uuden vieraan maailman, jossa yhteistyö ja ystävyys ovat tärkeintä.</p><p>Dialogittomassa elokuvassa korostuu musiikki, joka on osittain työstetty Suomessa! Fantastinen elokuvakokemus sekä lapsille että aikuisille on hukutettu suurimpiin kansainvälisiin palkintoihin, kruununa parhaan animaation Oscar.</p><p>Ensi-ilta: 28.03.2025<br>Ikäraja: 7<br>Pituus: 85 min.<br>Kieli: Ei puhuttua dialogia<br>Vapaa pääsy</p>",
                "sv": "<p>Flow är en otroligt väl animerad och känslosam äventyrsfilm där djuren verkligen får bete sig som de gör i det vilda.</p><p>En modig katt möter en stor flodvåg. En katt räddas i en båt tillsammans med en glad hund, en trött capybara, en busig lemur och en grinig fågel. Djuren ger sig ut på en äventyrsresa genom storslagen natur och mystiska städer – en ny främmande värld där samarbete och vänskap är av största vikt.</p><p>Den dialogfria filmen accentueras av musik, som delvis är bearbetad i Finland! Den är en fantastisk filmupplevelse för både barn och vuxna och har överösts med stora internationella priser, med en Oscar för bästa animerade film som finaste utmärkelsen.</p><p>Premiär: 28.03.2025<br>Åldersgräns: 7<br>Längd: 85 min.<br>Språk: Ingen talad dialog<br>Obligatorisk förhandsanmälan för grupper på kultus.hel.fi <br>Läromedel om Koulukino: Oppimateriaalit Archive - Koulukino</p>",
                "en": "<p>Flow is an incredibly well-animated and emotional adventure film in which animals really do behave like they do in the wild.</p><p>A brave cat faces a great tidal wave. The cat is rescued on a boat with a happy dog, a tired capybara, a mischievous lemur and a grumpy bird. The animals embark on an adventurous journey through magnificent nature and mysterious cities – a new alien world in which cooperation and friendship are paramount.</p><p>The dialogue-free film is emphasised by music, some of which was produced in Finland! A fantastic cinematic experience for children and adults alike, the film has been showered with major international awards, crowned with an Oscar for Best Animated Feature.</p><p>Premiere: 28 March 2025<br>Age rating: 7<br>Duration: 85 min<br>Language: No spoken dialogue<br>Groups are required to register in advance at kultus.hel.fi<br>Learning materials from Koulukino in Finnish: Learning materials archive – School Cinema Association</p>"
            },
            "short_description": {
                "fi": "Flow on uskomattoman hyvin animoitu ja tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa.",
                "sv": "Flow är en otroligt väl animerad och känslosam äventyrsfilm där djuren verkligen får bete sig som de gör i det vilda.",
                "en": "Flow is an incredibly well-animated and emotional adventure film in which animals really do behave like they do in the wild."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66828/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66829",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1434089,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-07T15:14:18.378658Z",
                    "last_modified_time": "2025-08-07T15:14:18.378673Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772442.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1434089/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-07T15:14:18.187890Z",
            "last_modified_time": "2025-08-07T15:14:18.565188Z",
            "date_published": null,
            "start_time": "2025-11-19T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A411512BB32FF2139B1CF8EED036CA8E/Flow_7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A411512BB32FF2139B1CF8EED036CA8E/Flow_7_",
                "en": "http://www.vuotalo.fi/en/events/event/A411512BB32FF2139B1CF8EED036CA8E/Flow_7_"
            },
            "name": {
                "fi": "Flow (7) – Koulukino",
                "sv": "Flow (7) – Koulukino",
                "en": "Flow (7) – Koulukino"
            },
            "description": {
                "fi": "<p>Flow on uskomattoman hyvin animoitu ja tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa.</p><p>Rohkea kissa kohtaa suuren hyökyaallon. Kissa pelastautuu veneeseen iloisen koiran, väsyneen kapybaran, ilkikurisen makin ja äkäisen linnun kanssa. Eläimet tekevät seikkailuntäyteisen matkan läpi upean luonnon ja salaperäisten kaupunkien – uuden vieraan maailman, jossa yhteistyö ja ystävyys ovat tärkeintä.</p><p>Dialogittomassa elokuvassa korostuu musiikki, joka on osittain työstetty Suomessa! Fantastinen elokuvakokemus sekä lapsille että aikuisille on hukutettu suurimpiin kansainvälisiin palkintoihin, kruununa parhaan animaation Oscar.</p><p>Ensi-ilta: 28.03.2025<br>Ikäraja: 7<br>Pituus: 85 min.<br>Kieli: Ei puhuttua dialogia</p><p>Ryhmille pakollinen ennakkoilmoittautuminen osoitteessa kultus.hel.fi <br>Oppimateriaalit Koulukinosta: Oppimateriaalit Archive - Koulukino</p>",
                "sv": "<p>Flow är en otroligt väl animerad och känslosam äventyrsfilm där djuren verkligen får bete sig som de gör i det vilda.</p><p>En modig katt möter en stor flodvåg. En katt räddas i en båt tillsammans med en glad hund, en trött capybara, en busig lemur och en grinig fågel. Djuren ger sig ut på en äventyrsresa genom storslagen natur och mystiska städer – en ny främmande värld där samarbete och vänskap är av största vikt.</p><p>Den dialogfria filmen accentueras av musik, som delvis är bearbetad i Finland! Den är en fantastisk filmupplevelse för både barn och vuxna och har överösts med stora internationella priser, med en Oscar för bästa animerade film som finaste utmärkelsen.</p><p>Premiär: 28.03.2025<br>Åldersgräns: 7<br>Längd: 85 min.<br>Språk: Ingen talad dialog</p><p>Obligatorisk förhandsanmälan för grupper på kultus.hel.fi <br>Läromedel om Koulukino: Oppimateriaalit Archive - Koulukino</p>",
                "en": "<p>Flow is an incredibly well-animated and emotional adventure film in which animals really do behave like they do in the wild.</p><p>A brave cat faces a great tidal wave. The cat is rescued on a boat with a happy dog, a tired capybara, a mischievous lemur and a grumpy bird. The animals embark on an adventurous journey through magnificent nature and mysterious cities – a new alien world in which cooperation and friendship are paramount.</p><p>The dialogue-free film is emphasised by music, some of which was produced in Finland! A fantastic cinematic experience for children and adults alike, the film has been showered with major international awards, crowned with an Oscar for Best Animated Feature.</p><p>Premiere: 28 March 2025<br>Age rating: 7<br>Duration: 85 min<br>Language: No spoken dialogue</p><p>Groups are required to register in advance at kultus.hel.fi<br>Learning materials from Koulukino in Finnish: Learning materials archive – School Cinema Association</p>"
            },
            "short_description": {
                "fi": "Flow on uskomattoman hyvin animoitu ja tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa.",
                "sv": "Flow är en otroligt väl animerad och känslosam äventyrsfilm där djuren verkligen får bete sig som de gör i det vilda.",
                "en": "Flow is an incredibly well-animated and emotional adventure film in which animals really do behave like they do in the wild."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66829/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66783",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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:45/?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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/minttu-sekae-ville-vuotalo-20353014/",
                        "sv": "https://www.lippu.fi/event/minttu-sekae-ville-vuotalo-20353014/",
                        "en": "https://www.lippu.fi/event/minttu-sekae-ville-vuotalo-20353014/"
                    },
                    "price": {
                        "fi": "24,90€ / 20€",
                        "sv": "24,90€ / 20€",
                        "en": "24,90€ / 20€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1433779,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-07T14:13:17.830374Z",
                    "last_modified_time": "2025-08-07T14:13:17.830391Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774938.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1433779/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2025-07-17T07:14:18.093691Z",
            "last_modified_time": "2025-08-07T14:13:17.856946Z",
            "date_published": null,
            "start_time": "2025-11-15T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BB5121846AD420B96F9C1FB0198C60C2/Minttu_seka_Ville",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/BB5121846AD420B96F9C1FB0198C60C2/Minttu_seka_Ville",
                "en": "http://www.vuotalo.fi/en/events/event/BB5121846AD420B96F9C1FB0198C60C2/Minttu_seka_Ville"
            },
            "name": {
                "fi": "Minttu sekä Ville",
                "sv": "Minttu sekä Ville",
                "en": "Minttu sekä Ville"
            },
            "description": {
                "fi": "<p>Elokuvista ja tv:stä tutut, Jussi- sekä Venla-palkitut näyttelijät Minttu Mustakallio ja Ville Virtanen tuovat improvisaatioduettonsa yleisön iloksi Vuotaloon!</p><p>Koko illan improvisoidussa ilottelussa näyttelijät keksivät yleisön antamista aiheista erilaisia sketsejä, tarinoita, runoja, laulunumeroita, puheita ja näytelmäkohtauksia. Minttu sekä Ville näyttelevät illan kaikki hahmot ja biisit itseään säästämättä, ennalta suunnittelematta, käyttäen eri improvisaatiotekniikoita. Käsikirjoitusta ei siis ole ja Minttu sekä Ville toimivat tiiviissä vuorovaikutuksessa yleisöön. Aiheet tehtäviin kysytään katsojilta, mutta aktiivista osallistumista ei vaadita.</p><p>Lavalla Mintun sekä Villen seurana säestämässä toimii huippumuusikko Samuli Laiho, jonka avulla illan aikana kuullaan myös esityshetkellä sävellettyjä lauluja eri tyylilajeissa, sekä musiikkia eri puolilta maailmaa, eri kielillä ja sävellajeissa.<br>Ilta on kevyt, ja naurulta voi tuskin katsomossa välttyä kukaan!<br> <br>Kesto: n. 1 t 50 min, sis. väliajan</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille! <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/minttu-sekae-ville-helsingin-kaupunki-nuorisolippu-vuotalo-20470583/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>De Jussi- och Venla-belönade skådespelarna Minttu Mustakallio och Ville Virtanen, bekanta från film och tv, förtjuser nu Nordhusets publik med sina improvisationsduett.</p><p>Under en kväll med improviserad glädje hittar skådespelarna på en mängd olika sketcher, berättelser, dikter, sångnummer, tal och scener utifrån publikens förslag. Minttu och Ville kommer spelar alla kvällens karaktärer och låtar utan att skona sig, utan förhandsplanering, med hjälp av olika improvisationstekniker. Det finns inget manus och Minttu och Ville har ett nära samspel med publiken. Publiken får föreslå teman för uppgifterna, men aktivt deltagande är inte nödvändigt.</p><p>Tillsammans med Mintu och Ville på scenen ser vi toppmusikern Samuli Laiho som hjälper publiken att få höra låtar i olika genrer som komponerats just då och nu i stunden, samt även musik från hela världen, på olika språk och i olika genrer.</p><p>Det är en lättsam kväll som torde locka fram ett skratt hos alla!<br>Längd: ca 1 h 50 min, inklusive paus</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/minttu-sekae-ville-helsingin-kaupunki-nuorisolippu-vuotalo-20470583/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>The Jussi and Venla award-winning actors Minttu Mustakallio and Ville Virtanen, known from films and TV, will bring their improvisational duets to Vuotalo to the delight of the audience!</p><p>In an evening of improvised merriment, the actors will came up with a variety of sketches, stories, poems, song numbers, speeches and scenes based on topics suggested by the audience. Minttu and Ville will play all the characters and songs of the evening without sparing themselves, without planning, using different improvisation techniques. Hence there is no script, and Minttu and Ville interact closely with the audience. Viewers will be asked to choose the topics, but active participation is not required.</p><p>Minttu and Ville will be accompanied on stage by top-class musician Samuli Laiho, who will be playing songs in different genres composed at the time of the performance, as well as music from all over the world, in different languages and genres.</p><p>This light-hearted evening will spare few from laughter!<br>Duration: approx. 1 h 50 min, incl. intermission</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025! <br>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/minttu-sekae-ville-helsingin-kaupunki-nuorisolippu-vuotalo-20470583/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "short_description": {
                "fi": "Elokuvista ja tv:stä tutut, Jussi- sekä Venla-palkitut näyttelijät Minttu Mustakallio ja Ville Virtanen tuovat improvisaatioduettonsa yleisön iloksi Vuotaloon!",
                "sv": "De Jussi- och Venla-belönade skådespelarna Minttu Mustakallio och Ville Virtanen, bekanta från film och tv, förtjuser nu Nordhusets publik med sina improvisationsduett.",
                "en": "The Jussi and Venla award-winning actors Minttu Mustakallio and Ville Virtanen, known from films and TV, will bring their improvisational duets to Vuotalo to the delight of the audience!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66783/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66782",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347671/",
                        "sv": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347671/",
                        "en": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347671/"
                    },
                    "price": {
                        "fi": "20€ / 15€",
                        "sv": "20€ / 15€",
                        "en": "20€ / 15€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1272366,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T14:12:54.796355Z",
                    "last_modified_time": "2025-07-16T14:12:54.796369Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774936.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1272366/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T14:12:54.740274Z",
            "last_modified_time": "2025-08-07T14:13:17.661600Z",
            "date_published": null,
            "start_time": "2025-11-14T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/77381D201DCCDF01E23EBAD5CB49E2B0/Klubi-ilta_Marjo_Leinonen_the_Bublicans_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/77381D201DCCDF01E23EBAD5CB49E2B0/Klubbkvall_Marjo_Leinonen_the_Bublicans_",
                "en": "http://www.vuotalo.fi/en/events/event/77381D201DCCDF01E23EBAD5CB49E2B0/Club_night_Marjo_Leinonen_The_Bublicans_"
            },
            "name": {
                "fi": "Klubi-ilta: Marjo Leinonen & the Bublicans",
                "sv": "Klubbkväll: Marjo Leinonen & the Bublicans",
                "en": "Club night: Marjo Leinonen & The Bublicans"
            },
            "description": {
                "fi": "<p>Marjo Leinonen & The Bublicans on räyhäkäs funkbändi, joka vetelee hartaudella kaikki soulin siniset sävyt!</p><p>Bändi käännyttää kansan apatiasta rytmiseen hurmioon elämänmakuisella ilosanomallaan. Basson sijaan törisee matalataajuutta sousafoni eli tuuba (Ville Niemelä) ja vie näin tunnelman ”pikkukakkosen” kyydillä suoraan New Orleansiin.</p><p>Bublicans on Marjo Leinosen viimeisin kokoonpano ja jatkaa soulrockin mehevää kaanonia, jonka monensävyisessä maastossa Leinonen on operoinut taatusti omaleimaisella ja henkeäsalpaavalla tyylillään läpi 30 vuotisen laulajan historiansa. ”Silmät kiinni ja suu auki! Nyt on aika bublia” toivoo Leinonen, sillä rytmisestä ilotulituksesta vastaa Villen lisäksi Risto Kumpulainen (koskettimet), Petri Kautto (kitara) sekä Sami Vettenranta (rummut).</p><p>Kesto: n. 2 t</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p>",
                "sv": "<p>Marjo Leinonen & The Bublicans är ett hejdlöst funkband som andäktigt spelar soulens alla blå nyanser!</p><p>Bandet omvänder människor från apati till rytmisk extas med sitt livsbejakande budskap om glädje. I stället för basen ljuder sousafonen eller tuban (Ville Niemelä) med låg frekvens och för oss med hjälp av ”lilla tvåan” direkt till New Orleans stämning.</p><p>Bublicans är Marjo Leinonens senaste sammansättning och fortsätter den ljuva kanon av soulrock, en mångsidig terräng där Leinonen har arbetat med en distinkt och hisnande stil under sina 30 år som sångerska. \"Slut ögonen och öppna munnen! Nu är det dags att bubla\", önskar Leinonen, och det rytmiska fyrverkeriet skapas av Risto Kumpulainen (keyboards), Petri Kautto (gitarr) och Sami Vettenranta (trummor).</p><p>Längd: ca 2 h<br>Klubbkväll, A-rättigheter, Café Pokkari står för serveringen, dörrarna öppnas kl. 17.30.</p>",
                "en": "<p>Marjo Leinonen & The Bublicans are a raucous funk band that devoutly bangs out all the blue shades of soul!</p><p>The band converts people from apathy to rhythmic ecstasy with their life-flavoured message of joy. Instead of the bass guitar, low frequencies are created with the rumble of the sousaphone, i.e. tuba (Ville Niemelä), taking the atmosphere straight to New Orleans.</p><p>Bublicans is Marjo Leinonen’s latest line-up and continues the luscious canon of soul rock, a diverse terrain in which Leinonen has operated with an undisputedly distinctive and breathtaking style throughout her 30 years as a singer. “Close your eyes and open your mouth! It’s time for bubbles,” quips Leinonen, as in addition to Ville, rhythmic fireworks will be provided by Risto Kumpulainen (keyboards), Petri Kautto (guitar) and Sami Vettenranta (drums).</p><p>Duration: roughly 2 h<br>Club evening, alcohol serving licence, catering by Café Pokkari, doors open at 17.30.</p>"
            },
            "short_description": {
                "fi": "Marjo Leinonen & The Bublicans on räyhäkäs funkbändi, joka vetelee hartaudella kaikki soulin siniset sävyt!",
                "sv": "Marjo Leinonen & The Bublicans är ett hejdlöst funkband som andäktigt spelar soulens alla blå nyanser!",
                "en": "Marjo Leinonen & The Bublicans are a raucous funk band that devoutly bangs out all the blue shades of soul!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66782/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66781",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubb-ankdamm-felix-zenger-strandberg-project-30-vuotalo-20396358/",
                        "sv": "https://www.lippu.fi/event/klubb-ankdamm-felix-zenger-strandberg-project-30-vuotalo-20396358/",
                        "en": "https://www.lippu.fi/event/klubb-ankdamm-felix-zenger-strandberg-project-30-vuotalo-20396358/"
                    },
                    "price": {
                        "fi": "20€ / 15€",
                        "sv": "20€ / 15€",
                        "en": "20€ / 15€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1272051,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T13:12:46.669395Z",
                    "last_modified_time": "2025-07-16T13:12:46.669409Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774935.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1272051/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T13:12:46.609147Z",
            "last_modified_time": "2025-08-07T14:13:17.351578Z",
            "date_published": null,
            "start_time": "2025-11-13T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2C1545A5699C0A6EDDF20612ED154016/Felix_Zenger_Strandberg_Project_30v",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/2C1545A5699C0A6EDDF20612ED154016/Felix_Zenger_Strandberg_Project_30v",
                "en": "http://www.vuotalo.fi/en/events/event/2C1545A5699C0A6EDDF20612ED154016/Felix_Zenger_Strandberg_Project_30v"
            },
            "name": {
                "fi": "Felix Zenger & Strandberg Project 30v – Klubb Ankdamm",
                "sv": "Felix Zenger & Strandberg Project 30v – Klubb Ankdamm",
                "en": "Felix Zenger & Strandberg Project 30v – Klubb Ankdamm"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan Strandberg Projectin 30-vuotista taivalta!</p><p>Strandberg Project tunnetaan erityisesti fuusion, progen ja jazzin saumattomasta yhdistelmästä, joka on tuonut yhtyeelle laajan ja uskollisen kuulijakunnan. Yhtye on vuosien varrella tehnyt yhteistyötä lukuisten kansainvälisten huippumuusikoiden kanssa, ja sen musiikki on rikastuttanut niin levyjä kuin live-esiintymisiäkin.</p><p>Illan juhlakonsertissa kuullaan sekä vanhoja klassikoita että uusia sävellyksiä, jotka vievät kuulijat matkalle yhtyeen monipuoliseen musiikilliseen maailmaan. Lavalla nähdään myös erityisvieraita, jotka ovat olleet mukana luomassa Strandberg Projectin ainutlaatuista soundia.</p><p>Liity mukaan juhlimaan tätä merkittävää virstanpylvästä ja nauttimaan unohtumattomasta musiikki-illasta!</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p><p>Kesto: n. 120 min. sis. väliaika.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465869/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>Välkommen att fira Strandberg Projects 30-åriga resa!</p><p>Strandberg Project är särskilt känt för sin sömlösa blandning av fusion, prog och jazz, vilket har gett bandet en bred och lojal publik. Under åren har bandet samarbetat med många internationella toppmusiker, och deras musik har berikat både skivor och liveframträdanden.</p><p>Kvällens jubileumskonsert kommer att bjuda på både gamla klassiker och nya kompositioner, som tar lyssnarna med på en resa genom bandets mångsidiga musikaliska värld. På scenen kommer vi också att se speciella gäster som har varit med och skapat Strandberg Projects unika sound.</p><p>Följ med och fira denna betydande milstolpe och njut av en oförglömlig musikkväll!</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.</p><p>Längd: ca 120 min. inkl. paus.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465869/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>Join us for a celebration of the 30th anniversary of Strandberg Project!</p><p>Strandberg Project is known particularly for its seamless blend of fusion, prog and jazz, which has earned the band a large and loyal following. Over the years, the band has collaborated with numerous international top-class musicians, and its music has enriched both records and live performances.</p><p>The evening’s celebratory concert will feature both old classics and new compositions, taking listeners on a journey through the band’s diverse musical world. There will also be special guests on stage who have helped create Strandberg Project’s unique sound.<br>Join us for a celebration of this milestone and come enjoy an unforgettable evening of music!</p><p>Club evening, alcohol serving licence, catering by Café Pokkari, doors open at 17.30.</p><p>Duration: roughly 120 min, incl. intermission</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465869/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "short_description": {
                "fi": "Tervetuloa juhlistamaan Strandberg Projectin 30-vuotista taivalta!",
                "sv": "Välkommen att fira Strandberg Projects 30-åriga resa!",
                "en": "Join us for a celebration of the 30th anniversary of Strandberg Project!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66781/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66780",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1272050,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T13:12:46.377785Z",
                    "last_modified_time": "2025-07-16T13:12:46.377797Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774934.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1272050/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T13:12:46.320286Z",
            "last_modified_time": "2025-08-07T14:13:17.085499Z",
            "date_published": null,
            "start_time": "2025-11-11T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/327E45442A2005496F9BF9983C1B993C/Mummodisko_Gimme_Abba_bileshow_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/327E45442A2005496F9BF9983C1B993C/Mommodisko_Gimme_Abba_partyshow_",
                "en": "http://www.vuotalo.fi/en/events/event/327E45442A2005496F9BF9983C1B993C/Granny_Disco_Gimme_Abba_party_show_"
            },
            "name": {
                "fi": "Mummodisko: Gimme Abba bileshow!",
                "sv": "Mommodisko: Gimme Abba partyshow!",
                "en": "Granny Disco: Gimme Abba party show!"
            },
            "description": {
                "fi": "<p>Tule mukaan glitterin, tanssin ja naurun täyteiseen iltapäivään, kun Mummodisko valtaa Vuotalon!</p><p>Lavalla nähdään säihkyvä Gimme Abba -bileshow, jossa Abban suurimmat hitit saavat uuden elämän upeiden solistien Annica Milánin ja Valtteri Lehtisen tulkintoina. Show tarjoilee tuttuja klassikoita sekä makupaloja myös Abban uudelta Voyage-albumilta – tätä et halua missata!</p><p>Juontajina hauskuuttavat Ria Kataja ja Minna Kivelä rakastettuina sketsihahmoina Tuulana ja Pirkko-ystävänä. DJ Mikko Haapalainen huolehtii siitä, että tanssilattia pysyy kuumana myös liveosuuksien välissä.</p><p>Mummodisko on ainutlaatuinen, valtakunnallinen tapahtumakonsepti, joka tuo iloa ja yhteisöllisyyttä ikäihmisille – ja kaikille, jotka rakastavat tanssimusiikkia! Mummodisko ry on järjestänyt satoja tapahtumia ympäri Suomea tavoittaen tuhansia osallistujia, rikkoen ikään liittyviä ennakkoluuloja ja vahvistaen sukupolvien välisiä kohtaamisia.</p><p>Kesto: 2 t</p><p>Vapaa pääsy</p>",
                "sv": "<p>Följ med oss på en eftermiddag med glitter, dans och skratt när mommodiskot erövrar Nordhuset!</p><p>På scenen ser vi den glittrande partyshowen Gimme Abba där Abbas största hits ges nytt liv av de fantastiska solisterna Annica Milán och Valtteri Lehtinen. Showen innehåller välkända klassiker och godbitar från Abbas nya albumVoyage – det här vill du inte missa!</p><p>Programledare är Ria Kataja och Minna Kivelä som de älskade sketchkaraktärerna Tuula och vännen Pirkko. DJ Mikko Haapalainen kommer att se till att dansgolvet hålls varmt även mellan liveuppträdandena.</p><p>Mommodisko är ett unikt, rikstäckande eventkoncept som ger glädje och gemenskap till äldre - och alla som älskar dansmusik! Mommodisko har arrangerat hundratals evenemang över hela Finland, nått tusentals deltagare, brutit åldersrelaterade fördomar och stärkt möten mellan generationer.</p><p>Längd: 2 h<br>Fritt inträde</p>",
                "en": "<p>Join us for an afternoon of glitter, dance and laughter as Granny Disco takes over Vuotalo!</p><p>The stage will feature a sparkling Gimme Abba party show, in which Abba’s greatest hits will be given new life by the amazing soloists Annica Milán and Valtteri Lehtinen. The show will feature well-known classics, as well as samples from Abba’s new album Voyage – you will not want to miss this one!</p><p>The show will be hosted by comedians Ria Kataja and Minna Kivelä as the beloved sketch characters Tuula and her friend Pirkko. DJ Mikko Haapalainen will make sure that the dance floor stays hot between the live performances.</p><p>Mummodisko, Granny Disco, is a unique, nationwide event concept that brings joy and community spirit to elderly people – and everyone who loves dance music! Mummodisko ry has organised hundreds of events all over Finland, reaching thousands of participants, breaking age-related prejudices and strengthening encounters between generations.</p><p>Duration: 2 h<br>Free entry</p>"
            },
            "short_description": {
                "fi": "Tule mukaan glitterin, tanssin ja naurun täyteiseen iltapäivään, kun Mummodisko valtaa Vuotalon!",
                "sv": "Följ med oss på en eftermiddag med glitter, dans och skratt när mommodiskot erövrar Nordhuset!",
                "en": "Join us for an afternoon of glitter, dance and laughter as Granny Disco takes over Vuotalo!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66780/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66719",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-gycklarnas-afton-3929733/",
                        "sv": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-gycklarnas-afton-3929733/",
                        "en": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-gycklarnas-afton-3929733/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1219167,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T13:16:40.175012Z",
                    "last_modified_time": "2025-07-09T13:16:40.175025Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774932.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1219167/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-09T13:16:40.105719Z",
            "last_modified_time": "2025-08-07T14:13:16.676735Z",
            "date_published": null,
            "start_time": "2025-11-07T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/61A53A3905238D4754C97D92078C1116/Gycklarnas_Afton",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/61A53A3905238D4754C97D92078C1116/Gycklarnas_Afton",
                "en": "http://www.vuotalo.fi/en/events/event/61A53A3905238D4754C97D92078C1116/Gycklarnas_Afton"
            },
            "name": {
                "fi": "Gycklarnas Afton – Klubb Ankdamm",
                "sv": "Gycklarnas Afton – Klubb Ankdamm",
                "en": "Gycklarnas Afton – Klubb Ankdamm"
            },
            "description": {
                "fi": "<p>Ahvenanmaalainen bändi Gycklarnas Afton keikkailee jälleen ja on julkaissut uutta musiikkia!</p><p>Aikoinaan heitä ylistettiin ruotsinkielisen Suomen parhaana bändinä, ja he kiersivät ahkerasti sekä Ruotsissa että Suomessa. Nyt 38 vuoden tauon jälkeen bändi on äänittänyt uuden levyn, jota on soitettu runsaasti muun muassa Radio Vegalla.</p><p>Tästä voit lukea ja kuunnella lisää: https://promo.theorchard.com/usn6Z5rQuFLu94zXq2Dj</p><p>Gycklarnas Afton julkaisee nyt uuden levynsä, Hamn i natten, joka on heidän ensimmäinen uutta musiikkia sisältävä albuminsa 38 vuoteen.</p><p>Hamn i natten sisältää kuusi kappaletta. Gycklarna on yhä melodioiden ja energian räjähdys – mutta nyt mukana on myös herkempi puoli. Teemallisesti meri toimii tekstien keskipisteenä: novellimainen Acke kuvaa merta kaipuun ja paon symbolina, kun taas Segelskeppens tid kertoo 1900-luvun alun murskatuista toiveista ja monista läheisistä, jotka menetettiin merelle.</p><p><b>Gycklarnas Afton:</b><br>Peter Hägerstrand – laulu & kitara<br>Marcus Quarnström – laulu & basso<br>Jonas Fogelström – laulu, kitara & koskettimet<br>Markus Helander – rummut</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p><p>Kesto: n. 120 min. sis. väliaika.</p>",
                "sv": "<p>Det åländska bandet Gycklarnas Afton ute och gör releasespelningar våren och hösten 2025.</p><p>De hyllades i tiderna som svenskfinlands bästa band och spelade mycket runt om, både i Sverige och Finland. Nu har de efter 38 års uppehåll spelat in en ny skiva som spelats flitigt i media, bl.a Radio Vega.</p><p>Här kan du läsa och lyssna: https://promo.theorchard.com/usn6Z5rQuFLu94zXq2Dj</p><p>Efter en intensiv vår och sommar i studion och på scen släpps nu Gycklarnas Afton nya skiva, Hamn i natten. Den första med ny musik på 38 år.</p><p>Hamn i natten består av sex spår. Fortsättningsvis är Gycklarna en explosion av melodier och energi. Men också en känsligare sida kan anas. Tematiskt finns havet där som ett nav i texterna. Från kortnovellen Acke, där havet står för både längtan och flykten, till Segelskeppens tid som handlar om det tidiga 1900-tals grusade förhoppningar och de många nära och kära som gick förlorade till havs påg det.</p><p><b>Gycklarnas Afton</b><br>Peter Hägerstrand – sång & gitarr<br>Marcus Quarnström – sång & bas<br>Jonas Fogelström – sång & gitarr & keyboards<br>Markus Helander – trummor</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.</p><p>Längd: ca 120 min. inkl. paus.</p>",
                "en": "<p>The Åland-based band Gycklarnas Afton is back on stage and has released new music!</p><p>Hailed back in the day as the best band in Swedish-speaking Finland, they toured extensively in both Sweden and Finland. Now, after a 38-year hiatus, the band has recorded a new album that has been played extensively on channels such as Radio Vega.</p><p>You can read and listen to more here: https://promo.theorchard.com/usn6Z5rQuFLu94zXq2Dj</p><p>Gycklarnas Afton are now releasing a new album, Hamn i natten, which is their first album of new music in 38 years.</p><p>Hamn i natten contains six songs. Gycklarna is still an explosion of melodies and energy – but now their sound also has a more sensitive side to it. Thematically, the lyrics of the album revolve around the sea: the novella-like Acke depicts the sea as a symbol of longing and escape, while Segelskeppens tid focuses on crushed hopes in the early 20th century and the many loved ones lost to the sea.</p><p><b>Gycklarnas Afton</b><br>Peter Hägerstrand – vocals & guitar<br>Marcus Quarnström – vocals & bass<br>Jonas Fogelström – vocals, guitar & keyboard<br>Markus Helander – drums</p><p>Club evening, alcohol serving licence, catering by Café Pokkari, doors open at 17.30. <br>Duration: roughly 120 min, incl. intermission</p>"
            },
            "short_description": {
                "fi": "Ahvenanmaalainen bändi Gycklarnas Afton keikkailee jälleen ja on julkaissut uutta musiikkia!",
                "sv": "Det åländska bandet Gycklarnas Afton ute och gör releasespelningar våren och hösten 2025.",
                "en": "The Åland-based band Gycklarnas Afton is back on stage and has released new music!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66719/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66827",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1433468,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-07T13:12:51.877071Z",
                    "last_modified_time": "2025-08-07T13:12:51.877084Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767432.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1433468/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-07T13:12:51.826141Z",
            "last_modified_time": "2025-08-07T14:13:16.458152Z",
            "date_published": null,
            "start_time": "2025-11-06",
            "end_time": "2025-11-29",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DAF70C758E5791D8C100A85C0C9444EB/Kai_Rentola_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/DAF70C758E5791D8C100A85C0C9444EB/Kai_Rentola_",
                "en": "http://www.vuotalo.fi/en/events/event/DAF70C758E5791D8C100A85C0C9444EB/Kai_Rentola_"
            },
            "name": {
                "fi": "Kai Rentola – Illusion / Mielijuttuja / Favorite Stuff",
                "sv": "Kai Rentola – Illusion / Mielijuttuja / Favorite Stuff",
                "en": "Kai Rentola – Illusion / Mielijuttuja / Favorite Stuff"
            },
            "description": {
                "fi": "<p>”Näyttelyssä on esillä veistoksiani ja mustavalkoista grafiikkaani hyvin pitkältä ajalta tarkoittaen koko aikuisikääni.”</p><p>”Kuviani ei ole piirretty mallista, ts. maisemaa tai aihetta ei ole olemassa sellaisenaan. Kuvat ovat lähtöisin sisäisestä maailmastamme ja edustavat (unien) arkkityyppisiä illuusioita. Veistokset ovat pienoismalleja mahdollisista rakennuksista ja muista minua kiinnostaneista harvinaisista rakenteista ja muodoista. Jotkut niistä on jopa toteutettu isoonkin kokoon.</p><p>Yhteistä näille kaikille näkymille ja mielijutuille on, että ne eivät ole olleet koskaan esillä yhdessä tai lainkaan yhdessäkään näyttelyssä. Jotkut niistä on tehty taidekilpailuihin ja menestyneetkin niissä. Toiset on tehty muihin tarkoituksiin, ne ovat velkaa teatterille, runoudelle tai hyvälle kertomukselle. Ne osaltaan todistavat, että tämän maailman sisällä on toinen mahdollinen maailma, jota pyrin avaamaan ja jakamaan kanssanne.</p><p>Toivoin voivani esittää nämä jutut Vuosaaressa, jossa asun ja kiitän nyt Vuotalon väkeä tästä mahdollisuudesta.”</p><p>Avajaiset torstaina 6.11. klo 17–19. Tervetuloa!</p>",
                "sv": "<p>\"Utställningen visar mina skulpturer och svartvita bilder från en mycket lång period av mitt vuxna liv.\"</p><p>\"Mina bilder avbildar inte en modell, det vill säga landskapet eller motivet finns inte som sådant. Bilderna kommer från min inre värld och representerar arketypiska illusioner (av drömmar). Skulpturerna är miniatyrer av möjliga byggnader och andra ovanliga strukturer och former som intresserar mig. Några av dem har till och med genomförts i stort format.</p><p>Det som alla dessa vyer och fantasier har gemensamt är att de aldrig har visats tillsammans, eller överhuvudtaget, på någon utställning. Några av dem har gjorts för konsttävlingar och även rönt framgång. Andra är gjorda för andra ändamål, de står i skuld till teatern, poesin eller det goda berättandet. De bidrar till att bevisa att det inom denna värld finns en annan möjlig värld, som jag försöker öppna upp och dela med mig av till er.</p><p>Jag hade hoppats kunna presentera dessa berättelser i Nordsjö, där jag bor, och jag tackar nu Nordhusets folk för denna möjlighet.\"</p><p>Vernissage torsdag 6.11 kl. 17-19. Välkommen!</p>",
                "en": "<p>“This exhibition features my sculptures and black-and-white graphics from a very long period, meaning my entire adult life.”</p><p>“My pictures are not drawn from models, i.e. the landscape or subject does not exist as such. The images come from our inner world and represent archetypal illusions (of dreams). The sculptures are miniatures of possible buildings and other rare structures and shapes that have interested me. Some of them have even been implemented in a large scale.</p><p>What all these views and fancies have in common is that they have never been shown together, or at all, in any exhibition. Some of them have been made for art competitions and have been successful in them. Others have been made for other purposes; they owe a debt to theatre, poetry or good storytelling. They contribute to proving that within this world is another possible world, which I am seeking to open up and share with you.</p><p>I was hoping to get to present these things in Vuosaari, where I live, and I would now like to thank the people of Vuotalo for this opportunity.”</p><p>Opening on Thursday 6 November at 17.00–19.00. We are looking forward to seeing you!</p>"
            },
            "short_description": {
                "fi": "”Näyttelyssä on esillä veistoksiani ja mustavalkoista grafiikkaani hyvin pitkältä ajalta tarkoittaen koko aikuisikääni.”",
                "sv": "\"Utställningen visar mina skulpturer och svartvita bilder från en mycket lång period av mitt vuxna liv.\"",
                "en": "“This exhibition features my sculptures and black-and-white graphics from a very long period, meaning my entire adult life.”"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66827/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66777",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1271418,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T11:12:55.652958Z",
                    "last_modified_time": "2025-07-16T11:12:55.652971Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769427.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1271418/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T11:12:55.599696Z",
            "last_modified_time": "2025-08-07T13:12:48.613178Z",
            "date_published": null,
            "start_time": "2025-10-29T14:00:00Z",
            "end_time": "2025-10-29T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1B5493646B54726522E335AAB956EF11/Kekri_Morkojuhlat-tyopaja",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1B5493646B54726522E335AAB956EF11/Skordefest_Monsterfest-workshop",
                "en": "http://www.vuotalo.fi/en/events/event/1B5493646B54726522E335AAB956EF11/Kekri_Morkojuhlat_workshop"
            },
            "name": {
                "fi": "Kekri! Mörköjuhlat-työpaja",
                "sv": "Skördefest! Monsterfest-workshop",
                "en": "Kekri! Mörköjuhlat workshop"
            },
            "description": {
                "fi": "<p>Huhuu-uuuu! Tervetuloa askartelemaan juhlakoristeita pimeän kauden arkeen ja juhlaan!</p><p>Työpajassa valmistetaan koristenauha, joka sopii niin kekrin, halloweenin kuin mörköjuhlienkin tunnelmaan. Työpajaopettajana toimii Mörköjuhlat-kuvakirjan kirjoittaja ja kuvittaja Satu Kettunen. Sopii koko perheelle!</p><p>Mukaan mahtuu kerrallaan noin 20 askartelijaa, niin kauan kuin materiaaleja riittää.</p><p>Kieli: suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Buuuu! Välkommen att skapa festliga dekorationer för den mörka årstidens vardag och fest!</p><p>Nu tillverkar vi en girland som passar både för skördefesten, halloween och monsterfester! Workshopen leds av Satu Kettunen, författare och illustratör till bilderboken Mörköjuhlat. Passar för hela familjen!</p><p>Det finns plats för cirka 20 hantverkare åt gången, så länge det finns tillräckligt med material.<br>Språk: finska</p>",
                "en": "<p>Booo-oooo! Come and craft festive decorations for everyday and party use in the dark season!</p><p>At this workshop, you will get to make a decorative ribbon that will fit the mood of kekri, Halloween and spooky parties alike. The workshop will be taught by Satu Kettunen, author and illustrator of the Mörköjuhlat picture book. Suitable for the whole family!</p><p>There is room for about 20 crafters at a time, as long as there are enough materials.<br>Language: Finnish</p>"
            },
            "short_description": {
                "fi": "Huhuu-uuuu! Tervetuloa askartelemaan juhlakoristeita pimeän kauden arkeen ja juhlaan!",
                "sv": "Buuuu! Välkommen att skapa festliga dekorationer för den mörka årstidens vardag och fest!",
                "en": "Booo-oooo! Come and craft festive decorations for everyday and party use in the dark season!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66777/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66775",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:732/?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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1271103,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T10:14:20.654932Z",
                    "last_modified_time": "2025-07-16T10:14:20.654948Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770611.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1271103/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T10:14:20.536559Z",
            "last_modified_time": "2025-08-07T13:12:48.514092Z",
            "date_published": null,
            "start_time": "2025-10-29T14:00:00Z",
            "end_time": "2025-10-29T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/50034FCA0529058B5F4606C8D565A721/Luova_hetki_avoin_taidepaja",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/50034FCA0529058B5F4606C8D565A721/Kreativ_stund_oppen_konstworkshop",
                "en": "http://www.vuotalo.fi/en/events/event/50034FCA0529058B5F4606C8D565A721/Creative_Moment_Open_Art_Workshop"
            },
            "name": {
                "fi": "Luova hetki – avoin taidepaja",
                "sv": "Kreativ stund – öppen konstworkshop",
                "en": "Creative Moment – Open Art Workshop"
            },
            "description": {
                "fi": "<p>Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.</p><p><b>ke 29.10. klo 16–18 Mistä värit tulevat?</b><br>Nyt saa hämmentää, laimentaa ja yhdistää luonnonvärejä ihan itse! Mistä tutuista aineksista saisimme irti erilaisia värejä taideteoksia varten? Nyt tutkitaan ja kokeillaan!</p><p>Järjestämme eriteemaisia taidepajoja Vuotalon aulassa. Taidepajat sopivat lapsille ja aikuisille. Työpajoja ohjaa Chloé Mahy-Hulkko.</p><p>Kieli: suomi, englanti, ranska<br>Taidepajat ovat maksuttomia!</p>",
                "sv": "<p>Vi är kreativa tillsammans! Kom och laga vackra och användbara dekorationer och utveckla dina kunskaper i konsthantverk.</p><p><b> on 29.10 Var kommer färgerna ifrån?</b><br>Nu kan du blanda, späda ut och kombinera naturliga färger helt själv! Vilka bekanta material kan vi använda för att få fram olika färger till konstverk? Låt oss utforska och experimentera!</p><p>Vi ordnar konstverkstäder med olika teman i Nordhusets aula. Konstverkstäderna är lämpliga för både barn och vuxna. Chloé Mahy-Hulkko leder verkstäderna</p><p>Språk: finska, engelska, franska<br>Konstverkstäderna är kostnadsfria!</p>",
                "en": "<p>Let’s get creative together! Come and make beautiful, necessary decorations and develop your craftsmanship.</p><p><b> Wed 29 October Where do colours come from?</b> <br>Come mix, dilute and combine natural colours all by yourself! What familiar ingredients could we use to produce different colours for artworks? Now is the time to explore and experiment!</p><p>We will hold art workshops with varying themes in the Vuotalo lobby. The art workshops are suitable for children and adults alike. The workshops are led by Chloé Mahy-Hulkko.</p><p>Language: Finnish, English, French<br>The art workshops are free of charge!</p>"
            },
            "short_description": {
                "fi": "Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.",
                "sv": "Vi är kreativa tillsammans! Kom och laga vackra och användbara dekorationer och utveckla dina kunskaper i konsthantverk.",
                "en": "Let’s get creative together! Come and make beautiful, necessary decorations and develop your craftsmanship."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66775/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66824",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1433467,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-07T13:12:48.249784Z",
                    "last_modified_time": "2025-08-07T13:12:48.249800Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768469.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1433467/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-08-07T13:12:48.181755Z",
            "last_modified_time": "2025-08-07T13:12:48.366265Z",
            "date_published": null,
            "start_time": "2025-10-29T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6C243DAF47415B7CBBF829AD79BFDF09/Uhma_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/6C243DAF47415B7CBBF829AD79BFDF09/Uhma_",
                "en": "http://www.vuotalo.fi/en/events/event/6C243DAF47415B7CBBF829AD79BFDF09/Defiant"
            },
            "name": {
                "fi": "Uhma – Yläkoulukino",
                "sv": "Uhma – Yläkoulukino",
                "en": "Defiant – Yläkoulukino"
            },
            "description": {
                "fi": "<p>Nuoren sisäisen maailman raivoa ja rakkauden kaipuuta kuvaava Uhma on ravisteleva draama uusioperheessään kipuilevasta Vilmasta (Ona Huczkowski), joka päätyy nuorisokotiin.</p><p>Laitosta johtaa ankaraotteinen henkilökunta (mm. Kati Outinen), jonka mielivaltaisen kohtelun nujertamaksi sisukas Vilma ei suostu. Löytyykö muuta ratkaisua kuin ottaa hatkat, ja kuka on lopulta luottamuksen arvoinen? Elokuva ammentaa yksittäisten nuorten tosipohjaisista tarinoista.</p><p>Ensi-ilta: 28.02.2025<br>Ikäraja: 12<br>Pituus: 93 min.<br>Ohjaus: Visa Koiso-Kanttila<br>Käsikirjoitus: Reeta Ruotsalainen<br>Näyttelijät: Ona Huczkowski, Kati Outinen, Emmi Parviainen, Tinka Andersson, Joonatan Pekola, Sami Sowe, Jarkko Pajunen, Tuomas Nilsson, Samuli Niittymäki, Sonja Kuittinen, Arvand Rasul, Iiris Pöyhtäri ja Ilo Maisse<br>Genret: Draama</p><p>Ryhmille ennakkoilmoittautuminen osoitteessa kultus.hel.fi</p>",
                "sv": "<p>Uhma, som skildrar den ungas inre värld av raseri och längtan efter kärlek, är ett omskakande drama om bonusfamiljens smärtfyllda Vilma (Ona Huczkowski), som hamnar på ett ungdomshem.</p><p>Inrättningen leds av en sträng personal (bl.a. Kati Outinen) med egenmäktiga och stränga metoder som tuffa Vilma vägrar att låta sig kuvas av. Finns det någon annan lösning än att rymma, och vem är egentligen värd ens förtroende? Filmen bygger på enskilda ungdomars berättelser från verkliga livet.</p><p>Längd: 1 timme 33 minuter<br>Åldersgräns: 12</p>",
                "en": "<p>Defiant is a gripping drama about the inner fury and longing for love of Vilma (Ona Huczkowski), a troubled teen from a blended family who ends up in a youth home.</p><p>The institution is run by strict staff (including Kati Outinen), whose arbitrary treatment the feisty Vilma refuses to submit to. Is there any solution other than running away, and who can ultimately be trusted? The film draws from real-life stories of individual young people.</p><p>Duration: 1 hour 33 min<br>Age limit: 12</p>"
            },
            "short_description": {
                "fi": "Nuoren sisäisen maailman raivoa ja rakkauden kaipuuta kuvaava Uhma on ravisteleva draama uusioperheessään kipuilevasta Vilmasta (Ona Huczkowski), joka päätyy nuorisokotiin.",
                "sv": "Uhma, som skildrar den ungas inre värld av raseri och längtan efter kärlek, är ett omskakande drama om bonusfamiljens smärtfyllda Vilma (Ona Huczkowski), som hamnar på ett ungdomshem.",
                "en": "Defiant is a gripping drama about the inner fury and longing for love of Vilma (Ona Huczkowski), a troubled teen from a blended family who ends up in a youth home."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66824/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}