Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

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

{
    "meta": {
        "count": 26371,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=84",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=82"
    },
    "data": [
        {
            "id": "espoo_le:agmqtcinau",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqtcinw4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490595,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-03-17T09:32:13.128144Z",
                    "last_modified_time": "2025-09-02T07:26:46.053232Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a8d628c5-6b7b-4408-94ad-e4b2c753345e.png",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "-",
                    "alt_text": "Kuvassa sanomalehti ja käsi joka pitelee täyttä kahvikuppia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-02T08:04:29.028575Z",
            "last_modified_time": "2025-09-02T08:04:29.028590Z",
            "date_published": null,
            "start_time": "2025-09-11T07:00:00Z",
            "end_time": "2025-09-11T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Selkouutiskahveilla kuuntelemme Yle Areenasta selkouutiset. Sen jälkeen luemme uutisen ja keskustelemme siitä yhdessä suomeksi.",
                "sv": "Under nyhetsgenomgångarna lyssnar vi på nyheterna från Yle Arena. Sedan läser vi nyheterna och diskuterar dem tillsammans på finska.",
                "en": "We are listening Plain News from Yle Areena. After that we read the news and discuss the topics together in Finnish."
            },
            "info_url": {
                "fi": "https://helmet.finna.fi/",
                "sv": "https://helmet.finna.fi/?lng=sv",
                "en": "https://helmet.finna.fi/?lng=en-gb"
            },
            "name": {
                "fi": "Selkouutiskahvit",
                "sv": "Kaffe med klara nyheter",
                "en": "Plain News Cafe"
            },
            "description": {
                "fi": "<p>Selkouutiskahveilla kuuntelemme Yle Areenasta selkouutiset. Sen jälkeen luemme uutisen ja keskustelemme siitä yhdessä suomeksi. Opimme näin yhdessä suomea, ja tutustumme Suomen tapoihin ja historiaan.</p><p>Selkouutiskahvit järjestetään torstaisin Entressen kirjaston Kibessä klo 10.00-12.00.</p><p>Selkouutiskahveja järjestää kirjasto</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Under nyhetsgenomgångarna lyssnar vi på nyheterna från Yle Arena. Sedan läser vi nyheterna och diskuterar dem tillsammans på finska. På så sätt lär vi oss finska tillsammans och bekantar oss med finska seder och historia.</p><p>Kaffepauserna äger rum på torsdagar på Entresse bibliotek i Kibe från 10.00-12.00.</p><p>&nbsp;</p><p>#HelloEspoo</p>",
                "en": "<p>We are listening Plain News from Yle Areena. After that we read the news and discuss the topics together in Finnish. This is how we learn together Finnish, Finnish customs and history.</p><p>Plain news cafe are held on thursdays 10.00-12.00. in Kibe, Entresse Library.</p><p>&nbsp;</p><p>&nbsp;</p><p>#HelloEspoo</p>"
            },
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "provider": {
                "fi": "Kirjasto",
                "sv": "Biblioteket",
                "en": "Library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqtcinau/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqtcinlq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqtcinw4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490595,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-03-17T09:32:13.128144Z",
                    "last_modified_time": "2025-09-02T07:26:46.053232Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a8d628c5-6b7b-4408-94ad-e4b2c753345e.png",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "-",
                    "alt_text": "Kuvassa sanomalehti ja käsi joka pitelee täyttä kahvikuppia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-02T08:04:28.902995Z",
            "last_modified_time": "2025-09-02T08:04:28.903013Z",
            "date_published": null,
            "start_time": "2025-09-04T07:00:00Z",
            "end_time": "2025-09-04T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Selkouutiskahveilla kuuntelemme Yle Areenasta selkouutiset. Sen jälkeen luemme uutisen ja keskustelemme siitä yhdessä suomeksi.",
                "sv": "Under nyhetsgenomgångarna lyssnar vi på nyheterna från Yle Arena. Sedan läser vi nyheterna och diskuterar dem tillsammans på finska.",
                "en": "We are listening Plain News from Yle Areena. After that we read the news and discuss the topics together in Finnish."
            },
            "info_url": {
                "fi": "https://helmet.finna.fi/",
                "sv": "https://helmet.finna.fi/?lng=sv",
                "en": "https://helmet.finna.fi/?lng=en-gb"
            },
            "name": {
                "fi": "Selkouutiskahvit",
                "sv": "Kaffe med klara nyheter",
                "en": "Plain News Cafe"
            },
            "description": {
                "fi": "<p>Selkouutiskahveilla kuuntelemme Yle Areenasta selkouutiset. Sen jälkeen luemme uutisen ja keskustelemme siitä yhdessä suomeksi. Opimme näin yhdessä suomea, ja tutustumme Suomen tapoihin ja historiaan.</p><p>Selkouutiskahvit järjestetään torstaisin Entressen kirjaston Kibessä klo 10.00-12.00.</p><p>Selkouutiskahveja järjestää kirjasto</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Under nyhetsgenomgångarna lyssnar vi på nyheterna från Yle Arena. Sedan läser vi nyheterna och diskuterar dem tillsammans på finska. På så sätt lär vi oss finska tillsammans och bekantar oss med finska seder och historia.</p><p>Kaffepauserna äger rum på torsdagar på Entresse bibliotek i Kibe från 10.00-12.00.</p><p>&nbsp;</p><p>#HelloEspoo</p>",
                "en": "<p>We are listening Plain News from Yle Areena. After that we read the news and discuss the topics together in Finnish. This is how we learn together Finnish, Finnish customs and history.</p><p>Plain news cafe are held on thursdays 10.00-12.00. in Kibe, Entresse Library.</p><p>&nbsp;</p><p>&nbsp;</p><p>#HelloEspoo</p>"
            },
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "provider": {
                "fi": "Kirjasto",
                "sv": "Biblioteket",
                "en": "Library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqtcinlq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqsu35qy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490593,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-02T07:06:42.374894Z",
                    "last_modified_time": "2025-09-02T07:06:42.374908Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ec3743fe-221f-498d-920a-c548c1eee37b.png",
                    "cropping": "328,0,660,331",
                    "photographer_name": "",
                    "alt_text": "Punaisella pohjalla valkoinen teksti: Asukastilaisuus: miten Espoosta ikäystävällinen",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490593/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-02T07:13:35.911411Z",
            "last_modified_time": "2025-09-02T07:13:35.911433Z",
            "date_published": null,
            "start_time": "2025-09-24T13:45:00Z",
            "end_time": "2025-09-24T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Alueen kaupunginosayhdistykset järjestävät keskustelutilaisuuden"
            },
            "info_url": null,
            "name": {
                "fi": "Asukastilaisuus: Miten Espoosta ikäystävällinen"
            },
            "description": {
                "fi": "<p>Minkälainen on ikäystävällinen kaupunkiympäristö ja sen kehittämistarpeet? </p><p>Miten kaupunkiympäristö vaikuttaa ikääntyneiden asukkaiden osallisuuteen ja selviytymiseen? </p><p>Miten Espoo auttaa ja aikoo auttaa ikääntyneitä selviytymään yhä huonokuntoisempina mahdollisimman pitkään kotonaan kaupunkiympäristön toimialan keinoin? </p><p><br></p><p>Alustamassa: </p><p>Ira Verma: Senior Scientist, Aalto yliopisto</p><p>Ossi keränen: asemakaavapäällikkö, Espoo</p><p>Juhani Lehikoinen: Liikenneinsinööri, Espoo</p><p>Sirkku Kiviniitty: esteettömyysasiantuntija, Espoo</p><p><br></p><p>Tule mukaan keskustelemaan!</p><p>Mehua ja pientä purtavaa 16:45 alkaen. </p><p><br></p>"
            },
            "location_extra_info": {
                "fi": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqsu35qy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agmqsk7zuy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:9/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:56/?format=api"
                }
            ],
            "created_time": "2025-09-02T06:45:00.977962Z",
            "last_modified_time": "2025-09-02T06:46:42.985202Z",
            "date_published": null,
            "start_time": "2025-09-11T07:10:00Z",
            "end_time": "2025-09-11T08:10: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": "2025-09-02T09:50:00+03:00",
            "enrolment_end_time": "2025-09-11T10:10:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "testing29",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "testing29",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>testing29</p>\n",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agmqsk7zuy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqsgzazi",
            "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:p11406/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22rlhe/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490239,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-06-24T06:30:47.593310Z",
                    "last_modified_time": "2025-06-24T06:30:47.593324Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/8d7ca98c-0590-4994-a01b-c860d7b7163e.jpg",
                    "cropping": "74,0,937,864",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on kilpikonna, simpukka, meritähti, valas, kaloja ja keihäsrausku",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490239/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-02T06:16:43.616231Z",
            "last_modified_time": "2025-09-02T06:16:43.616247Z",
            "date_published": null,
            "start_time": "2025-09-23T06:30:00Z",
            "end_time": "2025-09-23T07:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa runoleikkien ja lorujen pariin!"
            },
            "info_url": null,
            "name": {
                "fi": "Runokylpylä vauvaperheille (4kk-1v)"
            },
            "description": {
                "fi": "<p>Mikä on runokylpylä?</p><p>Vauva tarvitsee kylvetystä omalla äidinkielellään. Vauvat rakastavat leikkiä, napsuvia riimejä ja runon rytmiä, mikä tutkitusti kehittää myös heidän aivojaan!</p><p>Runojen ja lorujen kautta vauvat saavat ensimmäisen kirjallisen elämyksensä.</p><p>Anna lapselle lahjaksi sointuisa kieli! Tervetuloa runoleikkien ja lorujen pariin!</p><p><br></p><p>Kokoontumiset Lippulaivan kirjaston Salongissa tiistaisin:</p><p>26.8., 2.9., 9.9., 23.9.,  7.10., 21.10., 4.11., 18.11., 2.12., ja 16.12.</p>"
            },
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqsgzazi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqsgzbsi",
            "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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqsgzdsq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490584,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-02T06:02:47.183231Z",
                    "last_modified_time": "2025-09-02T06:02:47.183245Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/19d9663f-d2a3-43dd-bcd4-bcb30aac8992.jpg",
                    "cropping": "208,0,884,675",
                    "photographer_name": "",
                    "alt_text": "Kuvassa lukee: Uudenmaan muistiluotsin muisti-infot Espoonlahdessa, Lippulaivan kirjasto, Kajuutta-tila, Espoonlahdenkatu 8",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490584/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-02T06:03:08.724354Z",
            "last_modified_time": "2025-09-02T06:03:08.724369Z",
            "date_published": null,
            "start_time": "2025-11-18T12:30:00Z",
            "end_time": "2025-11-18T13:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Muisti-infot ovat kaikille muististaan, muistin huollosta ja aivoterveydestä kiinnostuneille avoimia luentotilaisuuksia. Tervetuloa!",
                "sv": "Minnesinfotillfällena är öppna för alla som är intresserade av minne, minnesvård och hjärnhälsa. Välkommen till oss!",
                "en": "The Memory Info sessions are open to anyone interested in their memory, memory care and brain health. Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Muisti-info",
                "sv": "Minnes-info",
                "en": "Memory info"
            },
            "description": {
                "fi": "<p>Muisti-infot ovat kaikille muististaan, muistin huollosta ja aivoterveydestä kiinnostuneille avoimia luentotilaisuuksia. Tarjolla on ajankohtaista tietoa muistista ja muistia virkistävää toimintaa!</p><p><br></p><p>Ti 2.9. Usein kysytyt kysymykset muistiin liittyen</p><p>Ti 14.10. Muisti ja ravinto</p><p>Ti 18.11. Muistisairaan kohtaaminen</p><p><br></p><p>Tervetuloa kuuntelemaan ja keskustelemaan!</p><p><br></p><p>Tiedustelut:</p><p>Johanna Juola, muistiohjaaja</p><p>puh.040 170 6771 / johanna.juola@espoonmuisti.fi</p><p>tai</p><p>Krista Asmala, muistiohjaaja</p><p>puh. 040 483 0139 /krista.asmala@espoonmuisti.fi</p>",
                "sv": "<p>Minnes Info-träffarna är öppna för alla som är intresserade av sitt minne, minnesvård och hjärnhälsa. Vi bjuder på aktuell information om minnet och aktiviteter för att friska upp minnet!</p><p><br></p><p>Tisdag 2 september. Vanliga frågor om minnet</p><p>Tisdag 14 oktober. Minne och kost</p><p>Tisdag 18 november. Att möta någon med minnesproblem</p><p><br></p><p>Välkommen att lyssna och diskutera!</p><p><br></p><p>Mer information:</p><p><br></p><p>Johanna Juola,</p><p>kontakt. 040 170 6771 / johanna.juola@espoonmuisti.fi</p><p>eller</p><p>Krista Asmala,</p><p>kontakt +358 40 483 0139 / krista.asmala@espoonmuisti.fi</p>",
                "en": "<p>The Memory Info sessions are open to anyone interested in their memory, memory care and brain health. There will be up-to-date information on memory and activities to refresh your memory!</p><p><br></p><p>Tue, Sept. 2. Frequently asked questions about memory</p><p>Tue, Oct. 14. Memory and nutrition</p><p>Tue, Nov. 18. Encountering someone with memory problems</p><p><br></p><p>Welcome to listen and discuss!</p><p><br></p><p>More information:</p><p><br></p><p>Johanna Juola</p><p>Contact: 040 170 6771 / johanna.juola@espoonmuisti.fi</p><p>or</p><p>Krista Asmala,</p><p>Contact :358 40 483 0139, e-mail krista.asmala@espoonmuisti.fi</p>"
            },
            "location_extra_info": {
                "fi": "Kajuutta",
                "sv": "Kajuutta",
                "en": "Kajuutta"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqsgzbsi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqsgzciq",
            "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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqsgzdsq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490584,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-02T06:02:47.183231Z",
                    "last_modified_time": "2025-09-02T06:02:47.183245Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/19d9663f-d2a3-43dd-bcd4-bcb30aac8992.jpg",
                    "cropping": "208,0,884,675",
                    "photographer_name": "",
                    "alt_text": "Kuvassa lukee: Uudenmaan muistiluotsin muisti-infot Espoonlahdessa, Lippulaivan kirjasto, Kajuutta-tila, Espoonlahdenkatu 8",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490584/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-02T06:03:08.620289Z",
            "last_modified_time": "2025-09-02T06:03:08.620304Z",
            "date_published": null,
            "start_time": "2025-10-14T11:30:00Z",
            "end_time": "2025-10-14T12:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Muisti-infot ovat kaikille muististaan, muistin huollosta ja aivoterveydestä kiinnostuneille avoimia luentotilaisuuksia. Tervetuloa!",
                "sv": "Minnesinfotillfällena är öppna för alla som är intresserade av minne, minnesvård och hjärnhälsa. Välkommen till oss!",
                "en": "The Memory Info sessions are open to anyone interested in their memory, memory care and brain health. Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Muisti-info",
                "sv": "Minnes-info",
                "en": "Memory info"
            },
            "description": {
                "fi": "<p>Muisti-infot ovat kaikille muististaan, muistin huollosta ja aivoterveydestä kiinnostuneille avoimia luentotilaisuuksia. Tarjolla on ajankohtaista tietoa muistista ja muistia virkistävää toimintaa!</p><p><br></p><p>Ti 2.9. Usein kysytyt kysymykset muistiin liittyen</p><p>Ti 14.10. Muisti ja ravinto</p><p>Ti 18.11. Muistisairaan kohtaaminen</p><p><br></p><p>Tervetuloa kuuntelemaan ja keskustelemaan!</p><p><br></p><p>Tiedustelut:</p><p>Johanna Juola, muistiohjaaja</p><p>puh.040 170 6771 / johanna.juola@espoonmuisti.fi</p><p>tai</p><p>Krista Asmala, muistiohjaaja</p><p>puh. 040 483 0139 /krista.asmala@espoonmuisti.fi</p>",
                "sv": "<p>Minnes Info-träffarna är öppna för alla som är intresserade av sitt minne, minnesvård och hjärnhälsa. Vi bjuder på aktuell information om minnet och aktiviteter för att friska upp minnet!</p><p><br></p><p>Tisdag 2 september. Vanliga frågor om minnet</p><p>Tisdag 14 oktober. Minne och kost</p><p>Tisdag 18 november. Att möta någon med minnesproblem</p><p><br></p><p>Välkommen att lyssna och diskutera!</p><p><br></p><p>Mer information:</p><p><br></p><p>Johanna Juola,</p><p>kontakt. 040 170 6771 / johanna.juola@espoonmuisti.fi</p><p>eller</p><p>Krista Asmala,</p><p>kontakt +358 40 483 0139 / krista.asmala@espoonmuisti.fi</p>",
                "en": "<p>The Memory Info sessions are open to anyone interested in their memory, memory care and brain health. There will be up-to-date information on memory and activities to refresh your memory!</p><p><br></p><p>Tue, Sept. 2. Frequently asked questions about memory</p><p>Tue, Oct. 14. Memory and nutrition</p><p>Tue, Nov. 18. Encountering someone with memory problems</p><p><br></p><p>Welcome to listen and discuss!</p><p><br></p><p>More information:</p><p><br></p><p>Johanna Juola</p><p>Contact: 040 170 6771 / johanna.juola@espoonmuisti.fi</p><p>or</p><p>Krista Asmala,</p><p>Contact :358 40 483 0139, e-mail krista.asmala@espoonmuisti.fi</p>"
            },
            "location_extra_info": {
                "fi": "Kajuutta",
                "sv": "Kajuutta",
                "en": "Kajuutta"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqsgzciq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqsgzc5u",
            "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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqsgzdsq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490584,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-02T06:02:47.183231Z",
                    "last_modified_time": "2025-09-02T06:02:47.183245Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/19d9663f-d2a3-43dd-bcd4-bcb30aac8992.jpg",
                    "cropping": "208,0,884,675",
                    "photographer_name": "",
                    "alt_text": "Kuvassa lukee: Uudenmaan muistiluotsin muisti-infot Espoonlahdessa, Lippulaivan kirjasto, Kajuutta-tila, Espoonlahdenkatu 8",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490584/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-02T06:03:08.516624Z",
            "last_modified_time": "2025-09-02T06:03:08.516641Z",
            "date_published": null,
            "start_time": "2025-09-02T11:30:00Z",
            "end_time": "2025-09-02T12:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Muisti-infot ovat kaikille muististaan, muistin huollosta ja aivoterveydestä kiinnostuneille avoimia luentotilaisuuksia. Tervetuloa!",
                "sv": "Minnesinfotillfällena är öppna för alla som är intresserade av minne, minnesvård och hjärnhälsa. Välkommen till oss!",
                "en": "The Memory Info sessions are open to anyone interested in their memory, memory care and brain health. Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Muisti-info",
                "sv": "Minnes-info",
                "en": "Memory info"
            },
            "description": {
                "fi": "<p>Muisti-infot ovat kaikille muististaan, muistin huollosta ja aivoterveydestä kiinnostuneille avoimia luentotilaisuuksia. Tarjolla on ajankohtaista tietoa muistista ja muistia virkistävää toimintaa!</p><p><br></p><p>Ti 2.9. Usein kysytyt kysymykset muistiin liittyen</p><p>Ti 14.10. Muisti ja ravinto</p><p>Ti 18.11. Muistisairaan kohtaaminen</p><p><br></p><p>Tervetuloa kuuntelemaan ja keskustelemaan!</p><p><br></p><p>Tiedustelut:</p><p>Johanna Juola, muistiohjaaja</p><p>puh.040 170 6771 / johanna.juola@espoonmuisti.fi</p><p>tai</p><p>Krista Asmala, muistiohjaaja</p><p>puh. 040 483 0139 /krista.asmala@espoonmuisti.fi</p>",
                "sv": "<p>Minnes Info-träffarna är öppna för alla som är intresserade av sitt minne, minnesvård och hjärnhälsa. Vi bjuder på aktuell information om minnet och aktiviteter för att friska upp minnet!</p><p><br></p><p>Tisdag 2 september. Vanliga frågor om minnet</p><p>Tisdag 14 oktober. Minne och kost</p><p>Tisdag 18 november. Att möta någon med minnesproblem</p><p><br></p><p>Välkommen att lyssna och diskutera!</p><p><br></p><p>Mer information:</p><p><br></p><p>Johanna Juola,</p><p>kontakt. 040 170 6771 / johanna.juola@espoonmuisti.fi</p><p>eller</p><p>Krista Asmala,</p><p>kontakt +358 40 483 0139 / krista.asmala@espoonmuisti.fi</p>",
                "en": "<p>The Memory Info sessions are open to anyone interested in their memory, memory care and brain health. There will be up-to-date information on memory and activities to refresh your memory!</p><p><br></p><p>Tue, Sept. 2. Frequently asked questions about memory</p><p>Tue, Oct. 14. Memory and nutrition</p><p>Tue, Nov. 18. Encountering someone with memory problems</p><p><br></p><p>Welcome to listen and discuss!</p><p><br></p><p>More information:</p><p><br></p><p>Johanna Juola</p><p>Contact: 040 170 6771 / johanna.juola@espoonmuisti.fi</p><p>or</p><p>Krista Asmala,</p><p>Contact :358 40 483 0139, e-mail krista.asmala@espoonmuisti.fi</p>"
            },
            "location_extra_info": {
                "fi": "Kajuutta",
                "sv": "Kajuutta",
                "en": "Kajuutta"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqsgzc5u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19999874",
            "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": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sutinaa-ja-saeaetoeae-helsingin-kaupunginteatteri-19999874/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/sutinaa-ja-saeaetoeae-helsingin-kaupunginteatteri-19999874/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/sutinaa-ja-saeaetoeae-helsingin-kaupunginteatteri-19999874/?affiliate=ADV&language=en"
                    }
                }
            ],
            "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",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/a1/8c/sutinaa222-tickets_369148_3117437_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360032/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:20.737385Z",
            "last_modified_time": "2025-09-01T22:20:26.847641Z",
            "date_published": null,
            "start_time": "2025-09-01T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "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"
            },
            "name": {
                "fi": "Sutinaa Ja Säätöä Ennakko"
            },
            "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>"
            },
            "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:19999874/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66914",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490508,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-25T12:14:08.317292Z",
                    "last_modified_time": "2025-08-25T12:14:08.317311Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774922.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490508/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-25T12:14:08.226023Z",
            "last_modified_time": "2025-09-01T15:13:02.373546Z",
            "date_published": null,
            "start_time": "2025-10-15T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Aleksei Zaitsev esittää romanttisia klassikoita mm. Chopiniltä ja Lisztiltä sekä valikoiman miniatyyrejä syksyisessä salonkikonsertissa."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9364096B1C884DBDA9C46C1EC6522C59/Flyygelikuu_Aleksei_Zaitsev_"
            },
            "name": {
                "fi": "Flyygelikuu: Aleksei Zaitsev"
            },
            "description": {
                "fi": "<p>Aleksei Zaitsev esittää romanttisia klassikoita mm. Chopiniltä ja Lisztiltä sekä valikoiman miniatyyrejä syksyisessä salonkikonsertissa.</p><p>Aleksei Zaitsev on yksi Suomen lupaavimmista pianisteista, joka tunnetaan dynaamisista tulkinnoistaan ja uteliaisuudestaan nykymusiikkia kohtaan.</p><p>Hänellä on useita kansainvälisiä kilpailusijoituksia sekä maisterin tutkinnot Helsingin Sibelius-Akatemiasta ja Kööpenhaminan Tanskan kuninkaallisesta  musiikkiakatemiasta.</p><p>Zaitsev on ansioitunut monipuolisena esiintyjänä sekä solistina että kamarimuusikkona monissa Euroopan maissa sekä Japanissa ja Yhdysvalloissa.</p><p>Aleksei Zaitsev esittää romanttisia klassikoita mm. Chopiniltä ja Lisztiltä sekä valikoiman miniatyyrejä syksyisessä salonkikonsertissa.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66914/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66687",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1179029,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T10:12:39.980148Z",
                    "last_modified_time": "2025-07-04T10:12:39.980161Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774073.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1179029/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T10:12:39.927802Z",
            "last_modified_time": "2025-09-01T15:13:01.024399Z",
            "date_published": null,
            "start_time": "2025-10-14T07:00:00Z",
            "end_time": "2025-10-14T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Työpajassa valmistetaan Vaianan jalanjäljissä merellisiä koruja, jotka pitävät sisällään maagisia voimia. Mitä taianomaista sinun korusi pystyy tekemään?",
                "sv": "I verkstaden som går i Vaianas fotspår tillverkar vi maritima smycken med magiska krafter. Vilken magi kan ditt smycke åstadkomma?",
                "en": "The workshop will follow in Vaiana's footsteps, making maritime jewellery that holds magical powers. What sort of magic can your jewellery perform?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8029867F7B5050BC100A42D224C3026C/Vaianan_korupaja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8029867F7B5050BC100A42D224C3026C/Vaianas_smyckesverkstad",
                "en": "http://www.malmitalo.fi/en/events/event/8029867F7B5050BC100A42D224C3026C/Vaiana_s_Jewellery_Workshop"
            },
            "name": {
                "fi": "Vaianan korupaja – Syyslomatekemistä",
                "sv": "Vaianas smyckesverkstad – Höstlovsaktiviteter",
                "en": "Vaiana's Jewellery Workshop – Autumn Break Activities"
            },
            "description": {
                "fi": "<p>Työpajassa valmistetaan Vaianan jalanjäljissä merellisiä koruja, jotka pitävät sisällään maagisia voimia. Mitä taianomaista sinun korusi pystyy tekemään?</p><p>Syyslomalla Malmitalolla järjestetään maksuttomia työpajoja. Luvassa on askarreltavaa ja muuta kivaa puuhaa lapsille ja perheille. Jokaiselle työpajalle on oma teemansa, joka on inspiroitunut kyseisen päivän syyslomaleffasta.</p><p>Vapaa pääsy!<br>Paikka: Malmitalon parvi</p>",
                "sv": "<p>I verkstaden som går i Vaianas fotspår tillverkar vi maritima smycken med magiska krafter. Vilken magi kan ditt smycke åstadkomma?</p><p>Under höstlovet ordnas avgiftsfria verkstäder i Malms kulturhus. Pyssel och andra roliga aktiviteter utlovas för barn och familjer. Varje verkstad har sitt eget tema, inspirerat av den aktuella dagens höstlovsfilm.</p><p>Fritt inträde!<br>Plats: Loftet i Malms kulturhus</p>",
                "en": "<p>The workshop will follow in Vaiana's footsteps, making maritime jewellery that holds magical powers. What sort of magic can your jewellery perform?</p><p>During the autumn break, free workshops will be held at Malmitalo. There will be crafts and other fun activities for children and families. Each workshop has its own theme, inspired by the autumn break film of the day.</p><p>Free entry!<br>Location: Malmitalo gallery</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66687/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66054",
            "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:33/?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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "29,90 € / 21,80 €",
                        "sv": "29,90 € / 21,80 €",
                        "en": "29,90 € / 21,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stella-polaris/stella-polaris-malmi-noir-improvisoitu-rikosdraama-3886102/",
                        "sv": "https://www.lippu.fi/artist/stella-polaris/stella-polaris-malmi-noir-improvisoitu-rikosdraama-3886102/",
                        "en": "https://www.lippu.fi/artist/stella-polaris/stella-polaris-malmi-noir-improvisoitu-rikosdraama-3886102/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1179028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T10:12:39.659412Z",
                    "last_modified_time": "2025-07-04T10:12:39.659425Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770647.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1179028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T10:12:39.600941Z",
            "last_modified_time": "2025-09-01T15:13:00.506319Z",
            "date_published": null,
            "start_time": "2025-10-11T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule luomaan esitystä yhdessä kanssamme ja seuraamaan ratkeaako rikos!",
                "sv": "Kom och skapa en föreställning med oss och se om brottet löses!",
                "en": "Come create a performance together with us and see if the crime can be solved!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/46E2523CC4D17590D9F77840100685F5/Malmi_Noir_improvisoitu_rikosdraama",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/46E2523CC4D17590D9F77840100685F5/Malmi_Noir_-_Improviserat_kriminaldrama",
                "en": "http://www.malmitalo.fi/en/events/event/46E2523CC4D17590D9F77840100685F5/_Malmi_Noir_Improvised_Crime_Drama"
            },
            "name": {
                "fi": "Malmi Noir – improvisoitu rikosdraama – Stella Polaris",
                "sv": "Malmi Noir - Improviserat kriminaldrama – Stella Polaris",
                "en": "Malmi Noir – Improvised Crime Drama – Stella Polaris"
            },
            "description": {
                "fi": "<p>Tule luomaan esitystä yhdessä kanssamme ja seuraamaan ratkeaako rikos!</p><p>Sorjonen, Silta, Wallander, Ivalo… Nordic noir valloittaa maailmaa televisiossa ja valkokankaalla ja Stella Polaris tuo suositun tyylilajin myös teatterinäyttämölle. Tummanpuhuva rikosdraama saa alkunsa yleisön antamista lähtökohdista, ja näin käynnistyy tapahtumaketju, jossa kaikki ovat epäiltyjä, kunnes toisin todistetaan.</p><p>Stella Polariksen taitavat improvisoijat tarttuvat rikostarinoista synkimpään ja tekevät siitä oman tulkintansa. Improvisaatiossa mitään ei ole ennalta sovittu, joten syyllinen voi olla kuka tahansa.  <br>Esiintyjät vaihtuvat esityksissä. Kaikki oikeudet muutoksiin pidetään!</p><p>Esityksen kesto: 1 t 45 min (sis. väliajan). <br>Ikäsuositus: 13 v.  <br>Esityksen kieli: suomi</p>",
                "sv": "<p>Kom och skapa en föreställning med oss och se om brottet löses!</p><p>Sorjonen, Bron, Wallander, Ivalo... Nordic noir erövrar världen i tv och på filmduken och Stella Polaris tar den populära genren även till teaterscenen. Det mörka brottsdramat börjar med utgångspunkter från publiken, och på så sätt utlöses en händelsekedja där alla är misstänkta tills motsatsen bevisas.</p><p>Stella Polaris skickliga improvisatörer tar tag i de mörkaste brottshistorierna och gör en egen tolkning av dem. I improvisation är ingenting förutbestämt, så den skyldiga kan vara vem som helst.  <br>Artisterna varierar i föreställningarna. Alla rätter till ändringar förbehålls!</p><p>Föreställningens längd: 1 timme 45 minuter (inkl. paus). <br>Åldersrekommendation: 13 år  <br>Föreställningens språk: finska</p>",
                "en": "<p>Come create a performance together with us and see if the crime can be solved!</p><p>Bordertown, The Bridge, Wallander, Arctic Circle… Nordic noir is conquering the world on TV and the big screen, and Stella Polaris brings this popular genre to the theatre stage. The dark crime drama begins from the audience's input, setting off a chain of events where everyone is a suspect until proven otherwise.</p><p>Stella Polaris's skilled improvisers take on the darkest crime stories and make their own interpretations. In improvisation, nothing is predetermined, so the culprit can be anyone.  <br>Performers change between shows. All rights to changes reserved!</p><p>Performance duration: 1 hour 45 min (incl. intermission). <br>Age recommendation: 13  <br>Performance language: Finnish</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66054/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66915",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490509,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-25T12:14:18.466342Z",
                    "last_modified_time": "2025-08-25T12:14:18.466360Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774954.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490509/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-25T12:14:18.346095Z",
            "last_modified_time": "2025-09-01T14:14:18.406198Z",
            "date_published": null,
            "start_time": "2025-12-11T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Sonja Fräki esittää konsertissaan Dmitri Shostakovitšin Preludit op. 34, jotka tarjoavat pianistista säihkettä ja nopeasti vaihtuvia tunnelmia ilkikurisesta mietteliääseen."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/FB15E6F7ED1F9086B69EC5B5AFDFE774/Flyygelikuu_Sonja_Fraki"
            },
            "name": {
                "fi": "Flyygelikuu: Sonja Fräki"
            },
            "description": {
                "fi": "<p>Sonja Fräki esittää konsertissaan Dmitri Shostakovitšin Preludit op. 34, jotka tarjoavat pianistista säihkettä ja nopeasti vaihtuvia tunnelmia ilkikurisesta mietteliääseen.</p><p>Sonja Fräki on aktiivisesti esiintyvä pianotaiteilija, joka tunnetaan sekä solistina että kamarimuusikkona. Hän valmistui musiikin tohtoriksi Taideyliopiston Sibelius-Akatemiasta syksyllä 2016 aiheenaan Kalevi Ahon pianotuotanto, jonka hän on soittanut kokonaisuudessaan.</p><p>Fräki on palkittu useissa kansainvälisissä pianokilpailuissa, ja hän on esiintynyt useiden orkesterien solistina Suomessa, Saksassa ja Puolassa. Fräki on myös julkaissut kaksi soololevyä, joista jälkimmäinen sisältää Kalevi Ahon soolopianotuotannon levymerkillä BIS. Musicweb International valitsi sen kuukauden levyksi maaliskuussa 2015. Fräki on levyttänyt BIS:lle myös Ahon kamarimusiikkia sekä ensimmäisen pianokonserton Turun filharmonisen orkesterin pianosolistina.</p><p>Fräki toimii säestyksen ja pianonsoiton lehtorina musiikkiopisto Juvenaliassa Espoossa sekä kamaripianistina Sibelius-Akatemiassa. Hän harrastaa myös luovaa kirjoittamista, mitä hän on opiskellut Kriittisen korkeakoulun kursseilla. Helmikuussa 2024 Fräki esitti omia runojaan ja Fryderyk Chopinin pianomusiikkia tarinallisessa runokonsertissa Chopin Nocturne – musiikkia ja runoja yön hämäristä.</p><p>Sonja Fräki esittää konsertissaan Dmitri Shostakovitšin Preludit op. 34, jotka tarjoavat pianistista säihkettä ja nopeasti vaihtuvia tunnelmia ilkikurisesta mietteliääseen. Lisäksi Sonja kertoo Preludien sävellysajankohdan poliittisesta ilmapiiristä ja säveltäjän ilmaisu- ja selviytymiskeinoista vaikeassa yhteiskunnallisessa tilanteessa.</p><p>1930-luvulla neuvostohallinto ja Stalinin valta loivat jatkuvan uhan taiteilijoille, joiden teoksia sensuroitiin. Shostakovitš koetti parhaansa mukaan tasapainoilla vahvan taiteellisen ilmaisunsa ja poliittisen varovaisuuden välimaastossa, pelastaakseen uransa ja henkensä. Myös tänä päivänä valitettavan monet taiteilijat joutuvat pohtimaan asemaansa ja vaikuttamisen keinoja yhteiskunnallisen kuohunnan keskellä.</p><p>Vapaa pääsy<br>Kesto: 45 min</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66915/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66844",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1462739,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-11T14:14:44.115319Z",
                    "last_modified_time": "2025-08-11T14:14:44.115337Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774920.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1462739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-11T14:14:44.009441Z",
            "last_modified_time": "2025-09-01T14:14:06.691441Z",
            "date_published": null,
            "start_time": "2025-10-09T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Itä-Helsingin musiikkiopiston taitavat nuoret pianistit ilahduttavat aulakonsertissa.",
                "sv": "De begåvade unga pianisterna från Östra Helsingfors musikinstitut gläder med en konsert i aulan.",
                "en": "The talented young pianists of the East Helsinki Music Institute will delight the audience with a concert in the lobby."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/258F2B627F16AFE8C147A58AB5754901/Nuoret_pianistit_aulassa",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/258F2B627F16AFE8C147A58AB5754901/Unga_pianister_i_aulan",
                "en": "http://www.vuotalo.fi/en/events/event/258F2B627F16AFE8C147A58AB5754901/Young_pianists_in_the_lobby"
            },
            "name": {
                "fi": "Nuoret pianistit aulassa",
                "sv": "Unga pianister i aulan",
                "en": "Young pianists in the lobby"
            },
            "description": {
                "fi": "<p>Itä-Helsingin musiikkiopiston taitavat nuoret pianistit ilahduttavat aulakonsertissa.</p><p>Itä-Helsingin musiikkiopisto (IHMO) on musiikin taiteen perusopetusta laajan oppimäärän mukaan antava oppilaitos, jonka juuret ovat länsimaisessa taidemusiikissa.</p><p>Rakastamme musiikkia ja tarjoamme monenlaisen musiikin tekemisen mahdollisuuksia. Tehtävämme on luoda iloa ja hyvinvointia niin, että tulevaisuudessa musiikki kuuluu kaikille. Lue lisää ihmo.fi</p><p>Kesto: n. 1 t</p><p>Vapaa pääsy</p>",
                "sv": "<p>De begåvade unga pianisterna från Östra Helsingfors musikinstitut gläder med en konsert i aulan.</p><p>Östra Helsingfors musikinstitut (IHMO) är en omfattande musikutbildningsinstitution med sina rötter i västerländsk konstmusik.</p><p>Vi älskar musik och erbjuder ett brett utbud av möjligheter till musikskapande. Vårt uppdrag är att skapa glädje och välbefinnande så att musiken i framtiden tillhör alla. Läs mer: ihmo.fi</p><p>Längd: ca 1 h</p><p>Fritt inträde</p>",
                "en": "<p>The talented young pianists of the East Helsinki Music Institute will delight the audience with a concert in the lobby.</p><p>The East Helsinki Music Academy (IHMO) is an educational institution that provides basic art education in music in accordance with the extended syllabus and has its roots in Western art music.</p><p>We love music and offer a wide range of music-making opportunities. Our mission is to create joy and wellbeing so that in the future, music belongs to everyone. Read more: ihmo.fi</p><p>Duration: roughly 1 h</p><p>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66844/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66415",
            "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:31/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1171381,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T11:14:01.361298Z",
                    "last_modified_time": "2025-07-03T11:14:01.361314Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774140.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1171381/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-03T11:14:01.263444Z",
            "last_modified_time": "2025-09-01T14:14:06.421449Z",
            "date_published": null,
            "start_time": "2025-10-09T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule kuuntelemaan Kaj Chydeniuksen lauluja, joita on sävelletty Ritva Koskensuun runoihin.",
                "sv": "Kom och lyssna på sånger av Kaj Chydenius, komponerade till Ritva Koskensuus dikter.",
                "en": "Come listen to Kaj Chydenius's songs, composed to the poems of Ritva Koskensuu."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2823975E9F0DDBE4D0801675CE2CA7C3/Uutta_tuntematonta_kohti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2823975E9F0DDBE4D0801675CE2CA7C3/Uutta_tuntematonta_kohti",
                "en": "http://www.malmitalo.fi/en/events/event/2823975E9F0DDBE4D0801675CE2CA7C3/Uutta_tuntematonta_kohti"
            },
            "name": {
                "fi": "Uutta tuntematonta kohti – Päivämatineat senioreille",
                "sv": "Uutta tuntematonta kohti – Dagsmatinéer för seniorer",
                "en": "Uutta tuntematonta kohti – Daytime Matinees for Seniors"
            },
            "description": {
                "fi": "<p>Tule kuuntelemaan Kaj Chydeniuksen lauluja, joita on sävelletty Ritva Koskensuun runoihin.</p><p>Laulut ovat hetkiä ajassa: havaintoja, tunteita, tunnelmia, ajan kuvaa ja ajatuksen virtaa. Toisen ihmisen ja luonnon merkitys korostuvat tässä vaativassa ajassamme. Uutta tuntematonta kohti on 6. sikermä Kaj Chydeniuksen lauluja näyttelijä Ritva Koskensuun runoihin.</p><p>Kesto: 1 tunti</p><p><b>Kokoonpano</b><br>Matti Wallenius, kitara ja sovitukset <br>Henrikki Häsänen, perkussiot <br>Iiro Kautto, kontrabasso <br>Tapio Kallio, mandoliini  <br>Ritva Koskensuu, laulu <br> <br>Vapaa pääsy!</p>",
                "sv": "<p>Kom och lyssna på sånger av Kaj Chydenius, komponerade till Ritva Koskensuus dikter.</p><p>Sånger är stunder i tiden: uppfattningar, känslor, stämningar, bilder av tid och tankens flöde. Den andra människans och naturens betydelse framhävs i denna krävande tid. Uutta tuntematonta kohti (mot det nya okända) är sjätte potpurriet ur Kaj Chydenius sånger till skådespelaren Ritva Koskensuus dikter.</p><p>Längd: 1 timme</p><p><b>Sammansättning</b><br>Matti Wallenius, gitarr och arrangemang <br>Henrikki Häsänen, perkussion <br>Iiro Kautto, kontrabas <br>Tapio Kallio, mandolin<br>Ritva Koskensuu, sång <br> <br>Fritt inträde!</p>",
                "en": "<p>Come listen to Kaj Chydenius's songs, composed to the poems of Ritva Koskensuu.</p><p>Come listen to Kaj Chydenius's songs, composed to the poems of Ritva Koskensuu.</p><p>The songs capture moments in time: observations, emotions, moods, reflections of the era and streams of thought. The significance of other people and nature is emphasised in these challenging times. Uutta tuntematonta kohti is the sixth collection of Kaj Chydenius's songs set to the poems of actress Ritva Koskensuu.</p><p>Duration: 1 hour</p><p><b>Line-up</b><br>Matti Wallenius, guitar and arrangements<br>Henrikki Häsänen, percussion<br>Iiro Kautto, double bass<br>Tapio Kallio, mandolin<br>Ritva Koskensuu, vocals<br> <br>Free entry!</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66415/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65964",
            "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:31/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "35,90 € / 33,90 €",
                        "sv": "35,90 € / 33,90 €",
                        "en": "35,90 € / 33,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-malmitalo-20139384/",
                        "sv": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-malmitalo-20139384/",
                        "en": "https://www.lippu.fi/event/easy-the-eagles-tribute-band-malmitalo-20139384/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178358,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T08:12:36.250009Z",
                    "last_modified_time": "2025-07-04T08:12:36.250023Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769558.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178358/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T08:12:36.184025Z",
            "last_modified_time": "2025-09-01T14:14:04.361911Z",
            "date_published": null,
            "start_time": "2025-10-01T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suomen vanhimman ja tunnetuimman EAGLES-tribuuttibändin juhlahumu jatkuu!",
                "sv": "Jubileumsfesten för Finlands äldsta och mest kända EAGLES-tributband fortsätter!",
                "en": "The celebration of Finland's oldest and most well-known EAGLES tribute band continues!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/47A774D2D164D2BDF332B49CEB5D818A/EASY_50_Peaceful_Easy_Feeling_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/47A774D2D164D2BDF332B49CEB5D818A/EASY_50_Peaceful_Easy_Feeling_",
                "en": "http://www.malmitalo.fi/en/events/event/47A774D2D164D2BDF332B49CEB5D818A/EASY_50_Peaceful_Easy_Feeling_"
            },
            "name": {
                "fi": "EASY 50 \"Peaceful Easy Feeling\"",
                "sv": "EASY 50 \"Peaceful Easy Feeling\"",
                "en": "EASY 50 \"Peaceful Easy Feeling\""
            },
            "description": {
                "fi": "<p>Suomen vanhimman ja tunnetuimman EAGLES-tribuuttibändin juhlahumu jatkuu!</p><p>Juhlahumuun onkin syytä, sillä viime vuonna EASYn perustamisesta tuli kuluneeksi 50 vuotta ja comebackista 10 vuotta. <br> <br><b>EASY</b><br>Bändi nimeltä Musakatit perustettiin vuonna 1974.  Pian bändin jäsenet huomasivat, että nimi edusti huonosti yhtyeen tyyliä ja musiikkia.  Suosikki-lehden nimiehdotuskilpailun tuloksena bändi sai nyt uuden nimen, EASY. Yhtye keikkaili ahkerasti seitsemän vuoden ajan tehden yli 400 keikkaa. <br> <br>Pitkän tauon jälkeen yhtye teki yllättävän comebackin esiintymällä kesällä 2014 <br>Tribute Band Festivaaleilla Helsingissä, esittäen Eagles-yhtyeen musiikkia. Menestyksekkään comebackin innostamana EASY päätti jatkaa jälleen keikkailua.  Nykyään konserteissa EASY esittää palvomaansa Eagles- yhtyeen musiikkia, siksi nimeen on lisätty tarkennus \"The Eagle Tribute Band\". <br> <br>EASYn kokoonpanoon kuuluu nykyään kolme alkuperäisjäsentä: Petteri Kokljuschkin, Sami Javne ja Roni Kamras, sekä kaksi nuoremman polven huippu laulajakitaristia: Lappe Holopainen ja Tomi Juustila (29 v). Yhtyeeseen kuuluu myös Linda Ronstadtia tulkitseva upeaääninen pianisti Katri Silolahti. <br> <br><b>EASY THE EAGLES TRIBUTE BAND</b><br>EASY tarjoaaa tänään mahdollisuuden päästä nauttimaan ja fiilistelemään livenä Eaglesin suurimpia hittejä, jotka ovat suurimmaksi osaksi Yhdysvaltojen eniten myydyn (yli 100 miljoonaa levyä) The Greatest Hits 1971–1975 -albumin poimintoja.</p><p>The Eagles Tribute Band EASY täyttää konserttisalit ja hullaannuttaa yleisönsä kerta toisensa jälkeen ihastuttavalla lavaesiintymisellään ja hätkähdyttävän tarkalla Eagles tulkinnoillaan.  <br> <br>Kesto 2 t, sis. 15 min väliajan</p>",
                "sv": "<p>Jubileumsfesten för Finlands äldsta och mest kända EAGLES-tributband fortsätter!</p><p>I fjol har det gått 50 år sedan EASY grundades och 10 år sedan EASY:s comeback.</p><p>EASY<br>Ett band med namnet Musakatit grundades 1974.  Snart märkte medlemmarna i bandet att namnet inte var representativt för deras stil och musik. Som ett resultat av namntävlingen i tidningen Suosikki fick bandet ett nytt namn, EASY. Bandet uppträdde aktivt i sju års tid och gjorde över 400 spelningar.</p><p>Efter en lång paus gjorde gruppen en överraskande comeback genom att sommaren 2014 uppträda på Tribute Band Festival i Helsingfors och spela musik av Eagles.  Inspirerad av sin framgångsrika comeback beslöt EASY återuppta spelningarna. Numera spelar EASY musik av bandet Eagles som de dyrkar, och därför har preciseringen ”The Eagles Tribute Band” lagts till.<br>I EASY spelar för närvarande tre ursprungliga medlemmar: Petteri Kokljuschkin, Sami Javne och Roni Kamras samt två av den yngre generationens sångar-gitarrister, Lappe Holopainen och Tomi Juustila. Bandet består också av pianisten Katri Silolahti, som med sin fantastiska röst tolkar Linda Ronstadt.</p><p>EASY THE EAGLES TRIBUTE BAND<br>EASY erbjuder idag en möjlighet att njuta av Eagles största hits, som till största delen består av urplock från albumet Greatest Hits 1971–1975, som är det mest sålda i USA (över 100 miljoner skivor).</p><p>The Eagles Tribute Band EASY fyller i konsertsalar och roar publiken gång på gång med sin underbara scenpresens och sina otroligt exakta Eagles-tolkningar.</p>",
                "en": "<p>The celebration of Finland's oldest and most well-known EAGLES tribute band continues!</p><p>Last year marked 50 years since the founding of EASY and 10 years since its comeback.</p><p>EASY<br>The band, originally called Musakatit, was formed in 1974.  Before long, the members realised that the name did not reflect the band's style or music. As a result of a name competition organised by Suosikki magazine, the band got a new name, EASY. The group performed actively for seven years, playing over 400 gigs.</p><p>After a long break, EASY made a surprising comeback in summer 2014, performing music by the Eagles at the Tribute Band Festival in Helsinki.  Inspired by its successful return, EASY decided to continue gigging once again. Today, EASY performs music by the band they worship – the Eagles – which is why the name now includes the clarification \"The Eagles Tribute Band\".<br>The band's current lineup includes three original members, Petteri Kokljuschkin, Sami Javne and Roni Kamras, as well as two younger-generation singer-guitarists, Lappe Holopainen and Tomi Juustila. The band also features pianist Katri Silolahti, who interprets Linda Ronstadt with her amazing voice.</p><p>EASY THE EAGLES TRIBUTE BAND<br>Today, EASY offers a chance to enjoy and relive live performances of the Eagles' biggest hits, most of which are taken from The Greatest Hits 1971–1975, the best-selling album in US history with over 100 million copies sold.</p><p>The Eagles Tribute Band EASY continues to fill concert halls and captivate audiences time and again with their charming stage presence and stunningly precise interpretations of Eagles classics.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65964/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66497",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1171716,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T12:14:08.050227Z",
                    "last_modified_time": "2025-07-03T12:14:08.050256Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774727.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1171716/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-03T12:14:07.933236Z",
            "last_modified_time": "2025-09-01T14:14:01.806288Z",
            "date_published": null,
            "start_time": "2025-09-22T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Aloita viikko menevällä meiningillä! Syksyn Juurilla-klubien sarjassa kahvilan stagella nähdään vieraileva muusikko Saara Koivisto.",
                "sv": "Börja veckan med sväng! På Jurilla-klubbens serie i höst ser vi gästande musiker Saara Koivisto på kaféets scen.",
                "en": "Start your week with energy at the autumn edition of the Juurilla club! The café stage will host guest artist, musician Saara Koivisto."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/05E61F6272E71C695623EE44373F0C3D/Juurilla-klubi_Saara_Koivisto",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/05E61F6272E71C695623EE44373F0C3D/Juurilla-klubben_Saara_Koivisto",
                "en": "http://www.kanneltalo.fi/en/events/event/05E61F6272E71C695623EE44373F0C3D/Juurilla_club_Saara_Koivisto_"
            },
            "name": {
                "fi": "Juurilla-klubi: Saara Koivisto",
                "sv": "Juurilla-klubben: Saara Koivisto",
                "en": "Juurilla club: Saara Koivisto"
            },
            "description": {
                "fi": "<p>Aloita viikko menevällä meiningillä! Syksyn Juurilla-klubien sarjassa kahvilan stagella nähdään vieraileva muusikko Saara Koivisto.</p><p>Saara Koivisto on laulaja ja lauluntekijä, joka esiintyy aktiivisesti helsinkiläisen soulbändi Hi-Five Quintetin solistina. HFQ:n kanssa Saara on levyttänyt kaksi EP:tä ja edustanut Suomea vuoden 2023 Bluesin Euroviisuissa, The European Blues Challengessä.</p><p>Saara laulaa rakastamaansa soul- ja roots-musiikkia täydellä sielulla ja sydämellä ja hänen riemukas esiintymisensä tartuttaa yleisöönkin hyvän mielen ja musiikin nautinnon.</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki.</p><p>Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band:<br>Juki Välipakka – laulu & kitara<br>Lasse Sirkko – basso<br>Tommi Lievemaa – kitara<br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saksofoni<br>Kepa Kettunen – rummut</p><p>Kesto: 1 tunti</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja.</p><p>Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.</p><p>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Börja veckan med sväng! På Jurilla-klubbens serie i höst ser vi gästande musiker Saara Koivisto på kaféets scen.</p><p>Saara Koivisto är en sångare och låtskrivare som framträder aktivt som solist i det helsingforsiska soulbandet Hi-Five Quintet. Saara har spelat in två EP-skivor med HFQ och representerat Finland i Blues Eurovision Song Contest 2023 – The European Blues Challenge.</p><p>Saara sjunger den soul- och rootsmusik hon älskar av hela sin själ och sitt hjärta, och hennes glada framträdande smittar också publiken med gott humör och musikglädje.</p><p>Jazz, blues, country, folk, rhythm and blues, bluegrass och americana hör alla till det rytmiska hjärtat på måndagskvällarnas favoritklubb.</p><p>Som värdar på Juurilla-klubben verkar i vanlig ordning Juki Välipakka och The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band:<br>Juki Välipakka – sång och gitarr<br>Lasse Sirkko – bas<br>Tommi Lievemaa – gitarr<br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saxofon<br>Kepa Kettunen – trummor</p><p>Längd: 1 timme</p><p>De avgiftsfria måndagarna är en serie gratisevenemang på måndagskvällarna i Gamlasgården. Bland evenemangen finns spelningar, författarbesök, filmer och allsångskvällar. Som namnet antyder är det ingen inträdesavgift till de avgiftsfria måndagarna som är öppna för alla. Börja din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Start your week with energy at the autumn edition of the Juurilla club! The café stage will host guest artist, musician Saara Koivisto.</p><p>Saara Koivisto is a singer and songwriter who is active as a soloist in the Helsinki-based soul band Hi-Five Quintet. With HFQ, Saara has recorded two EPs and represented Finland in 2023 in the blues version of the Eurovision Song Contest, i.e. the European Blues Challenge.</p><p>Saara sings the soul and roots music she loves with all her heart and soul, and she infects the audience with her good mood and enjoyment of the music through her joyful performance.</p><p>The beating heart of the Monday evening favourite club consists of jazz, blues, country, folk, rhythm and blues, bluegrass and Americana roots music.</p><p>The Juurilla club will be hosted by Juki Välipakka and The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band:<br>Juki Välipakka – vocals & guitar<br>Lasse Sirkko – bass<br>Tommi Lievemaa – guitar<br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saxophone<br>Kepa Kettunen – drums</p><p>Duration: 1 hour</p><p>Free Mondays are a series of free events held at Cultural Centre Kanneltalo on Monday evenings. The events include concerts, author visits, films and sing-alongs. As the name suggests, no admission fee is charged for Free Mondays, which are open to all. Start your week with culture at Kanneltalo!</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66497/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66219",
            "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:31/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1171380,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T11:13:58.420379Z",
                    "last_modified_time": "2025-07-03T11:13:58.420395Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772861.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1171380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-03T11:13:58.320061Z",
            "last_modified_time": "2025-09-01T14:13:58.225703Z",
            "date_published": null,
            "start_time": "2025-09-11T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Cinema Classics Orchestra on suomalaisista huippumuusikoista koostuva yhtye, jonka konserteissa kuullaan elokuvamusiikin klassikoita sadan vuoden ajalta.",
                "sv": "Cinema Classics Orchestra är ett band bestående av finländska toppmusiker som i konserten framför klassiker från filmmusik i ett sekel.",
                "en": "The Cinema Classics Orchestra is a band made up of top Finnish musicians, performing classic film music spanning a hundred years."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B2622719ACC85A77BF5737C2A975AB28/Cinema_Classics_Orchestra_elokuvamusiikin_klassikoita",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B2622719ACC85A77BF5737C2A975AB28/Cinema_Classics_Orchestra_klassiker_inom_filmmusik",
                "en": "http://www.malmitalo.fi/en/events/event/B2622719ACC85A77BF5737C2A975AB28/Cinema_Classics_Orchestra_film_music_classics"
            },
            "name": {
                "fi": "Cinema Classics Orchestra: elokuvamusiikin klassikoita – Päivämatineat senioreille",
                "sv": "Cinema Classics Orchestra: klassiker inom filmmusik – Dagmatinéer för seniorer",
                "en": "Cinema Classics Orchestra: film music classics – Daytime matinees for seniors"
            },
            "description": {
                "fi": "<p>Cinema Classics Orchestra on suomalaisista huippumuusikoista koostuva yhtye, jonka konserteissa kuullaan elokuvamusiikin klassikoita sadan vuoden ajalta.</p><p>Ennio Morricone, John Williams ja Charlie Chaplin takaavat ikimuistoisen konserttielämyksen.</p><p>Esiintyjät:<br>Linda Hedlund (viulu)<br>Pauliina Kupiainen (viulu, laulu)<br>Terhi Lehtiniemi (alttoviulu)<br>Iida-Vilhelmiina Sinivalo (sello)<br>Olli-Pekka Tuomisalo (saksofonit, klarinetti) <br> <br>Kesto: 1 tunti</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Cinema Classics Orchestra är ett band bestående av finländska toppmusiker som i konserten framför klassiker från filmmusik i ett sekel.</p><p>Ennio Morricone, John Williams och Charlie Chaplin garanterar en minnesvärd konsertupplevelse.</p><p>Artister:<br>Linda Hedlund (violin)<br>Pauliina Kupiainen (violin, sång)<br>Terhi Lehtiniemi (altviolin)<br>Iida-Vilhelmiina Sinivalo (cello)<br>Olli-Pekka Tuomisalo (saxofoner, klarinett)</p><p>Längd: 1 timme</p><p>Fritt inträde!</p>",
                "en": "<p>The Cinema Classics Orchestra is a band made up of top Finnish musicians, performing classic film music spanning a hundred years.</p><p>Ennio Morricone, John Williams and Charlie Chaplin guarantee a memorable concert experience.</p><p>Performers:<br>Linda Hedlund – violin<br>Pauliina Kupiainen – violin, vocals<br>Terhi Lehtiniemi – viola<br>Iida-Vilhelmiina Sinivalo – cello<br>Olli-Pekka Tuomisalo – saxophones, clarinet</p><p>Duration: 1 hour</p><p>Free entry!</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66219/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66492",
            "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:31/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "44,90 € / 34,90 €",
                        "sv": "44,90 € / 34,90 €",
                        "en": "44,90 € / 34,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/rick-estrin-the-nightcats-malmitalo-20313083/",
                        "sv": "https://www.lippu.fi/event/rick-estrin-the-nightcats-malmitalo-20313083/",
                        "en": "https://www.lippu.fi/event/rick-estrin-the-nightcats-malmitalo-20313083/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178357,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T08:12:35.995438Z",
                    "last_modified_time": "2025-07-04T08:12:35.995450Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774647.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178357/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T08:12:35.941879Z",
            "last_modified_time": "2025-09-01T13:13:42.241339Z",
            "date_published": null,
            "start_time": "2025-09-30T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Yhdysvaltalaiset blueshuiput Rick Estrin & The Nightcats esiintyvät Malmitalossa!",
                "sv": "De amerikanska toppbluesmusikerna Rick Estrin & The Nightcats uppträder i Malms kulturhus!",
                "en": "American masters of blues, Rick Estrin and The Nightcats, will perform at Malmitalo!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/798E758EF4E8BDBF9CC5969AB20E1342/Rick_Estrin_and_the_Nightcats",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/798E758EF4E8BDBF9CC5969AB20E1342/Rick_Estrin_and_the_Nightcats",
                "en": "http://www.malmitalo.fi/en/events/event/798E758EF4E8BDBF9CC5969AB20E1342/Rick_Estrin_and_the_Nightcats"
            },
            "name": {
                "fi": "Rick Estrin and the Nightcats",
                "sv": "Rick Estrin and the Nightcats",
                "en": "Rick Estrin and the Nightcats"
            },
            "description": {
                "fi": "<p>Yhdysvaltalaiset blueshuiput Rick Estrin & The Nightcats esiintyvät Malmitalossa!</p><p>Palkittu huuliharpisti ja laulaja-lauluntekijä Rick Estrin ja bändinsä The Nightcats hämmästyttävät musisoinnillaan ympäri maailmaa. Koko bändi koostuu maailmanluokan huippubluesmuusikoista.</p><p>Yleisö yltyy tanssimaan ja hurraamaan missä ikinä huuliharppuvirtuoosi Rick Estrin esiintyykään The Nightcats -yhtyeensä kanssa. Tarjolla on tuoretta ja modernia, mutta originaalia bluesia, roadhouse rock’n’rollilla höystettynä. Musiikillinen polku on omaperäinen, innovatiivinen ja monipuolinen, mutta aina bluesille uskollinen.</p><p>Kesto: 1 t 15min</p><p>Kokoonpano:<br>Rick Estrin: laulu, huuliharppu<br>Kid Andersen: kitara<br>Lorenzo Farrell: basso<br>Derrick D´Mar Martin: rummut</p><p>Liput 44,90 / 34,90 €</p>",
                "sv": "<p>De amerikanska toppbluesmusikerna Rick Estrin & The Nightcats uppträder i Malms kulturhus!</p><p>Den prisbelönta munspelaren, sångaren och låtskrivaren Rick Estrin och bandet The Nightcats förbluffar publiken över hela världen med sin musik. Hela bandet består av toppbluesmusiker i världsklass.</p><p>Publiken dansar och jublar varhelst munspelsvirtuosen Rick Estrin uppträder med sitt band The Nightcats. De bjuder på fräsch och modern men originell blues med en tvist av roadhouse rock'n'roll. Den musikaliska vägen är säregen, innovativ och mångsidig, men alltid trogen bluesen.</p><p>Längd: 1 timme 15 minuter</p><p>Sammansättning:<br>Rick Estrin: sång, munspel<br>Kid Andersen: gitarr<br>Lorenzo Farrell: basgitarr<br>Derrick D´Mar Martin: trummor</p>",
                "en": "<p>American masters of blues, Rick Estrin and The Nightcats, will perform at Malmitalo!</p><p>Award-winning harmonica player and singer-songwriter Rick Estrin and his band The Nightcats amaze audiences around the world with their music. The entire band is made up of world-class blues musicians.</p><p>Wherever harmonica virtuoso Rick Estrin performs with The Nightcats, the audience break into dancing and cheering. The set includes fresh and modern yet original blues spiced with roadhouse rock'n'roll. Their musical path is original, innovative and versatile, yet always remains faithful to blues.</p><p>Duration: 1 hour 15 min</p><p>Line-up:<br>Rick Estrin: vocals, harmonica<br>Kid Andersen: guitar<br>Lorenzo Farrell: bass<br>Derrick D'Mar Martin: drums</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66492/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66368",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3889379",
                        "sv": "https://www.lippu.fi/eventseries/name-3889379",
                        "en": "https://www.lippu.fi/eventseries/name-3889379"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1171715,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T12:14:07.471536Z",
                    "last_modified_time": "2025-07-03T12:14:07.471555Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773659.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1171715/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-03T12:14:07.346350Z",
            "last_modified_time": "2025-09-01T13:13:40.235556Z",
            "date_published": null,
            "start_time": "2025-09-20T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tyyne Kettunen on Suomen Virallinen Eläkeläinen ja Johanna Keinäsen luoma hahmo, joka on naurattanut eri-ikäisiä katsojia ympäri Suomea jo vuodesta 1993.",
                "sv": "Karaktären Tyyne Kettunen är Finlands officiella pensionär skapad av Johanna Keinänen, och har fått tittare i alla åldrar i hela Finland att skratta sedan 1993.",
                "en": "Tyyne Kettunen, a character created by Johanna Keinänen, is an Official Pensioner of Finland, who has been making viewers of all ages throughout Finland laugh since 1993."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6108C5ECD7AF39A5C145AE7E4EED3C11/Tyyne_Kettunen_Elavana_Helsingissa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6108C5ECD7AF39A5C145AE7E4EED3C11/Tyyne_Kettunen_Livs_levande_i_Helsingfors_",
                "en": "http://www.kanneltalo.fi/en/events/event/6108C5ECD7AF39A5C145AE7E4EED3C11/Tyyne_Kettunen_Live_in_Helsinki_"
            },
            "name": {
                "fi": "Tyyne Kettunen – Elävänä Helsingissä!",
                "sv": "Tyyne Kettunen – Livs levande i Helsingfors!",
                "en": "Tyyne Kettunen – Live in Helsinki!"
            },
            "description": {
                "fi": "<p>Tyyne Kettunen on Suomen Virallinen Eläkeläinen ja Johanna Keinäsen luoma hahmo, joka on naurattanut eri-ikäisiä katsojia ympäri Suomea jo vuodesta 1993.</p><p>Kettusen Tyynen elämänkatsomusta leimaavat loputon myönteisyys, pohjaton uteliaisuus ja sote-asioiden hellittämätön harrastuneisuus.</p><p>Tämän hyperaktiivisen eläkeläisen ja terveyspalvelujen suurkuluttajan huomiot sotesta ja elämästä alkoivat levitä myös sosiaalisessa mediassa 2018 saavuttaen suurta suosiota ja innostusta.</p><p>”Etteenpäin se on tämäkii sano mummo kun nokilleen kuatu!”</p><p>Kesto n. 1t 45 min (sis. väliajan 30 min)</p>",
                "sv": "<p>Karaktären Tyyne Kettunen är Finlands officiella pensionär skapad av Johanna Keinänen, och har fått tittare i alla åldrar i hela Finland att skratta sedan 1993.</p><p>Tyyne Kettunens syn på livet präglas av oändlig positivitet, bottenlös nyfikenhet och ett ihärdigt intresse för social- och hälsovårdsfrågor. Denna hyperaktiva pensionär och storkonsument av hälso- och sjukvårdstjänster började under 2018 sprida sina iakttagelser om samhälls- och livsfrågor även på sociala medier och uppnådde stor popularitet och entusiasm.</p><p>”Det här är också framåt, säger gumman när hon föll på näsan\"</p><p>Språk: finska<br>Längd ca 1 h 45 min (inkl. 30 min paus)</p>",
                "en": "<p>Tyyne Kettunen, a character created by Johanna Keinänen, is an Official Pensioner of Finland, who has been making viewers of all ages throughout Finland laugh since 1993.</p><p>Tyyne Kettunen’s outlook on life is characterised by endless positivity, bottomless curiosity and a relentless enthusiasm for health and social welfare issues. The observations made by this hyperactive pensioner and mass consumer of health services about health and social welfare and life also started to spread on social media in 2018, garnering great popularity and enthusiasm.</p><p>“It’s still a step forward, said the granny when she fell on her face!\"</p><p>Language: Finnish<br>Duration: approx. 1 h 45 min (incl. a 30-min intermission)</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66368/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}