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_super_event=true&page=26
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 31685,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=27",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=25"
    },
    "data": [
        {
            "id": "kulke:68257",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1660945,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-18T07:14:29.237941Z",
                    "last_modified_time": "2026-03-18T07:14:29.237959Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786500.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1660945/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-18T07:14:29.107829Z",
            "last_modified_time": "2026-03-31T08:13:19.008991Z",
            "date_published": null,
            "start_time": "2026-04-22T13:00:00Z",
            "end_time": "2026-04-22T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kevät on täällä! Pikkulinnut etsivät jo kuumeisesti sopivia pesäpaikkoja."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/60196333CF89EADE1399E2FB155BA794/Linnunponttopajat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/60196333CF89EADE1399E2FB155BA794/Linnunponttopajat",
                "en": "http://www.vuotalo.fi/en/events/event/60196333CF89EADE1399E2FB155BA794/Linnunponttopajat"
            },
            "description": {
                "fi": "<p>Kevät on täällä! Pikkulinnut etsivät jo kuumeisesti sopivia pesäpaikkoja.</p><p>Tule auttamaan lintuja ja rakentamaan linnunpönttö oman lapsen tai nuoren, kaverin kersan tai vaikka lapsenlapsen kanssa!</p><p>Pöntön saa valmiiksi ja mukaan heti pajan jälkeen, joten voitte jo etukäteen miettiä sille sopivaa paikkaa.</p><p>Yhteen pajaan mahtuu mukaan seitsemän aikuinen + lapsi (tai lapset) -paria. Saat tarvittavat materiaalit työpajassa. Ilmoittautuminen ja lisätiedustelut: salla.fornaro@hel.fi tai 0405371520.</p><p>Työpaja on osa Vuotalon Ympäristöviikon ohjelmaa. Paja toteutetaan yhteistyössä Helsingin Työväenopiston kanssa, opettajana toimii Sami Paakkanen.</p><p>Kohderyhmä: lapsiperheet, lapset ja isovanhemmat</p><p>Kieli: suomi <br> <br>Paikka: Vuotalon K-kerroksen puupaja</p>"
            },
            "name": {
                "fi": "Linnunpönttöpajat – Vuotalon Ekoviikko",
                "sv": "Linnunpönttöpajat – Vuotalon Ekoviikko",
                "en": "Linnunpönttöpajat – Vuotalon Ekoviikko"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68257/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67711",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494089,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:13:02.386554Z",
                    "last_modified_time": "2025-12-04T13:13:02.386570Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782564.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494089/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T13:13:02.312322Z",
            "last_modified_time": "2026-03-31T08:13:15.293516Z",
            "date_published": null,
            "start_time": "2026-04-01",
            "end_time": "2026-04-25",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Lasten osallistava elämysnäyttely kutsuu koko perheen seikkailuun sademetsän sydämeen.",
                "sv": "Barnens engagerande upplevelseutställning bjuder hela familjen på äventyr in i regnskogens djup.",
                "en": "An interactive and experience-rich children's exhibition invites the whole family on an adventure into the heart of the rainforest."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4CCFC8556AD53B536C90A6FA64697094/Sademetsan_salaisuudet",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4CCFC8556AD53B536C90A6FA64697094/Regnskogens_hemligheter_",
                "en": "http://www.malmitalo.fi/en/events/event/4CCFC8556AD53B536C90A6FA64697094/Sademetsan_salaisuudet_Secrets_of_the_rainforest"
            },
            "description": {
                "fi": "<p>Lasten osallistava elämysnäyttely kutsuu koko perheen seikkailuun sademetsän sydämeen.</p><p>Tutkimusmatkailijoiden ryhmä oli pelastettu sademetsän vaaroista sudenkorentojen avulla, ja kannettu turvaan mitä ihastuttavimpaan kukkien täyttämään taikamaailmaan. Mutta olivatko kukat vain ihastuttavia, vai oliko niihin kätketty salaisuuksia?<br>Sukella jännittävälle osallistavalle satumatkalle osana tutkimusmatkailijoiden retkikuntaa. Kaikki mukaan seikkailuun!</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Barnens engagerande upplevelseutställning bjuder hela familjen på äventyr in i regnskogens djup.</p><p>En grupp upptäcktsresande räddades från regnskogens faror med hjälp av sländor och har burits i säkerhet till en underbar magisk värld fylld av blommor. Men var blommorna bara förtjusande, eller döljer de hemligheter? <br>Dyk in i en spännande och engagerande sagoresa som en del av en forskningsexpedition. Alla med på äventyr!</p><p>Fritt inträde!</p>",
                "en": "<p>An interactive and experience-rich children's exhibition invites the whole family on an adventure into the heart of the rainforest.</p><p>A group of explorers had been rescued from the dangers of the rainforest with the help of dragonflies, and were carried to safety in a most delightful magical world full of flowers. But were these flowers just lovely, or do they hide some secrets? <br>Dive into an exciting and engaging fairytale journey as part of an expedition. Everybody join the adventure!</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Sademetsän salaisuudet",
                "sv": "Regnskogens hemligheter",
                "en": "Sademetsän salaisuudet – Secrets of the rainforest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67711/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67240",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p21812/?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": 1494300,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-23T09:13:49.094609Z",
                    "last_modified_time": "2025-12-23T09:13:49.094623Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780106.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494300/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-23T09:13:48.961491Z",
            "last_modified_time": "2026-03-31T08:13:13.857077Z",
            "date_published": null,
            "start_time": "2026-03-27",
            "end_time": "2026-08-08",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Palapeleille maalattuja, toistaiseksi tuntemattomien eläinoletettujen olentojen muotokuvia.",
                "sv": "Porträtt av hittills okända djurliknande varelser målade på pussel.",
                "en": "Portraits of hitherto unknown creatures, assumed to be animals, painted on jigsaw puzzles."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B5FADFDE34602A9BE5FC44956DDEFF37/Hans-Peter_Sch_tt_Anima",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/B5FADFDE34602A9BE5FC44956DDEFF37/Hans-Peter_Sch_tt_Anima",
                "en": "http://www.annantalo.fi/en/events/event/B5FADFDE34602A9BE5FC44956DDEFF37/Hans-Peter_Sch_tt_Anima"
            },
            "description": {
                "fi": "<p>Palapeleille maalattuja, toistaiseksi tuntemattomien eläinoletettujen olentojen muotokuvia.</p><p>Anima-näyttelyn teokset kuvaavat eläinoletettuja olentoja ja ne on tehty käytettyinä löydetyistä palapeleistä. Olennoissa on jotakin tuttua, mutta ne eivät kuitenkaan kuvaa mitään tuntemiamme eläimiä. Se mitä ajattelemme tietävämme ja tuntevamme muuntuu uudeksi ja kummalliseksi. Tuntemattomuus on läsnä, mutta sen saa kohdata turvallisesti.<br> <br>Teokset käsittelevät eläinaiheen välityksellä ei-inhimillisen maailman kohtaamista pohtien mahdollisuuksia, joita meillä ihmisillä on vaikuttaa näiden kohtaamisten laatuun esim. herkkyyden, mielikuvituksen ja kärsivällisyyden avulla. Miten osaisimme paremmin mieltää muunlaisia, itsestämme poikkeavia tapoja olla ja elää maailmassa sekä ottaa niitä huomioon? <br> <br>Avajaiset 26.3. klo 17-19 – Tervetuloa!<br> <br>Näyttely on valittu ohjelmistoon Annantalon avoimen haun kautta. Kevään 2025 aikana hakuun tuli 230 hakemusta, joiden joukosta Annantalon oppilasraati valitsi kuusi taiteilijaa toisen kerroksen gallerioihin sekä alakerran yhteisnäyttelyyn.</p>",
                "sv": "<p>Porträtt av hittills okända djurliknande varelser målade på pussel.</p><p>Verken i utställningen Anima föreställer djurliknande varelser och är tillverkade av begagnade pussel. Det finns något bekant över varelserna, men de föreställer ändå inte några av de djur vi känner till. Det vi tror att vi vet och känner förvandlas till något nytt och egendomligt. Det okända finns där, men vi får möta det på ett säkert sätt.<br> <br>Verken handlar om mötet med den icke-mänskliga världen genom djurtemat och reflekterar över de möjligheter vi människor har att påverka kvaliteten på dessa möten genom till exempel känslighet, fantasi och tålamod. Hur kan vi bättre förstå och ta hänsyn till andra sätt att vara och leva i världen som skiljer sig från våra egna? <br> <br>Vernissage 26.3. kl. 17–19 – Välkommen!<br> <br>Utställningen har tagits med i programmet genom Annegårdens öppna ansökan. Under våren 2025 inkom 230 ansökningar, bland vilka Annegårdens elevjury valde ut sex konstnärer till gallerierna på andra våningen och till den gemensamma utställningen på nedre våningen.</p>",
                "en": "<p>Portraits of hitherto unknown creatures, assumed to be animals, painted on jigsaw puzzles.</p><p>The works in the Anima exhibition depict creatures that are assumed to be animals and have been made from second-hand jigsaw puzzles. There is something familiar about the creatures, but they do not represent any animals that we know. What we think we know and feel is transformed into something new and strange. The unknown is present, but it can be faced safely.<br> <br>Through their animal theme, the works deal with facing a non-human world, reflecting on the opportunities that we humans have to influence the quality of these encounters through means such as sensitivity, imagination and patience. How could we better understand and take into account other ways of being and living in the world, ways that are different from our own? <br> <br>Opening event on 26 March at 17.00–19.00 – hope to see you there!<br> <br>The exhibition was selected for the programme through an open call at Annantalo. During the spring of 2025, Annantalo received 230 applications, from which the Annantalo student jury selected six artists for the second floor galleries and the joint exhibition downstairs.</p>"
            },
            "name": {
                "fi": "Hans-Peter Schütt: Anima",
                "sv": "Hans-Peter Schütt: Anima",
                "en": "Hans-Peter Schütt: Anima"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67240/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67832",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kulttuurikeskus-caisa-caisa-30-club-kulttuurikeskus-caisa-21056750/",
                        "sv": "https://www.lippu.fi/event/kulttuurikeskus-caisa-caisa-30-club-kulttuurikeskus-caisa-21056750/",
                        "en": "https://www.lippu.fi/event/kulttuurikeskus-caisa-caisa-30-club-kulttuurikeskus-caisa-21056750/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7€/15€",
                        "sv": "7€/15€",
                        "en": "7€/15€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494211,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-15T13:13:42.178914Z",
                    "last_modified_time": "2025-12-15T13:13:42.178936Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778725.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494211/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-15T13:13:42.017294Z",
            "last_modified_time": "2026-03-30T13:15:34.858837Z",
            "date_published": null,
            "start_time": "2026-04-17T15:00:00Z",
            "end_time": "2026-04-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,
            "short_description": {
                "fi": "Mitä tapahtuu, kun planktonit kuulevat musiikkia? Reagoivatko ne puhaltimien ääniin? Muusikot ainakin reagoivat planktonien liikkeisiin!",
                "sv": "Vad händer när plankton hör musik? Reagerar de på ljud från blåsinstrument? Musikerna reagerar åtminstone på planktonens rörelser!",
                "en": "What happens when plankton hear music? Do they react to the sound of wind instruments? The musicians definitely react to the movements of the plankton!"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/2A6079F448E16EB34E20B50CC6FD758B/Flagellate_Levakonsertti",
                "sv": "http://www.caisa.fi/sv/evenemang/event/2A6079F448E16EB34E20B50CC6FD758B/Flagellate_Algkonsert",
                "en": "http://www.caisa.fi/en/events/event/2A6079F448E16EB34E20B50CC6FD758B/Flagellate_Algae_concert"
            },
            "description": {
                "fi": "<p>Mitä tapahtuu, kun planktonit kuulevat musiikkia? Reagoivatko ne puhaltimien ääniin? Muusikot ainakin reagoivat planktonien liikkeisiin!</p><p>Flagellate on musiikkiesitys, jossa yhdistyvät mikrolevät, levästä valmistetut torvet sekä perinteiset suomalaiset ja karjalaiset torvi- ja pillisoittimet.</p><p>Flagellate-esitys koostuu kahdesta osasta: levien keräämisestä ja erillisestä musiikkiesityksestä. Voit osallistua molempiin osioihin (levän keräämiseen mahtuu max. 30 henkilöä, ennakkoilmoittautuminen) tai tulla nauttimaan pelkästään konsertista.</p><p><b>Konsertti</b><br>Musiikkiesitys alkaa Caisassa klo 19. Ensin tutustutaan levälöydöksiin mikroskoopin ja projektorin avulla satoja kertoja suurennettuna. Musiikkiesityksessä muusikot Devina Boughton, Veera Katila ja Kirsi Ojala vastaavat ja kukaties vaikuttavatkin levien ja muiden planktoneiden liikehdintään perinteisillä suomalaisilla ja karjalaisilla torvi- ja pillisoittimilla, sekä levästä valmistetuilla torvilla. Konsertin jälkeen seuraa lyhyt esitys levistä ja soittimista.</p><p><b>Levänkeräys</b><br>Lippujen ostajat, jotka haluavat osallistua levän keräämiseen, voivat soittaa ja ilmoittautua tähän numeroon: 0504120481 tai lähettää sähköpostia osoitteeseen: kitari.mayele@hel.fi (Huom: levän keräämiseen max. on 30 ihmistä).  Ilmoittautuneet pääsevät keräämään planktoneita, leviä ja muita mikroskooppisen pieniä kelluvia olentoja levätutkija Sonja Repetin johdolla. Levien keräämiseen osallistuva yleisö kokoontuu Caisan aulassa Info-pisteen luona klo 18.</p><p><b>Aikataulut</b><br>18.00 Kävely Caisasta Siltasaarenkärki 1–3. (15 min)<br>Levän haavistus. 18.15–18.35 (20min)<br>Kävely Caisaan 18.35–18.50 (15 min.)<br>Musiikkiesitys 19.00-20.00 (50-60 min).</p><p>Esityksen kesto: noin 60 min<br>Kohderyhmä: Sopii lapsille, aikuisille ja perheille<br>Kielet: suomi ja englanti</p><p>Osa tapahtuman tuotosta menee Itämeren suojeluun.</p>",
                "sv": "<p>Vad händer när plankton hör musik? Reagerar de på ljud från blåsinstrument? Musikerna reagerar åtminstone på planktonens rörelser!</p><p>Flagellate är en musikföreställning som kombinerar mikroalger, horn gjorda av alger samt traditionella finska och karelska horn- och flöjtinstrument.<br>Föreställningen Flagellate består av två delar: insamling av alger och en separat musikföreställning. Du kan dela i båda delarna (max 30 personer kan följa med och samla in alger, förhandsanmälan) eller bara komma och njuta av konserten.</p><p><b>Konsert</b><br>Musikföreställningen börjar på Caisa kl. 19.00. Först tittar vi på algfynden i mikroskop och hundratals gånger förstorade med hjälp av projektor. I musikföreställningen följer, och kanske också påverkar, musikerna Devina Boughton, Veera Katila och Kirsi Ojala algernas och andra planktons rörelser med traditionella finska och karelska horn- och flöjtinstrument och med horn tillverkade av alger. Efter konserten följer en kort presentation om algerna och instrumenten.</p><p><b>Insamling av alger</b><br>Biljettköpare som vill vara med och samla in alger kan ringa och anmäla sig till detta nummer: 050 412 04 81 eller skicka e-post till: kitari.mayele@hel.fi (Obs! Högst 30 personer kan vara med och samla in alger).  De anmälda får samla in plankton, alger och andra mikroskopiskt små flytande varelser under ledning av algforskaren Sonja Repetti. De som ska vara med och samla in alger samlas vid infon i Caisas lobby kl. 18.</p><p><b>Tidtabeller</b><br>kl. 18.00 Promenad från Caisa till Broholmsudden 1–3 (15 min.)<br>kl. 18.15–18.35 Insamling av alger (20 min.) <br>kl. 18.35–18.50 Promenad tillbaka till Caisa (15 min.)<br>kl. 19.00–20.00 Musikföreställning (50-60 min.)</p><p>Föreställningens längd: ca. 60 min.<br>Målgrupp: Lämplig för barn, vuxna och familjer<br>Språk: finska och engelska</p><p>En del av intäkterna från evenemanget går till att skydda Östersjön.</p>",
                "en": "<p>What happens when plankton hear music? Do they react to the sound of wind instruments? The musicians definitely react to the movements of the plankton!</p><p>Flagellate is a musical performance that combines micro algae, seaweed horns and traditional Finnish and Karelian horn and whistle instruments.</p><p>The performance consists of two section: algae collection and a separate musical section. You can participate in both sections (the algae collection segment has room for max. 30 people, advance registration required) or just enjoy the concert.</p><p><b>Concert</b><br>The musical performance will start at Caisa at 19.00. First, we will examine our algae findings with a microscope and a projector, magnified hundreds of times. In the musical performance, musicians Devina Boughton, Veera Katila and Kirsi Ojala will respond to and perhaps even influence the movements of the algae and other plankton with traditional Finnish and Karelian horn and whistle instruments, as well as horns made from seaweed. The concert will be followed by a short presentation about algae and the instruments used.</p><p><b>Algae collection</b><br>Ticket buyers who wish to participate in the collection of algae can sign up by calling the number +358 50 412 0481 or by sending an email to kitari.mayele@hel.fi (Note: the maximum number of people participating in the algae collection is 30).  Those who sign up will get to collect plankton, algae and other microscopic floating creatures under the guidance of algae researcher Sonja Repetti. Those participating in the collection of algae will meet at the information desk in the Caisa lobby at 18.00.</p><p><b>Schedule</b><br>18.00: walk from Caisa to Siltasaarenkärki 1–3 (15 min)<br>18.15–18.35: catching algae with nets (20 min) <br>18.35–18.50: walk to Caisa (15 min)<br>19.00–20.00: musical performance (50-60 min)</p><p>Performance duration: around 60 min<br>Target group: Suitable for children, adults and families<br>Languages: Finnish and English</p><p>Part of the proceeds from the event will go towards protecting the Baltic Sea.</p>"
            },
            "name": {
                "fi": "Flagellate – Leväkonsertti – Caisa 30 Club",
                "sv": "Flagellate – Algkonsert – Caisa 30 Club",
                "en": "Flagellate – Algae concert – Caisa 30 Club"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67832/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68283",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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"
                }
            ],
            "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": 1779160,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-30T11:13:57.605383Z",
                    "last_modified_time": "2026-03-30T11:13:57.605399Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786662.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1779160/?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-03-30T11:13:57.463710Z",
            "last_modified_time": "2026-03-30T12:13:31.845746Z",
            "date_published": null,
            "start_time": "2026-05-08T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Seela Sellan taiteilijavierailu Kanneltalossa on valitettavasti jouduttu siirtämään sairastapauksen vuoksi syksyyn."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B03792632EBEE7E6FC9AB319D91AB9D2/SIIRTYY_SYKSYYN_Seela_Sellan_taiteilijavierailu",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B03792632EBEE7E6FC9AB319D91AB9D2/SIIRTYY_SYKSYYN_Seela_Sellan_taiteilijavierailu",
                "en": "http://www.kanneltalo.fi/en/events/event/B03792632EBEE7E6FC9AB319D91AB9D2/SIIRTYY_SYKSYYN_Seela_Sellan_taiteilijavierailu"
            },
            "description": {
                "fi": "<p>Seela Sellan taiteilijavierailu Kanneltalossa on valitettavasti jouduttu siirtämään sairastapauksen vuoksi syksyyn.</p><p>Kanneltalo kertoo uuden esityspäivän heti, kun mahdollista. Jo varatut liput käyvät uudelle päivälle sellaisenaan.</p><p>Jos uusi päivämäärä ei sovi, voit vapauttaa varaamasi paikan linkin kautta: https://web.lippu.fi/palautus/ tai soittamalla lippu.fi Asiakaspalvelu lipun ostaneille numeroon:  030 514 214  (ark. 10-16) Puhelun hinta pvm/mpm.</p><p>Pahoittelemme aiheutuneesta harmista!</p><p>Taiteilijavierailun aikana Seela Sella ja Tuomo Holopainen keskustelevat rakastetun näyttelijälegendan huikeasta matkasta elämän näyttämöillä.</p><p>Keskustelun pohjana on Antti Heikkisen kirjoittama kirja Sellasta (Otava 2025).</p><p>Seela Sella on esittänyt unohtumattomia rooleja jo seitsemällä vuosikymmenellä. Hän on raivannut tiensä Pispalasta koko kansan sydämiin ja hurmaa yhä yleisönsä tarkalla ja vivahteikkaalla näyttelijäntyöllään.</p><p>Tunteikas ja tarinallinen kirja vie mestarin matkassa eri estradeille sekä niiden taakse. Teoksessa Sella kertoo niin teatterityönsä kuin elämänkokemuksensa opeista viisaudella, innolla, rohkeudella ja erityisesti pilke silmäkulmassa. Erilainen elämäkerta on myös tarinoiden ja anekdoottien runsaudensarvi.</p><p>Kesto 45 min + kirjasigneeraukset</p><p>Yhteistyössä Kanneltalo, Helsingin työväenopisto ja Kannelmäen kirjasto</p>"
            },
            "name": {
                "fi": "SIIRTYY SYKSYYN: Seela Sellan taiteilijavierailu – haastattelijana Tuomo Holopainen",
                "sv": "SIIRTYY SYKSYYN: Seela Sellan taiteilijavierailu",
                "en": "SIIRTYY SYKSYYN: Seela Sellan taiteilijavierailu"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68283/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67620",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1779560,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-30T12:13:31.353986Z",
                    "last_modified_time": "2026-03-30T12:13:31.354001Z",
                    "url": "instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782190.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1779560/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-08T13:12:57.334626Z",
            "last_modified_time": "2026-03-30T12:13:31.554310Z",
            "date_published": null,
            "start_time": "2026-05-08T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Taiteilijavierailun aikana Seela Sella ja Tuomo Holopainen keskustelevat rakastetun näyttelijälegendan huikeasta matkasta elämän näyttämöillä.",
                "sv": "Under konstnärens besök diskuterar Seela Sella och Tuomo Holopainen den älskade skådespelarlegendens fenomenala resa på livets scener.",
                "en": "At the artist visit, Seela Sella and Tuomo Holopainen talk about the remarkable journey of the beloved acting legend through the stages of life."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Taiteilijavierailun aikana Seela Sella ja Tuomo Holopainen keskustelevat rakastetun näyttelijälegendan huikeasta matkasta elämän näyttämöillä.</p><p>Keskustelun pohjana on Antti Heikkisen kirjoittama kirja Sellasta (Otava 2025).</p><p>Seela Sella on esittänyt unohtumattomia rooleja jo seitsemällä vuosikymmenellä. Hän on raivannut tiensä Pispalasta koko kansan sydämiin ja hurmaa yhä yleisönsä tarkalla ja vivahteikkaalla näyttelijäntyöllään.</p><p>Tunteikas ja tarinallinen kirja vie mestarin matkassa eri estradeille sekä niiden taakse. Teoksessa Sella kertoo niin teatterityönsä kuin elämänkokemuksensa opeista viisaudella, innolla, rohkeudella ja erityisesti pilke silmäkulmassa. Erilainen elämäkerta on myös tarinoiden ja anekdoottien runsaudensarvi.</p><p>Kesto 45 min + kirjasigneeraukset</p><p>Yhteistyössä Kanneltalo, Helsingin työväenopisto ja Kannelmäen kirjasto</p><p>Vapaa pääsy</p><p>ennakkoilmoittautuminen https://www.lippu.fi/eventseries/name-4048014/?affiliate=NFI</p>",
                "sv": "<p>Under konstnärens besök diskuterar Seela Sella och Tuomo Holopainen den älskade skådespelarlegendens fenomenala resa på livets scener.</p><p>Diskussionen baseras på boken Sellasta (Otava 2025) av Antti Heikkinen.</p><p>Seela Sella har spelat oförglömliga roller redan i sju decennier. Hon har banat väg från Pispala ända in i nationens hjärtan och fortsätter att fängsla publiken med sitt precisa och nyanserade skådespeleri.</p><p>Denna känsloladdade och berättande bok tar oss med på en resa med mästaren till olika estrader och bakom dem. Sella delar med sig av sitt teaterarbete och sin livserfarenhet med visdom, entusiasm, mod och framför allt med glimten i ögat. Den annorlunda biografin är också ett ymnighetshorn av berättelser och anekdoter.</p><p>Längd 45 min + boksignering</p><p>I samarbete med Gamlasgården, Helsingfors arbetarinstitut och Gamlas bibliotek</p><p>Fritt inträde</p><p>förhandsanmälan https://www.lippu.fi/eventseries/name-4048014/?affiliate=NFI</p>",
                "en": "<p>At the artist visit, Seela Sella and Tuomo Holopainen talk about the remarkable journey of the beloved acting legend through the stages of life.</p><p>The conversation draws on Antti Heikkinen's book Sellasta (Otava, 2025).</p><p>Seela Sella has performed unforgettable roles for seven decades. She has made her way from Pispala into the hearts of the entire nation and continues to captivate audiences with her precise and nuanced acting.</p><p>The heartfelt and story-driven book follows the master across various stages and behind the curtains. In it, Sella recounts the insights gained from her theatre work and life experiences with wisdom, passion, bravery and a playful sparkle in her eye. This unique biography is also a cornucopia of stories and anecdotes.</p><p>Duration 45 min + book signing</p><p>Together with Kanneltalo, the Helsinki Finnish Adult Education Centre and Kannelmäki Library</p><p>Free admission</p><p>advance registration https://www.lippu.fi/eventseries/name-4048014/?affiliate=NFI</p>"
            },
            "name": {
                "fi": "SIIRTYY SYKSYYN Seela Sellan taiteilijavierailu – haastattelijana Tuomo Holopainen",
                "sv": "SIIRTYY SYKSYYN Seela Sellas konstnärsbesök – intervjuare Tuomo Holopainen",
                "en": "SIIRTYY SYKSYYN Artist Visit by Seela Sella – Interview by Tuomo Holopainen"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67620/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68317",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1712487,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T13:13:52.432997Z",
                    "last_modified_time": "2026-03-23T13:13:52.433013Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787237.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1712487/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-23T13:13:52.282960Z",
            "last_modified_time": "2026-03-30T12:13:29.771598Z",
            "date_published": null,
            "start_time": "2026-04-25T07:00:00Z",
            "end_time": "2026-04-25T10:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/36F486508E86675E1D6A70D84F1FCE0D/Mainiot_materiaalit_-tyopaja"
            },
            "description": {
                "fi": "<p>Tässä työpajassa roskat muuttuvat uuden materiaalin raaka-aineiksi, kun hedelmän kuorista tehdään muovailtavaa askartelumassaa. <br>Tiesitkö, että levästä voi tehdä hattuja, sahanpurusta purkkeja tai kananmunankuorista keramiikkaa? Tule tekemään hauskoja materiaalikokeiluja biopohjaisista aineista! <br>Materiaalitutkimus on tärkeää, jotta rajalliset luonnonvaramme riittäisivät kaikille nyt ja tulevaisuudessa. Työpajassa käytetään biopohjaisia ainesosia, joita saadaan luonnosta, keittiöstä ja kierrätysastiasta. Työpaja perustuu Mainiot materiaalit -kirjaan ja sen ohjaa Aalto-yliopiston Bioinnovaatiokeskus.</p><p>Työpaja soveltuu kaikenikäisille</p><p>Työpaja on non-stop</p>"
            },
            "name": {
                "fi": "Mainiot materiaalit -työpaja – Vuotalon Ekoviikko"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68317/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68256",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1660944,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-18T07:14:28.381900Z",
                    "last_modified_time": "2026-03-18T07:14:28.381917Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786501.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1660944/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-18T07:14:28.203809Z",
            "last_modified_time": "2026-03-30T12:13:28.454039Z",
            "date_published": null,
            "start_time": "2026-04-21T13:00:00Z",
            "end_time": "2026-04-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,
            "short_description": {
                "fi": "Kevät on täällä! Pikkulinnut etsivät jo kuumeisesti sopivia pesäpaikkoja."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/16C67F9E5022E7B648317EEDFF45912E/Linnunponttopajat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/16C67F9E5022E7B648317EEDFF45912E/Linnunponttopajat",
                "en": "http://www.vuotalo.fi/en/events/event/16C67F9E5022E7B648317EEDFF45912E/Linnunponttopajat"
            },
            "description": {
                "fi": "<p>Kevät on täällä! Pikkulinnut etsivät jo kuumeisesti sopivia pesäpaikkoja.</p><p>Tule auttamaan lintuja ja rakentamaan linnunpönttö oman lapsen tai nuoren, kaverin kersan tai vaikka lapsenlapsen kanssa!</p><p>Pöntön saa valmiiksi ja mukaan heti pajan jälkeen, joten voitte jo etukäteen miettiä sille sopivaa paikkaa.</p><p>Yhteen pajaan mahtuu mukaan seitsemän aikuinen + lapsi (tai lapset) -paria. Saat tarvittavat materiaalit työpajassa. Ilmoittautuminen ja lisätiedustelut: salla.fornaro@hel.fi tai 0405371520.</p><p>Työpaja on osa Vuotalon Ympäristöviikon ohjelmaa. Paja toteutetaan yhteistyössä Helsingin Työväenopiston kanssa, opettajana toimii Sami Paakkanen.</p><p>Kohderyhmä: lapsiperheet, lapset ja isovanhemmat</p><p>Kieli: suomi</p><p>Paikka: Vuotalon K-kerroksen puupaja</p>"
            },
            "name": {
                "fi": "Linnunpönttöpajat – Vuotalon Ekoviikko",
                "sv": "Linnunpönttöpajat – Vuotalon Ekoviikko",
                "en": "Linnunpönttöpajat – Vuotalon Ekoviikko"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68256/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68284",
            "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: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/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:p2625/?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/rakkauskirjeita/seela-sella-ja-esko-roine-rakkauskirjeitae-4032908/",
                        "sv": "https://www.lippu.fi/artist/rakkauskirjeita/seela-sella-ja-esko-roine-rakkauskirjeitae-4032908/",
                        "en": "https://www.lippu.fi/artist/rakkauskirjeita/seela-sella-ja-esko-roine-rakkauskirjeitae-4032908/"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1710478,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T08:13:14.452793Z",
                    "last_modified_time": "2026-03-23T08:13:14.452810Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786663.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710478/?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-03-23T08:13:14.296842Z",
            "last_modified_time": "2026-03-30T10:15:46.778355Z",
            "date_published": null,
            "start_time": "2026-05-08T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Seela Sellan ja Esko Roineen Rakkauskirjeitä-esitys siirtyy sairastapauksen vuoksi syksyyn. Kanneltalo pahoittelee asiasta koituvaa harmia! Kanneltalo kertoo uuden esityspäivän heti, kun mahdollista. Jo ostetut liput käyvät uuteen esitykseen sellaisenaan. Mikäli aika ei sovi, voit hakea lippurahojen palautusta osoitteesta https://web.lippu.fi/palautus",
                "sv": "Andrew och Melissa är barndomsvänner som håller kontakten genom årtiondena genom att skriva brev.",
                "en": "Andrew and Melissa are childhood friends who keep in touch through the decades by writing letters."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5D7CD3D4086E43E7B37DD86D792CAC25/SIIRTYY_SYKSYYN_Seela_Sella_ja_Esko_Roine_Rakkauskirjeita",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5D7CD3D4086E43E7B37DD86D792CAC25/Skjutas_upp_till_hosten_Seela_Sella_och_Esko_Roine_Rakkauskirjeita_Karleksbrev_",
                "en": "http://www.kanneltalo.fi/en/events/event/5D7CD3D4086E43E7B37DD86D792CAC25/Postponed_to_the_fall_Seela_Sella_and_Esko_Roine_Love_letters"
            },
            "description": {
                "fi": "<p>Seela Sellan ja Esko Roineen Rakkauskirjeitä-esitys siirtyy sairastapauksen vuoksi syksyyn. Kanneltalo pahoittelee asiasta koituvaa harmia! Kanneltalo kertoo uuden esityspäivän heti, kun mahdollista. Jo ostetut liput käyvät uuteen esitykseen sellaisenaan. Mikäli aika ei sovi, voit hakea lippurahojen palautusta osoitteesta https://web.lippu.fi/palautus</p><p>Andrew ja Melissa ovat lapsuudenystäviä, jotka pitävät toisiinsa yhteyttä läpi vuosikymmenten kirjoittamalla kirjeitä.</p><p>He elävät tahoillaan elämäänsä, rakentavat uraa ja parisuhteita, keski-ikäistyvät ja vanhenevat. Toisinaan jompikumpi ehdottaa tapaamista. Rakkauskirjeitä on kahden hengen näytelmä, jonka rooleissa nähdään nyt yhdet Suomen rakastetuimmista näyttelijöistä, Seela Sella ja Esko Roine. Tätä näytelmää ovat maailmalla aiemmin esittäneet lukuisat toinen toistaan kuuluisammat näyttelijät, mm. Elizabeth Taylor, Gerard Depardieu, Mia Farrow, Tom Hanks ja Mel Gibson.<br>Näytelmän luonteeseen kuuluu, että sitä ei missään nimessä saa opetella ulkoa, vaan esitys tapahtuu hetkessä, tässä ja nyt. Luvassa ei ole pikkusievää muistelua tai kaihoisaa nostalgiaa, vaan kirjeenvaihto on aitoa ja elämänmakuista, räävitöntä ja hauskaa.</p><p>Lavalla: Seela Sella ja Esko Roine<br>Ensi-ilta: Tampereen teatteri 29.1.2019</p><p>Kesto: 1 t 45 min (sisältää väliajan)</p>",
                "sv": "<p>Andrew och Melissa är barndomsvänner som håller kontakten genom årtiondena genom att skriva brev.</p><p>De lever sina liv, bygger upp karriärer och relationer, blir medelålders och gamla. Ibland föreslår någon av dem att de ska träffas. Rakkauskirjeitä är en pjäs med två personer, och i rollerna ser vi nu ett par av Finlands mest älskade skådespelare, Seela Sella och Esko Roine. Ute i världen har pjäsen framförts av många andra berömda skådespelare, som Elizabeth Taylor, Gerard Depardieu, Mia Farrow, Tom Hanks och Mel Gibson.</p><p>Det ligger i pjäsens natur att den under inga omständigheter ska memoreras, utan föreställningen sker i stunden, här och nu. Här utlovas inget näpet tillbakablickande eller någon vemodig nostalgi, utan brevväxlingen är genuin, oförskämd och rolig, med smak av livet.</p><p>På scenen: Seela Sella och Esko Roine<br>Premiär: Tammerfors teater 29.1.2019</p><p>Längd: 1 h 45 min. (inklusive paus)<br>Språk: finska</p>",
                "en": "<p>Andrew and Melissa are childhood friends who keep in touch through the decades by writing letters.</p><p>They live their lives in their own way, build careers and relationships, become middle-aged and grow old. Sometimes one of them will suggest a meeting. Love Letters is a play for two, now starring two of Finland's most beloved actors, Seela Sella and Esko Roine. This play has been performed by many of the world's most famous actors, including Elizabeth Taylor, Gerard Depardieu, Mia Farrow, Tom Hanks and Mel Gibson.</p><p>The nature of the play is that it is by no means to be memorised, but to be performed in the moment, in the here and now. There will be no pretty-pretty reminiscing or wistful nostalgia, but genuine, real-life correspondence, unadulterated and fun.</p><p>On stage: Seela Sella and Esko Roine<br>Premiere: Tampere Theatre 29 January 2019</p><p>Duration: 1 h 45 min (including intermission)<br>Language: Finnish</p>"
            },
            "name": {
                "fi": "SIIRTYY SYKSYYN: Seela Sella ja Esko Roine: Rakkauskirjeitä",
                "sv": "Skjutas upp till hösten: Seela Sella och Esko Roine: Rakkauskirjeitä (Kärleksbrev)",
                "en": "Postponed to the fall: Seela Sella and Esko Roine: Love letters"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68284/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67197",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/eventseries/name-4093518",
                        "sv": "https://www.lippu.fi/eventseries/name-4093518",
                        "en": "https://www.lippu.fi/eventseries/name-4093518"
                    },
                    "description": null,
                    "price": {
                        "fi": "40 € / 27 € / 14 €",
                        "sv": "40 € / 27 € / 14 €",
                        "en": "40 € / 27 € / 14 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494868,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-16T08:13:14.259695Z",
                    "last_modified_time": "2026-02-16T08:13:14.259712Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778551.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494868/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-16T08:13:14.142255Z",
            "last_modified_time": "2026-03-30T09:14:01.355698Z",
            "date_published": null,
            "start_time": "2026-05-09T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kokonaisvaltainen tanssiesitys näkövammaisille ja näkövammattomille aikuisille.",
                "sv": "Fängslande dansföreställning för vuxna med och utan synnedsättning.",
                "en": "Immersive dance performance for adults with and without a visual impairment."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/8F6FDEFD60F1E7104325F0761ED5990F/Eye_Dance_International_Depths_and_Horizons_-aistiesitys",
                "sv": "http://www.caisa.fi/sv/evenemang/event/8F6FDEFD60F1E7104325F0761ED5990F/Eye_Dance_International_Depths_and_Horizons",
                "en": "http://www.caisa.fi/en/events/event/8F6FDEFD60F1E7104325F0761ED5990F/Eye_Dance_International_Depths_and_Horizons"
            },
            "description": {
                "fi": "<p>Kokonaisvaltainen tanssiesitys näkövammaisille ja näkövammattomille aikuisille.</p><p>Kokemus syntyy tuntemuksista, äänistä, tuoksuista ja liikkeestä. Tämä on esitys, jossa yleisö ei katso tanssia vaan kokee sen.</p><p>Depths and Horizons on kokonaisvaltainen, moniaistinen tanssiesitys, joka on tarkoitettu näkövammaisille ja näkövammattomille aikuisille. Se kutsuu yleisön maailmaan, jossa on paljon muutakin, kuin mitä voi nähdä – siellä äänet, tuntemukset, tuoksut ja liike muodostavat kokemuksen kielen. Esitys haastaa perinteiset tanssin kokemisen tavat: sen sijaan, että tanssia katsotaan etäältä, osallistujat kutsutaan tuntemaan ja aistimaan tanssi ja liikkumaan sen mukana.</p><p>Yleisö osallistuu pareittain joko ystävän, kumppanin tai avustajan kanssa. Kunkin parin toinen henkilö kokee esityksen ilman näköaistia niin, että pari ohjaa tätä erilaisesta tuntemuksesta toiseen samalla kun hienovaraiset liikkeet, tuntemukset ja äänimaailmat herättelevät kokijan mielikuvituksen. Paikan päällä on saatavilla silmäsuojaimia.<br> <br>Kukin osallistuja on koko esityksen ajan omassa henkilökohtaisessa tilassaan ja voi valita kuinka aktiivisesti haluaa liikkua tai osallistua esitykseen. Esityksessä käytetään luonnollisia tuoksuja ja syötäviä lavasteita makuaistin herättelyyn. <br> <br>Kesto: Noin 45 min.</p><p>Esitykset ja kielet<br>To 7.5. klo 19 suomeksi<br>Pe 8.5. klo 19 englanniksi  <br>La 9.5. klo 15 suomeksi</p>",
                "sv": "<p>Fängslande dansföreställning för vuxna med och utan synnedsättning.</p><p>Föreställningen upplevs genom beröring, ljud, doft och rörelse. En föreställning där du inte tittar på dans – du upplever den.</p><p>Depths and Horizons är en uppslukande, multisensorisk dansföreställning skapad för vuxna med och utan synnedsättning. Den bjuder in publiken till en värld som går bortom den synliga – där språket i upplevelsen består av ljud, beröring, doft och rörelse. Föreställningen utmanar traditionella sätt att uppfatta dans: istället för att betrakta den på avstånd uppmanas deltagarna att känna, förnimma den och försiktigt röra sig med.</p><p>Publiken deltar i par, antingen med en vän, partner eller assistent. I varje par upplever en av deltagarna föreställningen utan att se och vägleds av sin partner genom en serie olika sensoriska moment, där subtila rörelser, taktila förnimmelser och ljudlandskap väcker fantasin. Ögonlappar finns tillgängliga på föreställningsplatsen.</p><p>Varje deltagare förblir tryggt inom sitt personliga utrymme under hela upplevelsen och kan välja hur aktivt hen vill röra sig eller engagera sig. Under föreställningarna används naturliga dofter och ätbar scenografi för att väcka smaklökarna. <br> <br>Längd: Cirka 45 minuter</p>",
                "en": "<p>Immersive dance performance for adults with and without a visual impairment.</p><p>Explored through touch, sound, scent, and movement. A performance where you don’t watch dance – you experience it.</p><p>Depths and Horizons is an immersive, multisensory dance performance created for adults with and without a visual impairment. It invites the audience to enter a world that goes beyond seeing - where sound, touch, scent, and movement form the language of the experience. The performance challenges traditional ways of perceiving dance: instead of watching it from a distance, participants are invited to feel, sense it and move gently along.</p><p>The audience participates in pairs, either with a friend, partner, or assistant. In each pair, one participant experiences the performance without sight, guided by their partner through a series of different sensory moments, where subtle movements, tactile sensations, and soundscapes awaken the imagination. Eye covers are available the performance place.</p><p>Each participant remains safely within their personal space throughout the experience and can choose how actively they wish to move or engage. During the performances natural scents and edible scenography for awakening the taste are used.<br> <br>Duration: Approximately 45 min</p>"
            },
            "name": {
                "fi": "Eye Dance International: Depths and Horizons -aistiesitys",
                "sv": "Eye Dance International: Depths and Horizons",
                "en": "Eye Dance International: Depths and Horizons"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67197/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67196",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/eventseries/name-4093518",
                        "sv": "https://www.lippu.fi/eventseries/name-4093518",
                        "en": "https://www.lippu.fi/eventseries/name-4093518"
                    },
                    "description": null,
                    "price": {
                        "fi": "40 € / 27 € / 14 €",
                        "sv": "40 € / 27 € / 14 €",
                        "en": "40 € / 27 € / 14 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494867,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-16T08:13:13.768098Z",
                    "last_modified_time": "2026-02-16T08:13:13.768113Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778549.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494867/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-16T08:13:13.623650Z",
            "last_modified_time": "2026-03-30T09:14:00.924703Z",
            "date_published": null,
            "start_time": "2026-05-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kokonaisvaltainen tanssiesitys näkövammaisille ja näkövammattomille aikuisille.",
                "sv": "Fängslande dansföreställning för vuxna med och utan synnedsättning.",
                "en": "Immersive dance performance for adults with and without a visual impairment."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/EE3CFA4A85975F343878E7B56A69C898/Eye_Dance_International_Depths_and_Horizons_-aistiesitys",
                "sv": "http://www.caisa.fi/sv/evenemang/event/EE3CFA4A85975F343878E7B56A69C898/Eye_Dance_International_Depths_and_Horizons",
                "en": "http://www.caisa.fi/en/events/event/EE3CFA4A85975F343878E7B56A69C898/Eye_Dance_International_Depths_and_Horizons"
            },
            "description": {
                "fi": "<p>Kokonaisvaltainen tanssiesitys näkövammaisille ja näkövammattomille aikuisille.</p><p>Kokemus syntyy tuntemuksista, äänistä, tuoksuista ja liikkeestä. Tämä on esitys, jossa yleisö ei katso tanssia vaan kokee sen.</p><p>Depths and Horizons on kokonaisvaltainen, moniaistinen tanssiesitys, joka on tarkoitettu näkövammaisille ja näkövammattomille aikuisille. Se kutsuu yleisön maailmaan, jossa on paljon muutakin, kuin mitä voi nähdä – siellä äänet, tuntemukset, tuoksut ja liike muodostavat kokemuksen kielen. Esitys haastaa perinteiset tanssin kokemisen tavat: sen sijaan, että tanssia katsotaan etäältä, osallistujat kutsutaan tuntemaan ja aistimaan tanssi ja liikkumaan sen mukana.</p><p>Yleisö osallistuu pareittain joko ystävän, kumppanin tai avustajan kanssa. Kunkin parin toinen henkilö kokee esityksen ilman näköaistia niin, että pari ohjaa tätä erilaisesta tuntemuksesta toiseen samalla kun hienovaraiset liikkeet, tuntemukset ja äänimaailmat herättelevät kokijan mielikuvituksen. Paikan päällä on saatavilla silmäsuojaimia.<br> <br>Kukin osallistuja on koko esityksen ajan omassa henkilökohtaisessa tilassaan ja voi valita kuinka aktiivisesti haluaa liikkua tai osallistua esitykseen. Esityksessä käytetään luonnollisia tuoksuja ja syötäviä lavasteita makuaistin herättelyyn. <br> <br>Kesto: Noin 45 min.</p><p>Esitykset ja kielet<br>To 7.5. klo 19 suomeksi<br>Pe 8.5. klo 19 englanniksi  <br>La 9.5. klo 15 suomeksi</p>",
                "sv": "<p>Fängslande dansföreställning för vuxna med och utan synnedsättning.</p><p>Föreställningen upplevs genom beröring, ljud, doft och rörelse. En föreställning där du inte tittar på dans – du upplever den.</p><p>Depths and Horizons är en uppslukande, multisensorisk dansföreställning skapad för vuxna med och utan synnedsättning. Den bjuder in publiken till en värld som går bortom den synliga – där språket i upplevelsen består av ljud, beröring, doft och rörelse. Föreställningen utmanar traditionella sätt att uppfatta dans: istället för att betrakta den på avstånd uppmanas deltagarna att känna, förnimma den och försiktigt röra sig med.</p><p>Publiken deltar i par, antingen med en vän, partner eller assistent. I varje par upplever en av deltagarna föreställningen utan att se och vägleds av sin partner genom en serie olika sensoriska moment, där subtila rörelser, taktila förnimmelser och ljudlandskap väcker fantasin. Ögonlappar finns tillgängliga på föreställningsplatsen.</p><p>Varje deltagare förblir tryggt inom sitt personliga utrymme under hela upplevelsen och kan välja hur aktivt hen vill röra sig eller engagera sig. Under föreställningarna används naturliga dofter och ätbar scenografi för att väcka smaklökarna. <br> <br>Längd: Cirka 45 minuter</p>",
                "en": "<p>Immersive dance performance for adults with and without a visual impairment.</p><p>Explored through touch, sound, scent, and movement. A performance where you don’t watch dance – you experience it.</p><p>Depths and Horizons is an immersive, multisensory dance performance created for adults with and without a visual impairment. It invites the audience to enter a world that goes beyond seeing - where sound, touch, scent, and movement form the language of the experience. The performance challenges traditional ways of perceiving dance: instead of watching it from a distance, participants are invited to feel, sense it and move gently along.</p><p>The audience participates in pairs, either with a friend, partner, or assistant. In each pair, one participant experiences the performance without sight, guided by their partner through a series of different sensory moments, where subtle movements, tactile sensations, and soundscapes awaken the imagination. Eye covers are available the performance place.</p><p>Each participant remains safely within their personal space throughout the experience and can choose how actively they wish to move or engage. During the performances natural scents and edible scenography for awakening the taste are used.<br> <br>Duration: Approximately 45 min</p>"
            },
            "name": {
                "fi": "Eye Dance International: Depths and Horizons -aistiesitys",
                "sv": "Eye Dance International: Depths and Horizons",
                "en": "Eye Dance International: Depths and Horizons"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67196/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67194",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/eventseries/name-4093518",
                        "sv": "https://www.lippu.fi/eventseries/name-4093518",
                        "en": "https://www.lippu.fi/eventseries/name-4093518"
                    },
                    "description": null,
                    "price": {
                        "fi": "40 € / 27 € / 14 €",
                        "sv": "40 € / 27 € / 14 €",
                        "en": "40 € / 27 € / 14 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494866,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-16T07:13:33.566153Z",
                    "last_modified_time": "2026-02-16T07:13:33.566168Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778547.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494866/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-16T07:13:33.414625Z",
            "last_modified_time": "2026-03-30T09:14:00.253391Z",
            "date_published": null,
            "start_time": "2026-05-07T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kokonaisvaltainen tanssiesitys näkövammaisille ja näkövammattomille aikuisille.",
                "sv": "Fängslande dansföreställning för vuxna med och utan synnedsättning.",
                "en": "Immersive dance performance for adults with and without a visual impairment."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/EF55A1DD0E44991F4B2D37A79F6364E3/Eye_Dance_International_Depths_and_Horizons_-aistiesitys",
                "sv": "http://www.caisa.fi/sv/evenemang/event/EF55A1DD0E44991F4B2D37A79F6364E3/Eye_Dance_International_Depths_and_Horizons",
                "en": "http://www.caisa.fi/en/events/event/EF55A1DD0E44991F4B2D37A79F6364E3/Eye_Dance_International_Depths_and_Horizons"
            },
            "description": {
                "fi": "<p>Kokonaisvaltainen tanssiesitys näkövammaisille ja näkövammattomille aikuisille.</p><p>Kokemus syntyy tuntemuksista, äänistä, tuoksuista ja liikkeestä. Tämä on esitys, jossa yleisö ei katso tanssia vaan kokee sen.</p><p>Depths and Horizons on kokonaisvaltainen, moniaistinen tanssiesitys, joka on tarkoitettu näkövammaisille ja näkövammattomille aikuisille. Se kutsuu yleisön maailmaan, jossa on paljon muutakin, kuin mitä voi nähdä – siellä äänet, tuntemukset, tuoksut ja liike muodostavat kokemuksen kielen. Esitys haastaa perinteiset tanssin kokemisen tavat: sen sijaan, että tanssia katsotaan etäältä, osallistujat kutsutaan tuntemaan ja aistimaan tanssi ja liikkumaan sen mukana.</p><p>Yleisö osallistuu pareittain joko ystävän, kumppanin tai avustajan kanssa. Kunkin parin toinen henkilö kokee esityksen ilman näköaistia niin, että pari ohjaa tätä erilaisesta tuntemuksesta toiseen samalla kun hienovaraiset liikkeet, tuntemukset ja äänimaailmat herättelevät kokijan mielikuvituksen. Paikan päällä on saatavilla silmäsuojaimia.<br> <br>Kukin osallistuja on koko esityksen ajan omassa henkilökohtaisessa tilassaan ja voi valita kuinka aktiivisesti haluaa liikkua tai osallistua esitykseen. Esityksessä käytetään luonnollisia tuoksuja ja syötäviä lavasteita makuaistin herättelyyn. <br> <br>Kesto: Noin 45 min.</p><p>Esitykset ja kielet<br>To 7.5. klo 19 suomeksi<br>Pe 8.5. klo 19 englanniksi  <br>La 9.5. klo 15 suomeksi</p>",
                "sv": "<p>Fängslande dansföreställning för vuxna med och utan synnedsättning.</p><p>Föreställningen upplevs genom beröring, ljud, doft och rörelse. En föreställning där du inte tittar på dans – du upplever den.</p><p>Depths and Horizons är en uppslukande, multisensorisk dansföreställning skapad för vuxna med och utan synnedsättning. Den bjuder in publiken till en värld som går bortom den synliga – där språket i upplevelsen består av ljud, beröring, doft och rörelse. Föreställningen utmanar traditionella sätt att uppfatta dans: istället för att betrakta den på avstånd uppmanas deltagarna att känna, förnimma den och försiktigt röra sig med.</p><p>Publiken deltar i par, antingen med en vän, partner eller assistent. I varje par upplever en av deltagarna föreställningen utan att se och vägleds av sin partner genom en serie olika sensoriska moment, där subtila rörelser, taktila förnimmelser och ljudlandskap väcker fantasin. Ögonlappar finns tillgängliga på föreställningsplatsen.</p><p>Varje deltagare förblir tryggt inom sitt personliga utrymme under hela upplevelsen och kan välja hur aktivt hen vill röra sig eller engagera sig. Under föreställningarna används naturliga dofter och ätbar scenografi för att väcka smaklökarna. <br> <br>Längd: Cirka 45 minuter</p>",
                "en": "<p>Immersive dance performance for adults with and without a visual impairment.</p><p>Explored through touch, sound, scent, and movement. A performance where you don’t watch dance – you experience it.</p><p>Depths and Horizons is an immersive, multisensory dance performance created for adults with and without a visual impairment. It invites the audience to enter a world that goes beyond seeing - where sound, touch, scent, and movement form the language of the experience. The performance challenges traditional ways of perceiving dance: instead of watching it from a distance, participants are invited to feel, sense it and move gently along.</p><p>The audience participates in pairs, either with a friend, partner, or assistant. In each pair, one participant experiences the performance without sight, guided by their partner through a series of different sensory moments, where subtle movements, tactile sensations, and soundscapes awaken the imagination. Eye covers are available the performance place.</p><p>Each participant remains safely within their personal space throughout the experience and can choose how actively they wish to move or engage. During the performances natural scents and edible scenography for awakening the taste are used.<br> <br>Duration: Approximately 45 min</p>"
            },
            "name": {
                "fi": "Eye Dance International: Depths and Horizons -aistiesitys",
                "sv": "Eye Dance International: Depths and Horizons",
                "en": "Eye Dance International: Depths and Horizons"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67194/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67268",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494423,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T09:12:59.604498Z",
                    "last_modified_time": "2026-01-09T09:12:59.604512Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780794.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494423/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T09:12:59.426644Z",
            "last_modified_time": "2026-03-30T09:13:50.808483Z",
            "date_published": null,
            "start_time": "2026-03-30T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kevätkauden Kino Kuutamoissa nähdään yleisön ehdotuksista valitut kolme elokuvaa.",
                "sv": "Under vårsäsongen på Kino Kuutamo visas tre filmer som valts ut bland publikens nomineringar.",
                "en": "The spring season at Kino Kuutamo will feature three films selected from suggestions submitted by the public."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3624D41CAB861F0B2E83F5D16655DDC7/Kino_Kuutamo_Barbie_13_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3624D41CAB861F0B2E83F5D16655DDC7/Kino_Kuutamo_Barbie_13_",
                "en": "http://www.kanneltalo.fi/en/events/event/3624D41CAB861F0B2E83F5D16655DDC7/Kino_Kuutamo_Barbie_13_"
            },
            "description": {
                "fi": "<p>Kevätkauden Kino Kuutamoissa nähdään yleisön ehdotuksista valitut kolme elokuvaa.</p><p>Sarjan toisena osana nähdään Greta Gerwigin ohjaama Barbie-elokuva vuodelta 2023. Elokuvahistorian asiantuntija FT Harri Kilpi johdattaa illan elokuvaan klo 17–17.45. Elokuvan ilmaisnäytös alkaa klo 18.</p><p>Barbie<br>Elämä Barbiemaassa on täydellistä. Paitsi jos sinulla on eksistentiaalinen kriisi. Tai jos olet Ken.<br>Barbie on vuonna 2023 ensi-iltansa saanut yhdysvaltalainen satiirinen fantasia-ja komediaelokuva, jonka on ohjannut Greta Gerwig.</p><p>Se on ensimmäinen Barbie-nukkeen perustuva näytelty elokuva. Elokuvassa Barbie (Margot Robbie) ja Ken (Ryan Gosling) kohtaavat eksistentiaalisen kriisin, joka saa heidät kyseenalaistamaan itsensä ja maailmansa.</p><p>”Valtavasti hehkutettu Barbie-elokuva vastaa suuriin odotuksiin ja jopa yllättää.”</p><p>HS Leena Virtanen ★★★★</p><p>Kesto: 1 t 54 min<br>Ikäraja: K13. 12-18-vuotiaille varataan 20 paikkaa Pulssitoiminnan kautta. Muuten kuin Pulssitoiminnan kautta tulevat alle 18-vuotiaat elokuvaan vain huoltajan seurassa. Tulethan ajoissa, näytös alkaa täsmällisesti eikä myöhästyneitä oteta saliin näytännön aikana. Ei leffaherkkuja saliin.<br>Ohjaaja: Greta Gerwig<br>Pääosissa: Margot Robbie, Ryan Gosling, America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Will Ferrell, Helen Mirren<br>Ensi-ilta: 21.7.2023</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Under vårsäsongen på Kino Kuutamo visas tre filmer som valts ut bland publikens nomineringar.</p><p>Den andra delen av serien blir Barbie-filmen från 2023, i regi av Greta Gerwig. FD Harri Kilpi, expert på filmhistoria, ger en inledning till filmen kl. 17–17.45. Gratisvisningen av filmen börjar kl. 18.</p><p>Barbie<br>Livet i Barbieland är perfekt. Såvida du inte har en existentiell kris. Eller om du är Ken.<br>Barbie är en amerikansk satirisk fantasy- och komedifilm som hade premiär 2023 och är regisserad av Greta Gerwig.</p><p>Den är den första spelfilmen som baserar sig på Barbiedockan. I filmen ställs <br>Barbie (Margot Robbie) och Ken (Ryan Gosling) inför en existentiell kris, som får dem att ifrågasätta sig själva och världen.</p><p>”Den enormt hypade Barbie-filmen lever upp till de höga förväntningarna och överraskar till och med.”</p><p>HS Leena Virtanen ★★★★</p><p>Längd: 1 h 54 min.<br>Åldersgräns: 13 år<br>Regi: Greta Gerwig<br>I huvudrollerna: Margot Robbie, Ryan Gosling, America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Will Ferrell, Helen Mirren<br>Premiär: 21.7.2023</p><p>Fritt inträde</p>",
                "en": "<p>The spring season at Kino Kuutamo will feature three films selected from suggestions submitted by the public.</p><p>The second part of the series will be Barbie from 2023, directed by Greta Gerwig. Film historian Harri Kilpi, PhD, will introduce the evening's film from 17.00 to 17.45. The free screening will begin at 18.00.</p><p>Barbie<br>Life in Barbieland is perfect. Unless you have an existential crisis. Or if you are Ken.<br>Barbie, premiered in 2023, is an American satirical fantasy and comedy film, directed by Greta Gerwig.</p><p>It is the first live-action film based on the Barbie doll. In the film Barbie (Margot Robbie) and Ken (Ryan Gosling) encounter an existential crisis that causes them to question themselves and their world.</p><p>\"The hugely hyped Barbie film lives up to high expectations and even surprises.\"</p><p>HS Leena Virtanen ★★★★</p><p>Duration: 1 hour 54 min<br>Age limit: 13 and older<br>Director: Greta Gerwig<br>Leads: Margot Robbie, Ryan Gosling, America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Will Ferrell, Helen Mirren<br>Premiere: 21 July 2023</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Kino Kuutamo: Barbie (13) – Maksuttomat maanantait",
                "sv": "Kino Kuutamo: Barbie (13) – Avgiftsfria måndagar",
                "en": "Kino Kuutamo: Barbie (13) – Free Mondays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67268/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68332",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmitalo-balettakademien-stockholm-react-malmitalo-21497773/",
                        "sv": "https://www.lippu.fi/event/malmitalo-balettakademien-stockholm-react-malmitalo-21497773/",
                        "en": "https://www.lippu.fi/event/malmitalo-balettakademien-stockholm-react-malmitalo-21497773/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15€ / 10€",
                        "sv": "15€ / 10€",
                        "en": "15€ / 10€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1777563,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-30T07:13:21.583053Z",
                    "last_modified_time": "2026-03-30T07:13:21.583068Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787694.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1777563/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-30T07:13:21.496636Z",
            "last_modified_time": "2026-03-30T07:13:21.722304Z",
            "date_published": null,
            "start_time": "2026-05-28T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "”REACT” on dynaaminen tanssiteos, jossa tekninen tarkkuus, emotionaalinen ilmaisu ja kollektiivinen energia kohtaavat näyttämöllä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2AB8A55B14A4BFBB00D616E2DE80754E/REACT",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2AB8A55B14A4BFBB00D616E2DE80754E/REACT",
                "en": "http://www.malmitalo.fi/en/events/event/2AB8A55B14A4BFBB00D616E2DE80754E/REACT"
            },
            "description": {
                "fi": "<p>”REACT” on dynaaminen tanssiteos, jossa tekninen tarkkuus, emotionaalinen ilmaisu ja kollektiivinen energia kohtaavat näyttämöllä.</p><p>Esitys sisältää teoksia kansainvälisesti ja kansallisesti arvostetuilta koreografeilta, kuten Mats Ek, Sharon <br>Eyal, Cristin Olesen, Stina Nyberg ja Roger Lybeck.</p><p>Esitys saa ensi-iltansa Östesundissa ja jatkaa sieltä kiertueelle Osloon, Trondheimiin, Jönköpingiin, Tukholmaan, Norrköpingiin ja viimeisenä, muttei vähäisimpänä, Helsinkiin.</p><p>Näyttämöllä nähdään Tukholman Balettakademin vuoden 2026 valmistuva luokka kohtaamassa tanssimaailman vaikutusvaltaisimpia koreografisia ääniä</p><p>Kesto: 1 t, sis 10min väliajan</p>"
            },
            "name": {
                "fi": "REACT – Balettakademien Stockholm",
                "sv": "REACT – Balettakademien Stockholm",
                "en": "REACT – Balettakademien Stockholm"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68332/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67815",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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": 1710077,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T07:13:05.181126Z",
                    "last_modified_time": "2026-03-23T07:13:05.181140Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782928.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710077/?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-03-23T07:13:05.074298Z",
            "last_modified_time": "2026-03-30T07:13:21.298281Z",
            "date_published": null,
            "start_time": "2026-05-28T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/F46C54BFCC85A9E6781E77E5CB36112B/Jussin_metsasadut",
                "sv": "http://www.stoa.fi/sv/evenemang/event/F46C54BFCC85A9E6781E77E5CB36112B/Jussin_metsasadut",
                "en": "http://www.stoa.fi/en/events/event/F46C54BFCC85A9E6781E77E5CB36112B/Jussin_metsasadut"
            },
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Myös perheet ovat tuokioihin tervetulleita!<br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.  <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi      <br>Vapaa pääsy  <br>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch 13.1. klo 10 alkaen</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska</p><p>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>"
            },
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog",
                "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67815/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67814",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": 1710076,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T07:13:04.816624Z",
                    "last_modified_time": "2026-03-23T07:13:04.816639Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782927.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710076/?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-03-23T07:13:04.684671Z",
            "last_modified_time": "2026-03-30T07:13:21.124224Z",
            "date_published": null,
            "start_time": "2026-05-28T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/EA6E041ED1B7F131C30E9778FBBFF007/Jussin_metsasadut",
                "sv": "http://www.stoa.fi/sv/evenemang/event/EA6E041ED1B7F131C30E9778FBBFF007/Jussin_metsasadut",
                "en": "http://www.stoa.fi/en/events/event/EA6E041ED1B7F131C30E9778FBBFF007/Jussin_metsasadut"
            },
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Myös perheet ovat tuokioihin tervetulleita!<br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.  <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi      <br>Vapaa pääsy  <br>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch 13.1. klo 10 alkaen</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska</p><p>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>"
            },
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog",
                "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67814/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67813",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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": 1710074,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T07:13:03.162794Z",
                    "last_modified_time": "2026-03-23T07:13:03.162809Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782925.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710074/?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-03-23T07:13:03.049479Z",
            "last_modified_time": "2026-03-30T07:13:20.004794Z",
            "date_published": null,
            "start_time": "2026-05-21T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/26858B40DDEB500EEC406CF896627905/Jussin_metsasadut_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/26858B40DDEB500EEC406CF896627905/Jussin_metsasadut_",
                "en": "http://www.stoa.fi/en/events/event/26858B40DDEB500EEC406CF896627905/Jussin_metsasadut_"
            },
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Myös perheet ovat tuokioihin tervetulleita!<br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.  <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi      <br>Vapaa pääsy  <br>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch 13.1. klo 10 alkaen</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska</p><p>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk. <br>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>"
            },
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog",
                "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67813/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67812",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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": 1710073,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T07:13:02.752322Z",
                    "last_modified_time": "2026-03-23T07:13:02.752340Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782924.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710073/?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-03-23T07:13:02.629024Z",
            "last_modified_time": "2026-03-30T07:13:19.788191Z",
            "date_published": null,
            "start_time": "2026-05-21T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/A804EED9EEBFBD27EC109A90553D81BF/Jussin_metsasadut_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/A804EED9EEBFBD27EC109A90553D81BF/Jussin_metsasadut_",
                "en": "http://www.stoa.fi/en/events/event/A804EED9EEBFBD27EC109A90553D81BF/Jussin_metsasadut"
            },
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana.</p><p>Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Myös perheet ovat tuokioihin tervetulleita!<br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.</p><p>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi</p><p>Vapaa pääsy</p><p>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch<br>13.1. klo 10 alkaen</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen.</p><p>Den pålitliga utflyktsgitarren följer med.<br>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt. <br>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar</p><p>Längd: ca 45 min.<br>Språk: finska     <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>"
            },
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog",
                "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67812/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68285",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1710479,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T08:13:17.421680Z",
                    "last_modified_time": "2026-03-23T08:13:17.421695Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786383.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-23T08:13:17.199846Z",
            "last_modified_time": "2026-03-30T06:14:07.890880Z",
            "date_published": null,
            "start_time": "2026-06-02",
            "end_time": "2026-08-25",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa tanssimaan Malmille kesätiistaisin kello 16–16.45!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/93BA4D6E613749A36B00797EBBC1C3B7/Kaupunkitanssit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/93BA4D6E613749A36B00797EBBC1C3B7/Kaupunkitanssit",
                "en": "http://www.malmitalo.fi/en/events/event/93BA4D6E613749A36B00797EBBC1C3B7/Kaupunkitanssit"
            },
            "description": {
                "fi": "<p>Tervetuloa tanssimaan Malmille kesätiistaisin kello 16–16.45!</p><p>Kaupunkitanssit tarjoaa maksutonta paritanssiopetusta kesäaikaan eri puolilla pääkaupunkiseutua.</p><p>Kaupunkitanssit sopivat niin aloittelijoille kuin kokeneimmillekin tanssijoille, opetus mukautetaan aina osallistujien taitotasoon. Tanssimaan voi tulla yksin tai parin kanssa, eikä ennakkoilmoittautumista tarvita.</p><p>Opetuksesta vastaavat koulutetut tanssinopettajat. Sadesäällä tanssitaan Malmitalon aulassa. Kaupunkitanssit järjestää Tanssiteatteri Tsuumi yhteistyössä Malmitalon kanssa.</p><p>\"Kaupunkitanssien kaltaiset matalan kynnyksen tapahtumat tuovat tanssin ilon kaikkien ulottuville!\"</p><p><b>OPETUSOHJELMA</b><br>Ti 2.6. klo 16–16.45<br>Ti 9.6. klo 16–16.45 <br>Ti 16.6. klo 16–16.45<br>Ti 23.6. klo 16–16.45 <br>Ti 30.6. klo 16–16.45 <br>Ti 7.7. klo 16–16.45 <br>Ti 14.7. klo 16–16.45 <br>Ti 21.7. klo 16–16.45 <br>Ti 28.7. klo 16–16.45 <br>Ti 4.8. klo 16–16.45 <br>Ti 11.8. klo 16–16.45 <br>Ti 18.8. klo 16–16.45 <br>Ti 25.8. klo 16–16.45</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Kaupunkitanssit – Malmin tapahtumakesä 2026",
                "sv": "Kaupunkitanssit",
                "en": "Kaupunkitanssit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68285/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20843262",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2039568/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-studio-pasila-20843262/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-studio-pasila-20843262/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-studio-pasila-20843262/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235438,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:43.926542Z",
                    "last_modified_time": "2025-02-17T11:16:43.926559Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/clubactone222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235438/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-20T07:15:59.233002Z",
            "last_modified_time": "2026-03-29T00:16:55.643585Z",
            "date_published": null,
            "start_time": "2026-03-28T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "CLUB ACT!ONE Studio Pasila on Suomen johtava stand up -komiikan estradi."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/eventseries/club-actone-2039568/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/eventseries/club-actone-2039568/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/eventseries/club-actone-2039568/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Studio Pasila on Suomen johtava stand up -komiikan estradi. Lavalle nousevat maan eturivin stand up -koomikot. Stand up on irrottelua, vedätystä, itsensä alttiiksi panemista ja uuden esitystilanteen nopeaa oivaltamista.</p><p>Esitykset kestävät noin 2 tuntia, sisältäen lyhyen väliajan. Esitykset K-18.</p><p>Yhteistyössä W&amp;T Comedyn kanssa.</p>",
                "en": "<p><strong>CLUB ACT!ONE</strong></p>"
            },
            "name": {
                "en": "Club Act!One K-18"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20843262/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}