Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 23149,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=32",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=30"
    },
    "data": [
        {
            "id": "kulke:69221",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/jussu-poyhonen/",
                        "sv": "https://www.lippu.fi/artist/jussu-poyhonen/",
                        "en": "https://www.lippu.fi/artist/jussu-poyhonen/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 12 €",
                        "sv": "15 € / 12 €",
                        "en": "15 € / 12 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385359,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-25T07:14:43.195563Z",
                    "last_modified_time": "2026-06-25T07:14:43.195579Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793525.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385359/?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": "2026-06-25T07:14:43.096533Z",
            "last_modified_time": "2026-06-25T07:14:43.394295Z",
            "date_published": null,
            "start_time": "2026-10-05T15:00:00Z",
            "end_time": "2026-10-05T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jussu Pöyhönen – Juurilla-klubi",
                "sv": "Jussu Pöyhönen",
                "en": "Jussu Pöyhönen"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Aloita viikko menevällä meiningillä! Kevään Juurilla-klubin solistina Kannelsalissa Jussu Pöyhönen."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B5955D2CC9A687A4682BAB53B0FD05B4/Jussu_Poyhonen",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B5955D2CC9A687A4682BAB53B0FD05B4/Jussu_Poyhonen",
                "en": "http://www.kanneltalo.fi/en/events/event/B5955D2CC9A687A4682BAB53B0FD05B4/Jussu_Poyhonen"
            },
            "description": {
                "fi": "<p>Aloita viikko menevällä meiningillä! Kevään Juurilla-klubin solistina Kannelsalissa Jussu Pöyhönen.</p><p><b>Jussu Pöyhönen</b> on laulaja ja lauluntekijä, joka tunnetaan parhaiten 30-vuotisesta urastaan Suurlähettiläät-yhtyeen nokkamiehenä. Hän on tehnyt myös useita soololevyjä, sekä teatterimusiikkia ja esiintynyt teatterissa.</p><p>Viimeksi Jussu esiintyi Kanneltalon lavalla helmikuussa teatteriklovneriamusikaalissa <i>Täydellinen musikaali – matka manalaan</i>, johon hän teki myös musiikin. Juurilla-klubilla hän pääsee tulkitsemaan itselleen mieluisten artistien, kuten Leonard Cohenin, Tom Waitsin ja JJ Calen musiikkia, samoin kuin kappaleita hänen omalta englanninkieliseltä <i>Bel Vel</i> -albumiltaan (2013).</p><p>Edellisen kerran Jussu oli Juurilla-klubin vieraana korona-aikaan, jolloin keikka tehtiin striimaamalla. Nyt päätimme antaa Jussulle ja Kanneltalon yleisölle mahdollisuuden kohdata livenä!</p><p>Maanantai-illan suosikkiklubin <b>Juurilla</b> sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. <br> <br>Juurilla-klubia isännöivät tuttuun tapaan <b>Juki Välipakka ja The Rooty Toot Toot Band</b>:</p><p>Juki Välipakka – laulu & kitara <br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar <br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut <br> <br>Kesto: 1 tunti</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69221/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68936",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385357,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-25T06:15:12.666325Z",
                    "last_modified_time": "2026-06-25T06:15:12.666352Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792282.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385357/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-25T06:15:12.444200Z",
            "last_modified_time": "2026-06-25T07:14:42.482517Z",
            "date_published": null,
            "start_time": "2026-10-02T15:00:00Z",
            "end_time": "2026-10-02T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Humphrey Mubba | Trio Mandeng – Global Club Nights",
                "sv": "Humphrey Mubba | Trio Mandeng – Global Club Nights",
                "en": "Humphrey Mubba | Trio Mandeng – Global Club Nights"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Global Club Nights on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.",
                "sv": "Global Club Nights är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.",
                "en": "Global Club Nights is a club series where people who work with and love music come together to celebrate music."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1BE1DCF3C4C9544F1D52895E1A556B20/Humphrey_Mubba_Trio_Mandeng",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1BE1DCF3C4C9544F1D52895E1A556B20/Humphrey_Mubba_Trio_Mandeng",
                "en": "http://www.kanneltalo.fi/en/events/event/1BE1DCF3C4C9544F1D52895E1A556B20/Humphrey_Mubba_Trio_Mandeng"
            },
            "description": {
                "fi": "<p>Global Club Nights on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Kanneltalossa klubeja järjestetään syksyn 2026 aikana kahtena iltana. Ensimmäisessä klubi-illassa 2.10. esiintyvät Humphrey Mubba ja Trio Mandeng. Toinen klubi-ilta järjestetään 20.11. Lapsen oikeuksien päivänä.</p><p>Maksuttomat klubi-illat alkavat aikaisin, joten lapsetkin ovat tervetulleita aikuisen seurassa. Klubi tarjoaa mukaansa tempaavan musiikin lisäksi myös muuta mukavaa lapsille sopivaa ohjelmaa. Aloitetaan viikonloppu yhdessä!</p><p><b>Humphrey Mubba</b> on tansanialainen jazzbasisti, säveltäjä ja opettaja, joka asuu Suomessa. Hänen vanhempansa ovat kotoisin Tansanian Kilimanjaron alueelta, missä hän kasvoi monikulttuurisessa perheessä. Hänen musiikissaan syvät afrikkalaiset juuret yhdistyvät kansainvälisiin jazzvaikutteisiin. Soundissa tansanialaiset ja afrikkalaiset rytmit sulautuvat jazzimprovisaation vapauteen, luoden energistä, liikettä herättävää musiikkia, jossa tanssi ja musiikki ovat erottamattomia.</p><p>Richard Bonan, Etienne Mbappén ja Hugh Masekelan kaltaisten artistien vaikutteita saanut Mubba on kiertänyt kansainvälisesti ja esiintynyt muun muassa Sauti za Busara ja BC International Jazz Festival -festivaaleilla. Hänen debyyttialbumiansa <i>Time</i> voi kuunnella kaikilla suurimmilla suoratoistopalveluilla.</p><p><b>Trio Mandeng</b> soittaa bluesin, jazzin ja latinon juurilla. Tyylilajina on klassinen länsiafrikkalainen Mande-musiikkiperinne, jossa kora-harpun ja balafonin herkkiä melodiakudelmia ryydittävät akustiset perkussiorytmit.</p><p>Malilais-burkinalais-guinealais-suomalaisen trion soittajat ovat jokainen tahollaan genren kansainvälisesti noteerattuja virtuooseja. Lyriikat soivat usealla läntisen Afrikan kielellä, hetkittäin myös suomimaustein, ja viimeistään sävelkieltä ymmärtävät kaikki akustisen livegrooven ystävät kansallisuudesta riippumatta.</p><p><b>Global Club Nights</b> -klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen ja siltojen rakentaminen kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Kulttuurikeskus Kanneltalo tuottaa Global Club Nights -illat yhteistyössä Sibelius-Akatemian Global Music -koulutusohjelman ja Maailman musiikin keskuksen kanssa.</p>",
                "sv": "<p>Global Club Nights är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.</p><p>I Gamlasgården ordnas klubben två kvällar under hösten 2026. På den första klubbkvällen 2.10. framträder Humphrey Mubba ja Trio Mandeng. Den andra klubbkvällen ordnas 20.11. i Veckan för barnets rättigheter.</p><p>De avgiftsfria klubbkvällarna börjar tidigt, så barn är också välkomna i sällskap av en vuxen. Låt oss inleda veckoslutet tillsammans!</p>",
                "en": "<p>Global Club Nights is a club series where people who work with and love music come together to celebrate music.</p><p>The free club nights start early, so children are welcome when accompanied by an adult. In addition to exciting music, the club also offers other fun activities suitable for children. Let's start the weekend together!</p><p>Kanneltalo will host the club on two evenings during the autumn of 2026. The first club night on 2 October features Humphrey Mubba and Trio Mandeng. The second club night will take place on 20 November during Children’s Rights Week.</p><p><b>Humphrey Mubba</b> is a Tanzanian jazz bassist, composer, and educator based in Finland. Born to parents from Tanzania’s Kilimanjaro region and raised in a multicultural family, his music reflects deep African roots combined with global jazz influences. His sound blends Tanzanian and African rhythms with the freedom of jazz improvisation, creating energetic, movement-driven music where dance and music are inseparable.</p><p>Influenced by artists such as Richard Bona, Etienne Mbappé, and Hugh Masekela, Mubba has toured internationally and performed at festivals including Sauti za Busara and BC International Jazz Festival. His debut album <i>Time</i> is available on all major platforms.</p><p><b>Trio Mandeng's</b> sound embodies the origins of blues, jazz, and Latin music. The style represents the ancient Mandé tradition of West Africa, where the intricate melodies of the kora and balafon harmonise with acoustic percussion rhythms.</p><p>The members of this Malian-Burkinabé-Guinean-Finnish trio are all internationally renowned virtuosos of the genre. The lyrics are served in several West African languages, at times even spiced with a pinch of Finnish, and the tonal language will be understood by all lovers of acoustic live music, regardless of nationality.</p><p>Global Club Nights aims to create a safe, inclusive and creative environment and build bridges between all music lovers and their communities. Global Club Nights has been produced in cooperation with the Sibelius Academy’s Global Music Department and Kanneltalo.</p><p>The events aim to build bridges between all music lovers and their communities. Cultural Centre Kanneltalo produces Global Club Nights (GCN) evenings in cooperation with the Sibelius Academy’s Global Music study programme and the World Music Centre.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68936/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69260",
            "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: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:669/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384981,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T12:13:54.968738Z",
                    "last_modified_time": "2026-06-05T12:13:54.968753Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793583.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384981/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-05T12:13:54.783673Z",
            "last_modified_time": "2026-06-25T07:14:32.885320Z",
            "date_published": null,
            "start_time": "2026-08-25T07:30:00Z",
            "end_time": "2026-08-25T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "BUU-klubben LIVE",
                "sv": "BUU-klubben LIVE",
                "en": "BUU-klubben LIVE"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!",
                "sv": "Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!",
                "en": "Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A953A77C189A5CA2C5E9EF1ECAF63F73/BUU-klubben_LIVE",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A953A77C189A5CA2C5E9EF1ECAF63F73/BUU-klubben_LIVE",
                "en": "http://www.vuotalo.fi/en/events/event/A953A77C189A5CA2C5E9EF1ECAF63F73/BUU-klubben_LIVE"
            },
            "description": {
                "fi": "<p>Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Tervetuloa BUU-klubbenin vauhdikkaaseen esitykseen BUU-klubben LIVE!</p><p>Esitys sisältää lauluja, leikkejä ja yllätyksiä. Se sopii 3–7-vuotiaille lapsille ja kestää noin puoli tuntia. Esityksen jälkeen sinulla on mahdollisuus halutessasi tavata ohjelman juontajat.</p><p>BUU-klubin kesäkiertue alkaa Vuotalosta maanantaina 24.8. klo 18. Tiistaina 25.8., järjestetään kaksi esitystä klo 9 ja 10.30, jotka on tarkoitettu erityisesti päiväkodeille ja esikouluille.</p><p>Esitys on ilmainen, mutta sinun on varattava paikkasi, jotta saat varmasti paikan. Nähdään Vuotalossa!</p><p>Varauslinkit (sivut avautuvat ruotsiksi):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Ilmoittautuminen, maanantai 24.8. klo 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp\">Ilmoittautuminen, tiistai 25.8. klo 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Ilmoittautuminen, tiistai 25.8. klo 10.30</u></a><br>Tapahtumiin voi ilmoittaa päiväkoti- tai esikouluryhmän, tai pienemmänkin kokoonpanon.</p><p>Tapahtuma on ruotsinkielinen, ja suunnattu päiväkoti- ja esikouluikäisille lapsille sekä lapsiperheille.</p><p>Lisää tietoa BUU-klubbenista sekä muut esityspaikat ja -ajat löydät <u><a href=\"https://buu.yle.fi/\">BUU-klubbenin omilta sivuilta (ruotsiksi)</u></a>.</p><p><b>Esittelyteksti ruotsiksi:</b></p><p>Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</p>",
                "sv": "<p>Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</p><p>Bokningslänkar:<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Bokning, måndag 24.8 kl. 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp\">Bokning, tisdag 25.8 kl. 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Bokning, tisdag 25.8 kl. 10.30</u></a><br>Man kan anmäla en daghem- eller förskolegrupp, eller en mindre grupp, till evenemangen.</p><p>Evenemanget hålls på svenska och är riktade till barn i daghems- och förskole-åldern samt barnfamiljer.</p><p>Mer information om BUU-klubben samt övriga spelplatser och tider hittar du <u><a href=\"https://buu.yle.fi/\">på BUU-klubbens egna sidor</u></a>.</p>",
                "en": "<p>Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Welcome to BUU-klubben's action-packed show, BUU-klubben LIVE!</p><p>The show consists of songs, games and surprises. It is suitable for children aged 3–7 and lasts about half an hour. After the show, you’ll have the chance to meet the presenters if you’d like.</p><p>BUU-klubben's summer tour kicks off at Vuosaari House on Monday 24 August at 18.00. Two additional shows are held the following day, Tuesday 25 August, at 9.00 and 10.30, aimed primarily at daycare and pre-school groups.</p><p>The show is free of charge, but you’ll need to book your seat. We hope to see you there!Booking links (in Swedish):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Booking, Monday 24 August 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp\">Booking, tuesday 25 August 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Booking, Tuesday 25 August 10.30</u></a><br>You can register a daycare or preschool group, or a smaller group.</p><p>The event is held in Swedish and is targeted towards daycare and preschool-aged children, and families.</p><p>For more information about BUU-klubben, as well as other performance locations and times, visit <u><a href=\"https://buu.yle.fi/\">BUU-klubben’s website (in Swedish)</u></a>.</p><p><b>About the show in Swedish:</b></p><p><span lang=\"sv\">Välkommen på BUU-klubbens fartfyllda show BUU-klubben live!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</span></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69260/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69259",
            "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: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:669/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384980,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T12:13:54.231985Z",
                    "last_modified_time": "2026-06-05T12:13:54.231999Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793582.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384980/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-05T12:13:54.038146Z",
            "last_modified_time": "2026-06-25T07:14:32.322711Z",
            "date_published": null,
            "start_time": "2026-08-25T06:00:00Z",
            "end_time": "2026-08-25T06:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "BUU-klubben LIVE",
                "sv": "BUU-klubben LIVE",
                "en": "BUU-klubben LIVE"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!",
                "sv": "Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!",
                "en": "Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9A2A674852EAE4B52C307D05BD1508AC/BUU-klubben_LIVE",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/9A2A674852EAE4B52C307D05BD1508AC/BUU-klubben_LIVE",
                "en": "http://www.vuotalo.fi/en/events/event/9A2A674852EAE4B52C307D05BD1508AC/BUU-klubben_LIVE"
            },
            "description": {
                "fi": "<p>Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Tervetuloa BUU-klubbenin vauhdikkaaseen esitykseen BUU-klubben LIVE!</p><p>Esitys sisältää lauluja, leikkejä ja yllätyksiä. Se sopii 3–7-vuotiaille lapsille ja kestää noin puoli tuntia. Esityksen jälkeen sinulla on mahdollisuus halutessasi tavata ohjelman juontajat.</p><p>BUU-klubin kesäkiertue alkaa Vuotalosta maanantaina 24.8. klo 18. Tiistaina 25.8., järjestetään kaksi esitystä klo 9 ja 10.30, jotka on tarkoitettu erityisesti päiväkodeille ja esikouluille.</p><p>Esitys on ilmainen, mutta sinun on varattava paikkasi, jotta saat varmasti paikan. Nähdään Vuotalossa!</p><p>Varauslinkit (sivut avautuvat ruotsiksi):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Ilmoittautuminen, maanantai 24.8. klo 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp\">Ilmoittautuminen, tiistai 25.8. klo 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Ilmoittautuminen, tiistai 25.8. klo 10.30</u></a><br>Tapahtumiin voi ilmoittaa päiväkoti- tai esikouluryhmän, tai pienemmänkin kokoonpanon.</p><p>Tapahtuma on ruotsinkielinen, ja suunnattu päiväkoti- ja esikouluikäisille lapsille sekä lapsiperheille.</p><p>Lisää tietoa BUU-klubbenista sekä muut esityspaikat ja -ajat löydät <u><a href=\"https://buu.yle.fi/\">BUU-klubbenin omilta sivuilta (ruotsiksi)</u></a>.</p><p><b>Esittelyteksti ruotsiksi:</b></p><p>Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</p>",
                "sv": "<p>Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</p><p>Bokningslänkar:<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Bokning, måndag 24.8 kl. 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp\">Bokning, tisdag 25.8 kl. 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Bokning, tisdag 25.8 kl. 10.30</u></a><br>Man kan anmäla en daghem- eller förskolegrupp, eller en mindre grupp, till evenemangen.</p><p>Evenemanget hålls på svenska och är riktade till barn i daghems- och förskole-åldern samt barnfamiljer.</p><p>Mer information om BUU-klubben samt övriga spelplatser och tider hittar du <u><a href=\"https://buu.yle.fi/\">på BUU-klubbens egna sidor</u></a>.</p>",
                "en": "<p>Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Welcome to BUU-klubben's action-packed show, BUU-klubben LIVE!</p><p>The show consists of songs, games and surprises. It is suitable for children aged 3–7 and lasts about half an hour. After the show, you’ll have the chance to meet the presenters if you’d like.</p><p>BUU-klubben's summer tour kicks off at Vuosaari House on Monday 24 August at 18.00. Two additional shows are held the following day, Tuesday 25 August, at 9.00 and 10.30, aimed primarily at daycare and pre-school groups.</p><p>The show is free of charge, but you’ll need to book your seat. We hope to see you there!Booking links (in Swedish):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Booking, Monday 24 August 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp\">Booking, tuesday 25 August 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Booking, Tuesday 25 August 10.30</u></a><br>You can register a daycare or preschool group, or a smaller group.</p><p>The event is held in Swedish and is targeted towards daycare and preschool-aged children, and families.</p><p>For more information about BUU-klubben, as well as other performance locations and times, visit <u><a href=\"https://buu.yle.fi/\">BUU-klubben’s website (in Swedish)</u></a>.</p><p><b>About the show in Swedish:</b></p><p><span lang=\"sv\">Välkommen på BUU-klubbens fartfyllda show BUU-klubben live!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</span></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69259/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpp3k7o2i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2385362,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-25T06:20:32.467241Z",
                    "last_modified_time": "2026-06-25T06:20:32.467255Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/51aa1d9d-f328-41a0-9d2d-9b3680f26782.jpg",
                    "name": "",
                    "cropping": "70,0,1071,1002",
                    "photographer_name": "Lauri Tervonen",
                    "alt_text": "Lauri Tervosen taidenäyttelyn geometrinen teos",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385362/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-25T06:20:39.608695Z",
            "last_modified_time": "2026-06-25T06:20:39.608712Z",
            "date_published": null,
            "start_time": "2026-06-28T07:00:00Z",
            "end_time": "2026-07-17T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lauri Tervonen: Outo järjestelmä (taidenäyttely)",
                "sv": "Lauri Tervonen: ett konstigt system (konstutställning)",
                "en": "Lauri Tervonen: A strange system (art exhibition)"
            },
            "location_extra_info": {
                "fi": "Galleria Anna",
                "sv": "Galleri Anna",
                "en": "Gallery Anna"
            },
            "provider": null,
            "short_description": {
                "fi": "Näyttelyssä tutkin toistuvien rakennuselementtien, lasilevyjen ja geometrian kauneutta valokuvakollaasien ja digitaalisen taiteen avulla. ",
                "sv": "I utställningen utforskar jag skönheten i återkommande byggnadselement, glasrutor och geometri med hjälp av fotokollage och digital konst. ",
                "en": "In this exhibition, I explore the beauty of recurring architectural elements, glass panels, and geometry through photographic collages and digital art. "
            },
            "info_url": null,
            "description": {
                "fi": "Lauri Tervonen: Outo järjestelmä\n<br><p>Näyttelyssä tutkin toistuvien rakennuselementtien, lasilevyjen ja geometrian kauneutta valokuvakollaasien ja digitaalisen taiteen avulla. Se miten toistuvat seinäelementit heijastavat toisiaan ja ihmisiä on minulle päivittäinen ihmetyksen ja ihailun aihe. En voisi kulkea Pasilan tai Länsimetron läpi inspiroitumatta ja piirtämättä jotain uutta. Näyttelyllä haluan osoittaa, kuinka arkiympäristöt, joihin ei välttämättä kiinnitä huomiota, voivat tuoda elämään sisältöä ja toimia ehtymättömänä lähteenä uusille ideoille.</p><p><strong>Näyttelyn nimi: Outo järjestelmä</strong></p><p><strong>Taiteilija: Lauri Tervonen</strong></p><p><strong>Tekniikat: valokuva (digi &amp; filmi), kuvamuokkausohjelmistot, 3D-ohjelmisto (Blender) Ei tekoälyä :)</strong></p><p>Näyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>",
                "sv": "<p>I utställningen utforskar jag skönheten i återkommande byggnadselement, glasrutor och geometri med hjälp av fotokollage och digital konst.&nbsp;</p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>",
                "en": "<p>In this exhibition, I explore the beauty of recurring architectural elements, glass panels, and geometry through photographic collages and digital art.&nbsp;</p><p>The exhibition can be seen during the library opening hours. Welcome!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpp3k7o2i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69213",
            "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: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: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/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/etnosoi-indigenous-voices-vuotalo-21847864/",
                        "sv": "https://www.lippu.fi/event/etnosoi-indigenous-voices-vuotalo-21847864/",
                        "en": "https://www.lippu.fi/event/etnosoi-indigenous-voices-vuotalo-21847864/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20€ / 15€",
                        "sv": "20€ / 15€",
                        "en": "20€ / 15€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384915,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-02T12:13:30.249841Z",
                    "last_modified_time": "2026-06-02T12:13:30.249854Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792326.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384915/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-02T12:13:30.121476Z",
            "last_modified_time": "2026-06-25T06:15:17.933011Z",
            "date_published": null,
            "start_time": "2026-10-30T16:00:00Z",
            "end_time": "2026-10-30T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Third Spaces Collective: INDIGENOUS VOICES (BRA/KOR/FIN/NZL/ITA/AUS/USA) – Etnosoi!-festivaali Vuotalossa",
                "sv": "Third Spaces Collective: INDIGENOUS VOICES (BRA/KOR/FIN/NZL/ITA/AUS/USA) – Etnosoi!-festival i Vuotalo",
                "en": "Third Spaces Collective: INDIGENOUS VOICES (BRA/KOR/FIN/NZL/ITA/AUS/USA) – Etnosoi!-festival at Vuotalo"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Third Spaces Collective tuo yhteen alkuperäiskansojen ja muiden kulttuuritaustojen taiteilijoita.",
                "en": "Third Spaces Collective brings together artists from Indigenous and other diverse cultural backgrounds, with the central aim of developing new forms of intercultural artistic collaboration grounded by Indigenous values and approaches."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/681706867E1C756FD3485DDFBA5301AD/Third_Spaces_Collective_INDIGENOUS_VOICES_BRA_KOR_FIN_NZL_ITA_AUS_USA_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/681706867E1C756FD3485DDFBA5301AD/Third_Spaces_Collective_INDIGENOUS_VOICES_BRA_KOR_FIN_NZL_ITA_AUS_USA_",
                "en": "http://www.vuotalo.fi/en/events/event/681706867E1C756FD3485DDFBA5301AD/Third_Spaces_Collective_INDIGENOUS_VOICES_BRA_KOR_FIN_NZL_ITA_AUS_USA_"
            },
            "description": {
                "fi": "<p>Third Spaces Collective tuo yhteen alkuperäiskansojen ja muiden kulttuuritaustojen taiteilijoita.</p><p>Kollektiivin keskeisenä tavoitteena on kehittää uusia kulttuurienvälisen taiteellisen yhteistyön muotoja, jotka perustuvat alkuperäiskansojen arvoihin ja lähestymistapoihin. Kollektiivi luo uutta musiikkia yhteistyöhön perustuvassa ‘kolmannessa tilassa’ hyödyntäen monimuotoisuutta, erilaisuutta ja alkuperäiskansojen vahvuuksia.</p><p>Tämä projekti on osa Taideyliopiston Sibelius-Akatemian Ääni ja oikeus – Third Spaces -projektia, jota johtaa professori Nathan Riki Thomson ja jota Jane ja Aatos Erkon säätiö sekä Paloheimon Perinnesäätiö tukevat.</p><p>Adriano Itaúna Adewale (Brasilia): berimbau, perkussiot, ääni<br>Sunny Kim (Korea): ääni <br>Hildá Länsman (Saami): joiku, ääni<br>Jerome Kavanagh Poutama (Aotearoa): Māori taonga puoro, ääni<br>Livia Schweizer (Italia): huilut, ääni<br>Nathan Riki Thomson (Australia / Aotearoa): preparoitu kontrabasso, huilut, ääni<br>Daniel Yipininy Wilfred (Yolngu Wägilak -kansa, Arnhem Land, Australia): Yolngu songman, ääni, bilma<br>Pohjois-Amerikan alkuperäiskansojen taiteilija julkistetaan myöhemmin</p><p>Klubi-ilta, A-oikeudet, Café Pokkari huolehtii tarjoilusta.<br>Ovet avataan klo 17.30.<br>Konsertin kesto: noin 2 tuntia, sisältäen väliajan.<br>Liput à 20/15 € @ Lippu.fi tai lippuautomaatilta ovelta.</p>",
                "sv": "<p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30. Konsertens längd: ca 120 min. inkl. paus.<br>Biljetter à 20/15 € via Lippu.fi eller från biljettautomaten vid dörren.</p>",
                "en": "<p>Third Spaces Collective brings together artists from Indigenous and other diverse cultural backgrounds, with the central aim of developing new forms of intercultural artistic collaboration grounded by Indigenous values and approaches.</p><p>Drawing on diversity, difference, and indigeneity as core strengths, the collective creates new music in a collaborative third space.</p><p>This project is part of the University of the Arts Helsinki Sibelius Academy’s Voice and Justice Third Spaces project, led by Professor Nathan Riki Thomson and kindly supported by the Jane and Aatos Erkko Foundation and Paloheimo Foundation.</p><p>Adriano Itaúna Adewale (Brazil): berimbau, percussion, voice<br>Sunny Kim (Korea): voice <br>Hildá Länsman (Sápmi): Sámi joik, voice<br>Jerome Kavanagh Poutama (Aotearoa): Māori taonga puoro, voice<br>Livia Schweizer (Italy): flutes, voice<br>Nathan Riki Thomson (Australia / Aotearoa): prepared double bass, flutes, voice<br>Daniel Yipininy Wilfred (Yolngu Wägilak people, Arnhem Land, Australia): Yolngu songman, voice, bilma<br>Indigenous North American artist to be announced</p><p>Club night, Café Pokkari takes care of the refreshments, starting from 5:30 PM.<br>Duration: approx. 2 hours, including intermission.<br>Tickets à 20/15 € @ Lippu.fi or from the ticket machine at the door.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69213/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69425",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/proyeccione/proyecciones-esitysilta-4183560/",
                        "sv": "https://www.lippu.fi/artist/proyeccione/proyecciones-esitysilta-4183560/",
                        "en": "https://www.lippu.fi/artist/proyeccione/proyecciones-esitysilta-4183560/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385358,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-25T06:15:14.012756Z",
                    "last_modified_time": "2026-06-25T06:15:14.012779Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794406.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385358/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-25T06:15:13.868392Z",
            "last_modified_time": "2026-06-25T06:15:14.188136Z",
            "date_published": null,
            "start_time": "2026-10-03T15:00:00Z",
            "end_time": "2026-10-03T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Proyecciones: flamencon ilta",
                "sv": "Proyecciones: flamencon ilta",
                "en": "Proyecciones: flamencon ilta"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Esitysilta kokoaa näyttämölle nuorten flamencotanssijoiden ja kokeneiden konkareiden sooloja sekä otteita uuden sukupolven nykyflamencoteoksesta Criaturas."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E68493436BDBD61E06F70EEC3FA175DA/Proyecciones_flamencon_ilta",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E68493436BDBD61E06F70EEC3FA175DA/Proyecciones_flamencon_ilta",
                "en": "http://www.kanneltalo.fi/en/events/event/E68493436BDBD61E06F70EEC3FA175DA/Proyecciones_flamencon_ilta"
            },
            "description": {
                "fi": "<p>Esitysilta kokoaa näyttämölle nuorten flamencotanssijoiden ja kokeneiden konkareiden sooloja sekä otteita uuden sukupolven nykyflamencoteoksesta Criaturas.</p><p>Proyecciones suuntaa flamencon perinteestä kohti tulevaa.</p><p><b>Sooloja nuorilta ja kokeneilta konkareilta</b><br> <br>Flamencon perinne heijastuu soolojen sikermässä vivahteikkaana ja värikylläisenä. Lavalla nähdään nuoria flamencotanssijoita, joista monet debytoivat solisteina, sekä kokeneempia tanssijoita heidän rinnallaan. Soolot rakentuvat perinteisen flamencon elementeistä erilaisilla mausteilla höystettyinä. Tanssijoiden rinnalla flamencon lajeja tulkitsemassa on liuta taitavia muusikoita.<br> <br>Ilta on omistettu tanssitaiteilija Laura Rintamäelle – rakastetulle ja arvostetulle Suomen flamencon vahvalle vaikuttajalle ja puuhanaiselle. Osa sooloista on rakennettu Rintamäen ja Laura Vilhosen yhdessä käynnistämässä sooloprojektissa, jossa tavoitteellisesti työskentelevät tanssijat pääsivät työstämään sooloja ja haastamaan itsensä eri koreografien johdolla. Nyt Vilhonen viimeistelee projektin ja soolot saavat ensiesityksensä yleisön edessä.</p><p>Osa sooloista on flamencotanssijoiden Minna Saalpo ja Camila Laine käsialaa.<br> <br><b>Tanssisolistit</b>: Hilla Hanhela, Laura Lindén, Jonna Pulkkinen, Jenni Rahunen, Minna Saalpo, Ester Siltavuori ja Nicole Viontsek<br><b>Musiikki</b>: Helena Kumakari, Vesa Jaakola, Ilona Kallio, Pauliina Kauppila, Juho Krouvi, Jouni Meriläinen ja Niina Putkonen<br><b>Koreografiat</b>: Camila Laine, Minna Saalpo, Laura Rintamäki ja Laura Vilhonen<br> <br> <br><b>Marja Rautakorpi & Adelante: otteita teoksesta Criaturas</b><br> <br>Soolojen rinnalla luvassa on otteita nykyflamencoteoksesta Criaturas. Kyseessä on Marja Rautakorven ja nuorten flamencoryhmä Adelanten yhdessä rakentama teos, joka ihmettelee ihmistä otuksena maailman kiihtyvässä sykkeessä. Teos kysyy, miksi aloimme ajaa yksilöitä erilleen ajassa, jossa tarvitsemme toisiamme. Musiikin teokseen on säveltänyt äänisuunnittelija Juho Suominen. <br> <br>Adelante on Marja Rautakorven kokoama uuden sukupolven flamencoryhmä, jollaista on flamencon saralla kaivattu pitkään. Ryhmässä tanssii yhdeksän 15–35-vuotiasta edistynyttä flamencotanssijaa erilaisista taustoista. Ryhmä ja teos syntyivät Rautakorven luotsaamassa vuoden mittaisessa pilottiprojektissa, joka kokosi nuoria flamencon tekijöitä yhteen, tarjosi heille tavoitteellista toimintaa ja tuki tanssijoiden kasvua kohti taiteilijuutta. <br> <br><b>Koreografia</b>: Marja Rautakorpi & Adelante<br><b>Tanssi</b>: Hilla Hanhela, Iida Kopra, Janna Lappalainen, Laura Lindén, Sini Mannerhovi, Nora Mekkid, Roosa Pietilä ja Milla-Maija Saari<br><b>Musiikin sävellys ja äänisuunnittelu</b>: Juho Suominen</p><p>Kesto: 2 t, sisältäen väliajan</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69425/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69206",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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/klubb-ankdamm-nomads-festival-vuotalo-21779390/",
                        "sv": "https://www.lippu.fi/event/klubb-ankdamm-nomads-festival-vuotalo-21779390/",
                        "en": "https://www.lippu.fi/event/klubb-ankdamm-nomads-festival-vuotalo-21779390/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24 / 18 €",
                        "sv": "24 / 18 €",
                        "en": "24 / 18 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384913,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-02T11:13:37.391550Z",
                    "last_modified_time": "2026-06-02T11:13:37.391570Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792324.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384913/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-02T11:13:37.257857Z",
            "last_modified_time": "2026-06-25T06:15:13.443116Z",
            "date_published": null,
            "start_time": "2026-10-02T15:00:00Z",
            "end_time": "2026-10-02T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Matteus Blad: LUNGOR – Nomads Festival Vuotalossa",
                "sv": "Matteus Blad: LUNGOR – Nomads Festival i Vuotalo",
                "en": "Matteus Blad: LUNGOR – Nomads Festival at Vuotalo"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lauluja ja runollisia monologeja ajastamme, haavoittuvuudestamme ja kyvystämme jatkaa hengittämistä.",
                "sv": "LUNGOR är ett sceniskt verk i tre delar, bestående av tolv sånger och poetiska monologer där musik och text vävs samman till en sammanhängande berättelse om vår tid, vår sårbarhet och vår förmåga att fortsätta andas – även när världen skälver.",
                "en": "LUNGOR (‘lungs’) is a staged work in three parts featuring twelve songs and poetic monologues about our time, our vulnerability, and our ability to keep breathing."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/373A730B9DC19C0260CC108D3549C5D3/Matteus_Blad_LUNGOR",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/373A730B9DC19C0260CC108D3549C5D3/Matteus_Blad_LUNGOR",
                "en": "http://www.vuotalo.fi/en/events/event/373A730B9DC19C0260CC108D3549C5D3/Matteus_Blad_LUNGOR"
            },
            "description": {
                "fi": "<p>Lauluja ja runollisia monologeja ajastamme, haavoittuvuudestamme ja kyvystämme jatkaa hengittämistä.</p><p>LUNGOR (“keuhkot”) on näyttämöllinen teos kolmessa osassa, joka sisältää kaksitoista laulua sekä runollisia monologeja. Kuoron, jousien, huilun, pianon ja kitaran kanssa henkilökohtainen ja yhteiskunnallinen kietoutuvat yhteen musiikilliseksi ja runolliseksi kokonaisuudeksi, joka käsittelee rakkautta, ihmisarvoa ja elämän perimmäisiä kysymyksiä.</p><p>Albumi <i>LUNGOR</i> julkaistiin 15. marraskuuta 2025 sekä laulurunokokoelmana että musiikkialbumina.<br>Teksti ja musiikki: Matteus Blad<br> Sovitus: Lotta Ahlbeck & Matteus Blad</p><p>Lavalla:<br>Matteus Blad (laulu/kitara)<br>Katja Ceder (huilu)<br>Lotta Heiskanen (viulu)<br>Sara Krogius (alttoviulu)<br>Susanna Syrjäläinen (sello)<br>Vilhelm Karlsson (kontrabasso)<br>Martin Segerstråle (piano)</p><p>Kuoro:<br>Sopraano: Maria Rosina Jaakkola, Anita Kyönsaari, Anne-Maria Peitsalo, Laura Saloniemi<br>Altto: Saara Ansamaa, Aino Jalonen, Suvi Nevanperä, Päivi Niiranen, Anni Rissanen<br>Tenori: Kai Grass, Asser Kaksonen, Kalervo Mattila, Niko Salmela <br>Basso: Tapio Miettinen, Timo Saloniemi, Carl-Johan Sandström<br>Kuoronjohtaja: Juuso Koski</p><p>Kesto: 60 minuuttia<br>Liput: 24/18 € osoitteesta Lippu.fi tai lippuautomaatilta ovelta.</p>",
                "sv": "<p>LUNGOR är ett sceniskt verk i tre delar, bestående av tolv sånger och poetiska monologer där musik och text vävs samman till en sammanhängande berättelse om vår tid, vår sårbarhet och vår förmåga att fortsätta andas – även när världen skälver.</p><p>Genom växlingen mellan lyriska sånger och samtida, reflekterande monologer rör sig verket från det samhälleliga till det djupt personliga: från maktstrukturer och mänsklig värdighet, till kärlekens sårbarhet, vidare till livets yttersta frågor om död, minnen och försoning.</p><p>Musiken rör sig mellan det intima och det kollektiva. De poetiskt skrivna sångerna möter körklang och vackert vävda arrangemang för sång/gitarr, flöjt, violin, viola, cello, kontrabas och piano, framförda av framstående finländska musiker.</p><p>LUNGOR är en livsbejakande reflektion över brustenhet och mod. Ett verk om det sköra som gör oss mänskliga – och om kraften i att, oavsett vad som händer, fortsätta andas.</p><p><i>LUNGOR</i> var nominerat till Årets Album i kategorin Visa, vid Manifestgalan, i Sverige.</p><p>Text & musik: Matteus Blad<br> Arrangemang: Lotta Ahlbeck & Matteus Blad<br> <br>På scenen:<br>Matteus Blad (sång/gitarr)<br> Katja Ceder (flöjt)<br>Lotta Heiskanen (violin)<br>Sara Krogius (altviolin)<br>Susanna Syrjäläinen (cello)<br>Vilhelm Karlsson (kontrabas)<br>Martin Segerstråle (piano)<br> <br>Korister:<br>Sopran: Maria Rosina Jaakkola, Anita Kyönsaari, Anne-Maria Peitsalo, Laura Saloniemi<br>Alt: Saara Ansamaa, Aino Jalonen, Suvi Nevanperä, Päivi Niiranen, Anni Rissanen<br>Tenor: Kai Grass, Asser Kaksonen, Kalervo Mattila, Niko Salmela <br>Bas: Tapio Miettinen, Timo Saloniemi, Carl-Johan Sandström<br>Körledning: Juuso Koski</p><p>Längd: 60 minuter<br>Biljetter: 24/18 € @ Lippu.fi eller från biljettautomaten vid dörren.</p>",
                "en": "<p>LUNGOR (‘lungs’) is a staged work in three parts featuring twelve songs and poetic monologues about our time, our vulnerability, and our ability to keep breathing.</p><p>With choir, strings, flute, piano, and guitar, the personal and the societal are woven together into a musical and poetic whole about love, dignity, and the ultimate questions of life. The album <i>LUNGOR</i> was released on 15 November 2025 and is available both as a collection of song poems and as a music album.</p><p>Text & music: Matteus Blad<br>Arrangement: Lotta Ahlbeck & Matteus Blad<br> <br>On stage:<br>Matteus Blad (vocals/guitar)<br>Katja Ceder (flute)<br>Lotta Heiskanen (violin)<br>Sara Krogius (viola)<br>Susanna Syrjäläinen (cello)<br>Vilhelm Karlsson (double bass)<br>Martin Segerstråle (piano)</p><p>Choir:<br>Soprano: Maria Rosina Jaakkola, Anita Kyönsaari, Anne-Maria Peitsalo, Laura Saloniemi <br>Alto: Saara Ansamaa, Aino Jalonen, Suvi Nevanperä, Päivi Niiranen, Anni Rissanen <br>Tenor: Kai Grass, Asser Kaksonen, Kalervo Mattila, Niko Salmela  <br>Bass: Tapio Miettinen, Timo Saloniemi, Carl-Johan Sandström <br>Choir leader: Juuso Koski<br> <br>Duration: 60 minutes<br>Tickets: 24/18 € @ Lippu.fi or from the ticket machine at the door.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69206/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69258",
            "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: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:669/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384979,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T12:13:53.591444Z",
                    "last_modified_time": "2026-06-05T12:13:53.591461Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793581.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384979/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-05T11:13:42.128455Z",
            "last_modified_time": "2026-06-25T06:14:58.921142Z",
            "date_published": null,
            "start_time": "2026-08-24T15:00:00Z",
            "end_time": "2026-08-24T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "BUU-klubben LIVE",
                "sv": "BUU-klubben LIVE",
                "en": "BUU-klubben LIVE"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!",
                "sv": "Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!",
                "en": "Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/84E3DECCFA849783702A67C2E0CC3648/BUU-klubben_LIVE",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/84E3DECCFA849783702A67C2E0CC3648/BUU-klubben_LIVE",
                "en": "http://www.vuotalo.fi/en/events/event/84E3DECCFA849783702A67C2E0CC3648/BUU-klubben_LIVE"
            },
            "description": {
                "fi": "<p>Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Tervetuloa BUU-klubbenin vauhdikkaaseen esitykseen BUU-klubben LIVE!</p><p>Esitys sisältää lauluja, leikkejä ja yllätyksiä. Se sopii 3–7-vuotiaille lapsille ja kestää noin puoli tuntia. Esityksen jälkeen sinulla on mahdollisuus halutessasi tavata ohjelman juontajat.</p><p>BUU-klubin kesäkiertue alkaa Vuotalosta maanantaina 24.8. klo 18. Tiistaina 25.8., järjestetään kaksi esitystä klo 9 ja 10.30, jotka on tarkoitettu erityisesti päiväkodeille ja esikouluille.</p><p>Esitys on ilmainen, mutta sinun on varattava paikkasi, jotta saat varmasti paikan. Nähdään Vuotalossa!</p><p>Varauslinkit (sivut avautuvat ruotsiksi):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Ilmoittautuminen, maanantai 24.8. klo 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp  \">Ilmoittautuminen, tiistai 25.8. klo 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Ilmoittautuminen, tiistai 25.8. klo 10.30</u></a><br>Tapahtumiin voi ilmoittaa päiväkoti- tai esikouluryhmän, tai pienemmänkin kokoonpanon.</p><p>Tapahtuma on ruotsinkielinen, ja suunnattu päiväkoti- ja esikouluikäisille lapsille sekä lapsiperheille.</p><p>Lisää tietoa BUU-klubbenista sekä muut esityspaikat ja -ajat löydät <u><a href=\"https://buu.yle.fi/\">BUU-klubbenin omilta sivuilta (ruotsiksi)</u></a>.</p><p><b>Esittelyteksti ruotsiksi:</b></p><p>Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</p>",
                "sv": "<p>Välkommen på BUU-klubbens fartfyllda show BUU-klubben LIVE!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</p><p>Bokningslänkar:<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Bokning, måndag 24.8 kl. 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp  \">Bokning, tisdag 25.8 kl. 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Bokning, tisdag 25.8 kl. 10.30</u></a><br>Man kan anmäla en daghem- eller förskolegrupp, eller en mindre grupp, till evenemangen.</p><p>Evenemanget hålls på svenska och är riktade till barn i daghems- och förskole-åldern samt barnfamiljer.</p><p>Mer information om BUU-klubben samt övriga spelplatser och tider hittar du <u><a href=\"https://buu.yle.fi/\">på BUU-klubbens egna sidor</u></a>.</p>",
                "en": "<p>Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Welcome to BUU-klubben's action-packed show, BUU-klubben LIVE!</p><p>The show consists of songs, games and surprises. It is suitable for children aged 3–7 and lasts about half an hour. After the show, you’ll have the chance to meet the presenters if you’d like.</p><p>BUU-klubben's summer tour kicks off at Vuosaari House on Monday 24 August at 18.00. Two additional shows are held the following day, Tuesday 25 August, at 9.00 and 10.30, aimed primarily at daycare and pre-school groups.</p><p>The show is free of charge, but you’ll need to book your seat. We hope to see you there!Booking links (in Swedish):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Booking, Monday 24 August 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp  \">Booking, tuesday 25 August 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Booking, Tuesday 25 August 10.30</u></a><br>You can register a daycare or preschool group, or a smaller group.</p><p>The event is held in Swedish and is targeted towards daycare and preschool-aged children, and families.</p><p>For more information about BUU-klubben, as well as other performance locations and times, visit <u><a href=\"https://buu.yle.fi/\">BUU-klubben’s website (in Swedish)</u></a>.</p><p><b>About the show in Swedish:</b></p><p><span lang=\"sv\">Välkommen på BUU-klubbens fartfyllda show BUU-klubben live!</p><p>Showen innehåller sånger, lekar och överraskningar. Den lämpar sig för barn i åldern 3–7 år och är cirka en halvtimme lång. Efter showen har du chans att träffa programledarna om du vill.</p><p>BUU-klubbens sommarturné startar i Nordhuset måndagen den 24.8 kl. 18. Dessutom ges två shower också följande dag, tisdagen den 25.8 kl. 9 och 10.30, främst med tanke på daghem och förskolor.</p><p>Showen är gratis, men du behöver boka din plats för att vara säker på att få plats. Hoppas vi ses!</span></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69258/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpmvtzu6y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2385158,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T09:58:19.376289Z",
                    "last_modified_time": "2026-06-15T09:58:19.376304Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/13eeb0bd-2b48-4cb0-a705-070484c295e1.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Lukukoirien omistajat",
                    "alt_text": "lukukoirat Nekku, Pätkis, Lloyd, Osku",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385158/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-15T10:11:14.209524Z",
            "last_modified_time": "2026-06-25T05:46:17.311462Z",
            "date_published": null,
            "start_time": "2026-08-10T15:00:00Z",
            "end_time": "2026-12-21T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lukukoira tavattavissa",
                "sv": "Läshund finns tillgänglig",
                "en": "Reading dog available"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!",
                "sv": "Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!",
                "en": "Hello reader! On Mondays in the library you can read to a reading dog!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle klo 18-19!</p><p>Lukukoirina Kauklahden kirjastolla toimivat Nekku ja Pätkis, Lloyd sekä Osku.</p><p><br></p><p>Lukukoirien aikataulu:</p><p>(huomioithan että koirien keskinäiseen aikatauluun voi tulla muutoksia).</p><p>10.8. Nekku &amp; Pätkis, Osku</p><p>17.8. Osku</p><p>24.8.&nbsp;Nekku &amp; Pätkis</p><p>31.8.&nbsp;Nekku &amp; Pätkis</p><p>7.9.&nbsp;Nekku &amp; Pätkis</p><p>14.9. Lloyd</p><p>21.9. Osku</p><p>28.9. Nekku &amp; Pätkis</p><p>5.10. Nekku &amp; Pätkis</p><p>12.10. Lloyd (syysloma vko)</p><p>19.10. Osku</p><p>16.10. Nekku &amp; Pätkis</p><p>2.11. Nekku &amp; Pätkis</p><p>9.11. Lloyd</p><p>16.11. Nekku &amp; Pätkis</p><p>23.11. Osku</p><p>30.11. Nekku &amp; Pätkis</p><p>7.12. Lloyd</p><p>14.12. Osku</p><p>21.12. Kauklahtiseuran elävä joulukalenteri kaikki koirat paikalla.</p><p><br></p>",
                "sv": "<p>Hej, du som övar på att läsa! På måndagar kan du läsa för en läsande hund på biblioteket kl. 18-19!</p><p>De läsande hundarna på Kauklahden bibliotek är Nekku, Pätkis, Lloyd och Osku.</p><p><br></p><p>Schema för de läsande hundarna:&nbsp;</p><p>(Observera att det kan bli ändringar i hundarnas schema).</p><p>10.8. Nekku &amp; Pätkis, Osku</p><p>17.8. Osku</p><p>24.8.&nbsp;Nekku &amp; Pätkis</p><p>31.8.&nbsp;Nekku &amp; Pätkis</p><p>7.9.&nbsp;Nekku &amp; Pätkis</p><p>14.9. Lloyd</p><p>21.9. Osku</p><p>28.9. Nekku &amp; Pätkis</p><p>5.10. Nekku &amp; Pätkis</p><p>12.10. Lloyd (höstlovsvecka)</p><p>19.10. Osku</p><p>16.10. Nekku &amp; Pätkis</p><p>2.11. Nekku &amp; Pätkis</p><p>9.11. Lloyd</p><p>16.11. Nekku &amp; Pätkis</p><p>23.11. Osku</p><p>30.11. Nekku &amp; Pätkis</p><p>7.12. Lloyd</p><p>14.12. Osku</p><p>21.12.&nbsp;Kauklahti föreningens levande julkalender, alla hundar på plats.&nbsp;</p>",
                "en": "<p>Hello, aspiring readers! On Mondays at the library, you can read to a reading dog, time: 18-19!</p><p>The reading dogs at the Kauklahti Library are Nekku, Pätkis, Lloyd, and Osku.</p><p><br></p><p>Reading dog schedule:&nbsp;</p><p>(Please note that the dogs’ schedule is subject to change.)</p><p>&nbsp;10.8. Nekku &amp; Pätkis, Osku</p><p>&nbsp;17.8. Osku</p><p>&nbsp;24.8. Nekku &amp; Pätkis</p><p>&nbsp;31.8. Nekku &amp; Pätkis</p><p>&nbsp;&nbsp;7.9. Nekku &amp; Pätkis</p><p>&nbsp;14.9. Lloyd</p><p>&nbsp;21.9. Osku</p><p>&nbsp;28.9. Nekku &amp; Pätkis</p><p>&nbsp;5.10. Nekku &amp; Pätkis</p><p>12.10. Lloyd (fall break week)</p><p>19.10. Osku</p><p>16.10. Nekku &amp; Pätkis</p><p>&nbsp;2.11. Nekku &amp; Pätkis</p><p>&nbsp;9.11. Lloyd</p><p>16.11. Nekku &amp; Pätkis</p><p>23.11. Osku</p><p>30.11. Nekku &amp; Pätkis</p><p>&nbsp;7.12.&nbsp;Lloyd</p><p>14.12. Osku</p><p>21.12. Kauklahti Association’s live Christmas calendar—all dogs present.&nbsp;</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpmvtzu6y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69507",
            "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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385356,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-24T13:13:33.208537Z",
                    "last_modified_time": "2026-06-24T13:13:33.208553Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792340.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385356/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-24T13:13:33.115181Z",
            "last_modified_time": "2026-06-24T13:13:33.336132Z",
            "date_published": null,
            "start_time": "2026-11-25T07:00:00Z",
            "end_time": "2026-11-25T08:25:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Alakoulukino: Tonttu (7) – Elokuvanäytös kouluryhmille",
                "sv": "Alakoulukino: Tonttu (7)",
                "en": "Alakoulukino: Tonttu (7)"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3D1571122AC144DE4ED9BC0C64DC969D/Alakoulukino_Tonttu_7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/3D1571122AC144DE4ED9BC0C64DC969D/Alakoulukino_Tonttu_7_",
                "en": "http://www.vuotalo.fi/en/events/event/3D1571122AC144DE4ED9BC0C64DC969D/Alakoulukino_Tonttu_7_"
            },
            "description": {
                "fi": "<p>Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta.</p><p>Lumi ja Talvi ovat olleet erottamattomat koko elämänsä ajan, kunnes kohtalo yllättäen ajaa heidät erilleen. Lumi päätyy taianomaiseen tonttumaahan, jossa tontut valmistavat joululahjat kaikille maailman lapsille. Alkaa seikkailu, joka vaatii rohkeutta, luottamusta ja kekseliäisyyttä.</p><p>Tontut ovat aluksi epäluuloisia tyhjästä tupsahtavaa ihmislasta kohtaan, mutta tonttulapsi Pyry ottaa Lumin mielenkiinnolla vastaan. Pyry on kiinnostunut uusista seikkailuista ja ystävyys Lumin kanssa näyttää mahdollisuudelta jännittävään matkaan. Talvinen retki tonttujen taianomaisessa maailmassa on täynnä yllätyksiä ja joulun ihmeitä. (Teksti: Cinemanse Oy)</p><p><u><a href=\"https://www.koulukino.fi/oppimateriaalit/tonttu/\">Löydät elokuvaan liittyvän oppimateriaalipaketin Koulukinosta</u></a>. Oppimateriaalin teemoja: fantasiaelokuva, ystävyys, suru, adoptio, tontut, tonttuhistoria, taidetta lumesta.</p><p><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agpphhb33u\">Ilmoita ryhmäsi mukaan osoitteessa kultus.hel.fi</u></a>.</p><p>Julkaisuvuosi: 2025<br>Ikäraja: 7<br>Kesto: 81 min.<br>Genret: fantasiaelokuva, lastenelokuva, seikkailuelokuva<br>Ohjaus: Joonas Berghäll, Hannes Vartiainen</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69507/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69015",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?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/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi//artist/iiro-rantala/iiro-rantala-lotta-kuusisto-vuosirenkaita-vahvatunnelmainen-esitys-elaemaenmenosta-4150714/",
                        "sv": "https://www.lippu.fi//artist/iiro-rantala/iiro-rantala-lotta-kuusisto-vuosirenkaita-vahvatunnelmainen-esitys-elaemaenmenosta-4150714/",
                        "en": "https://www.lippu.fi//artist/iiro-rantala/iiro-rantala-lotta-kuusisto-vuosirenkaita-vahvatunnelmainen-esitys-elaemaenmenosta-4150714/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15€ / 12€",
                        "sv": "15€ / 12€",
                        "en": "15€ / 12€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385355,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-24T13:13:28.240183Z",
                    "last_modified_time": "2026-06-24T13:13:28.240198Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792406.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385355/?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": "2026-06-24T13:13:28.110270Z",
            "last_modified_time": "2026-06-24T13:13:28.439459Z",
            "date_published": null,
            "start_time": "2026-10-01T11:00:00Z",
            "end_time": "2026-10-01T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Iiro Rantala & Lotta Kuusisto: Vuosirenkaita – Vahvatunnelmainen esitys elämänmenosta",
                "sv": "Iiro Rantala & Lotta Kuusisto: Vuosirenkaita",
                "en": "Iiro Rantala & Lotta Kuusisto: Vuosirenkaita"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Pianisti Iiro Rantalan ja näyttelijä Lotta Kuusiston vuosirenkaat ovat taipuvia tarinoita elämänkaaresta."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FC270F28D1ECE2DCF6885F266B43147D/Iiro_Rantala_Lotta_Kuusisto_Vuosirenkaita",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FC270F28D1ECE2DCF6885F266B43147D/Iiro_Rantala_Lotta_Kuusisto_Vuosirenkaita",
                "en": "http://www.kanneltalo.fi/en/events/event/FC270F28D1ECE2DCF6885F266B43147D/Iiro_Rantala_Lotta_Kuusisto_Vuosirenkaita"
            },
            "description": {
                "fi": "<p>Pianisti Iiro Rantalan ja näyttelijä Lotta Kuusiston vuosirenkaat ovat taipuvia tarinoita elämänkaaresta.</p><p>Ne ovat voimakkaan kierteisiä tarinoita ihmisenä olemisesta, tulkintoja siitä mihin kuulumme ja miten olemme kuulumattomia. Toiveita siitä, että kaikki ei olisi epämääräistä ja vaihtelevaa, ja että voisi olla kuin kataja: ei taipumusta halkeiluun eikä kieroutumiseen.</p><p>Taiteilijapari Rantala-Kuusiston luomat vuosirenkaat muodostuvat musiikin sydänpuusta ja tekstien valosta.</p><p>Iiro Rantala, flyygeli<br>Lotta Kuusisto, kertoja</p><p>Tekstit: Kari Hotakainen, Timo Parvela, Elo Viding, Pablo Neruda, Claes Andersson ja Lotta<br>Kuusisto.<br>Säveltäjät: Egberto Gismonti, Unto Mononen, Thelonius Monk, Paul Desmond, Duke Ellington<br>ja Iiro Rantala.</p><p>Kesto 1 t</p><p>Esiintyjien verkkosivut ja some-tilit<br>https://iirorantala.fi/<br>https://lottakuusisto.fi/<br>IG:<br>@iirotheliverace<br>@sixsto<br>FB: @iiro.rantala.1</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69015/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69505",
            "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/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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385351,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-24T12:14:49.377493Z",
                    "last_modified_time": "2026-06-24T12:14:49.377508Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792341.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-06-24T12:14:49.279149Z",
            "last_modified_time": "2026-06-24T12:14:49.522450Z",
            "date_published": null,
            "start_time": "2026-10-28T07:00:00Z",
            "end_time": "2026-10-28T08:50:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Yläkoulukino: Jossain on valo joka ei sammu (12) – Elokuvanäytös kouluryhmille",
                "sv": "Yläkoulukino: Jossain on valo joka ei sammu (12)",
                "en": "Yläkoulukino: Jossain on valo joka ei sammu (12)"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "“Kui moni raumalainen on tehny levyn, mikä jonai päivänä lähetetään avaruuteen?”"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8CB11A999774B3F4BA2BD87F1CD828D3/Ylakoulukino_Jossain_on_valo_joka_ei_sammu_12_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8CB11A999774B3F4BA2BD87F1CD828D3/Ylakoulukino_Jossain_on_valo_joka_ei_sammu_12_",
                "en": "http://www.vuotalo.fi/en/events/event/8CB11A999774B3F4BA2BD87F1CD828D3/Ylakoulukino_Jossain_on_valo_joka_ei_sammu_12_"
            },
            "description": {
                "fi": "<p>“Kui moni raumalainen on tehny levyn, mikä jonai päivänä lähetetään avaruuteen?”</p><p>Romahduksen kokenut ammattihuilisti Pauli (Samuel Kujala) palaa lapsuudenkotiinsa Raumalle. Hän tapaa vanhan koulukaverinsa Iiriksen (Anna Rosaliina Kauno), joka sinnikkäästi taivuttelee Paulin mukaansa tekemään outoa musiikkia, jota kukaan ei tiennyt haluavansa kuulla. Aiemmin virheettömyyteen pyrkinyt Pauli alkaa löytää lohtua kummallisista äänistä ja omalaatuisesta ystävyydestä.</p><p>Lauri-Matti Parppein Jossain on valo joka ei sammu on anteeksipyytelemätön esikoisohjaus ja vilpitön rakkaudentunnustus kotikaupungilleen Raumalle. Elokuva voitti yhteensä seitsemän eri Jussi-palkintoa. Elokuva putsasi pöydän muun muassa kategorioissa vuoden elokuva, vuoden pääosa (Samuel Kujala), vuoden käsikirjoitus (Lauri-Matti Parppei) ja vuoden läpimurtorooli (Anna Rosaliina Kauno).</p><p><u><a href=\"https://www.koulukino.fi/oppimateriaalit/jossain-on-valo-joka-ei-sammu/\">Elokuvaan liittyvät oppimateriaalit löydät Koulukinosta</u></a>. Oppimateriaali on suunnattu lukioon ja toiselle asteelle. Oppimateriaalin teemoja: kokeellinen musiikki, äänitaide, taide, taiteilijuus, ystävyys, itsetuhoisuus, voimavarat.</p><p><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agppi75prq\">Ilmoita ryhmäsi mukaan osoitteessa kultus.hel.fi</u></a>.</p><p>Valmistumisvuosi: 2025<br>Ikäraja: 12<br>Pituus: 110 min.<br>Ohjaus: Lauri-Matti Parppei<br>Käsikirjoitus: Lauri-Matti Parppei<br>Näyttelijät: Samuel Kujala, Anna Kauno, Camille Auer, Kaisa Koskenkorva, Mari Rantasila, Jarkko Pajunen</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69505/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69499",
            "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/kulke:752/?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:p28435/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385350,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-24T12:14:47.125037Z",
                    "last_modified_time": "2026-06-24T12:14:47.125053Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795697.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385350/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-24T12:14:47.026067Z",
            "last_modified_time": "2026-06-24T12:14:47.290376Z",
            "date_published": null,
            "start_time": "2026-10-13T07:00:00Z",
            "end_time": "2026-10-13T08:20:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Syyslomaleffa: Muumi ja punainen pyrstötähti (3)",
                "sv": "Syyslomaleffa: Muumi ja punainen pyrstötähti (3)",
                "en": "Syyslomaleffa: Muumi ja punainen pyrstötähti (3)"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule Vuotaloon elokuviin syyslomalla!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8FF85FC2931C8409947DC910F5458AFB/Syyslomaleffa_Muumi_ja_punainen_pyrstotahti_3_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8FF85FC2931C8409947DC910F5458AFB/Syyslomaleffa_Muumi_ja_punainen_pyrstotahti_3_",
                "en": "http://www.vuotalo.fi/en/events/event/8FF85FC2931C8409947DC910F5458AFB/Syyslomaleffa_Muumi_ja_punainen_pyrstotahti_3_"
            },
            "description": {
                "fi": "<p>Tule Vuotaloon elokuviin syyslomalla!</p><p>Outo pöly peittää Muumilaakson ja Piisamirotta ennustaa maailmanloppua. Mikä on tämä uhka avaruudesta?</p><p>Muumipeikko, Nuuskamuikkunen ja Nipsu rakentavat Muumipapan avustuksella lautan ja lähtevät selvittämään asiaa Yksinäisille vuorille. Ehkäpä tähtitornin viisaat professorit osaavat kertoa, mistä oikein on kyse.</p><p>Tielle osuvat paitsi vanhat ystävät Niiskuneiti, Niisku ja Hemuli, mutta myös uudet, kummalliset otukset ja vaarat. Kesäinen lauttaretki muuttuu jännittäväksi ja katsojatkin tempaistaan mukaan seikkailuun elokuvassa <i>Muumi ja punainen pyrstötähti</i>.</p><p>Osa Vuosalista on varattu ryhmille, mutta myös syyslomaa viettävät koululaiset ja aikuiset ovat tervetulleita näytökseen!</p><p>Kesto: 77 min<br>Suositusikä: yli 3-vuotiaille<br>Valmistusvuosi: 2010<br>Kieli: suomi<br>Vapaa pääsy</p><p><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agpprm6jcq\">Ryhmille ilmoittautuminen osoitteessa kultus.hel.fi</u></a>.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69499/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69498",
            "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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385349,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-24T12:14:46.367374Z",
                    "last_modified_time": "2026-06-24T12:14:46.367397Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795701.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385349/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-24T12:14:46.263107Z",
            "last_modified_time": "2026-06-24T12:14:46.506819Z",
            "date_published": null,
            "start_time": "2026-10-07T07:30:00Z",
            "end_time": "2026-10-07T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Skidikino: Muumien maailma – Kuningasrubiini ja muita muumiseikkailuja!",
                "sv": "Skidikino: Mumintrollen",
                "en": "Skidikino: The Moomins"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Puolen tunnin elokuvahetki suuressa Vuosalissa sopii kaikkein pienimmille! Elokuvahetkessä seurataan muumien sanattomia seikkailuja.",
                "sv": "Skidikino är en kortfilmssession för barn över 3 år. Under filmstunden får vi se Mumintrollens ordlösa äventyr.",
                "en": "Skidikino is a short film session for children aged 3 and over. During the screening, we’ll get to follow the Moomins’ wordless adventures."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8B08C97F8CF63DC7FDBA359B06D4EC58/Skidikino_Muumien_maailma",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8B08C97F8CF63DC7FDBA359B06D4EC58/Skidikino_Mumintrollen_",
                "en": "http://www.vuotalo.fi/en/events/event/8B08C97F8CF63DC7FDBA359B06D4EC58/Skidikino_The_Moomins_"
            },
            "description": {
                "fi": "<p>Puolen tunnin elokuvahetki suuressa Vuosalissa sopii kaikkein pienimmille! Elokuvahetkessä seurataan muumien sanattomia seikkailuja.</p><p>Taikuri antaa juhlissa kaikkien toivoa yhden toivomuksen, mutta toteutuneet toivomukset eivät miellytä kaikkia. Hyppää mukaan Muumien maailmaan ja koe hauskoja ja jännittäviä seikkailuja!</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Se sopii varhaiskasvatuksen ryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. <u><a href=\"https://www.vuotalo.fi/fi/taidekasvatus\">Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta</u></a>. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. <br> <br>Kieli: sanaton  <br>Kesto: n. 30 min <br>Vapaa pääsy <br>Ikäraja: S, suosittelemme yli 3-vuotiaille</p><p><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agpprfc3ka\">Ryhmille pakolliset ilmoittautumiset osoitteessa kultus.hel.fi</u></a>.</p><p>Lisätietoja: salla.fornaro@hel.fi</p>",
                "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Under filmstunden får vi se Mumintrollens ordlösa äventyr.</p><p>Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen. <br> <br><u><a href=\"https://www.vuotalo.fi/fi/taidekasvatus\">Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats</u></a>. Det illustrerade materialet behandlar temat biobesök. Materialet finns endast på finska.</p><p>Längd: ca 30 min <br>Språk: ordlös</p><p><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agpprfc3ka\">Anmälan för grupper på kultus.hel.fi (på finska)</u></a>.</p><p>Mera info: salla.fornaro@hel.fi</p>",
                "en": "<p>Skidikino is a short film session for children aged 3 and over. During the screening, we’ll get to follow the Moomins’ wordless adventures.</p><p>Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult. <br> <br><u><a href=\"https://www.vuotalo.fi/fi/taidekasvatus\">Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website</u></a>. The illustrated material tells a story about going to the cinema. The material is only in Finnish. <br>  <br>Duration: 30 min <br>Language: no dialogue</p><p><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agpprfc3ka\">Registration for daycare groups at kultus.hel.fi (in Finnish)</u></a> <br> <br>More information: salla.fornaro@hel.fi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69498/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69497",
            "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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385348,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-24T12:14:45.958932Z",
                    "last_modified_time": "2026-06-24T12:14:45.958967Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795700.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385348/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-24T12:14:45.833851Z",
            "last_modified_time": "2026-06-24T12:14:46.143253Z",
            "date_published": null,
            "start_time": "2026-10-07T06:00:00Z",
            "end_time": "2026-10-07T06:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Skidikino: Muumien maailma – Kuningasrubiini ja muita muumiseikkailuja!",
                "sv": "Skidikino: Mumintrollen",
                "en": "Skidikino: The Moomins"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Puolen tunnin elokuvahetki suuressa Vuosalissa sopii kaikkein pienimmille! Elokuvahetkessä seurataan muumien sanattomia seikkailuja.",
                "sv": "Skidikino är en kortfilmssession för barn över 3 år. Under filmstunden får vi se Mumintrollens ordlösa äventyr.",
                "en": "Skidikino is a short film session for children aged 3 and over. During the screening, we’ll get to follow the Moomins’ wordless adventures."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D5A3CEF3B3C93DED69AC31F927A4B84A/Skidikino_Muumien_maailma",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D5A3CEF3B3C93DED69AC31F927A4B84A/Skidikino_Mumintrollen_",
                "en": "http://www.vuotalo.fi/en/events/event/D5A3CEF3B3C93DED69AC31F927A4B84A/Skidikino_The_Moomins_"
            },
            "description": {
                "fi": "<p>Puolen tunnin elokuvahetki suuressa Vuosalissa sopii kaikkein pienimmille! Elokuvahetkessä seurataan muumien sanattomia seikkailuja.</p><p>Taikuri antaa juhlissa kaikkien toivoa yhden toivomuksen, mutta toteutuneet toivomukset eivät miellytä kaikkia. Hyppää mukaan Muumien maailmaan ja koe hauskoja ja jännittäviä seikkailuja!</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Se sopii varhaiskasvatuksen ryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. <u><a href=\"https://www.vuotalo.fi/fi/taidekasvatus\">Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta</u></a>. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. <br> <br>Kieli: sanaton  <br>Kesto: n. 30 min <br>Vapaa pääsy <br>Ikäraja: S, suosittelemme yli 3-vuotiaille</p><p><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agpprfc3ka\">Ryhmille pakolliset ilmoittautumiset osoitteessa kultus.hel.fi</u></a>.</p><p>Lisätietoja: salla.fornaro@hel.fi</p>",
                "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Under filmstunden får vi se Mumintrollens ordlösa äventyr.</p><p>Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen. <br> <br><u><a href=\"https://www.vuotalo.fi/fi/taidekasvatus\">Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats</u></a>. Det illustrerade materialet behandlar temat biobesök. Materialet finns endast på finska.</p><p>Längd: ca 30 min <br>Språk: ordlös</p><p><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agpprfc3ka\">Anmälan för grupper på kultus.hel.fi (på finska)</u></a>.</p><p>Mera info: salla.fornaro@hel.fi</p>",
                "en": "<p>Skidikino is a short film session for children aged 3 and over. During the screening, we’ll get to follow the Moomins’ wordless adventures.</p><p>Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult. <br> <br><u><a href=\"https://www.vuotalo.fi/fi/taidekasvatus\">Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website</u></a>. The illustrated material tells a story about going to the cinema. The material is only in Finnish. <br>  <br>Duration: 30 min <br>Language: no dialogue</p><p><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agpprfc3ka\">Registration for daycare groups at kultus.hel.fi (in Finnish)</u></a> <br> <br>More information: salla.fornaro@hel.fi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69497/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpptgckay",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2385352,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-24T11:46:12.862421Z",
                    "last_modified_time": "2026-06-24T11:46:12.862436Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/341eb66b-a8ca-4db3-a164-8dff40f7a499.jpg",
                    "name": "",
                    "cropping": "148,0,513,366",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on henkilöitä jotka laittavat ruokaa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385352/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-24T11:56:23.864681Z",
            "last_modified_time": "2026-06-24T11:56:23.864699Z",
            "date_published": null,
            "start_time": "2026-07-14T13:00:00Z",
            "end_time": "2026-07-14T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Cooking for others - Englanninkielinen ruoanlaittopaja (Huom! ennakkoilmoittautuminen)",
                "en": "Cooking for others - open volunteer cooking workshop (Please note! the event has preregistration)"
            },
            "location_extra_info": {
                "fi": "Kapyysi",
                "en": "Communal kitchen Kapyysi"
            },
            "provider": {
                "fi": "International Youth Cooperation Suomi ry",
                "en": "International Youth Cooperation Suomi ry"
            },
            "short_description": {
                "fi": "Ilmoittaudu sivulta mukaan Cooking for others - Englanninkielinen ruoanlaittopajaan!",
                "en": "Preregister to the Cooking for others-event by sending an email in the address on the website"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule mukaan ilmaiseen yhteisölliseen ruoanlaittotilaisuuteen, jossa valmistamme aterioita apua tarvitseville. Tapahtuma on avoin paikallisille vapaaehtoisille ja kirjaston käyttäjille. Aiempaa kokemusta ei tarvita.</p><p>Ilmoittaudu mukaan lähettämällä sähköpostia osoitteeseen: suomi@iyouthc.org</p><p>Paikkoja on rajoitetusti.</p><p>Tilaisuus on englanninkielinen. </p>",
                "en": "<p>Join us for a free community cooking session where we will prepare meals for people in need. Open to local volunteers and library users. No previous experience is needed.</p><p><br></p><p>Want to join?</p><p>Please confirm your participation by email: suomi@iyouthc.org</p><p>Places are limited.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpptgckay/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpptgckte",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2385353,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-06-24T11:37:00.502830Z",
                    "last_modified_time": "2026-06-24T11:37:00.502846Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/67641e58-ea82-4923-b8b2-c8c16f11a9ef.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Lesichkadesign",
                    "alt_text": "Kissa pureskelee ruohonkortta kesäisessä maisemassa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385353/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-24T11:39:39.200738Z",
            "last_modified_time": "2026-06-24T11:39:39.200755Z",
            "date_published": "2026-06-24T11:34:00Z",
            "start_time": "2026-07-01T05:00:00Z",
            "end_time": "2026-07-31T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Soturikissaklubin kesänäyttely",
                "sv": "Utställning: Warrior cats",
                "en": "Art exhibition: Warrior cats"
            },
            "location_extra_info": {
                "fi": "Näyttelyvitriini",
                "sv": "Utställningsvitrin",
                "en": "Display cabinet"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa vierailemaan taidenäyttelyssä Tapiolan kirjastossa.",
                "sv": "Välkommen att besöka utställning i Hagalund biblioteken.",
                "en": "Welcome to an art exhibition in Tapiola Library."
            },
            "info_url": null,
            "description": {
                "fi": "<p><strong>Tapiolan kirjaston vitriinissä 1.-31.7.2026.</strong></p><p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu keväisin ja syksyisin joka toinen viikko nuortenosasto Kulmassa.</p><p>Nyt Soturikissat ovat siirtyneet kesälaitumille, mutta heinäkuun ajan voimme nauttia Soturikissojen fantastisesta maailmasta klubilaisten tekemien taideteosten kautta.</p><p>Tervetuloa tutustumaan!&nbsp;</p>",
                "sv": "<p>Välkommen att besöka utställning i Hagalunds bibliotek.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>",
                "en": "<p>Welcome to visit the exhibition at Tapiola Library.</p><p>The exhibition is open during the library’s opening hours.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpptgckte/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69496",
            "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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385346,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-24T11:14:11.163284Z",
                    "last_modified_time": "2026-06-24T11:14:11.163298Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795699.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385346/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-24T11:14:11.048155Z",
            "last_modified_time": "2026-06-24T11:14:11.325849Z",
            "date_published": null,
            "start_time": "2026-09-16T07:30:00Z",
            "end_time": "2026-09-16T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Skidikino: Muumien maailma – Viimeinen lohikäärme ja muita muumiseikkailuja!",
                "sv": "Skidikino: Mumintrollen",
                "en": "Skidikino: The Moomins"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Puolen tunnin elokuvahetki suuressa Vuosalissa sopii kaikkein pienimmille! Elokuvahetkessä seurataan muumien sanattomia seikkailuja.",
                "sv": "Skidikino är en kortfilmssession för barn över 3 år. Under filmstunden får vi se Mumintrollens ordlösa äventyr.",
                "en": "Skidikino is a short film session for children aged 3 and over. During the screening, we’ll get to follow the Moomins’ wordless adventures."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5D76EA95156462CC68A18243388B350E/Skidikino_Muumien_maailma",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/5D76EA95156462CC68A18243388B350E/Skidikino_Mumintrollen",
                "en": "http://www.vuotalo.fi/en/events/event/5D76EA95156462CC68A18243388B350E/Skidikino_The_Moomins"
            },
            "description": {
                "fi": "<p>Puolen tunnin elokuvahetki suuressa Vuosalissa sopii kaikkein pienimmille! Elokuvahetkessä seurataan muumien sanattomia seikkailuja.</p><p>Muumipeikko löytää lohikäärmeen ja Nuuskamuikkunen lähtee syysvaellukselle. Hyppää mukaan Muumien maailmaan ja koe hauskoja ja jännittäviä seikkailuja!</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Se sopii varhaiskasvatuksen ryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. <u><a href=\"https://www.vuotalo.fi/fi/taidekasvatus\">Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta</u></a>. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Kieli: sanaton <br>Kesto: n. 30 min<br>Vapaa pääsy<br>Ikäraja: S, suosittelemme yli 3-vuotiaille</p><p><u><a>href=\"https://kultus.hel.fi/fi/event/kultus:agpprdcji4\">Ryhmille pakolliset ilmoittautumiset osoitteessa kultus.hel.fi</u></a>.</p><p>Lisätietoja: salla.fornaro@hel.fi</p>",
                "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Under filmstunden får vi se Mumintrollens ordlösa äventyr.</p><p>Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.<br> <br><u><a> href=\"https://www.vuotalo.fi/fi/taidekasvatus\">Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats</u></a>. Det illustrerade materialet behandlar temat biobesök. Materialet finns endast på finska.</p><p>Längd: ca 30 min<br>Språk: ordlös<br><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agpprdcji4\">Anmälan för grupper på kultus.hel.fi (på finska)</u></a>.</p><p>Mera info: salla.fornaro@hel.fi</p>",
                "en": "<p>Skidikino is a short film session for children aged 3 and over. During the screening, we’ll get to follow the Moomins’ wordless adventures.</p><p>Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p><u><a> href=\"https://www.vuotalo.fi/fi/taidekasvatus\">Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website</u></a>. The illustrated material tells a story about going to the cinema. The material is only in Finnish.<br> <br>Duration: 30 min<br>Language: no dialogue</p><p><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agpprdcji4\">Registration for daycare groups at kultus.hel.fi (in Finnish)</u></a></p><p>More information: salla.fornaro@hel.fi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69496/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69495",
            "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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385345,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-24T11:14:10.698988Z",
                    "last_modified_time": "2026-06-24T11:14:10.699005Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795698.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385345/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-24T11:14:10.542216Z",
            "last_modified_time": "2026-06-24T11:14:10.915631Z",
            "date_published": null,
            "start_time": "2026-09-16T06:00:00Z",
            "end_time": "2026-09-16T06:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Skidikino: Muumien maailma – Viimeinen lohikäärme ja muita muumiseikkailuja!",
                "sv": "Skidikino: Mumintrollen",
                "en": "Skidikino: The Moomins"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Puolen tunnin elokuvahetki suuressa Vuosalissa sopii kaikkein pienimmille! Elokuvahetkessä seurataan muumien sanattomia seikkailuja.",
                "sv": "Skidikino är en kortfilmssession för barn över 3 år. Under filmstunden får vi se Mumintrollens ordlösa äventyr.",
                "en": "Skidikino is a short film session for children aged 3 and over. During the screening, we’ll get to follow the Moomins’ wordless adventures."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D7BDB1CE085BD28CDFAADF5F95AD8545/Skidikino_Muumien_maailma",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D7BDB1CE085BD28CDFAADF5F95AD8545/Skidikino_Mumintrollen",
                "en": "http://www.vuotalo.fi/en/events/event/D7BDB1CE085BD28CDFAADF5F95AD8545/Skidikino_The_Moomins"
            },
            "description": {
                "fi": "<p>Puolen tunnin elokuvahetki suuressa Vuosalissa sopii kaikkein pienimmille! Elokuvahetkessä seurataan muumien sanattomia seikkailuja.</p><p>Muumipeikko löytää lohikäärmeen ja Nuuskamuikkunen lähtee syysvaellukselle. Hyppää mukaan Muumien maailmaan ja koe hauskoja ja jännittäviä seikkailuja!</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Se sopii varhaiskasvatuksen ryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. <u><a href=\"https://www.vuotalo.fi/fi/taidekasvatus\">Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta</u></a>. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Kieli: sanaton <br>Kesto: n. 30 min<br>Vapaa pääsy<br>Ikäraja: S, suosittelemme yli 3-vuotiaille</p><p><u><a>href=\"https://kultus.hel.fi/fi/event/kultus:agpprdcji4\">Ryhmille pakolliset ilmoittautumiset osoitteessa kultus.hel.fi</u></a>.</p><p>Lisätietoja: salla.fornaro@hel.fi</p>",
                "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Under filmstunden får vi se Mumintrollens ordlösa äventyr.</p><p>Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.<br> <br><u><a> href=\"https://www.vuotalo.fi/fi/taidekasvatus\">Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats</u></a>. Det illustrerade materialet behandlar temat biobesök. Materialet finns endast på finska.</p><p>Längd: ca 30 min<br>Språk: ordlös<br><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agpprdcji4\">Anmälan för grupper på kultus.hel.fi (på finska)</u></a>.</p><p>Mera info: salla.fornaro@hel.fi</p>",
                "en": "<p>Skidikino is a short film session for children aged 3 and over. During the screening, we’ll get to follow the Moomins’ wordless adventures.</p><p>Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p><u><a> href=\"https://www.vuotalo.fi/fi/taidekasvatus\">Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website</u></a>. The illustrated material tells a story about going to the cinema. The material is only in Finnish.<br> <br>Duration: 30 min<br>Language: no dialogue</p><p><u><a href=\"https://kultus.hel.fi/fi/event/kultus:agpprdcji4\">Registration for daycare groups at kultus.hel.fi (in Finnish)</u></a></p><p>More information: salla.fornaro@hel.fi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69495/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}