Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 21732,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=77",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=75"
    },
    "data": [
        {
            "id": "kulke:66525",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "13,50 € / 8,10 €",
                        "sv": "13,50 € / 8,10 €",
                        "en": "13,50 € / 8,10 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kannelmaeen-voimistelijat-ry/",
                        "sv": "https://www.lippu.fi/artist/kannelmaeen-voimistelijat-ry/",
                        "en": "https://www.lippu.fi/artist/kannelmaeen-voimistelijat-ry/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491124,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-20T07:13:54.653335Z",
                    "last_modified_time": "2025-10-20T07:13:54.653349Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774896.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491124/?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-10-20T07:13:54.567584Z",
            "last_modified_time": "2025-11-17T08:13:20.894836Z",
            "date_published": null,
            "start_time": "2025-12-13T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kannelmäen Voimistelijoiden joulunäytös",
                "sv": "Julföreställning av Kannelmäen Voimistelijat",
                "en": "Christmas show by the Kannelmäki gymnasts"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/42846C39A399A32E650722F7C39FB1B7/Kannelmaen_Voimistelijoiden_joulunaytos",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/42846C39A399A32E650722F7C39FB1B7/Julforestallning_av_Kannelmaen_Voimistelijat",
                "en": "http://www.kanneltalo.fi/en/events/event/42846C39A399A32E650722F7C39FB1B7/Christmas_show_by_the_Kannelmaki_gymnasts"
            },
            "short_description": {
                "fi": "Kannelmäen voimistelijoiden perinteinen joulunäytös nähdään jälleen Kanneltalolla!",
                "sv": "Kannelmäen voimistelijats traditionella julföreställning ses igen på Gamlasgården!",
                "en": "The traditional Christmas performance by Kannelmäen voimistelijat gymnasts returns to Kanneltalo!"
            },
            "description": {
                "fi": "<p>Kannelmäen voimistelijoiden perinteinen joulunäytös nähdään jälleen Kanneltalolla!</p><p>Tiedot näytöksissä esiintyvistä ryhmistä julkaistaan Kannelmäen voimistelijoiden verkkosivuilla: https://www.kannelmaenvoimistelijat.fi/</p><p>Kesto: n. 1 h 30 min (sis. väliaika)</p><p>Liput: 15,30 € ja 8,10 € <br>Lipunmyynti avautuu 24.11.</p>",
                "sv": "<p>Kannelmäen voimistelijats traditionella julföreställning ses igen på Gamlasgården!</p><p>Information om de grupper som uppträder publiceras på Kannelmäen voimistelijats webbplats: https://www.kannelmaenvoimistelijat.fi/</p><p>Längd: ca 1 h 30 min (inc. pauss)</p><p>Biljetter: 13,50 € ja 8,10 €</p>",
                "en": "<p>The traditional Christmas performance by Kannelmäen voimistelijat gymnasts returns to Kanneltalo!</p><p>Details about the performing groups will be announced on the Kannelmäen voimistelijat website: https://www.kannelmaenvoimistelijat.fi/</p><p>Duration: approx. 1 h 30 min (incl. Intermission)</p><p>Tickets13,50 € ja 8,10 € <br>Ticket sales opens on 24th of November</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66525/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67456",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-nama-pienet-asiat-malmitalo-20945534/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493813,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-17T07:13:01.487790Z",
                    "last_modified_time": "2025-11-17T07:13:01.487803Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777381.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493813/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-17T07:13:01.386697Z",
            "last_modified_time": "2025-11-17T07:13:01.616026Z",
            "date_published": null,
            "start_time": "2025-12-13T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kino Helios: Nämä pienet asiat (7)"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CE11444F8FCC31BF70D06667D7079169/Kino_Helios_Nama_pienet_asiat_7_"
            },
            "short_description": {
                "fi": "Nämä pienet asiat (Small Things Like These) on Claire Keeganin samannimiseen menestysromaaniin perustuva draamaelokuva, jonka on ohjannut Tim Mielants."
            },
            "description": {
                "fi": "<p>Nämä pienet asiat (Small Things Like These) on Claire Keeganin samannimiseen menestysromaaniin perustuva draamaelokuva, jonka on ohjannut Tim Mielants.</p><p>Tositapahtumiin perustuva Nämä pienet asiat on tarina siitä, miten jopa hyväntahtoiset ihmiset voivat sulkea silmänsä epäoikeudenmukaisuudelta – ja miten rohkeus voi lopulta muuttaa kaiken.</p><p>Oscar®-voittaja Cillian Murphy (paras miespääosa 2023, Oppenheimer) tekee hienovaraisen ja vaikuttavan roolisuorituksen omistautuneena isänä Bill Furlongina.  Nämä pienet asiat on Claire Keeganin samannimiseen menestysromaaniin perustuva draamelokuva.</p><p>Bill työskentelee pienen irlantilaiskaupungin hiilikauppiaana elättääkseen perheensä, kun hänelle alkaa vähitellen paljastua synkkiä salaisuuksia, joita paikallinen luostari kätkee sisäänsä. Samalla hän joutuu kohtaamaan oman menneisyytensä ja katolisen kirkon hallitseman yhteisön vaikenemisen. Luostarin johtajana, sisar Marynä nähdään Emily Watson.</p><p>Suomen elokuvasäätiön maahantuontituki 2025.</p><p>Ikäraja: 7<br>Kesto: 99 min<br>Ensi-ilta: 21.11.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67456/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67458",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "6 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-20945712/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493812,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-17T07:13:01.011015Z",
                    "last_modified_time": "2025-11-17T07:13:01.011028Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777380.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493812/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-17T07:13:00.899002Z",
            "last_modified_time": "2025-11-17T07:13:01.132980Z",
            "date_published": null,
            "start_time": "2025-12-13T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kino Helios: Tonttu (7)"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9AD60A44A2E6A9DC0E3E75B0250AC516/Kino_Helios_Tonttu_7_"
            },
            "short_description": {
                "fi": "Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta."
            },
            "description": {
                "fi": "<p>Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta.</p><p>Lumi ja Talvi ovat olleet erottamattomat koko elämänsä ajan, kunnes kohtalo yllättäen ajaa heidät erilleen. Lumi päätyy taianomaiseen tonttumaahan, jossa tontut valmistavat joululahjat kaikille maailman lapsille. Alkaa seikkailu, joka vaatii rohkeutta, luottamusta ja kekseliäisyyttä. Tontut ovat aluksi epäluuloisia tyhjästä tupsahtavaa ihmislasta kohtaan, mutta tonttulapsi Pyry ottaa Lumin mielenkiinnolla vastaan. Pyry on kiinnostunut uusista seikkailuista ja ystävyys Lumin kanssa näyttää mahdollisuudelta jännittävään matkaan. Talvinen retki tonttujen taianomaisessa maailmassa on täynnä yllätyksiä ja joulun ihmeitä.<br>Joonas Berghäll ja Hannes Vartiainen ovat ohjanneet Tonttu-elokuvan, jota on kuvattu Kemin Lumilinnassa, Levillä, Rovaniemellä ja Helsingissä. Elokuvan lapsirooleissa nähdään Soma Zimmatore, Thea Achillea ja Marco Stylianou. Muissa rooleissa nähdään huippuammattilaisia kuten Sara Melleri, Jarkko Niemi, Alma Pöysti, Eero Milonoff, Kati Outinen ja Vesa Vierikko. Mukana myös Tonttu-maailman vartijoina tubettaja, artisti Seksikäs-Suklaa ja artisti Musta Barbaari. Sivurooleissa nähdään myös vaikuttajat Viivi ja Venla.<br>Robin Packalen julkaisee suomalaisen Tonttu-elokuvan tunnuskappaleen Piece by Piece keskiviikkona 12.11. Se on yhteisjulkaisu ruotsalaisartisti Clara Maen kanssa. Kappale on tehty suomalaisvoimin – Packalenin mukana kappaletta ovat olleet tekemässä ILON, Camu Creutz sekä Elias Hjelm.</p><p>Ikäraja: 7<br>Kesto: 81 min<br>Ensi-ilta: 14.11.2025<br>Kieli: puhuttu suomeksi<br>Tekstitys: suomi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67458/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67457",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "6 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-20945711/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493811,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-17T07:13:00.445643Z",
                    "last_modified_time": "2025-11-17T07:13:00.445656Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777312.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493811/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-17T07:13:00.342726Z",
            "last_modified_time": "2025-11-17T07:13:00.573130Z",
            "date_published": null,
            "start_time": "2025-12-12T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kino Helios: Tonttu (7)"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6A364185F128C1F955E6CBBEF26F92DF/Kino_Helios_Tonttu_7_"
            },
            "short_description": {
                "fi": "Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta."
            },
            "description": {
                "fi": "<p>Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta.</p><p>Lumi ja Talvi ovat olleet erottamattomat koko elämänsä ajan, kunnes kohtalo yllättäen ajaa heidät erilleen. Lumi päätyy taianomaiseen tonttumaahan, jossa tontut valmistavat joululahjat kaikille maailman lapsille. Alkaa seikkailu, joka vaatii rohkeutta, luottamusta ja kekseliäisyyttä. Tontut ovat aluksi epäluuloisia tyhjästä tupsahtavaa ihmislasta kohtaan, mutta tonttulapsi Pyry ottaa Lumin mielenkiinnolla vastaan. Pyry on kiinnostunut uusista seikkailuista ja ystävyys Lumin kanssa näyttää mahdollisuudelta jännittävään matkaan. Talvinen retki tonttujen taianomaisessa maailmassa on täynnä yllätyksiä ja joulun ihmeitä.<br>Joonas Berghäll ja Hannes Vartiainen ovat ohjanneet Tonttu-elokuvan, jota on kuvattu Kemin Lumilinnassa, Levillä, Rovaniemellä ja Helsingissä. Elokuvan lapsirooleissa nähdään Soma Zimmatore, Thea Achillea ja Marco Stylianou. Muissa rooleissa nähdään huippuammattilaisia kuten Sara Melleri, Jarkko Niemi, Alma Pöysti, Eero Milonoff, Kati Outinen ja Vesa Vierikko. Mukana myös Tonttu-maailman vartijoina tubettaja, artisti Seksikäs-Suklaa ja artisti Musta Barbaari. Sivurooleissa nähdään myös vaikuttajat Viivi ja Venla.<br>Robin Packalen julkaisee suomalaisen Tonttu-elokuvan tunnuskappaleen Piece by Piece keskiviikkona 12.11. Se on yhteisjulkaisu ruotsalaisartisti Clara Maen kanssa. Kappale on tehty suomalaisvoimin – Packalenin mukana kappaletta ovat olleet tekemässä ILON, Camu Creutz sekä Elias Hjelm.</p><p>Ikäraja: 7<br>Kesto: 81 min<br>Ensi-ilta: 14.11.2025<br>Kieli: puhuttu suomeksi<br>Tekstitys: suomi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67457/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67455",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-nama-pienet-asiat-malmitalo-20945533/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493810,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-17T07:12:59.393380Z",
                    "last_modified_time": "2025-11-17T07:12:59.393392Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777347.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493810/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-17T07:12:59.226564Z",
            "last_modified_time": "2025-11-17T07:12:59.585275Z",
            "date_published": null,
            "start_time": "2025-12-10T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kino Helios: Nämä pienet asiat (7)"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF41934DF85EEE1DCCEF58E6073DBCFF/Kino_Helios_Nama_pienet_asiat_7_"
            },
            "short_description": {
                "fi": "Nämä pienet asiat (Small Things Like These) on Claire Keeganin samannimiseen menestysromaaniin perustuva draamaelokuva, jonka on ohjannut Tim Mielants."
            },
            "description": {
                "fi": "<p>Nämä pienet asiat (Small Things Like These) on Claire Keeganin samannimiseen menestysromaaniin perustuva draamaelokuva, jonka on ohjannut Tim Mielants.</p><p>Tositapahtumiin perustuva Nämä pienet asiat on tarina siitä, miten jopa hyväntahtoiset ihmiset voivat sulkea silmänsä epäoikeudenmukaisuudelta – ja miten rohkeus voi lopulta muuttaa kaiken.</p><p>Oscar®-voittaja Cillian Murphy (paras miespääosa 2023, Oppenheimer) tekee hienovaraisen ja vaikuttavan roolisuorituksen omistautuneena isänä Bill Furlongina.  Nämä pienet asiat on Claire Keeganin samannimiseen menestysromaaniin perustuva draamelokuva.</p><p>Bill työskentelee pienen irlantilaiskaupungin hiilikauppiaana elättääkseen perheensä, kun hänelle alkaa vähitellen paljastua synkkiä salaisuuksia, joita paikallinen luostari kätkee sisäänsä. Samalla hän joutuu kohtaamaan oman menneisyytensä ja katolisen kirkon hallitseman yhteisön vaikenemisen. Luostarin johtajana, sisar Marynä nähdään Emily Watson.</p><p>Suomen elokuvasäätiön maahantuontituki 2025.</p><p>Ikäraja: 7<br>Kesto: 99 min<br>Ensi-ilta: 21.11.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67455/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agni2rs5fm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-11-16T14:31:50.782427Z",
            "last_modified_time": "2025-11-16T14:32:59.744381Z",
            "date_published": null,
            "start_time": "2025-11-22T13:00:00Z",
            "end_time": "2025-11-22T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "MokaBellan Taikashow",
                "en": "MokaBella Magic Show"
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider": null,
            "info_url": null,
            "short_description": {
                "fi": "Lastenviikonloppuna Sellon perhepäivässä 22.11. esiintyy Klovni MokaBella.  Mokabellan taikashowhon sisältyy taikuutta, pelleilyä, vitsailua ja musiikkia.",
                "en": "Clown MokaBella will be performing at the Sello Family Day during Children's Weekend.  MokaBella's magic show includes magic, clowning, jokes, and music."
            },
            "description": {
                "fi": "<p>Lastenviikonloppuna Sellon perhepäivässä 22.11. esiintyy Klovni MokaBella.&nbsp;Mokabellan taikashowhon sisältyy taikuutta, pelleilyä, vitsailua ja musiikkia. Esitys on interaktiivinen, joten yleisö saa osallistua siihen muun muassa liikkumalla, antamalla neuvoja ja taikapuhaltamalla.</p><p>Vapaa pääsy!&nbsp;</p>",
                "sv": "<p><br></p>",
                "en": "<p>Clown MokaBella will be performing at the Sello Family Day on November 22 during Children's Weekend.&nbsp;MokaBella's magic show includes magic, clowning, jokes, and music.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agni2rs5fm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agni2rs6ae",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-11-16T14:23:46.154726Z",
            "last_modified_time": "2025-11-16T14:23:46.154750Z",
            "date_published": null,
            "start_time": "2025-11-22T12:00:00Z",
            "end_time": "2025-11-22T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lastenorkesteri Rypsi ja Rapsi",
                "sv": "Barnorkester  Rypsi ja Rapsi",
                "en": "Children's orchestra Rypsi ja Rapsi"
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider": null,
            "info_url": null,
            "short_description": {
                "fi": "Lastenviikonloppuna Sellon perhepäivässä 22.11. esiintyy valloittava lastenorkesteri Rypsi ja Rapsi.\n Vapaa pääsy.",
                "sv": "Den charmiga barnorkestern Rypsi ja Rapsi uppträder på Sello Family Day den 22 november under Barnens helg.",
                "en": "The charming children's orchestra Rypsi ja Rapsi will perform at the Sello Family Day on November 22 during Children's Weekend. Free admission."
            },
            "description": {
                "fi": "<p>Lastenviikonloppuna Sellon perhepäivässä 22.11. esiintyy valloittava lastenorkesteri Rypsi ja Rapsi.</p><p>&nbsp;Vapaa pääsy.</p>",
                "sv": "<p>Den charmiga barnorkestern Rypsi ja Rapsi uppträder på Sello Family Day den 22 november under Barnens helg.</p><p>&nbsp;Fri entré.</p>",
                "en": "<p>The charming children's orchestra Rypsi ja Rapsi will perform at the Sello Family Day on November 22 during Children's Weekend.</p><p>&nbsp;Free admission.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agni2rs6ae/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66955",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "10-30 €",
                        "sv": "10-30 €",
                        "en": "10-30 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoy-teatteri/itsenaeisyyspaeivaen-rauhanmatinea-aeiti-maa-isaenmaa-3951690/",
                        "sv": "https://www.lippu.fi/artist/savoy-teatteri/itsenaeisyyspaeivaen-rauhanmatinea-aeiti-maa-isaenmaa-3951690/",
                        "en": "https://www.lippu.fi/artist/savoy-teatteri/itsenaeisyyspaeivaen-rauhanmatinea-aeiti-maa-isaenmaa-3951690/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490567,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-29T12:14:36.987794Z",
                    "last_modified_time": "2025-08-29T12:14:36.987812Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777063.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490567/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-29T12:14:36.877671Z",
            "last_modified_time": "2025-11-15T12:13:04.049588Z",
            "date_published": null,
            "start_time": "2025-12-06T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Itsenäisyyspäivän rauhanmatinea - Äiti maa - isänmaa",
                "sv": "Fredsmatiné på självständighetsdagen: Äiti maa – isänmaa",
                "en": "Independence Day Peace Matinee – Mother Earth - Fatherland"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Suomen Rauhanliitto - Finlands Fredsförbund ry",
                "sv": "Suomen Rauhanliitto - Finlands Fredsförbund ry",
                "en": "Suomen Rauhanliitto - Finlands Fredsförbund ry"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/25390F6944DD0778E8FE171583D04C15/Itsenaisyyspaivan_rauhanmatinea_-_Aiti_maa_-_isanmaa",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/25390F6944DD0778E8FE171583D04C15/Fredsmatin_pa_sjalvstandighetsdagen_Aiti_maa_isanmaa",
                "en": "http://www.savoyteatteri.fi/en/events/event/25390F6944DD0778E8FE171583D04C15/Independence_Day_Peace_Matinee_Mother_Earth_-_Fatherland"
            },
            "short_description": null,
            "description": {
                "fi": "<p>Suomen Rauhanliiton ja Sadankomitean perinteisessä itsenäisyyspäivä matineassa, 6.12 klo 13-15.30 on mukana kertomassa suhteestaan äitimaa – isänmaahan sekä rauhaan useita yhteiskunnan vaikuttajia tieteen, taiteen ja yhteiskunnan muilta aloilta sekä musiikkia ja tanssia kaikkien ikäluokkien makuun.</p><p>Esiintyjinä mm. Pekka Haavisto, Paula Risikko, Bilal Hussein, CMI (TBD), Kjell Westo, Martti Koskenniemi, Li Andersson, Paleface, Timo Tuominen, Tamara Rasmussen opiston tanssiryhmä, Janne Mertanen, Ada Katz, Harri Saksala, Tuomo Uusitalo Trio (TBC), Nuorisokuoro All 4 Voices ja Arja Saijonmaa.<br>Tilaisuuden juontaa Katariina Kaitue.</p><p>Tilaisuus on hyvä aloitus Itsenäisyyspäivän viettoon.</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p><p>***</p><p>Itsenäisyyspäivän rauhan matineaa voi seurata myös striimina.<br>Striimi lippuja saatavilla 5 euron hintaan + tilausmaksut (alk. 1,50 € + 0,65 % tilauksesta).<br>Lipun ostaneille lähetetään linkki katselualustaan, esityspäivänä klo 10.30 mennessä.<br>Striimia voi seurata tapahtuman jälkeen vielä kuuden kuukauden ajan.</p>",
                "sv": "<p>I den traditionella självständighetsdagsmatinén, som ordnas av Finlands Fredsförbund och De hundras kommitté i Finland på självständighetsdagen den 6 december kl. 13–15:30, talar ett antal samhällspåverkare inom vetenskap, konst och andra samhällsområden samt musik och dans om sitt förhållande till moderland och fädernesland samt fred på ett sätt som passar alla åldrar.</p><p>Talare är bland annat Pekka Haavisto, Paula Risikko, Bilal Hussein, CMI (TBD), Kjell Westo, Martti Koskenniemi, Li Andersson, Paleface, Timo Tuominen, Tamara Rasmussen högskolans dansgrupp, Janne Mertanen, Ada Katz, Harri Saksala, Tuomo Uusitalo Trio (TBC), Ungdomskör All 4 Voices ja Arja Saijonmaa. <br>Katariina Kaitue är värd för evenemanget.</p><p>Evenemanget är en bra start på självständighetsdagsfirandet.</p><p>Åldersgräns: Tillåten för alla åldrar.</p><p>Längd ca 2 h 30 min., inklusive paus.</p>",
                "en": "<p>The traditional Independence Day matinee of the Peace Union of Finland and the Finnish Committee of 100 on 6 December at 13:00–15:30 will feature a number of social leaders from science, art and other fields of society speaking about their relationship with Mother Earth, the fatherland and peace. The event will also offer music and dance performances for all ages.</p><p>The performers include names such as Pekka Haavisto, Paula Risikko, Bilal Hussein, CMI (TBD), Kjell Westo, Martti Koskenniemi, Li Andersson, Paleface, Timo Tuominen, Tamara Rasmussen the school's dance group, Janne Mertanen, Ada Katz, Harri Saksala, Tuomo Uusitalo Trio (TBC), Youth choir All 4 Voices ja Arja Saijonmaa. <br>The event will be hosted by Katariina Kaitue.</p><p>The event is a good way to start the Independence Day celebrations.</p><p>Age rating: G</p><p>Duration approx. 2 h 30 min, including intermission</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66955/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:2adefb97-24be-4601-a3f1-1949ca6ed2f0",
            "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/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "0"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=EK-14-11-25_LE_Testitapahtuma4118124440"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-11-14T19:47:17.679445Z",
            "last_modified_time": "2025-11-14T19:47:17.679461Z",
            "date_published": "2025-11-14T19:44:47Z",
            "start_time": "2025-11-21T07:00:00Z",
            "end_time": "2025-11-21T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 100,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-11-15T08:00:00+02:00",
            "enrolment_end_time": "2025-11-16T08:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "EK-14-11-25 LE Testitapahtuma"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Annantalo (KYMP)"
            },
            "info_url": null,
            "short_description": {
                "fi": "Tässä kuvaus"
            },
            "description": {
                "fi": "<div><p>Tässä tarkempi kuvaus</p></div>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:2adefb97-24be-4601-a3f1-1949ca6ed2f0/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67430",
            "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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493797,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-14T09:12:51.510571Z",
                    "last_modified_time": "2025-11-14T09:12:51.510588Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781212.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493797/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-14T09:12:51.314238Z",
            "last_modified_time": "2025-11-14T18:12:28.996955Z",
            "date_published": null,
            "start_time": "2025-11-17",
            "end_time": "2025-11-19",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Valon pisaroita – Valon viikko",
                "sv": "Valon pisaroita",
                "en": "Drops of Light – Week of Light"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D5D2043957E5392A325E6C3B6A351879/Valon_pisaroita",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D5D2043957E5392A325E6C3B6A351879/Valon_pisaroita",
                "en": "http://www.malmitalo.fi/en/events/event/D5D2043957E5392A325E6C3B6A351879/Drops_of_Light_"
            },
            "short_description": {
                "fi": "Valon pisaroita! Luvassa ohjelmaa asukkaiden toiveiden perusteella: karaokea, korttityöpajaa, piparkakkujen koristelua, taidetta ja kohtaamisia!",
                "en": "It’s raining light! The day features program shaped by the residents’ wishes: karaoke, a card-making workshop, gingerbread decorating, art and encounters!"
            },
            "description": {
                "fi": "<p>Valon pisaroita! Luvassa ohjelmaa asukkaiden toiveiden perusteella: karaokea, korttityöpajaa, piparkakkujen koristelua, taidetta ja kohtaamisia!</p><p>Valon viikko kunnioittaa asukkaiden toiveita ja tarjoaa matalan kynnyksen helppoa ja vaivatonta osallistumista. Piipahda työpajoihin, tutustu ikebana-taiteeseen, laula karaokessa, osallistu Malmitalon seikkailuun – tai tee itsellesi lyhty, ja lähde yhdessä tutkimaan pimeyttä!</p><p>Malmitalo on toteuttanut ohjelman yhdessä vapaaehtoisten kanssa.</p><p><b>Näyttelyt</b> <br>Pohjois-Helsingin Kuvataidekoulun oppilastöiden näyttely aulassa ja parvella. Taito Etelä-Suomen oppilastöiden näyttely parvella. Työväenopiston opiskelijoiden valotaidetta aulassa. Annamari Eskolan ikebana-taidetta galleriassa.<br> <br><b>maanantai 17.11. klo 15-17</b><br>Glögiä ja pipareita, rumpuja ja kohtaamisia!</p><p>klo 15-17 Korttityöpaja aulassa<br>klo 16-17 Karaoke Pienessä salissa</p><p><b>tiistai 18.11. klo 15-18</b><br>Koristellaan, tutustutaan taiteeseen ja ihastellaan ikebanaa!</p><p>klo 15-17 Koristellaan piparkakkuja aulassa<br>klo 16-18 Malmi/Kollektiivi: videoteos Malmitalon edustalla (Alina Demianets)<br>klo 16-18 Taiteilija Annamari Eskola tavattavissa Malmitalon galleriassa</p><p><b>keskiviikko 19.11. klo 15-18</b><br>Tuodaan valoa pimeyteen, seikkaillaan ja valaistaan polkuja.</p><p>15-17 Lyhtytyöpaja (Runoropinoita) aulassa<br>16-18 Malmitalo seikkailee, Malmitalon parvella<br>17-18 Taskulamppu- ja lyhtykävely, lähtö Malmitalon aulasta</p><p><b>Lisätietoa ohjelmasta</b></p><p><b>Korttityöpaja</b><br><b>ma 17.11. klo 15–17 Malmitalon aulassa</b><br>Luova työpaja, jossa osallistujat askartelevat itselleen ja läheisilleen kortteja, jotka tuovat mieleen iloa ja valoa pimeisiin päiviin.<br>Vetäjänä: Anneli Velho</p><p><b>Annamari Eskola: Kierto – ikebanataidetta</b><br><b>ti 18.11. taiteilija tavattavissa klo 16–18</b><br>Kasvien elämänkierto, kiertyvät muodot ja materiaalien kierrättäminen ovat Annamari Eskolan installaatioiden teemoja. Vuodenkierrossa marraskuu on pimeintä aikaa, mutta kuolleissa kasveissa elämä on läsnä monella tasolla.</p><p>Eskola on opiskellut ikebanaa, japanilaista kukkien asettelun taidetta Sogetsu-koulukunnan oppien mukaan vuodesta 2012. Hän käyttää taiteessaan kotiseutunsa Koillis-Helsingin kasvimateriaaleja: joutomaiden romulöydökset ja elävät kukat yhdistyvät veistoksiksi, jotka näyttelyn päätyttyä palaavat materiaaleina kiertoon.</p><p><b>Lyhtytyöpaja</b><br><b>ke 19.11. klo 15–17 Malmitalon aulassa</b><br>Tule luomaan oma lyhty, pieni valonpilkahdus syysiltaan!  <br>Lyhtypajassa inspiroidutaan taloista ja valoista. Saat askarrella talon muotoisen lyhdyn kartongista tai pyöreän peltipurkkilyhdyn tuomaan tunnelmaa.<br>Työpajan suunnittelu ja ohjaus: Runoropinoita/Ulla-Maija Vanhala</p><p><b>Taskulamppu- ja lyhtykävely</b><br><b>ke 19.11.  lähtö Malmitalolta klo 17.00</b><br>Vaikka luonto valmistautuukin syksyisin lepoon, voi siitä silti nauttia ja tehdä uusia havaintoja. Taskulamput ja lyhtyjen valo karkottaa pimeän.</p><p>Ota oma valonlähde mukaan!</p><p>Mukana kävelykierroksella on GreenInCities -hanke, joka on Euroopan unionin rahoittama. Sen keskiössä ovat kaupunkivihreä, luontopohjaiset ratkaisut ja asukkaiden osallisuus. Tavoitteena on parantaa Malmin ja Longinojanpuiston luonnon monimuotoisuutta, sekä viihtyvyyttä alueella.</p><p><b>Malmitalo seikkailee klo 16–18</b><br><b>la 19.11. klo 16–18</b><br>Luova työpaja, jossa osallistujat luovat tarinoita ja seikkailuja Malmitalolle. Kirjoita tarina, runo, piirrä tai ota kuva ja kehystä Malmitalolle!</p><p>Palkintona: Malmi-alueen kartta!<br>Vetäjänä: Samia Mohamud</p><p><b>Yhtä valon juhlaa koko viikko!</b><br><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/32FACFF71092F07E8EFC76783F3D9684/Valon_viikko_ja_Valon_juhla\">Tutustu koko Valon viikon ohjelmaan</a></u></p>",
                "en": "<p>It’s raining light! The day features program shaped by the residents’ wishes: karaoke, a card-making workshop, gingerbread decorating, art and encounters!</p><p>The Week of Light honours residents’ wishes and offers easy, low-threshold ways to participate! Drop in to the workshops, explore ikebana art, sing karaoke with friends, join the Malmitalo adventure – or make your own lantern and head out with others to explore the darkness.</p><p>The program has been created in collaboration with volunteers and residents.</p><p><b>Exhibitions</b><br>Exhibition of student works from The Art School of Northern Helsinki in the lobby and on the balcony. Student works from Taito Etelä Suomi on the balcony. Light art by Adult Education Centre students in the lobby. Annamari Eskola’s ikebana art is available in the Malmitalo Gallery.</p><p><b>Monday 17.11.</b><br>Mulled wine (glogg) and gingerbread biscuits, drums and encounters!</p><p>15–17 Card-making workshop in the lobby<br>16–17 Karaoke in the Small Hall</p><p><b>Tuesday 18.11.</b><br>Let’s decorate together and watch light art! Come and meet the gallery artist as well!</p><p>15–17 Gingerbread decorating in the lobby<br>16–18 Malmi/Kollektiivi: video work outside Malmitalo (Alina Demianets)<br>16–18 Artist Annamari Eskola available to meet in the Malmitalo Gallery</p><p><b>Wednesday 19.11.</b><br>Create a lantern to light up your path during the winter darkness!</p><p>15–17 Lantern workshop (Runoropinoita) in the lobby<br>16–18 Malmitalo Adventures, on the Malmitalo balcony<br>17–18 Torch and lantern walk, departure from the Malmitalo lobby</p><p><b>More information about the programme:</b></p><p><b>Card-making workshop</b><br><b>Monday 17.11. 15–17 in the Malmitalo lobby</b><br>Join a warm and creative workshop where participants design cards that bring light and joy to the darkening days both for themselves and for their loved ones.<br>Instructor: Anneli Velho</p><p><b>Annamari Eskola: Kierto – ikebana art</b><br><b>Tue 18.11. artist available 16–18</b><br>The life cycle of plants, twisting forms and the recycling of materials are the themes of Annamari Eskola’s installations. In the cycle of the year, November is the darkest time, yet in dead plants life is present on many levels.</p><p>In her work she uses plant material from her home district in North-East Helsinki: found objects from wasteland sites and living flowers come together as sculptures that, once the exhibition ends, return to circulation as materials.</p><p><b>Lantern workshop</b><br><b> Wed 19.11. 15–17 in the Malmitalo lobby</b><br>Come create your own lantern – a small glimmer of light for the darkening evenings!</p><p>In the lantern workshop, houses and lights are the inspiration. You can craft a house-shaped lantern from card or a round tin-can lantern to light up the mood!</p><p>Workshop design and guidance: Runoropinoita / Ulla-Maija Vanhala</p><p><b>Torch and lantern walk</b><br><b> Wed 19.11. departure from Malmitalo at 17.00</b><br>Even though nature is preparing for rest in autumn, we can still enjoy it and enjoy the nature with new observations. The light of torches and lanterns drives away the dark!</p><p>Bring your own source of light!</p><p>The walk is part of a GreenInCities project, funded by the European Union. It focuses on urban green spaces, nature-based solutions and resident participation. The aim is to improve biodiversity in Malmi and Longinoja park, and to enhance comfort and wellbeing in the area.</p><p><b>Malmitalo adventures 16–18</b><br><b>Wed 19.11. 16–18</b><br>A creative workshop where participants create stories and adventures for Malmitalo. Write a story or a poem, draw or take a photo and frame it for Malmitalo!</p><p>Prize: A map of the Malmi area!<br>Facilitator: Samia Mohamud</p><p><b>A whole week full of light!</b><br><u><a href=\"https://www.malmitalo.fi/en/events/event/32FACFF71092F07E8EFC76783F3D9684/Valon_viikko_ja_Valon_juhla\">Check out the week’s programme</a></u></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67430/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67448",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/en/event/kino-helios-nama-pienet-asiat-malmitalo-20945511/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493804,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-14T13:13:08.403804Z",
                    "last_modified_time": "2025-11-14T13:13:08.403819Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777305.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493804/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-14T13:13:08.256499Z",
            "last_modified_time": "2025-11-14T13:13:08.556485Z",
            "date_published": null,
            "start_time": "2025-11-28T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kino Helios: Nämä pienet asiat (7)"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4945DDF0AE74CD823D8280FFC49D0EB9/Kino_Helios_Nama_pienet_asiat_7_"
            },
            "short_description": {
                "fi": "Nämä pienet asiat (Small Things Like These) on Claire Keeganin samannimiseen menestysromaaniin perustuva draamaelokuva, jonka on ohjannut Tim Mielants."
            },
            "description": {
                "fi": "<p>Nämä pienet asiat (Small Things Like These) on Claire Keeganin samannimiseen menestysromaaniin perustuva draamaelokuva, jonka on ohjannut Tim Mielants.</p><p>Tositapahtumiin perustuva Nämä pienet asiat on tarina siitä, miten jopa hyväntahtoiset ihmiset voivat sulkea silmänsä epäoikeudenmukaisuudelta – ja miten rohkeus voi lopulta muuttaa kaiken.</p><p>Oscar®-voittaja Cillian Murphy (paras miespääosa 2023, Oppenheimer) tekee hienovaraisen ja vaikuttavan roolisuorituksen omistautuneena isänä Bill Furlongina.  Nämä pienet asiat on Claire Keeganin samannimiseen menestysromaaniin perustuva draamelokuva.</p><p>Bill työskentelee pienen irlantilaiskaupungin hiilikauppiaana elättääkseen perheensä, kun hänelle alkaa vähitellen paljastua synkkiä salaisuuksia, joita paikallinen luostari kätkee sisäänsä. Samalla hän joutuu kohtaamaan oman menneisyytensä ja katolisen kirkon hallitseman yhteisön vaikenemisen. Luostarin johtajana, sisar Marynä nähdään Emily Watson.</p><p>Suomen elokuvasäätiön maahantuontituki 2025.</p><p>Ikäraja: 7<br>Kesto: 99 min<br>Ensi-ilta: 21.11.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67448/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnifdfbc4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-14T12:18:44.852650Z",
            "last_modified_time": "2025-11-14T12:18:44.852667Z",
            "date_published": null,
            "start_time": "2025-11-27T16:00:00Z",
            "end_time": "2025-11-27T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lunatic Love –sarjakuvamusikaalin maistiainen",
                "sv": "LunaticLove serieteckningsmusikals presentation",
                "en": "LunaticLove comic musical presentation"
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider": {
                "fi": "Omnia",
                "sv": "Omnia",
                "en": "Omnia"
            },
            "info_url": null,
            "short_description": {
                "fi": "Koe unohtumattoman upea elämys Lunatic Love –sarjakuvamusikaalin intohimoisesta ja kohtalokkaasta rakkaudesta. ",
                "sv": "Upplev den oförglömliga musikalen Lunatic Love, en berättelse om passionerad och ödesdiger kärlek.",
                "en": "Experience the unforgettable Lunatic Love comic musical, a story of passionate and fateful love."
            },
            "description": {
                "fi": "<p>Koe unohtumattoman upea elämys Lunatic Love –sarjakuvamusikaalin intohimoisesta ja kohtalokkaasta rakkaudesta.&nbsp;</p><p>Näe, kuinka osa sarjakuvasta herää ensi kerran eloon musikaalin huippuhetkissä sekä koskettavassa tanssiesityksessä.&nbsp;</p><p>Lue ainutlaatuinen sarjakuva-albumi ensimmäisten joukossa. Nyt voit saada sen omistuskirjoituksin. Tämä on ainutkertainen mahdollisuus tavata teoksen luojat. Tilaisuus on maksuton ja kaksikielinen -suomeksi ja englanniksi.&nbsp;</p>",
                "sv": "<p>Upplev den oförglömliga musikalen Lunatic Love, en berättelse om passionerad och ödesdiger kärlek.</p><p>Se hur en del av serien kommer till liv för första gången i musikalens klimax och i en rörande dansföreställning.&nbsp;</p><p>Var bland de första att läsa detta unika serietidningsalbum. Nu kan du få det med en personlig dedikation. Detta är en unik möjlighet att träffa skaparna av verket. Evenemanget är gratis och tvåspråkigt – på finska och engelska.&nbsp;</p><p><br></p><p><br></p>",
                "en": "<p>Experience the unforgettable Lunatic Love comic musical, a story of passionate and fateful love.</p><p>See how part of the comic comes to life for the first time in the musical's climactic moments and in a moving dance performance.&nbsp;</p><p>Be among the first to read this unique comic book album. Now you can get it with a personal inscription. This is a unique opportunity to meet the creators of the work. The event is free of charge and bilingual – in Finnish and English.&nbsp;</p><p><br></p><p><br></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnifdfbc4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66782",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20€ / 15€",
                        "sv": "20€ / 15€",
                        "en": "20€ / 15€"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347671/",
                        "sv": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347671/",
                        "en": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347671/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1272366,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T14:12:54.796355Z",
                    "last_modified_time": "2025-07-16T14:12:54.796369Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774936.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1272366/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T14:12:54.740274Z",
            "last_modified_time": "2025-11-14T12:13:00.113465Z",
            "date_published": null,
            "start_time": "2025-11-14T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "LOPPUUNMYYTY Klubi-ilta: Marjo Leinonen & the Bublicans",
                "sv": "SLUTSÅLD Klubbkväll: Marjo Leinonen & the Bublicans",
                "en": "SOLD OUT Club night: Marjo Leinonen & The Bublicans"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/77381D201DCCDF01E23EBAD5CB49E2B0/LOPPUUNMYYTY_Klubi-ilta_Marjo_Leinonen_the_Bublicans_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/77381D201DCCDF01E23EBAD5CB49E2B0/SLUTSALD_Klubbkvall_Marjo_Leinonen_the_Bublicans_",
                "en": "http://www.vuotalo.fi/en/events/event/77381D201DCCDF01E23EBAD5CB49E2B0/SOLD_OUT_Club_night_Marjo_Leinonen_The_Bublicans_"
            },
            "short_description": {
                "fi": "Marjo Leinonen & The Bublicans on räyhäkäs funkbändi, joka vetelee hartaudella kaikki soulin siniset sävyt!",
                "sv": "Marjo Leinonen & The Bublicans är ett hejdlöst funkband som andäktigt spelar soulens alla blå nyanser!",
                "en": "Marjo Leinonen & The Bublicans are a raucous funk band that devoutly bangs out all the blue shades of soul!"
            },
            "description": {
                "fi": "<p>Marjo Leinonen & The Bublicans on räyhäkäs funkbändi, joka vetelee hartaudella kaikki soulin siniset sävyt!</p><p>Bändi käännyttää kansan apatiasta rytmiseen hurmioon elämänmakuisella ilosanomallaan. Basson sijaan törisee matalataajuutta sousafoni eli tuuba (Ville Niemelä) ja vie näin tunnelman ”pikkukakkosen” kyydillä suoraan New Orleansiin.</p><p>Bublicans on Marjo Leinosen viimeisin kokoonpano ja jatkaa soulrockin mehevää kaanonia, jonka monensävyisessä maastossa Leinonen on operoinut taatusti omaleimaisella ja henkeäsalpaavalla tyylillään läpi 30 vuotisen laulajan historiansa. ”Silmät kiinni ja suu auki! Nyt on aika bublia” toivoo Leinonen, sillä rytmisestä ilotulituksesta vastaa Villen lisäksi Risto Kumpulainen (koskettimet), Petri Kautto (kitara) sekä Sami Vettenranta (rummut).</p><p>Kesto: n. 2 t</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p>",
                "sv": "<p>Marjo Leinonen & The Bublicans är ett hejdlöst funkband som andäktigt spelar soulens alla blå nyanser!</p><p>Bandet omvänder människor från apati till rytmisk extas med sitt livsbejakande budskap om glädje. I stället för basen ljuder sousafonen eller tuban (Ville Niemelä) med låg frekvens och för oss med hjälp av ”lilla tvåan” direkt till New Orleans stämning.</p><p>Bublicans är Marjo Leinonens senaste sammansättning och fortsätter den ljuva kanon av soulrock, en mångsidig terräng där Leinonen har arbetat med en distinkt och hisnande stil under sina 30 år som sångerska. \"Slut ögonen och öppna munnen! Nu är det dags att bubla\", önskar Leinonen, och det rytmiska fyrverkeriet skapas av Risto Kumpulainen (keyboards), Petri Kautto (gitarr) och Sami Vettenranta (trummor).</p><p>Längd: ca 2 h<br>Klubbkväll, A-rättigheter, Café Pokkari står för serveringen, dörrarna öppnas kl. 17.30.</p>",
                "en": "<p>Marjo Leinonen & The Bublicans are a raucous funk band that devoutly bangs out all the blue shades of soul!</p><p>The band converts people from apathy to rhythmic ecstasy with their life-flavoured message of joy. Instead of the bass guitar, low frequencies are created with the rumble of the sousaphone, i.e. tuba (Ville Niemelä), taking the atmosphere straight to New Orleans.</p><p>Bublicans is Marjo Leinonen’s latest line-up and continues the luscious canon of soul rock, a diverse terrain in which Leinonen has operated with an undisputedly distinctive and breathtaking style throughout her 30 years as a singer. “Close your eyes and open your mouth! It’s time for bubbles,” quips Leinonen, as in addition to Ville, rhythmic fireworks will be provided by Risto Kumpulainen (keyboards), Petri Kautto (guitar) and Sami Vettenranta (drums).</p><p>Duration: roughly 2 h<br>Club evening, alcohol serving licence, catering by Café Pokkari, doors open at 17.30.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66782/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agne6dpfki",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491283,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-04T13:10:53.750963Z",
                    "last_modified_time": "2025-11-04T13:10:53.750978Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/89c7852d-f786-4eeb-85a2-4c3a4967c3fa.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Kuvassa mies ja nainen 40-luvulta",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491283/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-04T13:11:01.819586Z",
            "last_modified_time": "2025-11-14T12:08:41.883541Z",
            "date_published": null,
            "start_time": "2025-11-19T12:00:00Z",
            "end_time": "2025-11-19T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kirjailijavieraana Vesa Linna",
                "sv": "Författare Vesa Linna , evengeman är på finska",
                "en": "Author Vesa Linna. Event is in Finnish"
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider": null,
            "info_url": null,
            "short_description": {
                "fi": "Mikäli sinua kiinnostavat Itämeri, sota-ajan historia ja \n\njännittävät, aidot ihmiskohtalot, kannattaa tulla kuulolle \n\nSellon kirjastoon joulukuussa. ",
                "sv": "Författare Vesa Linna , evengeman är på finska",
                "en": "Author Vesa Linna. Event is in Finnish"
            },
            "description": {
                "fi": "<p>Mikäli sinua kiinnostavat Itämeri, sota-ajan historia ja&nbsp;</p><p>jännittävät, aidot ihmiskohtalot, kannattaa tulla kuulolle&nbsp;</p><p>Sellon kirjastoon.</p><p><br></p><p>Tietokirjailija ja ammattivalokuvaaja Vesa Linna kertoo&nbsp;</p><p>tuoreesta kirjastaan Itämeri 1916 - 1945 - Taistelu&nbsp;</p><p>Suursaaresta ja muita tositarinoita sodista.&nbsp;</p>",
                "sv": "<p>Författare Vesa Linna , evengeman är på finska.</p>",
                "en": "<p>Author Vesa Linna. Event is in Finnish.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne6dpfki/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67444",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/en/event/kino-helios-wicked-for-good-malmitalo-20944456/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493803,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-14T11:12:36.823700Z",
                    "last_modified_time": "2025-11-14T11:12:36.823715Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777309.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493803/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-14T11:12:36.746123Z",
            "last_modified_time": "2025-11-14T11:12:36.911629Z",
            "date_published": null,
            "start_time": "2025-12-05T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kino Helios: Wicked for Good (12)"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/82DF48BCDC74E3AE3C45413BD5ABB1AB/Kino_Helios_Wicked_for_Good_12_"
            },
            "short_description": {
                "fi": "Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni."
            },
            "description": {
                "fi": "<p>Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni.</p><p>Viime vuoden maailmanlaajuinen elokuvatapaus saa nyt eeppisen, sävähdyttävän ja tunteellisen päätöksensä. Ozin noitien viimeinen, aiemmin kertomaton luku alkaa Elphaban ja Glindan välirikosta ja elämästä valintojensa seurausten kanssa.</p><p>Wicked: For Good perustuu sukupolvensa ilmiöksi nousseeseen musikaalinäytelmään. Elokuvaa tähdittää taas loistava näyttelijäkaarti kärjessään Oscar®-ehdokkuuden ansainneet supertähdet Cynthia Erivo ja Ariana Grande. Elokuvan alkuperäismusiikista vastaavat John Powell ja Stephen Schwartz, ja sävellykset ja sanoitukset ovat Stephen Schwartzin käsialaa.</p><p>Ikäraja: 12<br>Kesto: 138 min<br>Ensi-ilta: 21.11.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67444/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67442",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/en/event/kino-helios-wicked-for-good-malmitalo-20944455/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493802,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-14T11:12:35.497166Z",
                    "last_modified_time": "2025-11-14T11:12:35.497181Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777375.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493802/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-14T11:12:35.380788Z",
            "last_modified_time": "2025-11-14T11:12:35.617694Z",
            "date_published": null,
            "start_time": "2025-11-29T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kino Helios: Wicked for Good (12)"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EF74E379F94D69F2D569118898CCD887/Kino_Helios_Wicked_for_Good_12_"
            },
            "short_description": {
                "fi": "Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni."
            },
            "description": {
                "fi": "<p>Päättyvätpä tarinamme miten hyvänsä, tiedän, että olet kirjoittanut omani uusiksi olemalla ystäväni.</p><p>Viime vuoden maailmanlaajuinen elokuvatapaus saa nyt eeppisen, sävähdyttävän ja tunteellisen päätöksensä. Ozin noitien viimeinen, aiemmin kertomaton luku alkaa Elphaban ja Glindan välirikosta ja elämästä valintojensa seurausten kanssa.</p><p>Wicked: For Good perustuu sukupolvensa ilmiöksi nousseeseen musikaalinäytelmään. Elokuvaa tähdittää taas loistava näyttelijäkaarti kärjessään Oscar®-ehdokkuuden ansainneet supertähdet Cynthia Erivo ja Ariana Grande. Elokuvan alkuperäismusiikista vastaavat John Powell ja Stephen Schwartz, ja sävellykset ja sanoitukset ovat Stephen Schwartzin käsialaa.</p><p>Ikäraja: 12<br>Kesto: 138 min<br>Ensi-ilta: 21.11.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67442/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67441",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8€"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/en/event/kino-helios-sisu-2-malmitalo-20944559/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493801,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-14T10:12:36.774840Z",
                    "last_modified_time": "2025-11-14T10:12:36.774851Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777345.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493801/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-14T10:12:36.704988Z",
            "last_modified_time": "2025-11-14T10:12:36.870252Z",
            "date_published": null,
            "start_time": "2025-12-03T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kino Helios: Sisu 2 (16)"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AC74578733D4DBE98E2455DDF751D61A/Kino_Helios_Sisu_2_16_"
            },
            "short_description": {
                "fi": "Sisu 2 on täydellä rähinällä eteenpäin vyöryvä toimintaelokuva, joka on jatkoa aina kansainväliseksi hitiksi asti nousseelle ykkösosalle Sisu."
            },
            "description": {
                "fi": "<p>Sisu 2 on täydellä rähinällä eteenpäin vyöryvä toimintaelokuva, joka on jatkoa aina kansainväliseksi hitiksi asti nousseelle ykkösosalle Sisu.</p><p>Aatami Korpi, “mies, joka ei suostu kuolemaan” (Jorma Tommila), palaa kotikonnuilleen neuvostomiehityksen alaiseen Karjalaan, purkaa talonsa, lastaa sen kuormurin kyytiin ja päättää vakaasti panna pirttinsä taas pystyyn Suomen puolelle.</p><p>Kun tieto Aatamin rajan ylityksestä leviää, palaa hänen perheensä surmannut partisaanien komentaja (Stephen Lang) hoitamaan jo legendan maineen saaneen suomalaisen sotilaan pois päiviltä.</p><p>Ikäraja: 16<br>Kesto: 90 min<br>Ensi-ilta: 22.10.2025</p><p>Kieli: suomi, englanti<br>Tekstitys: suomi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67441/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67440",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8€"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-sisu-2-malmitalo-20944480/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493800,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-14T10:12:35.451199Z",
                    "last_modified_time": "2025-11-14T10:12:35.451215Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777306.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493800/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-14T10:12:35.341025Z",
            "last_modified_time": "2025-11-14T10:12:35.579790Z",
            "date_published": null,
            "start_time": "2025-11-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,
            "name": {
                "fi": "Kino Helios: Sisu 2 (16)"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/295455CE76F2CC697A13080E7992D9E5/Kino_Helios_Sisu_2_16_"
            },
            "short_description": {
                "fi": "Sisu 2 on täydellä rähinällä eteenpäin vyöryvä toimintaelokuva, joka on jatkoa aina kansainväliseksi hitiksi asti nousseelle ykkösosalle Sisu."
            },
            "description": {
                "fi": "<p>Sisu 2 on täydellä rähinällä eteenpäin vyöryvä toimintaelokuva, joka on jatkoa aina kansainväliseksi hitiksi asti nousseelle ykkösosalle Sisu.</p><p>Aatami Korpi, “mies, joka ei suostu kuolemaan” (Jorma Tommila), palaa kotikonnuilleen neuvostomiehityksen alaiseen Karjalaan, purkaa talonsa, lastaa sen kuormurin kyytiin ja päättää vakaasti panna pirttinsä taas pystyyn Suomen puolelle.</p><p>Kun tieto Aatamin rajan ylityksestä leviää, palaa hänen perheensä surmannut partisaanien komentaja (Stephen Lang) hoitamaan jo legendan maineen saaneen suomalaisen sotilaan pois päiviltä.</p><p>Ikäraja: 16<br>Kesto: 90 min<br>Ensi-ilta: 22.10.2025</p><p>Kieli: suomi, englanti<br>Tekstitys: suomi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67440/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67439",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-hopeacine-palava-maa-malmitalo-20944644/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493799,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-14T09:12:58.583050Z",
                    "last_modified_time": "2025-11-14T09:12:58.583068Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780876.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493799/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-14T09:12:58.485755Z",
            "last_modified_time": "2025-11-14T09:12:58.706381Z",
            "date_published": null,
            "start_time": "2025-12-18T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kino Helios: HopeaCine: Palava maa (7) + tekijävieraana John Webster"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/79B9966E3B12E9AA5BE922FF1F999FA5/Kino_Helios_HopeaCine_Palava_maa_7_tekijavieraana_John_Webster"
            },
            "short_description": {
                "fi": "Joulukuun HopeaCine-elokuvana voimakas dokumentti Portugalin maastopaloista. Tekijävieraana ohjaaja John Webster."
            },
            "description": {
                "fi": "<p>Joulukuun HopeaCine-elokuvana voimakas dokumentti Portugalin maastopaloista. Tekijävieraana ohjaaja John Webster.</p><p>Maastopalojen riehuessa yhä voimakkaammin Euroopassa suomalaiset ja portugalilaiset pelastajat yhdistävät voimansa eturintamassa. Visuaalisesti vaikuttava dokumentti johdattaa katsojan liekkeihin ja näyttää ihmisen kamppailun luonnon tuhoisinta voimaa vastaan.  Tekijävieraana on dokumentin ohjaaja John Webster. Haastattelijana elokuvakasvattaja Kaisa Kukkola.</p><p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa. Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi. Suomeksi puhutut HopeaCine-näytökset on selkotekstitetty suomeksi.</p><p>Kesto: 102 min + n. 30 min keskustelutilaisuus<br>Kieli: Suomi (selkotekstitys suomeksi)</p><p>Liput 8 €</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67439/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwbx7nyq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwbx7mae/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwbx7mqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwbx7m5m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwbx7nki/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490842,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-19T06:15:58.211270Z",
                    "last_modified_time": "2025-09-19T06:15:58.211284Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/c79d9b45-a516-4ffe-a7d7-0b0732fbe2f4.png",
                    "name": "",
                    "cropping": "51,0,421,370",
                    "photographer_name": "",
                    "alt_text": "Kolme seniori-ikäistä ihmistä, kaksi miestä ja yksi nainen nauravat kahvikupposen äärellä. Teksti Kohtaamiskahvila syksy 2025, Ison Omenan kirjaston Stagella kerran kuussa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490842/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-19T06:26:13.313564Z",
            "last_modified_time": "2025-11-13T14:57:43.395717Z",
            "date_published": null,
            "start_time": "2025-11-27T11:00:00Z",
            "end_time": "2025-12-11T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kohtaamiskahvila",
                "sv": "Mötescafé",
                "en": "Community Café"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "info_url": null,
            "short_description": {
                "fi": "Kohtaamiskahvila on senioreille suunnattu kuukausittainen tapahtuma Ison Omenan kirjaston Stagella kaikille alueen senioreille. ",
                "sv": "Mötescafé är ett månatligt evenemang för seniorer på scenen i Iso Omenas bibliotek, öppet för alla seniorer i området.",
                "en": "The Meeting Café is a monthly event for seniors at the Stage in the Iso Omena Library, open to all seniors in the area."
            },
            "description": {
                "fi": "<p>Tilaisuudessa keskustellaan senioreita koskettavista asioista, jaetaan tietoa kiinnostavista aiheista ja erilaiset alueen toimijat esittäytyvät.</p><p><br></p><p>TO 27.11 - monikielisyys ja kirjaston palvelut vieraskielisille</p><p><br></p><p>To 27.11. </p><p>monikielisyys ja </p><p>kirjaston palvelut vieraskielisille</p><p>Jade yhteisö ry - Ikääntyvien vieraskielisten yhdistys esittelee toimintaansa </p><p>Kirjaston palveluita senioreille: esittelyssä tapahtumia ja toimintaa metron varren kirjastoista </p><p>Connectoria – yhteisöllinen kulttuurit ja sukupolvet yhdistävän tapahtumasarjan esittely Ison Omenan kirjastossa.</p><p><br></p><p>TO 11.12 - turvallista joulua</p>",
                "sv": "<p>To 27.11</p><p>Flerspråkighet och Bibliotekets tjänster för personer med främmande språk</p><p>Jade gemenskap rf – Förening för äldre med främmande språk presenterar sin verksamhet.</p><p>Bibliotekets tjänster för seniorer: presentation av evenemang och aktiviteter i biblioteken längs metrosträckan.</p><p>Connectoria – en gemenskapsserie av evenemang som förenar kulturer och generationer presenteras i Iso Omenas bibliotek.</p><p><br></p><p>To 11.12 – En trygg jul</p>",
                "en": "<p>Thu 27 Nov</p><p>Multilingualism and</p><p>Library services for non-native speakers</p><p>Jade Community Association – Association of Elderly Non-Native Speakers presents its activities.</p><p>Library services for seniors: introduction to events and activities in libraries along the metro line.</p><p>Connectoria – a community event series bringing together cultures and generations presented at the Iso Omena Library.</p><p><br></p><p>Thu 11 Dec – A Safe Christmas</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwbx7nyq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}