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

{
    "meta": {
        "count": 32755,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=191",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=189"
    },
    "data": [
        {
            "id": "espoo_le:agmk22iisu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?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:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490167,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-31T10:10:49.904911Z",
                    "last_modified_time": "2025-07-31T10:10:49.904924Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/c59a783b-715b-4357-b47a-1a7a24e69501.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Kuvassa Duo Kailuluotain kaksikko Marjut Salonen (laulu) ja Jorma Vartiainen (kitara).",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490167/?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-07-31T10:28:25.718638Z",
            "last_modified_time": "2025-12-08T10:28:26.814702Z",
            "date_published": null,
            "start_time": "2025-12-10T11:00:00Z",
            "end_time": "2025-12-10T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.",
                "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.",
                "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries."
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/tapahtumat-espoossa",
                "sv": "https://www.espoo.fi/sv/evenemang-i-esbo",
                "en": "https://www.espoo.fi/en/events-espoo"
            },
            "description": {
                "fi": "Duo Kaikuluotain joulukonsertit&nbsp;<p><strong>Keskiviikko 10.12. klo 13 Kalajärven Palvelutori (Kalajärvi-Sali)&nbsp;</strong></p><p>Akustista, jouluista sielumusiikkia: Marjut Salonen (laulu) ja Jorma Vartiainen (kitara).&nbsp;</p><p>Kuullaan tunnelmallista joulumusiikkia vuosien varrelta, suomeksi ja englanniksi, Kaikuluotain soittaa myös muutamia omia biisejään.&nbsp;</p><p>Duo Kaikuluotaimeen voi tutustua tarkemmin <a href=\"www.facebook.com/kaikumusiikki/ \">Facebookissa</a> ja <a href=\"https://www.kaikuluotain.net/\">nettisivuilla </a>Instagramista Kaikuluotaimen löytää <a href=\"https://www.instagram.com/kaikumusiikki/\">@kaikumusiikki.</a></p><p>------</p><p><a href=\"https://www.espoo.fi/fi/kulttuuri-ja-vapaa-aika/kulttuuriketju\">Espoon kaupungin Kulttuuriketju</a> välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.</p><p>Kulttuuriketjun esityksiä järjestetään elokuusta joulukuulle.</p><p>Kirjastoihin Kulttuuriketju tuo upeat 41 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.</p><p>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".</p><p>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.</p><p>Tervetuloa nauttimaan kulttuurista!</p><p>Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut</p>",
                "sv": "Duo Kaikuluotain julkonserter<p><strong>Onsdag 10.12 kl. 13 Servicetorget i Kalajärvi (Kalajärvi-Sali) </strong></p><p>Akustisk, julig soulmusik: Marjut Salonen (sång) och Jorma Vartiainen (gitarr).</p><p>Vi får höra stämningsfull julmusik genom åren, på finska och engelska, och Kaikuluotain spelar även några av sina egna låtar.&nbsp;</p><p>Duo Kaikuluotain kan du lära känna bättre på <a href=\"www.facebook.com/kaikumusiikki/\">Facebook </a>och på <a href=\"https://www.kaikuluotain.net/\">webbplatsen</a>. På Instagram hittar du Kaikuluotain <a href=\"https://www.instagram.com/kaikumusiikki/\">@kaikumusiikki.</a></p><p>-----</p><p><a href=\"https://www.espoo.fi/sv/kultur-och-fritid/kulturkedjan\">Esbo stads kulturkedjan</a> förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.</p><p>Kulturkedjans föreställningar arrangeras från augusti till december.</p><p>Kulturkedjan bjuder på fantastiska 41 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.</p><p>Du hittar alla föreställningar med sökordet \"kulturkedjan\".</p><p>Alla evenemang är öppna för alla och gratis.</p><p>Välkommen att njuta av kultur!</p><p>Evenemangen genomförs i Espoo City Cultural Services</p>",
                "en": "Duo Kaikuluotain Christmas concerts<p><strong>Wednesday 10.12. klo 13-14 Kalajärvi Service Centre (Kalajärvi-Sali)&nbsp;</strong></p><p>Acoustic soul music with Christmas spirit: Marjut Salonen (vocals) and Jorma Vartiainen (guitar).&nbsp;</p><p>Atmospheric and moody Christmas music from over the years in Finnish and English. Kaikuluotain will also play a few of their own songs.&nbsp;</p><p>You can check out Duo Kaikuluotain’s music at <a href=\"www.facebook.com/kaikumusiikki/\">Facebook</a> and their <a href=\"https://www.kaikuluotain.net/\">website</a> Also on Instragram: <a href=\"https://www.instagram.com/kaikumusiikki/\">@kaikumusiikki&nbsp;</a></p><p>-----</p><p><a href=\"https://www.espoo.fi/en/culture-and-leisure/culture-chain\">Espoo City Culture Chain</a> offers art and culture services to elderly peopleI. Performances are also organised in libraries.</p><p>Cultural Chain performances are organized August to December.</p><p>The Cultural Chain brings an impressive 41 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.</p><p>You can find all performances by searching with the keyword \"cultural chain\".</p><p>All events are open to everyone and free of charge.</p><p>Welcome to enjoy the culture!</p><p><br></p><p>The events are carried out in Espoo City Cultural Services</p>"
            },
            "name": {
                "fi": "Kulttuuriketju - Duo Kaikuluotain joulukonsertit ",
                "sv": "Kulturkedjan - Duo Kaikuluotain julkonserter",
                "en": "Cultural Chain - Duo Kaikuluotain Christmas concerts"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kalajärvi-Sali",
                "sv": "Kalajärvi-Salen",
                "en": "Kalajärvi Hall"
            },
            "provider": {
                "fi": "Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut",
                "sv": "Evenemangen genomförs i Espoo City Cultural Services",
                "en": "The events are carried out in Espoo City Cultural Services"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22iisu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67748",
            "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:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494125,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T10:13:06.753589Z",
                    "last_modified_time": "2025-12-08T10:13:06.753603Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777315.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494125/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T10:13:06.673192Z",
            "last_modified_time": "2025-12-08T10:13:06.864893Z",
            "date_published": null,
            "start_time": "2025-12-19T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/80C5EEF5E658A609580674FAD251C8A6/Roofman_Kattokeikkailija_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/80C5EEF5E658A609580674FAD251C8A6/Roofman_Kattokeikkailija_12_",
                "en": "http://www.malmitalo.fi/en/events/event/80C5EEF5E658A609580674FAD251C8A6/Roofman_Kattokeikkailija_12_"
            },
            "description": {
                "fi": "<p>Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan.</p><p>Vankilasta paennut entinen sotilas ja ammattivaras Jeffrey löytää piilopaikan lelukaupan sisältä ja onnistuu elämään siellä kuukausien ajan kenenkään huomaamatta – samalla tehden murtokeikkoja kattojen kautta.</p><p>Huolellisesti rakennettu kaksoiselämä alkaa kuitenkin rakoilla, kun hän rakastuu Leighin (Kirsten Dunst). Alkaa jännittävä takaa-ajo ja menneisyyden tapahtumat saavat Jeffreyn kiinni. Elokuvan on ohjannut Derek Cianfrance (Blue Valentine, The Place Beyond The Pines, Sound of Metal).</p><p>Ikäraja: 12<br>Kesto: 125 min<br>Ensi-ilta: 28.11.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "sv": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "en": "Roofman – Kattokeikkailija (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67748/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67747",
            "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:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494124,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T10:13:06.204622Z",
                    "last_modified_time": "2025-12-08T10:13:06.204638Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777351.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494124/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T10:13:06.071893Z",
            "last_modified_time": "2025-12-08T10:13:06.352181Z",
            "date_published": null,
            "start_time": "2025-12-17T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EECF32F35AFF3C1EEB0DA07E43C57B3D/Roofman_Kattokeikkailija_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EECF32F35AFF3C1EEB0DA07E43C57B3D/Roofman_Kattokeikkailija_12_",
                "en": "http://www.malmitalo.fi/en/events/event/EECF32F35AFF3C1EEB0DA07E43C57B3D/Roofman_Kattokeikkailija_12_"
            },
            "description": {
                "fi": "<p>Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan.</p><p>Vankilasta paennut entinen sotilas ja ammattivaras Jeffrey löytää piilopaikan lelukaupan sisältä ja onnistuu elämään siellä kuukausien ajan kenenkään huomaamatta – samalla tehden murtokeikkoja kattojen kautta.</p><p>Huolellisesti rakennettu kaksoiselämä alkaa kuitenkin rakoilla, kun hän rakastuu Leighin (Kirsten Dunst). Alkaa jännittävä takaa-ajo ja menneisyyden tapahtumat saavat Jeffreyn kiinni. Elokuvan on ohjannut Derek Cianfrance (Blue Valentine, The Place Beyond The Pines, Sound of Metal).</p><p>Ikäraja: 12<br>Kesto: 125 min<br>Ensi-ilta: 28.11.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "sv": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "en": "Roofman – Kattokeikkailija (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67747/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67746",
            "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:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494122,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T09:13:46.708524Z",
                    "last_modified_time": "2025-12-08T09:13:46.708540Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777387.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494122/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T09:13:46.588107Z",
            "last_modified_time": "2025-12-08T09:13:46.862092Z",
            "date_published": null,
            "start_time": "2025-12-27T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D10188CBE6E4CDB2196164CB200EC4BF/Sydantalvi_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D10188CBE6E4CDB2196164CB200EC4BF/Sydantalvi_16_",
                "en": "http://www.malmitalo.fi/en/events/event/D10188CBE6E4CDB2196164CB200EC4BF/Sydantalvi_16_"
            },
            "description": {
                "fi": "<p>Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson.</p><p>Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut Brian Kirk, joka tunnetaan muun muassa Game of Thrones -sarjan jaksoista sekä elokuvasta 21 Bridges. Muissa rooleissa Marc Menchaca, Judy Greer ja Gaia Wise, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Ikäraja: 16<br>Kesto: 98 min<br>Ensi-ilta: 12.12.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Sydäntalvi (16) – Kino Helios",
                "sv": "Sydäntalvi (16) – Kino Helios",
                "en": "Sydäntalvi (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67746/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67745",
            "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:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494121,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T09:13:46.087771Z",
                    "last_modified_time": "2025-12-08T09:13:46.087787Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777384.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494121/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T09:13:45.975471Z",
            "last_modified_time": "2025-12-08T09:13:46.241181Z",
            "date_published": null,
            "start_time": "2025-12-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/96289EAC5B0CF80BE99D19BD1B251DA0/Sydantalvi_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/96289EAC5B0CF80BE99D19BD1B251DA0/Sydantalvi_16_",
                "en": "http://www.malmitalo.fi/en/events/event/96289EAC5B0CF80BE99D19BD1B251DA0/Sydantalvi_16_"
            },
            "description": {
                "fi": "<p>Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson.</p><p>Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut Brian Kirk, joka tunnetaan muun muassa Game of Thrones -sarjan jaksoista sekä elokuvasta 21 Bridges. Muissa rooleissa Marc Menchaca, Judy Greer ja Gaia Wise, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Ikäraja: 16<br>Kesto: 98 min<br>Ensi-ilta: 12.12.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Sydäntalvi (16) – Kino Helios",
                "sv": "Sydäntalvi (16) – Kino Helios",
                "en": "Sydäntalvi (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67745/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67743",
            "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:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4048010/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4048010/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4048010/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494120,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T09:13:45.519673Z",
                    "last_modified_time": "2025-12-08T09:13:45.519688Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777314.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494120/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T09:13:45.394229Z",
            "last_modified_time": "2025-12-08T09:13:45.687282Z",
            "date_published": null,
            "start_time": "2025-12-19T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/77F5B9DD976F17DA07A74374FBB1F896/Springsteen_Deliver_Me_from_Nowhere_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/77F5B9DD976F17DA07A74374FBB1F896/Springsteen_Deliver_Me_from_Nowhere_12_",
                "en": "http://www.malmitalo.fi/en/events/event/77F5B9DD976F17DA07A74374FBB1F896/Springsteen_Deliver_Me_from_Nowhere_12_"
            },
            "description": {
                "fi": "<p>Elokuva kertoo Bruce Springsteenin vuoden 1982 Nebraska-albumin tekemisestä aikana, jolloin Springsteen oli vielä menestyspaineiden ja menneisyyden haamujen kanssa painiskeleva nuori muusikko, joka sinnitteli maailmanlaajuisen supertähteyden kynnyksellä.</p><p>Springsteenin asunnon makuuhuoneessa New Jerseyssä neliraitanauhurilla äänitetty albumi merkitsi käännekohtaa hänen elämässään, ja sitä pidetään edelleen yhtenä Springsteenin ajattomimmista teoksista — se on karu ja tunnelmaltaan aavemainen akustinen levy, jolla kadonneet sielut etsivät syytä uskoa tulevaan.</p><p>Ikäraja: 12<br>Kesto: 120 min<br>Ensi-ilta: 31.10.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Springsteen: Deliver Me from Nowhere (12) – Kino Helios",
                "sv": "Springsteen: Deliver Me from Nowhere (12) – Kino Helios",
                "en": "Springsteen: Deliver Me from Nowhere (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67743/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67744",
            "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:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494119,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T09:13:44.497961Z",
                    "last_modified_time": "2025-12-08T09:13:44.497979Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777350.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494119/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T09:13:44.351520Z",
            "last_modified_time": "2025-12-08T09:13:44.670396Z",
            "date_published": null,
            "start_time": "2025-12-17T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/800F9018D6E5348D2A2C37FB2573AAE9/Sydantalvi_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/800F9018D6E5348D2A2C37FB2573AAE9/Sydantalvi_16_",
                "en": "http://www.malmitalo.fi/en/events/event/800F9018D6E5348D2A2C37FB2573AAE9/Sydantalvi_16_"
            },
            "description": {
                "fi": "<p>Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson.</p><p>Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut Brian Kirk, joka tunnetaan muun muassa Game of Thrones -sarjan jaksoista sekä elokuvasta 21 Bridges. Muissa rooleissa Marc Menchaca, Judy Greer ja Gaia Wise, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Ikäraja: 16<br>Kesto: 98 min<br>Ensi-ilta: 12.12.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Sydäntalvi (16) – Kino Helios",
                "sv": "Sydäntalvi (16) – Kino Helios",
                "en": "Sydäntalvi (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67744/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67695",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-21042837/",
                        "sv": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-21042837/",
                        "en": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-21042837/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494116,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T08:13:00.663134Z",
                    "last_modified_time": "2025-12-08T08:13:00.663164Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777386.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494116/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-08T08:13:00.564607Z",
            "last_modified_time": "2025-12-08T08:13:00.821056Z",
            "date_published": null,
            "start_time": "2025-12-27T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B71B1431628262F1A63D0C486965139F/Kino_Helios_Tonttu_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B71B1431628262F1A63D0C486965139F/Kino_Helios_Tonttu_7_",
                "en": "http://www.malmitalo.fi/en/events/event/B71B1431628262F1A63D0C486965139F/Kino_Helios_Tonttu_7_"
            },
            "description": {
                "fi": "<p>Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta.</p><p>Lumi ja Talvi ovat olleet erottamattomat koko elämänsä ajan, kunnes kohtalo yllättäen ajaa heidät erilleen. Lumi päätyy taianomaiseen tonttumaahan, jossa tontut valmistavat joululahjat kaikille maailman lapsille. Alkaa seikkailu, joka vaatii rohkeutta, luottamusta ja kekseliäisyyttä. 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ä.</p><p>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.</p><p>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>"
            },
            "name": {
                "fi": "Kino Helios: Tonttu (7)",
                "sv": "Kino Helios: Tonttu (7)",
                "en": "Kino Helios: Tonttu (7)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67695/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnpzw5n44",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494114,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T07:14:36.549164Z",
                    "last_modified_time": "2025-12-08T07:14:36.549179Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/8bb2903f-2067-414e-823d-1a6c096c2476.jpg",
                    "name": "",
                    "cropping": "0,70,709,780",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on taiteilija Tea Tuomisen taideteos",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494114/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T07:14:46.582250Z",
            "last_modified_time": "2025-12-08T07:14:46.582269Z",
            "date_published": null,
            "start_time": "2025-12-10T06:00:00Z",
            "end_time": "2025-12-29T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa katsomaan Tea Tuominen: Kerroksia ajassa-näyttelyä kirjaston aukioloaikojen puitteissa 10.-29.12.25"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Taide on kulkenut mukanani vuosia, lähinnä omana ilonani. Maalaan abstraktia akryylitaidetta kerros kerrokselta - tunteen, ajan ja värin rytmissä. Teokseni syntyvät hiljalleen, usein aluksi vailla suunnitelmaa, kunnes jokin sisäinen hetki osuu kohdalleen. </p><p>Nyt on aika jakaa teokseni myös muille. Ehkä joku löytää niistä palan itseään - tai vain hetken hiljaisuutta sävyjen keskellä. Jotain tuttua, vaikkei osaisi sanoa mitä.</p><p><br></p><p>Tämä näyttely on kurkistus siihen, miltä levollisuus näyttää silmissäni.</p><p><br></p><p>Tervetuloa katsomaan tai vain pysähtymään hetkeksi.</p>"
            },
            "name": {
                "fi": "Näyttely: Tea Tuominen: Kerroksia ajassa"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Näyttelyseinä"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnpzw5n44/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnpzw5oqy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494115,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T06:54:38.070111Z",
                    "last_modified_time": "2025-12-08T06:54:38.070126Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/97384d32-d0bd-49d0-a790-81524d2aa3f2.jpg",
                    "name": "",
                    "cropping": "0,293,1414,1707",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on talvinen maisema",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494115/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T06:56:27.955968Z",
            "last_modified_time": "2025-12-08T06:56:27.955995Z",
            "date_published": null,
            "start_time": "2025-12-12T15:30:00Z",
            "end_time": "2025-12-12T16:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Sävelmetsän musiikkikoulun oppilaiden joulumatinea Lippulaivan kirjastossa Monitoimitila Salongissa pe. 12.12. 2025 kello 17.30. Tervetuloa!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Sävelmetsän musiikkikoulun oppilaiden joulumatinea Lippulaivan kirjastossa Monitoimitila Salongissa pe. 12.12. 2025 kello 17.30.</p><p>Tilaisuudessa kuullaan noin 8-10 esitystä Sävelmetsän musiikkikoulun piano- ja lauluoppilailta, kesto noin 30-45 min.</p><p>Tervetuloa kuuntelemaan!</p>"
            },
            "name": {
                "fi": "Sävelmetsän musiikkikoulun oppilaiden joulumatinea"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnpzw5oqy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67152",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4002880",
                        "sv": "https://www.lippu.fi/eventseries/name-4002880"
                    },
                    "description": null,
                    "price": {
                        "fi": "42,50-48,50 €",
                        "sv": "42,50-48,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491096,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-14T13:14:09.264934Z",
                    "last_modified_time": "2025-10-14T13:14:09.264949Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764215.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491096/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-14T13:14:09.079961Z",
            "last_modified_time": "2025-12-07T15:12:47.756112Z",
            "date_published": null,
            "start_time": "2025-12-17T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Christoffer Strandberg, Magnus Betnér (swe), André Wickström, Janne Grönroos & Alfred Backa",
                "sv": "Christoffer Strandberg, Magnus Betnér (swe), André Wickström, Janne Grönroos & Alfred Backa"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B35DD67939FB3743F686DC3E3BE48B89/Christmas_Comedy_-_Den_Stora_Humorkvallen",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/B35DD67939FB3743F686DC3E3BE48B89/Christmas_Comedy_-_Den_Stora_Humorkvallen"
            },
            "description": {
                "fi": "<p>Christoffer Strandberg, Magnus Betnér (swe), André Wickström, Janne Grönroos & Alfred Backa</p><p><b>Svenskfinlands största humorklubb återvänder till Helsingfors med stjärnkomiker både från Sverige och Finland! <br>I höst har det gått 10 år sedan den ambulerande humor & stand up-klubben <i>HumorHuset</i> drog i väg på sin allra första turné, då med både Magnus Betnér och Janne Grönroos i spetsen, och har under åren besökt Helsingfors många gånger. 10 år firas med en kanonkväll på Savoy teatern. Kvällen går under namnet Christmas Comedy - Den Stora Humorkvällen. Det blir stand up, imitationer och trams av en icke tidigare skådad kavalkad komiker på samma scen! Varmt välkomna att skratta loss tillsammans inför jul!</p><p>Magnus Betnér (SWE)</b></p><p>Magnus Betnér är svensk standup. Ingen svensk komiker har varit piggare på att testa nya grepp och ligga i framkant för stand upens utveckling än Magnus Betnér. Inför varje föreställning skriver han nytt material, och inte sällan med någon lokal förankring.</p><p>Magnus Betnér är en av Sveriges mest framgångsrika stand up komiker genom tiderna. Med råge är han även den komiker i Sverige som gjort flest soloföreställningar och även den av svenska komiker som besökt Finland flest gånger. <br>Känd från bland annat det svenska humorprogrammet <i>Parlamentet</i> och för sin ofta politiska, liberala och provokativa humorstil, skämtar han ofta om aktuella ämnen.</p><p><b>Christoffer Strandberg</b></p><p>Christoffer är den prisbelönta komikern och underhållaren som är känd från bland annat <i>Putous, Tanssii Tähtien Kaa, Top Gear Finland, Petolliset</i> och <i>Christoffer Strandberg Show</i>.<br>Han är även känd för sina roliga imitationer av kända personer och presidenter. Kanske någon karaktär dyker upp under kvällen?</p><p><b>André Wickström</b></p><p>Stand up nestorn André Wickström är en av landets absolut mest kända och omtyckta komiker. På hemmaplan har han sedan starten år 1995 turnerat runt på stand up klubbar, gjort flera soloshower och medverkat i såväl prisbelönta TV program som i filmer och sketchprogram, både i Finland och utomlands. <br>Hösten 2005 firade André Wickström 10 år som komiker med soloshowen <i>”En kvälls grej”</i> på Svenska Teatern i Helsingfors. Showen sågs av över 15.000 personer. År 2015 firade han sin 20-åriga karriär med soloshowen <i>”20 år stand up”</i> på Esbo Stadsteater och i år firar André 30 år på scenen.  <br>I Sverige ses André ofta på Sveriges mest anrika stand up klubb Norra Brunn, och har även medverkat i otaliga TV program som till exempel <i>Parlamentet</i> och <i>Roast på Berns</i>, samt i den populära svenska TV serien Solsidan. <br>André är också känd för det inhemska humorprogrammet Detta om detta som han gjorde ihop med Stan Saanila.</p><p><b>Janne Grönroos</b></p><p>Janne Grönroos ses ofta på stand up scener runtom i Svenskfinland och uppträder även på de<br>svenska humorklubbarna såsom <i>Norra Brunn</i> i Stockholm. Janne Grönroos är Radio X3M<br>veteranen som efter TV-jobb i Sverige nu är programledare för YLE:s populära TV-program Efter Nio. Janne driver även den svenskspråkiga övningsklubben <i>Top Floor Comedy</i>, där både nya och mer garvade stand up-komiker kan öva och testa nytt.</p><p><b>Alfred Backa</b></p><p>Alfred Backa är en prisbelönt österbottnisk komiker med mångårig bakgrund inom humor i varierande tappning och den som hittar det roliga i det mesta. Han har även gett ut flera böcker, medverkat i både poddar och radioprogram. 2019 turnerade Alfred med sin humorföreställning <i>Alfred Backa framför Alfred Backa</i>. 2024 turnerade han i Österbotten med succéföreställningen <i>Alfred Backa for President</i> för fulla salonger och just nu är han aktuell med soloshowen <i>Alfred Backa Gör Upp med Svensk(Finland)</i>, som turnerar runtom i Svenskfinland. Alfred producerar även flitigt politisk satir i sina digitala kanaler, vilket fått stor uppmärksamhet den senaste tiden och populariteten ökar.</p><p>Längd: Ca. 2,5 h (inklusive paus)</p><p>Åldersgräns: K-15</p><p>Föreställningen är på svenska.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersg</p>",
                "sv": "<p>Christoffer Strandberg, Magnus Betnér (swe), André Wickström, Janne Grönroos & Alfred Backa</p><p><b>Svenskfinlands största humorklubb återvänder till Helsingfors med stjärnkomiker både från Sverige och Finland! <br>I höst har det gått 10 år sedan den ambulerande humor & stand up-klubben <i>HumorHuset</i> drog i väg på sin allra första turné, då med både Magnus Betnér och Janne Grönroos i spetsen, och har under åren besökt Helsingfors många gånger. 10 år firas med en kanonkväll på Savoy teatern. Kvällen går under namnet Christmas Comedy - Den Stora Humorkvällen. Det blir stand up, imitationer och trams av en icke tidigare skådad kavalkad komiker på samma scen! Varmt välkomna att skratta loss tillsammans inför jul!</p><p>Magnus Betnér (SWE)</b></p><p>Magnus Betnér är svensk standup. Ingen svensk komiker har varit piggare på att testa nya grepp och ligga i framkant för stand upens utveckling än Magnus Betnér. Inför varje föreställning skriver han nytt material, och inte sällan med någon lokal förankring.</p><p>Magnus Betnér är en av Sveriges mest framgångsrika stand up komiker genom tiderna. Med råge är han även den komiker i Sverige som gjort flest soloföreställningar och även den av svenska komiker som besökt Finland flest gånger. <br>Känd från bland annat det svenska humorprogrammet <i>Parlamentet</i> och för sin ofta politiska, liberala och provokativa humorstil, skämtar han ofta om aktuella ämnen.</p><p><b>Christoffer Strandberg</b></p><p>Christoffer är den prisbelönta komikern och underhållaren som är känd från bland annat <i>Putous, Tanssii Tähtien Kaa, Top Gear Finland, Petolliset</i> och <i>Christoffer Strandberg Show</i>.<br>Han är även känd för sina roliga imitationer av kända personer och presidenter. Kanske någon karaktär dyker upp under kvällen?</p><p><b>André Wickström</b></p><p>Stand up nestorn André Wickström är en av landets absolut mest kända och omtyckta komiker. På hemmaplan har han sedan starten år 1995 turnerat runt på stand up klubbar, gjort flera soloshower och medverkat i såväl prisbelönta TV program som i filmer och sketchprogram, både i Finland och utomlands. <br>Hösten 2005 firade André Wickström 10 år som komiker med soloshowen <i>”En kvälls grej”</i> på Svenska Teatern i Helsingfors. Showen sågs av över 15.000 personer. År 2015 firade han sin 20-åriga karriär med soloshowen <i>”20 år stand up”</i> på Esbo Stadsteater och i år firar André 30 år på scenen.  <br>I Sverige ses André ofta på Sveriges mest anrika stand up klubb Norra Brunn, och har även medverkat i otaliga TV program som till exempel <i>Parlamentet</i> och <i>Roast på Berns</i>, samt i den populära svenska TV serien Solsidan. <br>André är också känd för det inhemska humorprogrammet Detta om detta som han gjorde ihop med Stan Saanila.</p><p><b>Janne Grönroos</b></p><p>Janne Grönroos ses ofta på stand up scener runtom i Svenskfinland och uppträder även på de<br>svenska humorklubbarna såsom <i>Norra Brunn</i> i Stockholm. Janne Grönroos är Radio X3M<br>veteranen som efter TV-jobb i Sverige nu är programledare för YLE:s populära TV-program Efter Nio. Janne driver även den svenskspråkiga övningsklubben <i>Top Floor Comedy</i>, där både nya och mer garvade stand up-komiker kan öva och testa nytt.</p><p><b>Alfred Backa</b></p><p>Alfred Backa är en prisbelönt österbottnisk komiker med mångårig bakgrund inom humor i varierande tappning och den som hittar det roliga i det mesta. Han har även gett ut flera böcker, medverkat i både poddar och radioprogram. 2019 turnerade Alfred med sin humorföreställning <i>Alfred Backa framför Alfred Backa</i>. 2024 turnerade han i Österbotten med succéföreställningen <i>Alfred Backa for President</i> för fulla salonger och just nu är han aktuell med soloshowen <i>Alfred Backa Gör Upp med Svensk(Finland)</i>, som turnerar runtom i Svenskfinland. Alfred producerar även flitigt politisk satir i sina digitala kanaler, vilket fått stor uppmärksamhet den senaste tiden och populariteten ökar.</p><p>Längd: Ca. 2,5 h (inklusive paus)</p><p>Åldersgräns: K-15</p><p>Föreställningen är på svenska.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersg</p>"
            },
            "name": {
                "fi": "Christmas Comedy - Den Stora Humorkvällen – Loppuunmyyty! / Slutsåld!",
                "sv": "Christmas Comedy - Den Stora Humorkvällen – Slutsåld!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Eventland Oy",
                "sv": "Eventland Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67152/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66888",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/",
                        "sv": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/",
                        "en": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/"
                    },
                    "description": null,
                    "price": {
                        "fi": "38,90 € / S&D 100,60 €",
                        "sv": "38,90 € / S&D 100,60 €",
                        "en": "38,90 € / S&D 100,60 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490497,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-21T15:14:23.262790Z",
                    "last_modified_time": "2025-08-21T15:14:23.262806Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776509.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490497/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-21T15:14:23.139549Z",
            "last_modified_time": "2025-12-07T15:12:46.881825Z",
            "date_published": null,
            "start_time": "2025-12-13T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suurlähettiläät juhlii tänä vuonna 35-‑vuotista taivaltaan. Sen verran on kulunut ensimmäisestä singlestä – ja kun osa bändin jäsenistäkin viettää tänä vuonna tasavuosijuhliaan – on syytä juhlaan ja kunnioittaa menneitä vuosikymmeniä.",
                "sv": "I år firar Suurlähettiläät 35-årsjubileum. Så lång tid har gått sedan den första singeln – och med tanke på att vissa medlemmar i bandet firar jämna år i år finns det anledning att fira och hedra de årtionden som gått.",
                "en": "Suurlähettiläät are celebrating their 35-year history this year. That's how long it has beensince the band'sfirstsingle – and with somemembersof thebandcelebrating their milestone birthdays thisyear – there's plenty of reason to celebrate and honour the past decades."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A97408785726628A844435B194961916/Suurlahettilaat",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/A97408785726628A844435B194961916/Suurlahettilaat",
                "en": "http://www.savoyteatteri.fi/en/events/event/A97408785726628A844435B194961916/Suurlahettilaat"
            },
            "description": {
                "fi": "<p>Suurlähettiläät juhlii tänä vuonna 35-‑vuotista taivaltaan. Sen verran on kulunut ensimmäisestä singlestä – ja kun osa bändin jäsenistäkin viettää tänä vuonna tasavuosijuhliaan – on syytä juhlaan ja kunnioittaa menneitä vuosikymmeniä.</p><p>Yhtye nousi suomalaisen bändipopin kaanoniin heti vuonna 1991 debyyttialbumillaan Omituisten otusten kerho, josta ikivihreiksi nousi kappaleet Elokuun 11. ja Pitääxunaina?. Nopeassa tahdissa klassikkokimara jatkui mm. biiseillä Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot ja Mitä miehen tulee olla?<br> <br>Savoy Teatterissa 13.12. on luvassa yhtyeen juhlakiertueen 2025 viimeinen keikka ja runsas kattaus biisejä bändin uran varrelta. Suomisoulia, joka on tehnyt Suurlähettiläistä sukupolvien ajan rakastetun.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Konserttiin on myynnissä Savoy-teatterin yhteydessä toimivan Minne Garden-ravintolan herkullinen kolmen ruokalajin illallinen, joka tarjoillaan kaksi tuntia ennen esitystä. Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.</p><p><b>Konsertin Show&Dinner-lippupaketit ovat loppuunmyyty, mutta illallinen on mahdollista tilata suoraan Savoy-teatterin ravintola Minnen verkkokaupasta: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat<br> <br>Huomioithan, että Minnen illalliskattauksessa on rajallinen määrä paikkoja jäljellä.</b></p><p>Show & Dinner -lippu sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun.</p><p><b>Menu Classic</b><br>Rapuskagen, paahdettua mallasleipää, etikkakurkkua ja siianmätiä L<br>Matalassa lämmössä kypsytettyä häränfileetä, paahdettua palsternakkaa ja aligot-perunaa L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G</p><p>TAI</p><p><b>Menu Green</b><br>Punajuuricarpaccio, kuusenkerkkächeddaria ja pikkelöityjä sieniä L,G<br>Grillattua savojinkaalta, kikhernepyrettä ja haudutettua pinaattia L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G</p><p>Menun hinta ei sisällä juomia.<br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua.<br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</p>",
                "sv": "<p>I år firar Suurlähettiläät 35-årsjubileum. Så lång tid har gått sedan den första singeln – och med tanke på att vissa medlemmar i bandet firar jämna år i år finns det anledning att fira och hedra de årtionden som gått.</p><p>Bandet skrev in sig i den finska bandpopens historia genast 1991 med sitt debutalbum Omituisten otusten kerho, från vilket låtarna Elokuun 11. och Pitääxunaina? blev evergreens. Den tempofyllda klassiska cocktailen fortsatte med låtar som Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot och Mitä miehen tulee olla?.</p><p>Den 13 december är Savoy-teatern värd för den sista konserten på bandets jubileumsturné 2025, och en hel uppsättning låtar från bandets karriär utlovas. Den finska soulen som gjort Suurlähettiläät älskat i generationer.</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Till konserten säljs en utsökt trerätters middag på restaurang Minne Garden intill Savoy-teatern som serveras två timmar före föreställningen. Grupper med fler än tolv personer är välkomna att skicka e-post till myynti@minnehelsinki.fi för bokning.</p><p>Biljettpaketen Show & Dinner till konserten är slutsålda, men det går bra att beställa middag direkt i Savoy-teaterns restaurang Minnes webbutik: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat</p><p>Observera att det finns ett begränsat antal platser kvar till Minnes middagsdukning.</p><p>Biljetten Show & Dinner inkluderar en entrébiljett och en meny med kött eller vegetarisk mat som serveras till borden.</p><p>Menu Classic<br>Kräftskagen, rostat maltbröd, ättiksgurka och sikrom L<br>Oxfilé tillagad på låg värme, rostad palsternacka och pommes aligot L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>ELLER</p><p>Menu Green<br>Rödbetscarpaccio, granskottscheddar och picklad svamp L, G<br>Grillad savoykål, kikärtspuré och stuvad spenat L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>Menypriset inkluderar inte drycker.<br>Middagen serveras i Savoy-teaterns restaurang Minne Garden två timmar före kvällens föreställning.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p>",
                "en": "<p>Suurlähettiläät are celebrating their 35-year history this year. That's how long it has beensince the band'sfirstsingle – and with somemembersof thebandcelebrating their milestone birthdays thisyear – there's plenty of reason to celebrate and honour the past decades.</p><p>The band shot to fame in the Finnish band pop scene right at the start, in 1991, with their debut album Omituisten otusten kerho. The album’s songs Elokuun 11. and Pitääxunaina? became evergreen hits. The band continued to churn out classics at a fast pace, with songs such as Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot and Mitä miehen tulee olla?</p><p>On 13 December, the Savoy Theatre will host the last show of the band's 2025 anniversary tour, offering a wide range of songs from the band's career: The Finnish soul that has made Suurlähettiläät a beloved band across generations.</p><p>Duration approx. 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>A delicious three-course dinner at the Savoy Theatre's Minne Garden restaurant is available for purchase for the concert evening, served two hours before the performance. Groups of more than 12 people should kindly contact the restaurant at: myynti@minnehelsinki.fi.</p><p>The concert’s Show & Dinner ticket packages are sold out, but it is possible to order dinner directly from the Savoy Theatre's Restaurant Minne's online shop (website in Finnish): https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat</p><p>Please note that there are a limited number of seats left for the dinner service at Restaurant Minne.</p><p>The Show & Dinner ticket includes an entrance ticket and a meat or vegetarian menu served to tables.</p><p>Menu Classic<br>Toast skagen, toasted malt bread, pickled cucumber and whitefish roe L<br>Beef fillet cooked at low heat, roasted parsnips and pommes aligot, L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>OR</p><p>Menu Green<br>Beetroot carpaccio, spruce sprout cheddar and pickled mushrooms L,G<br>Grilled savoy cabbage, chickpea puree and braised spinach L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>The price of the menu does not include drinks.<br>The dinner will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the evening's performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p>"
            },
            "name": {
                "fi": "Suurlähettiläät – Loppuunmyyty! / Sold out!",
                "sv": "Suurlähettiläät – Slutsåld!",
                "en": "Suurlähettiläät – Sold out!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Sunborn Events Oy",
                "sv": "Sunborn Events Oy",
                "en": "Sunborn Events Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66888/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000235",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849161/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kuningatarnaytelma-helsingin-kaupunginteatteri-20000235/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kuningatarnaytelma-helsingin-kaupunginteatteri-20000235/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kuningatarnaytelma-helsingin-kaupunginteatteri-20000235/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360030,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:19.912887Z",
                    "last_modified_time": "2025-03-17T22:17:19.912902Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/9c/af/kuningatar222-tickets_369620_3121710_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360030/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:45.119947Z",
            "last_modified_time": "2025-12-05T23:15:06.115006Z",
            "date_published": null,
            "start_time": "2025-12-05T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jussi Moila - Sini Pesonen KUNINGATARNÄYTELMÄ Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Jussi Moila - Sini Pesonen<br><strong>KUNINGATARNÄYTELMÄ</strong></p><p>Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654. Jussi Moilan kirjoittama ja Sini Pesosen ohjaama historiallinen nykydraama hengittää vahvasti tätä päivää teemoillaan vallasta, sukupuolesta ja rakkaudesta.</p><p>Nuoreen Kristinaan kohdistuu järkälemäisiä odotuksia. Hän on tyttö, jota kasvatetaan kuninkaaksi. Nainen, jonka tulee turvata kuningassuku avioitumalla ja synnyttämällä perillinen. Hallitsija, jonka täytyy olla sodassa ryvettyneen kansakuntansa keulakuva ja johtaja.</p><p>Mutta Kristina haluaa jotain aivan muuta. Hän haluaa tehdä synkästä ja sivistymättömästä Ruotsista tieteen ja taiteen johtotähden, eurooppalaisen vapauden ja sivistyksen valtakunnan. Ja Kristina haluaa hovineitonsa Bellen.</p><p>Ristipaine julkisen roolin ja yksityiselämän välillä synnyttää hurjaa, hauskaa ja koskettavaa draamaa. Anarkistisen kuningatar Kristinan kiehtovassa roolissa nähdään Elsi Sloan. Belleä näyttelee Aino Sirje.</p><p>Rooleissa: Rauno Ahonen, Pekka Huotari, Vappu Nalbantoglu, Aino Seppo, Aino Sirje, Elsi Sloan, Alvari Stenbäck, Mikko Vihma, Joachim Wigelius, Vilma Sippola</p><p>Ohjaus: Sini Pesonen<br>Koreografia: Kaisa Torkkel<br>Lavastus: Tinja Salmi<br>Pukusuunnittelu: Henna-Riikka Taskinen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Valosuunnittelu: Kari Leppälä<br>Videosuunnittelu: Tinja Salmi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Henna Piirto<br>Erikoistehosteet: Markku Ahonen</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>"
            },
            "name": {
                "fi": "Kuningatarnäytelmä"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000235/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19999934",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849160/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999934/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999934/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999934/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360032,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:20.766941Z",
                    "last_modified_time": "2025-03-17T22:17:20.766955Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/a1/8c/sutinaa222-tickets_369148_3117437_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360032/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:45.022457Z",
            "last_modified_time": "2025-12-05T23:15:05.992473Z",
            "date_published": null,
            "start_time": "2025-12-05T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Sandy Rustin SUTINAA JA SÄÄTÖÄ Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni kynnet sinisinä, mutta samalla hypätään päätä pahkaa syvään päätyyn niin riemukkaasti, että katsojan onnellinen osa on nauraa vedet silmissä mukana!</p><p>Sylvia (Pihla Penttinen) ja hänen salarakkaansa Beau (Sauli Suonpää) ovat saapuneet jokavuotiselle syntiselle huvilatapaamiselleen. Tällä kertaa Sylvia pudottaa Beaulle todellisen uutispommin, ja kertoo jättäneensä miehensä. Sähkeellä!</p><p>Tämä on vasta alkua, sillä seuraavaksi kaksikon puolisot (Emilia Sinisalo ja Heikki Ranta) pelmahtavat samalle huvilalle! Todellinen salaisuuksien Pandoran lipas revähtää auki ja niin henkilöiden identiteetit kuin avioliittokäsitykset joutuvat kiivaasti kieppuvaan myllyyn.</p><p>Broadwaylla ensi-iltansa vuonna 2023 saanut Sutinaa ja säätöä sijoittuu herkullisesti 1920-luvun Englantiin, mutta sen käänteet ja käänteissä kärvistelevät ihmiset ovat täyttä tätä päivää, tunnistettavia ja samaistuttavia, kaikessa hullunkurisuudessaan rakastettavia ja pakahduttavan hauskoja.</p><p>Sutinaa ja säätöä on uusi ja raikas farssikomedia parisuhteista. Kuumana kuplivaa sutinaa ja sysipimeitä salaisuuksia pulppuava parituntinen, jonka aikana katsoja tulee yllätetyksi monta kertaa – aivan kuten komedian henkilötkin.</p><p>Rooleissa: Pihla Penttinen, Sauli Suonpää, Emilia Sinisalo, Heikki Ranta, Ella Lymi ja Mikko Virtanen</p><p>Suomentaja: Reita Lounatvuori<br>Ohjaus: Sari Siikander<br>Lavastus: Peter Ahlqvist<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Äänisuunnittelu: Eero Niemi<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Dramaturgi: Ari-Pekka Lahti</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner</p>",
                "en": "<p>Sandy Rustin<br><strong>SUTINAA JA SÄÄTÖÄ</strong></p>"
            },
            "name": {
                "fi": "Sutinaa Ja Säätöä"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999934/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19506317",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506317/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506317/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506317/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.124713Z",
                    "last_modified_time": "2025-02-17T11:16:42.124728Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:26.573660Z",
            "last_modified_time": "2025-12-05T23:15:05.886384Z",
            "date_published": null,
            "start_time": "2025-12-05T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin,"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Wilhelm Blomberg, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>",
                "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>"
            },
            "name": {
                "fi": "Moulin Rouge! Musikaali"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19506317/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agno6v2cm4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22dkba/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:koha",
            "sub_events": [],
            "images": [
                {
                    "id": 151452,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2022-07-01T06:28:47.191453Z",
                    "last_modified_time": "2022-08-31T05:56:25.773787Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg",
                    "name": "",
                    "cropping": "194,0,1006,813",
                    "photographer_name": "",
                    "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-05T15:21:42.017403Z",
            "last_modified_time": "2025-12-05T15:21:42.017422Z",
            "date_published": null,
            "start_time": "2025-12-10T12:30:00Z",
            "end_time": "2025-12-10T22:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.",
                "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.",
                "en": "The service advisors of Espoo Info bring digital support and service advice closer to you."
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info",
                "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info",
                "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info"
            },
            "description": {
                "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>",
                "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>",
                "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>"
            },
            "name": {
                "fi": "Liikkuva Espoo-info Lippulaivan kirjasto",
                "sv": "Mobila Esbo-info Lippulaiva biblioteket",
                "en": "Mobile Espoo Info Lippulaiva Library"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Konsernihallinto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agno6v2cm4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agno6v2c5a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22dkba/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:koha",
            "sub_events": [],
            "images": [
                {
                    "id": 151452,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2022-07-01T06:28:47.191453Z",
                    "last_modified_time": "2022-08-31T05:56:25.773787Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg",
                    "name": "",
                    "cropping": "194,0,1006,813",
                    "photographer_name": "",
                    "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-07T07:11:23.529351Z",
            "last_modified_time": "2025-12-05T15:21:41.793123Z",
            "date_published": null,
            "start_time": "2025-12-10T12:30:00Z",
            "end_time": "2025-12-10T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.",
                "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.",
                "en": "The service advisors of Espoo Info bring digital support and service advice closer to you."
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info",
                "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info",
                "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info"
            },
            "description": {
                "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>",
                "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>",
                "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>"
            },
            "name": {
                "fi": "Liikkuva Espoo-info Lippulaivan kirjasto",
                "sv": "Mobila Esbo-info Lippulaiva biblioteket",
                "en": "Mobile Espoo Info Lippulaiva Library"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Konsernihallinto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agno6v2c5a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agno6v2dny",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22dkba/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:koha",
            "sub_events": [],
            "images": [
                {
                    "id": 151452,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2022-07-01T06:28:47.191453Z",
                    "last_modified_time": "2022-08-31T05:56:25.773787Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg",
                    "name": "",
                    "cropping": "194,0,1006,813",
                    "photographer_name": "",
                    "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-07T07:11:23.610969Z",
            "last_modified_time": "2025-12-05T15:21:41.748209Z",
            "date_published": null,
            "start_time": "2025-12-12T12:30:00Z",
            "end_time": "2025-12-12T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.",
                "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.",
                "en": "The service advisors of Espoo Info bring digital support and service advice closer to you."
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info",
                "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info",
                "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info"
            },
            "description": {
                "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>",
                "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>",
                "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>"
            },
            "name": {
                "fi": "Liikkuva Espoo-info Lippulaivan kirjasto",
                "sv": "Mobila Esbo-info Lippulaiva biblioteket",
                "en": "Mobile Espoo Info Lippulaiva Library"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Konsernihallinto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agno6v2dny/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agno6v2dvi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22dkba/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:koha",
            "sub_events": [],
            "images": [
                {
                    "id": 151452,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2022-07-01T06:28:47.191453Z",
                    "last_modified_time": "2022-08-31T05:56:25.773787Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg",
                    "name": "",
                    "cropping": "194,0,1006,813",
                    "photographer_name": "",
                    "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-07T07:11:23.714539Z",
            "last_modified_time": "2025-12-05T15:21:41.702809Z",
            "date_published": null,
            "start_time": "2025-12-17T12:30:00Z",
            "end_time": "2025-12-17T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.",
                "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.",
                "en": "The service advisors of Espoo Info bring digital support and service advice closer to you."
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info",
                "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info",
                "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info"
            },
            "description": {
                "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>",
                "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>",
                "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>"
            },
            "name": {
                "fi": "Liikkuva Espoo-info Lippulaivan kirjasto",
                "sv": "Mobila Esbo-info Lippulaiva biblioteket",
                "en": "Mobile Espoo Info Lippulaiva Library"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Konsernihallinto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agno6v2dvi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agntca2f3e",
            "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:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22dr3y/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:koha",
            "sub_events": [],
            "images": [
                {
                    "id": 151452,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2022-07-01T06:28:47.191453Z",
                    "last_modified_time": "2022-08-31T05:56:25.773787Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg",
                    "name": "",
                    "cropping": "194,0,1006,813",
                    "photographer_name": "",
                    "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-07T07:08:14.459877Z",
            "last_modified_time": "2025-12-05T15:17:08.911779Z",
            "date_published": null,
            "start_time": "2025-12-09T12:30:00Z",
            "end_time": "2025-12-09T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.",
                "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.",
                "en": "The service advisors of Espoo Info bring digital support and service advice closer to you."
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info",
                "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info",
                "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info"
            },
            "description": {
                "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>",
                "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>",
                "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>"
            },
            "name": {
                "fi": "Liikkuva Espoo-info Sellon kirjasto",
                "sv": "Mobila Esbo-info Sellobiblioteket",
                "en": "Mobile Espoo Info Sello Library"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Konsernihallinto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agntca2f3e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}