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

{
    "meta": {
        "count": 19749,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=38",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=36"
    },
    "data": [
        {
            "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,
                    "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/"
                    },
                    "price": {
                        "fi": "35,90 € / 33,90 €",
                        "sv": "35,90 € / 33,90 €",
                        "en": "35,90 € / 33,90 €"
                    }
                }
            ],
            "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": null,
            "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>"
            },
            "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\""
            },
            "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!"
            },
            "location_extra_info": null,
            "provider_contact_info": 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,
                    "info_url": null,
                    "price": 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": null,
            "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>"
            },
            "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"
            },
            "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."
            },
            "location_extra_info": null,
            "provider_contact_info": 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,
                    "info_url": null,
                    "price": 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": null,
            "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>"
            },
            "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"
            },
            "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."
            },
            "location_extra_info": null,
            "provider_contact_info": 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,
                    "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/"
                    },
                    "price": {
                        "fi": "44,90 € / 34,90 €",
                        "sv": "44,90 € / 34,90 €",
                        "en": "44,90 € / 34,90 €"
                    }
                }
            ],
            "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": null,
            "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>"
            },
            "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"
            },
            "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!"
            },
            "location_extra_info": null,
            "provider_contact_info": 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,
                    "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"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "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": null,
            "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>"
            },
            "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!"
            },
            "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."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66368/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66960",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490581,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-01T13:13:33.650924Z",
                    "last_modified_time": "2025-09-01T13:13:33.650938Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777083.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490581/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-09-01T13:13:33.303578Z",
            "last_modified_time": "2025-09-01T13:13:34.037645Z",
            "date_published": null,
            "start_time": "2025-09-03",
            "end_time": "2025-11-26",
            "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": null,
            "description": {
                "fi": "<p>0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita. Elokuvahetkessä voi piipahtaa tai viipyä pidempään.</p><p>Annantalon Naperokinossa näytämme lapsille laadukkaita elokuvia ja totuttelemme heitä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Rento ja mukava esityspaikka mahdollistaa ruuan lämmittämisen, syöttämisen/imettämisen, leikkimisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Osa animaatioista on sanattomia, osa taas suomeksi puhuttuja. Kaikki kielet ja kielitaidot ovat lämpimästi tervetulleita mukaan!</p><p>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille, perhepäivähoitajille ja muille lapsille tärkeille aikuisille.<br>Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p><b>Syksyn 2025 Naperokinot:</b><br>ke 3.9. klo 10–12<br>ke 10.9. klo 10–12<br>ke 17.9. klo 10–12<br>ke 24.9. klo 10–12<br>ke 1.10. klo 10–12<br>ke 8.10. klo 10–12<br>ke 15.10. klo 10–12<br>ke 22.10. klo 10–12<br>ke 29.10. klo 10–12<br>ke 5.11. klo 10–12<br>ke 12.11. klo 10–12<br>ke 19.11. klo 10–12<br>ke 26.11. klo 10–12</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p>",
                "sv": "<p>Knattebio för 0–3-åringar visar inhemska och utländska animerade filmer för barn. Man kan titta bara en kort stund eller stanna längre.</p><p>Under Annegårdens Knattebio visar vi högklassiga filmer för barnen och vänjer dem successivt vid att se långa barnfilmer på bio. Vid sidan av filmen är Knattebio en mötesplats för små barn och deras vuxna.</p><p>I den avslappnade och lugna lokalen kan man värma mat, mata eller amma, leka och prova på biobesök på barnets villkor. Toaletter och möjlighet till blöjbyte finns precis bakom hörnet.<br> <br>En del av filmerna är ordlösa medan andra har finskt tal. Alla språk och språkkunskaper är varmt välkomna med!</p><p>Knattebio riktar sig till hemmamammor och -pappor, mor- och farföräldrar, familjedagvårdare och andra vuxna som är viktiga för barnen.</p><p>På grund av det begränsade utrymmet kan vi tyvärr inte ta emot daghem.</p><p><b>Knattebio hösten 2025:</b><br>ons 3.9 kl. 10–12<br>ons 10.9 kl. 10–12<br>ons 17.9 kl. 10–12<br>ons 24.9 kl. 10–12<br>ons 1.10 kl. 10–12<br>ons 8.10 kl. 10–12<br>ons 15.10 kl. 10–12<br>ons 22.10 kl. 10–12<br>ons 29.10 kl. 10–12<br>ons 5.11 kl. 10–12<br>ons 12.11 kl. 10–12<br>ons 19.11 kl. 10–12<br>ons 26.11 kl. 10–12</p><p>Fritt inträde, ingen förhandsanmälan.</p>",
                "en": "<p>The cinema for 0–3-year-old children, Babykino, screens Finnish and foreign children’s animations. You can just pop by or stay for a while.</p><p>At Annantalo Babykino, we show children high-quality films while gradually getting them used to watching full-length children's movies shown in cinemas. In addition to the films, Babykino provides a meeting place for small children and their adults.<br> <br>The relaxed and comfortable premises allow for heating food, feeding/nursing children, playing and familiarisation with going to the cinema at the child’s own pace. The baby-changing station and toilet facilities are right around the corner.<br> <br>Some of the films shown are silent animations, while others are spoken in Finnish. People from all language backgrounds and language skill levels are warmly welcomed!<br> <br>The Babykino is intended for stay-at-home parents, grandparents, family daycare caregivers and other adults important to the child.</p><p>Due to the small premises, we sadly cannot accept daycare groups.<br> <br><b>Babykinos in autumn 2025:</b><br>Wed 3 September, 10:00–12:00<br>Wed 10 September, 10:00–12:00<br>Wed 17 September, 10:00–12:00<br>Wed 24 September, 10:00–12:00<br>Wed 1 October, 10:00–12:00<br>Wed 8 October, 10:00–12:00<br>Wed 15 October, 10:00–12:00<br>Wed 22 October, 10:00–12:00<br>Wed 29 October, 10:00–12:00<br>Wed 5 November, 10:00–12:00<br>Wed 12 November, 10:00–12:00<br>Wed 19 November, 10:00–12:00<br>Wed 26 November, 10:00–12:00</p><p>Free entry, no advance registration.</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/53D291E93B36C3C0A5047B89D4ACDD2B/Naperokino",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/53D291E93B36C3C0A5047B89D4ACDD2B/Naperokino_Knattebio_",
                "en": "http://www.annantalo.fi/en/events/event/53D291E93B36C3C0A5047B89D4ACDD2B/Naperokino_Baby_Kino_"
            },
            "name": {
                "fi": "Naperokino",
                "sv": "Naperokino (Knattebio)",
                "en": "Naperokino (Baby Kino)"
            },
            "short_description": {
                "fi": "0–3-vuotiaiden oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita. Elokuvahetkessä voi piipahtaa tai viipyä pidempään.",
                "sv": "Knattebio för 0–3-åringar visar inhemska och utländska animerade filmer för barn. Man kan titta bara en kort stund eller stanna längre.",
                "en": "The cinema for 0–3-year-old children, Babykino, screens Finnish and foreign children’s animations. You can just pop by or stay for a while."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66960/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66958",
            "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/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/maestro-bettina/",
                        "sv": "https://www.lippu.fi/artist/maestro-bettina/",
                        "en": "https://www.lippu.fi/artist/maestro-bettina/"
                    },
                    "price": {
                        "fi": "25 € / 20 €",
                        "sv": "25 € / 20 €",
                        "en": "25 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490571,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-01T11:13:57.756364Z",
                    "last_modified_time": "2025-09-01T11:13:57.756381Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774933.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490571/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-01T11:13:57.607256Z",
            "last_modified_time": "2025-09-01T11:13:57.942895Z",
            "date_published": null,
            "start_time": "2025-11-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Vietä unohtumaton ilta Arja Saijonmaan laulujen ja tarinoiden kanssa Vuotalossa!</p><p>TV-toimittaja <b>Bettina Sågbom</b> haastattelee <b>Arja Saijonmaata</b> ruotsiksi hänen elämästään, joka alkaa Suomen sodanjälkeisestä kasvamisesta ja jatkuu tähän päivään. Seuraa hänen matkaansa Helsingistä opiskelijateatteriin, maailmankiertueeseen kreikkalaisen musiikki-ikonin Mikis Theodoriksen kanssa ja menestykseen Chilestä kotoisin olevan ikonisen kansanmusiikkiartistin Violeta Parran laulusta \"Jag vill tacka livet\" (Elämälle kiitos).</p><p>Arja Saijonmaa on sitoutunut artistin urallaan rauhaan, vapauteen ja ihmisoikeuksiin. Hän toimi useiden vuosien ajan YK:n lähettiläänä ja teki yhteistyötä kansainvälisten suurmiesten kuten Roger Mooren ja Harry Belafonten kanssa. Vuonna 1994 hän järjesti yksin rauhankonsertin Oslossa, johon osallistuivat Israelin pääministeri Shimon Peres ja PLO:n johtaja Yassir Arafat. Konsertin aikana he allekirjoittivat rauhansopimuksen.</p><p>80-vuotias Arja Saijonmaa on tehnyt pitkän kansainvälisen uran, saavuttanut menestystä muun muassa ”Melodifestivalenissa” (Ruotsin Euroviisuissa) kappaleella \"Högt över havet\", ja hän on esiintynyt TV-ohjelmissa kuten \"Så mycket bättre\" (Vain elämää), \"Let's Dance\" (Tanssii tähtien kanssa) ja ”Seniorsurfarna” Ruotsin TV:ssä sekä muun muassa \"Elämäni biisi\"-ohjelmassa Suomen TV:ssä.</p><p>Hän on julkaissut äskettäin omaelämäkertansa \"Laulu vapaudelle\" (En sång om frihet), mutta myös aiemmin saunakirjan, joka on innoittanut esimerkiksi KAJ:ta, joka ylisti häntä euroviisuhitissään \"Bara bada bastu\".</p><p>Kesäkuussa Arja Saijonmaa palkittiin Ruotsin kuninkaan mitalilla hänen kulttuuriteoistaan. Hän on elänyt uskomattoman mielenkiintoisen elämän, jonka johtotähtinä ovat olleet musiikki, rohkeus, uteliaisuus ja sisu. Saamme kuulla illan aikana lisää suomalaisesta maailmankansalaisesta, jolla on uskomattoman rikas ja tuottelias ura. Hän kertoo anekdootteja ja laulaa elämänsä merkityksellisimpiä kappaleita.</p><p>Kesto: n. 120 min. sis. väliaika.</p>",
                "sv": "<p>Upplev en oförglömlig kväll med Arja Saijonmaas sånger och berättelser i Nordhuset!</p><p>TV-redaktör <b>Bettina Sågbom</b> intervjuar <b>Arja Saijonmaa</b> på svenska om hennes liv från uppväxten i Finland under efterkrigsåren fram till i dag. Vi får följa hennes resa från Studentteatern i Helsingfors till världsturnén med grekiska musikikonen Mikis Theodorakis och succén med chilenska folkmusikern Violeta Parras ”Jag vill tacka livet”.</p><p>Engagemang för fred, frihet och mänskliga rättigheter genomsyrar Arja Saijonmaas karriär som artist. Hon var under flera år ambassadör för FN och samarbetade med internationella storheter som Roger Moore och Harry Belafonte.1994 anordnade hon på egen hand en fredsgala i Oslo där Israels premiärminister Simon Peres och PLO-ledaren Yassir Arafat medverkade. I en paus under konserten undertecknade de två ett fredsavtal. Hon har sjungit tillsammans med Michail Gorbatjov, kandiderat till Europaparlamentet och varit på turné med Olof Palme och Carl Bildt i olika sammanhang.</p><p>Arja Saijonmaa har haft en lång internationell karriär, framgång bla i ”Melodifestivalen” (Ruotsin Euroviisut) med ”Högt över havet” men också medverkat i TV-program som ”Så mycket bättre” (Vain elämää), ”Let´s Dance” (Tanssii tähtien kanssa) och ”Seniorsurfarna” i Sveriges TV och bla ”Elämäni biisi” i Finlands TV.</p><p>Hon har nyligen gett ut sin självbiografi ”En sång om frihet” (Laulu vapaudelle), men tidigare också en bastu-bok som bla inspirerat KAJ, som ju lovsjöng henne i sin Eurovisionshit ”Bara bada bastu”.</p><p>I juni premierades Arja Saijonmaa med medalj av svenska kungen för sina insatser inom kulturen. Hon har levt ett otroligt intressant liv, där ledorden varit musik, mod, nyfikenhet och sisu. En finsk världsmedborgare med en osannolikt rik och produktiv karriär, som vi under kvällen får stifta närmare bekantskap med när hon berättar anekdoter och sjunger de mest betydelsefulla låtarna från sitt liv.</p><p>Längd: ca 120 min. inkl. paus.</p>",
                "en": "<p>Spend an unforgettable evening with Arja Saijonmaa’s songs and stories at Vuotalo!</p><p>TV editor <b>Bettina Sågbom</b> interviews <b>Arja Saijonmaa</b> in Swedish about her life, from her upbringing in Finland during the postwar years up to the present day. We follow her journey from the Student Theater in Helsinki to a world tour with the Greek music icon Mikis Theodorakis and the success of the Chilean iconic folk musician Violeta Parras' song \"Jag vill tacka livet\" (\"Gracias a la vida\").</p><p>Engagement for peace, freedom, and human rights permeates Arja Saijonmaa's career as an artist. She was a UN ambassador for several years and collaborated with international giants such as Roger Moore and Harry Belafonte. In 1994, she independently organized a peace gala in Oslo, where Israeli Prime Minister Shimon Peres and PLO leader Yasser Arafat participated. During a break in the concert, the two signed a peace treaty. She has sung with Mikhail Gorbachev, run for the European Parliament, and toured with Olof Palme and Carl Bildt in various contexts.</p><p>Arja Saijonmaa has had a long international career, achieving success, among other things, in the “Melodifestivalen” (Swedens Eurovision Song Contest) with \"Högt över havet\" and appearing in TV programs such as \"Så mycket bättre\", \"Let's Dance\" (Dancing with the Stars), and \"Seniorsurfarna\" on Swedish TV, as well as \"Elämäni biisi\" on Finnish TV.</p><p>She recently released her autobiography \"En sång om frihet\" (Laulu vapaudesta) and previously a sauna book that, among other things, inspired KAJ, who praised her in their Eurovision hit \"Bara bada bastu\". In June,</p><p>Arja Saijonmaa was awarded a medal by the Swedish king for her contributions to culture. She has lived an incredibly interesting life, with the guiding words being music, courage, curiosity, and Sisu. A Finnish global citizen with an astonishingly rich and productive career, which we get to hear more about during the evening as she shares anecdotes and sings the most meaningful songs from her life.</p>"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0B97E801A58FE8BF240BFA23A860F95A/Maestro_Bettina_Arja_Saijonmaa",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/0B97E801A58FE8BF240BFA23A860F95A/Maestro_Bettina_Arja_Saijonmaa",
                "en": "http://www.vuotalo.fi/en/events/event/0B97E801A58FE8BF240BFA23A860F95A/Maestro_Bettina_Arja_Saijonmaa"
            },
            "name": {
                "fi": "Maestro & Bettina: Arja Saijonmaa – Svenska veckan",
                "sv": "Maestro & Bettina: Arja Saijonmaa – Svenska veckan",
                "en": "Maestro & Bettina: Arja Saijonmaa – Svenska veckan"
            },
            "short_description": {
                "fi": "Vietä unohtumaton ilta Arja Saijonmaan laulujen ja tarinoiden kanssa Vuotalossa!",
                "sv": "Upplev en oförglömlig kväll med Arja Saijonmaas sånger och berättelser i Nordhuset!",
                "en": "Spend an unforgettable evening with Arja Saijonmaa’s songs and stories at Vuotalo!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66958/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66394",
            "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,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/",
                        "sv": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/",
                        "en": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178356,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T08:12:35.339766Z",
                    "last_modified_time": "2025-07-04T08:12:35.339780Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774026.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178356/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T08:12:35.276842Z",
            "last_modified_time": "2025-09-01T11:13:47.188184Z",
            "date_published": null,
            "start_time": "2025-09-20T07: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": null,
            "description": {
                "fi": "<p>Elämän kukka on musiikin rytmittämä, sirkusta ja nukketeatteria yhdistävä sanaton vannetaide- ja esineteatteriesitys elämän kiertokulusta.</p><p>Vakavaa aihetta käsitellään elämänmyönteisesti. ”Ensin on siemen. Se itää, kasvaa, kukkii, pölyttyy, siementää ja kuihtuu. ”</p><p>Ikäsuositus: 6 kk + <br>Kieli: Sanaton<br>Kesto: 30 min</p><p>Elämän kukalle myönnettiin Slovenian Teatteri-instituutin Laatumerkki 2020.<br> <br>Käsikirjoitus: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Ohjaus: Katja Kähkönen, Katja Povše, Mateja Ocepek<br>Vannekoreografia: Henna Matanuska<br>Lavastus ja puvustus: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Kukkahame: Iztok Hrga<br>Musiikki: Gregor Zemljič</p><p>Esiintyjät: Henna Matanuska, Katja Kähkönen<br>Kuvat ja video: Heikki Järvinen<br>Tuottaja: Vauva- ja taaperoteatteri AEIOU<br>Yhteistyökumppanit: Lasten ja taiteiden talo, Ljubljana, Lastenkulttuurikeskus Rulla, Tampereen kulttuuripalvelut<br>Suomen ensi-ilta: marraskuu 2020, Monitoimitalo 13, Tampere<br>Slovenian ensi-ilta: lokakuu 2021, Bobri-festivaali, Lasten ja taiteiden talo, Ljubljana<br>Esitystä ovat tukeneet Taiteen edistämiskeskus, Samuel Huberin taidesäätiö, Alli Paasikiven Säätiö, Suomen Kulttuurirahasto, Pirkanmaan Kulttuurirahasto, Alfred Kordelinin säätiö ja Ljubljanan kulttuuritoimi.</p><p>Esitys päiväkotiryhmille pe 19.9. klo 10 varattavissa kultus.hel.fi kautta.</p>",
                "sv": "<p>Elämän kukka (Livets blomma) är en ordlös pjäs, som musiken skapar rytm till, som handlar om livets kretslopp och kombinerar cirkus och dockteater.</p><p>Det allvarliga ämnet behandlas på ett livsbekräftande sätt. ”Först är det fröet. Det gror, växer, blommar, pollinerar, fröar och vissnar.”</p><p>Åldersrekommendation: +6 månader <br>Språk: Ordlöst<br>Längd: 30 minuter</p><p>Elämän kukka tilldelades Slovenian Theatre Institutes kvalitetsmärke 2020.<br> <br>Manus: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Regi: Katja Kähkönen, Katja Povše, Mateja Ocepek<br>Tunnbandskoreografi: Henna Matanuska<br>Scenografi och kostymdesign: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Blomkjol: Iztok Hrga<br>Musik: Gregor Zemljič</p><p>Artister: Henna Matanuska, Katja Kähkönen<br>Bilder och video: Heikki Järvinen<br>Producent: Baby- och barnteater AEIOU<br>Samarbetspartner: House of Children and Arts, Ljubljana, barnkulturcentret Rulla, Tammerfors kulturtjänster<br>Premiär i Finland: november 2020, Monitoimitalo 13, Tammerfors<br>Premiär i Slovenien: oktober 2021, Bobri Festival, House of Children and Arts, Ljubljana<br>Föreställningen stöds av Centret för konstfrämjande, Samuel Hubers konststiftelse, Alli Paasikivis stiftelse, Finska kulturfonden, Birkalands kulturstiftelse, Alfred Kordelins stiftelse och Ljubljanas kulturväsende.</p>",
                "en": "<p>The Flower of Life is a wordless performance combining hoop artistry, object theatre, music, circus and puppet theatre to portray the cycle of life.</p><p>Although serious, the theme is approached with a life-affirming tone. \"First comes the seed. It germinates, grows, blooms, is pollinated, produces seeds and withers.\"</p><p>Age recommendation: +6 months <br>Language: Non-verbal<br>Duration: 30 min</p><p>The Flower of Life was awarded the Quality Label by the Slovenian Theatre Institute in 2020.<br> <br>Script: Katja Kähkönen, Mateja Ocepek and Katja Povše<br>Directed by: Katja Kähkönen, Katja Povše and Mateja Ocepek<br>Hoop choreography: Henna Matanuska<br>Set and costume design: Katja Kähkönen, Mateja Ocepek and Katja Povše<br>Flower skirt: Iztok Hrga<br>Music: Gregor Zemljič</p><p>Performers: Henna Matanuska and Katja Kähkönen<br>Photos and video: Heikki Järvinen<br>Producer: Baby and Toddler Theatre AEIOU<br>Partners: House of Children and Arts, Ljubljana; Children's Cultural Centre Rulla; Tampere Cultural Services<br>Finnish premiere: November 2020, Multihouse 13, Tampere<br>Slovenian premiere: October 2021, Bobri Festival, House of Children and Arts, Ljubljana<br>The performance has been supported by the Arts Promotion Centre Finland, the Samuel Huber Art Foundation, the Alli Paasikivi Foundation, the Finnish Cultural Foundation, the Pirkanmaa Regional Fund, the Alfred Kordelin Foundation, and the City of Ljubljana Department for Culture.</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka",
                "en": "http://www.malmitalo.fi/en/events/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka"
            },
            "name": {
                "fi": "AEIOU: Elämän kukka",
                "sv": "AEIOU: Elämän kukka",
                "en": "AEIOU: Elämän kukka"
            },
            "short_description": {
                "fi": "Elämän kukka on musiikin rytmittämä, sirkusta ja nukketeatteria yhdistävä sanaton vannetaide- ja esineteatteriesitys elämän kiertokulusta.",
                "sv": "Elämän kukka (Livets blomma) är en ordlös pjäs, som musiken skapar rytm till, som handlar om livets kretslopp och kombinerar cirkus och dockteater.",
                "en": "The Flower of Life is a wordless performance combining hoop artistry, object theatre, music, circus and puppet theatre to portray the cycle of life."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66394/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66097",
            "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,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jukka-gustavson-street-level-feat-jukka-orma-malmitalo-20201222/",
                        "sv": "https://www.lippu.fi/event/jukka-gustavson-street-level-feat-jukka-orma-malmitalo-20201222/",
                        "en": "https://www.lippu.fi/event/jukka-gustavson-street-level-feat-jukka-orma-malmitalo-20201222/"
                    },
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1177685,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T06:12:36.850925Z",
                    "last_modified_time": "2025-07-04T06:12:36.850945Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771484.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1177685/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T06:12:36.794824Z",
            "last_modified_time": "2025-09-01T11:13:46.401889Z",
            "date_published": null,
            "start_time": "2025-09-18T16: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": null,
            "description": {
                "fi": "<p>Jukka Orma ja Jukka Gustavson yhdistävät voimansa ja tarjoavat mielenkiintoisen konsertin eri vuosikymmeniltä!</p><p>Konsertti pohjautuu 60- ja 70-luvun klassikoihin sekä omaan materiaaliin ja yllätyksiäkin on luvassa.</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>",
                "sv": "<p>Jukka Orma och Jukka Gustavson förenar sina krafter och bjuder på en intressant konsert från olika årtionden!</p><p>Konserten bygger på klassiker från 60- och 70-talet samt eget material, och även överraskningar utlovas.</p><p>Längd: 2 timmar inklusive paus 20 minuter</p>",
                "en": "<p>Jukka Orma and Jukka Gustavson join forces for an interesting concert from various decades!</p><p>The concert is based on classics from the 60s and 70s, as well as original material with a few surprises in store.</p><p>Duration: 2 hours, incl. a 20-min intermission.</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EE181F724774556C5C45F02505EEAD6C/Jukka_Gustavson_Street_Level_feat_Jukka_Orma_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EE181F724774556C5C45F02505EEAD6C/Jukka_Gustavson_Street_Level_feat_Jukka_Orma_",
                "en": "http://www.malmitalo.fi/en/events/event/EE181F724774556C5C45F02505EEAD6C/Jukka_Gustavson_Street_Level_feat_Jukka_Orma_"
            },
            "name": {
                "fi": "Jukka Gustavson & Street Level feat. Jukka Orma",
                "sv": "Jukka Gustavson & Street Level feat. Jukka Orma",
                "en": "Jukka Gustavson & Street Level feat. Jukka Orma"
            },
            "short_description": {
                "fi": "Jukka Orma ja Jukka Gustavson yhdistävät voimansa ja tarjoavat mielenkiintoisen konsertin eri vuosikymmeniltä!",
                "sv": "Jukka Orma och Jukka Gustavson förenar sina krafter och bjuder på en intressant konsert från olika årtionden!",
                "en": "Jukka Orma and Jukka Gustavson join forces for an interesting concert from various decades!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66097/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqkb5fs4",
            "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/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:p2846/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490572,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-01T10:41:41.174825Z",
                    "last_modified_time": "2025-09-01T10:41:41.174839Z",
                    "name": "Kirjoja & ruokaa",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7a2031bb-9d35-472b-ad82-3f428163a6fb.png",
                    "cropping": "105,0,523,418",
                    "photographer_name": "",
                    "alt_text": "Kirja, teetä ja leivos pöydällä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490572/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-01T10:44:31.512644Z",
            "last_modified_time": "2025-09-01T10:44:31.512814Z",
            "date_published": null,
            "start_time": "2025-10-31T14:30:00Z",
            "end_time": "2025-10-31T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p><strong>Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. Jokaisella kerralla tutustumme eri teemaan liittyviin teoksiin ja inspiroidumme niistä kokkailemaan yhdessä.</strong></p><p>Tapahtumasarja on maksuton ja kaikille avoin, mutta suunnattu erityisesti aikuisille. Mukaan mahtuu 14 ensimmäistä saapumisjärjestyksessä.</p><p>Tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta!</p><p>📅 Ajankohdat ja teemat</p><p>24.09. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Aasia, vieraana JinSook Lee</p><p>15.10. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Ranska</p><p>31.10. klo 16.30–19.30, Entressen kirjasto (Jukeboxi) – Halloween</p><p>28.11. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Italia</p>",
                "sv": "<p><strong>Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld. Varje gång fokuserar vi på verk kopplade till ett särskilt tema – och låter oss inspireras till att laga mat och smaka tillsammans.</strong></p><p>Serien är gratis och öppen för alla, men riktar sig särskilt till vuxna. Antalet platser är begränsat till 14 deltagare.</p><p>Denna evenemangsserie är en del av bibliotekets program och har skapats utifrån kundernas önskemål – kom och upplev nya sätt att känna och njuta av litteratur!</p><p>📅 Datum &amp; teman</p><p>24.9 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Asien, gäst JinSook Lee</p><p>15.10 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Frankrike</p><p>31.10 kl. 16.30–19.30, Entresse bibliotek (Jukeboxi) – Halloween</p><p>28.11 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Italien</p>",
                "en": "<p><strong>Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures. Each session focuses on works connected to a specific theme, inspiring us to cook and taste together.</strong></p><p>The series is free of charge and open to everyone, though it is especially aimed at adults. Places are available for the first 14 attendees.</p><p>This event series is part of the library’s program and has been created based on customer wishes – come and experience new ways to sense and enjoy literature!</p><p>📅 Dates &amp; Themes</p><p>24 Sept 16:30–19:30, Lippulaiva Library (Kapyysi) – Asia, guest JinSook Lee</p><p>15 Oct 16:30–19:30, Lippulaiva Library (Kapyysi) – France</p><p>31 Oct 16:30–19:30, Entresse Library (Jukeboxi) – Halloween</p><p>28 Nov 16:30–19:30, Lippulaiva Library (Kapyysi) – Italy</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Kirjoja & ruokaa",
                "sv": "Böcker & Mat",
                "en": "Books & Foods"
            },
            "short_description": {
                "fi": "Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. ",
                "sv": "Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld.",
                "en": "Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures."
            },
            "location_extra_info": {
                "fi": "Tapahtuma järjestetään Lippulaivan kirjastossa 24.9., 15.10. ja 28.11. sekä Entressen kirjastossa 31.10.",
                "sv": "Evenemanget ordnas i Lippulaiva bibliotek den 24.9., 15.10. och 28.11. samt i Entresse bibliotek den 31.10.",
                "en": "The event will take place at Lippulaiva Library on September 24, October 15, and November 28, and at Entresse Library on October 31."
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5fs4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agmqjhvd2y",
            "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:17/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?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": ""
                    },
                    "info_url": null,
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "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-01T09:32:09.570806Z",
            "last_modified_time": "2025-09-01T09:33:25.840971Z",
            "date_published": null,
            "start_time": "2025-09-03T08:11:00Z",
            "end_time": "2025-09-03T08:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-09-01T12:34:00+03:00",
            "enrolment_end_time": "2025-09-02T11:11:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p><a href=\"@javascript:alert()\">hello</a>&nbsp;</p>\n",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "javascript:alert()",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "test",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "test",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agmqjhvd2y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66645",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1219164,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T13:16:39.418547Z",
                    "last_modified_time": "2025-07-09T13:16:39.418585Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772366.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1219164/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-09T13:16:39.357156Z",
            "last_modified_time": "2025-09-01T09:15:17.642570Z",
            "date_published": null,
            "start_time": "2025-11-05T10: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": null,
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Maksuton, mutta mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Syksyn laulupajakerrat: <br>Ke 10.9. klo 10 ja 11.45<br>Ke 5.11. klo 12.30 ja 14.15<br>Ke 10.12. Klo 10 ja 11.45</p>",
                "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand. <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p>Höstens sångverkstäder:<br>On 10.9. kl. 10 och 11.45<br>On 5.11. kl. 12.30 och 14.15<br>On 10.12. kl. 10 och 11.45</p>",
                "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group. <br>Ask for more information and register: sanna.nuutinen@hel.fi</p><p>Autumn song workshops:<br>Wed 10.9. at 10 and 11.45<br>Wed 5.11. at 12.30 and 14.15<br>Wed 10.12. at 10 ja 11.45</p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/5C4B2B1D2A6E2C1D69516C5B83819E3D/Opi_suomea_laulaen_TAYNNA",
                "sv": "http://www.stoa.fi/sv/evenemang/event/5C4B2B1D2A6E2C1D69516C5B83819E3D/Lar_dig_finska_genom_att_sjunga_",
                "en": "http://www.stoa.fi/en/events/event/5C4B2B1D2A6E2C1D69516C5B83819E3D/Learn_Finnish_by_Singing_"
            },
            "name": {
                "fi": "Opi suomea laulaen TÄYNNÄ – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare",
                "en": "Learn Finnish by Singing – Song workshops for immigrants"
            },
            "short_description": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.",
                "sv": "Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.",
                "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66645/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66865",
            "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: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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490452,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-18T14:13:54.492750Z",
                    "last_modified_time": "2025-08-18T14:13:54.492768Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776244.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-18T14:13:54.380304Z",
            "last_modified_time": "2025-09-01T09:15:03.070577Z",
            "date_published": null,
            "start_time": "2025-09-10T14:00:00Z",
            "end_time": "2025-09-10T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Keskustelutilaisuus Kannelmäen kaupunkielämästä. Keskustelijoiksi toivotaan kaikenikäisiä ja -taustaisia alueen asukkaita. Tervetuloa mukaan keskustelemaan!</p><p>Minkälaista kaupunkielämää Kannelmäessä eletään? Mitä kaupunkielämä sinulle tarkoittaa? Mitä ajattelet hyvään kaupunkielämään kuuluvan? Minkälaisia kykyjä tarvitsemme, jotta yhteiselo kaupunkitilassa sujuisi paremmin?</p><p>Tervetuloa keskustelemaan ja oppimaan uutta Kannelmäen kaupunkielämästä yhdessä muiden asukkaiden kanssa! Tilaisuus on tarkoitettu Kannelmäessä ja lähialueilla asuville.</p><p>Tilaisuuden tavoitteena ei ole löytää ratkaisuja, vaan lisätä ymmärrystä kaupunkitilasta ja sen käyttäjistä sekä Kannelmäen kaupunkielämästä.</p><p>Keskustelu järjestetään Erätauko-menetelmällä. Erätauko-keskustelussa pyrimme syventämään ymmärrystä itsestä, muista ja maailmasta. Puhumme omasta kokemuksesta ja kuuntelemme toista ihmistä. Riittää, että tulet keskusteluun mukaan uteliaalla ja avoimella mielellä. Sinun ei tarvitse olla aiheen asiantuntija eikä puhua suomea äidinkielenä. Keskustelut käydään kuitenkin suomeksi.</p><p>Tilaisuus on ilmainen, mutta vaatii ennakkoilmoittautumisen. Ilmoittaudu tilaisuuteen lomakkeella: https://forms.gle/NiGijjEjQj6QS7gs6</p><p>Tilaisuuden järjestää kaupunkimuotoilija Moona Tikka. Tilaisuus toteutetaan Helsingin kaupungin asukasosallisuuden pienavustuksella.</p><p>Verkkosivut: https://www.moonatikka.com/kaupunkielmst<br>Fb-tapahtuma: https://fb.me/e/8YIOEBzYw</p><p>Kaikille avoin ja maksuton tapahtuma. Vaatii ennakkoilmoittautumisen.</p>",
                "sv": "<p>Ett diskussionsmöte om stadslivet i Gamlas. Områdets invånare i alla åldrar och med olika bakgrund är välkomna att delta i diskussionen. Välkommen att delta i diskussionen!</p><p>Hurdant stadsliv lever man i Gamlas? Vad betyder stadslivet för dig? Vad tycker du hör till ett bra stadsliv? Vilka färdigheter behöver vi för att kunna samexistera bättre i stadsrummet?</p><p>Välkommen att diskutera och lära sig nytt om livet i Gamlas tillsammans med andra invånare! Evenemanget är för dem som bor i Gamlas med omnejd.</p><p>Syftet med evenemanget är inte att hitta lösningar, utan att öka förståelsen för stadsrummet och dess användare samt för stadslivet i Gamlas. Diskussionen ordnas med metoden Dialogpaus.</p><p>I Dialogpausdiskussionen strävar vi efter att fördjupa vår förståelse för oss själva, andra och världen. Vi talar utifrån våra egna erfarenheter och lyssnar på andra. Det räcker att du deltar i diskussionen med ett öppet och nyfiket sinne. Du behöver inte vara expert på ämnet eller ha finska som modersmål. <br>Diskussionerna kommer dock att föras på finska.</p><p>Mötet är kostnadsfritt men kräver förhandsanmälan. Anmäl dig till mötet med formuläret: https://forms.gle/NiGijjEjQj6QS7gs6</p><p>Mötet ordnas av stadsdesignern Moona Tikka. Mötet genomförs med hjälp av ett mindre understöd för Helsingfors stads invånardelaktighet.</p><p>Webbplats (på finska): https://www.moonatikka.com/kaupunkielmst<br>Fb-evenemang: https://fb.me/e/8YIOEBzYw<br>Kontaktuppgifter: moona.tikka@gmail.com och 050 358 8786</p><p>Mötet är öppet för alla och kostnadsfritt. Kräver förhandsanmälan.</p>",
                "en": "<p>A discussion event focused on urban life in Kannelmäki. People of all ages and backgrounds are welcome to participate in the discussion. Come and join us!</p><p>What kind of urban life do the residents of Kannelmäki lead? What does urban life mean to you? What do you think good urban life entails? What kinds of skills do we need to better co-exist with each other in the urban space?</p><p>Come and discuss the topic and learn new things about urban life in Kannelmäki together with other residents! The event is intended for people living in Kannelmäki and the surrounding areas.</p><p>The aim of the event is not to find solutions but to increase understanding of the urban space and its users, as well as urban life in Kannelmäki. The discussion will be held in Finnish, using the Timeout method.</p><p>In a Timeout discussion, we seek to deepen our understanding of ourselves, others and the world. We speak from our own experience and listen to the other person. All you need to do is join the discussion with an open and curious mind. You do not need to be an expert in the topic or speak Finnish as your first language. However, the discussions will take place in Finnish.</p><p>The event is free of charge but requires advance registration. Sign up for the event using the following form: https://forms.gle/NiGijjEjQj6QS7gs6</p><p>The event is organised by urban designer Moona Tikka. The event will be implemented with a small resident participation grant from the City of Helsinki.</p><p>Website: https://www.moonatikka.com/kaupunkielmst<br>FB event: https://fb.me/e/8YIOEBzYw<br>Contact details: moona.tikka@gmail.com and +358 50 358 8786</p><p>The event is open to all and free of charge. Advance registration required.</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8DE8DF9CC770BBC7FB2134F544991D39/Keskusteluja_kaupunkielamasta_Kannelmaessa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8DE8DF9CC770BBC7FB2134F544991D39/Diskussioner_om_stadslivet_i_Gamlas",
                "en": "http://www.kanneltalo.fi/en/events/event/8DE8DF9CC770BBC7FB2134F544991D39/Discussions_on_urban_life_in_Kannelmaki"
            },
            "name": {
                "fi": "Keskusteluja kaupunkielämästä Kannelmäessä",
                "sv": "Diskussioner om stadslivet i Gamlas",
                "en": "Discussions on urban life in Kannelmäki"
            },
            "short_description": {
                "fi": "Keskustelutilaisuus Kannelmäen kaupunkielämästä. Keskustelijoiksi toivotaan kaikenikäisiä ja -taustaisia alueen asukkaita. Tervetuloa mukaan keskustelemaan!",
                "sv": "Ett diskussionsmöte om stadslivet i Gamlas. Områdets invånare i alla åldrar och med olika bakgrund är välkomna att delta i diskussionen. Välkommen att delta i diskussionen!",
                "en": "A discussion event focused on urban life in Kannelmäki. People of all ages and backgrounds are welcome to participate in the discussion. Come and join us!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66865/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66365",
            "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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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,
                    "info_url": {
                        "fi": "https://ilmonet.fi/course/H254166",
                        "sv": "https://ilmonet.fi/course/H254166",
                        "en": "https://ilmonet.fi/course/H254166"
                    },
                    "price": {
                        "fi": "16 €",
                        "sv": "16 €",
                        "en": "16 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490570,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-01T09:15:02.205547Z",
                    "last_modified_time": "2025-09-01T09:15:02.205570Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773634.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490570/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-01T09:15:02.002591Z",
            "last_modified_time": "2025-09-01T09:15:02.465625Z",
            "date_published": null,
            "start_time": "2025-09-09T14:30:00Z",
            "end_time": "2025-09-09T17: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": null,
            "description": {
                "fi": "<p>Kävelyretkellä etsitään viitteitä toisenlajisista eläimistä ja pohditaan monilajista kanssakaupunkilaisuutta.</p><p>Retken aikana kävellään Kannelmäen, erityisesti Mätäjoen ympäristössä ja keskitytään havainnoimaan kaupunkiluontoa uusilla tavoilla. Kierroksella kävellään noin 4 km mittainen matka, jonka aikana tehdään useita pysähdyksiä ja kuunnellaan, katsotaan, aistitaan ja ajatellaan Kannelmäen toisenlajisia eläimiä. Samalla pohdimme, mihin olemme tottuneet kiinnittämään huomiota kaupunkiympäristössä ja miksi.</p><p>Oppaina toimivat esitystaiteilija Maija Linturi ja teatteripedagogi Camilla Anderzén.</p><p>Ilmoittautuminen ti 12.08.2025 klo 10:00 alkaen: https://ilmonet.fi/course/H254166</p><p>Hinta: 16 €<br>Pukeudu retkelle säänmukaisesti. Halutessasi ota mukaan muistiinpanovälineet.</p><p>Opetuskieli: suomi</p><p>Lähtö retkelle Kanneltalon Sitratorin Unelma-patsaan luota.</p><p>Yhteistyössä Kanneltalo Työväenopiston kanssa.</p>",
                "sv": "<p>På finska. Under rundvandringen söker vi efter tecken på djur av andra arter och dryftar vad det innebär att vara medstadsbo med andra arter.</p><p>Under utflykten går vi i Gamlas och i synnerhet i Rutiåns omgivning och fokuserar på att upptäcka stadsnaturen på nya sätt. Vi vandrar cirka 4 kilometer under rundvandringen och tar flera pauser och lyssnar, tittar på, känner till och tänker på djur av andra arter i Gamlas. Samtidigt funderar vi på vad vi är vana att fästa uppmärksamhet vid i stadsmiljön och varför.<br>Våra guider är performancekonstnär Maija Linturi och teaterpedagog Camilla Anderzén.</p><p>Anmälan ti 12.8.2025 från och med kl. 10.00.<br>Anmäl dig till utflykten: https://ilmonet.fi/course/H254166</p><p>Klä dig efter vädret inför utflykten. Ta med anteckningsmaterial om du vill.</p><p>Undervisningsspråk: finska</p><p>Vi startar till utflykten vid Dröm-statyn på Cittertorget utanför Gamlasgården.</p>",
                "en": "<p>In Finnish. During this walk, participants will look for signs of nonhuman animals and reflect on the urban coexistence of multiple species.</p><p>The route takes the group through the Kannelmäki area, especially around Mätäjoki, and focuses on observing urban nature in new ways. The walk covers approximately four kilometres, with several stops along the way to listen, look, sense and think about the nonhuman animals of Kannelmäki. At the same time, we will consider what we are used to noticing in the urban environment and why.<br>The participants at the walk will be guided by performance artist Maija Linturi and theatre pedagogue Camilla Anderzén.</p><p>Registration from 10:00, Tue 12 August 2025, onwards.</p><p>Sign up for the walk: https://ilmonet.fi/course/H254166</p><p>Please wear weather-appropriate clothing. Feel free to bring a notepad and pen with you.</p><p>Language of instruction: Finnish<br>The departure point is the Unelma statue at Kanneltalo's Sitratori.</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A2B7F681E375E640E3CABB931DFBEBD6/Monilajiset_kaupunkilaiset_-_kaupunkiluontoretki_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A2B7F681E375E640E3CABB931DFBEBD6/Stadsbor_av_manga_arter_stadsnaturutflykt_",
                "en": "http://www.kanneltalo.fi/en/events/event/A2B7F681E375E640E3CABB931DFBEBD6/Multispecies_City_Dwellers_Urban_Nature_Walk_"
            },
            "name": {
                "fi": "Monilajiset kaupunkilaiset - kaupunkiluontoretki",
                "sv": "Stadsbor av många arter – stadsnaturutflykt",
                "en": "Multispecies City Dwellers – Urban Nature Walk"
            },
            "short_description": {
                "fi": "Kävelyretkellä etsitään viitteitä toisenlajisista eläimistä ja pohditaan monilajista kanssakaupunkilaisuutta.",
                "sv": "På finska. Under rundvandringen söker vi efter tecken på djur av andra arter och dryftar vad det innebär att vara medstadsbo med andra arter.",
                "en": "In Finnish. During this walk, participants will look for signs of nonhuman animals and reflect on the urban coexistence of multiple species."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66365/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqkb5jn4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le: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: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:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490573,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-01T07:47:01.823519Z",
                    "last_modified_time": "2025-09-01T07:47:01.823534Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/69154a4a-bb43-4c73-a924-af2b3ed515b1.png",
                    "cropping": "60,0,374,313",
                    "photographer_name": "Espoon kaupungin kirjasto",
                    "alt_text": "kuva käsinkueista, joitta mielikuvituksellisia hahmoja ja värejä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490573/?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-01T07:49:51.262506Z",
            "last_modified_time": "2025-09-01T07:49:51.262523Z",
            "date_published": null,
            "start_time": "2025-09-05T12:00:00Z",
            "end_time": "2025-09-05T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Ison Omenan kirjasto osallistuu Lohkottuihin päiviin järjestämällä kokoperheen käsinukkien askartelupajan. </p><p>Nämä nuket eivät ole ihan tavallisia. Voit käyttää kaiken mielikuvituksesi ja tehdä outoja otuksia, unimaailman ukkeleita tai mitä ikinä mielikuvituksestasi nousee. Me autamme! Voit tehdä nuken vain omaksi iloksi, mutta näille nukeille voi kuiskuttaa myös toiveen iltaisin, että ne syövät pahat unesi, ja sinä saat nukkua aivan rauhssa. Tämä omituisten otusten kerho on yleensä hyvin nälkäinen, mitä painajaisiin tulee. </p><p>Tervetuloa!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Unisyöppö-käsinukkepaja"
            },
            "short_description": {
                "fi": "Tehdään mielikuvitus hahmoja valmiisiin pohjiin. Pienet lapset aikuisten seurassa. "
            },
            "location_extra_info": {
                "fi": "Paja"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5jn4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agmqhoomci",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:22/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?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": ""
                    },
                    "info_url": null,
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u48040010",
            "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:58/?format=api"
                }
            ],
            "created_time": "2025-09-01T05:22:12.161570Z",
            "last_modified_time": "2025-09-01T05:45:12.939269Z",
            "date_published": null,
            "start_time": "2025-09-02T06:00:00Z",
            "end_time": "2025-09-02T07: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": "2025-09-01T08:41:00+03:00",
            "enrolment_end_time": "2025-09-02T09:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Kokeilu</p>\n",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Kokeilu",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Kokeilu",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agmqhoomci/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66956",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490568,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-29T13:13:55.941804Z",
                    "last_modified_time": "2025-08-29T13:13:55.941821Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777068.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490568/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-29T13:13:55.802822Z",
            "last_modified_time": "2025-08-29T15:13:50.851617Z",
            "date_published": null,
            "start_time": "2025-08-30T08:00:00Z",
            "end_time": "2025-08-30T12: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": null,
            "description": {
                "fi": "<p>Tervetuloa mukaan kaikille avoimeen toripäivään, jossa pääset hyppäämään markkinatunnelmiin paikallisten toimijoiden ja aktiviteettien parissa.</p><p>Paikan päällä on yli 20 torimyyjää ja esittelijää, joiden antimiin pääset tutustumaan markkinatyyliin. Päivään mahtuu myös muuta pientä ilahduttavaa, somistetaan Malmia kauniin kukkakirjaimin ja mahdollisesti paikan päällä on myös sirkusta. Tervetuloa mukaan! <br> <br>Ylä-Malmin toripäivä on osa OmaStadi-hanketta \"Ylä-Malmin tori ja Ala-Malmin puisto viihtyisäksi!\". Ylä-Malmin torin elävöittäminen on lähtenyt käyntiin asukkaiden ja alueen toimijoiden toiveita ja ehdotuksia kartoittamalla.</p>",
                "en": "<p>Welcome to an open market day for everyone, where you can enjoy the lively atmosphere with local vendors and activities!</p><p>There will be more than 20 market sellers and exhibitors on site offering their specialties in true market style. The day will also feature other delightful surprises: we will once again decorate the square with beautiful floral letters, and there may even be circus performances! Everyone is welcome!<br> <br>Ylä-Malmi Market Day is part of the OmaStadi project “Making the square of Ylä-Malmi and Ala-Malmi Park more enjoyable!”. The revitalization of Ylä-Malmi Square began by gathering wishes and suggestions from residents and local actors.</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF7B63DC35DCD185ACA69C7EBDCECF00/Yla-Malmin_toripaiva",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CF7B63DC35DCD185ACA69C7EBDCECF00/Yla-Malmin_toripaiva",
                "en": "http://www.malmitalo.fi/en/events/event/CF7B63DC35DCD185ACA69C7EBDCECF00/Yla-Malmi_Market_Day"
            },
            "name": {
                "fi": "Ylä-Malmin toripäivä",
                "sv": "Ylä-Malmin toripäivä",
                "en": "Ylä-Malmi Market Day"
            },
            "short_description": {
                "fi": "Tervetuloa mukaan kaikille avoimeen toripäivään, jossa pääset hyppäämään markkinatunnelmiin paikallisten toimijoiden ja aktiviteettien parissa.",
                "en": "Welcome to an open market day for everyone, where you can enjoy the lively atmosphere with local vendors and activities!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66956/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66779",
            "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": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/"
                    },
                    "price": {
                        "fi": "10€ / 8€",
                        "sv": "10€ / 8€",
                        "en": "10€ / 8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1271735,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T12:14:26.283312Z",
                    "last_modified_time": "2025-07-16T12:14:26.283328Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775285.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1271735/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T12:14:26.158835Z",
            "last_modified_time": "2025-08-29T12:14:31.778457Z",
            "date_published": null,
            "start_time": "2025-11-04T12: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": null,
            "description": {
                "fi": "<p>Samborombónista Pohjolan rannikoille - Musiikkimatka Evert Tauben jalanjäljissä. Ruotsalaisuuden viikon eli Svenska veckanin tiistaimatinea ruotsiksi.</p><p>Ohjelmassa on runsas ja monipuolinen kattaus Evert Tauben laululyriikkaa ja monia hänen rakastetuimmista teoksistaan sekä harvemmin kuultuja ”unohdettuja” helmiä.</p><p>Saaristolaisvalssien ja luonnonkuvausten ohella luvassa on myös lauluja, joiden inspiraation lähteenä on Evertin Argentiinassa viettämä aika (1910–1915).</p><p>Argentiinalainen kansanmusiikki ja tango ovat olleet erittäin tärkeitä molemmille artisteille: Pentti on sekä opiskellut että tehnyt yhteistyötä kuuluisien argentiinalaisten kitaristien, kuten Eduardo ja Juan Falún, Jorge Cardoson ja Jorge Morelin kanssa. Bandoneónvirtuoosi Mikko on ollut kiertueella tangolaulaja Martin Alvaradon säestäjänä. Tämän lisäksi Mikko on säestänyt muun muassa Sven Bertil Taubea.</p><p>Pentti Hildén: laulu ja kitara<br>Mikko Helenius: bandoneón, haitari, piano ja laulu<br>Kesto n. 60 min. <br>Kieli: ruotsi.</p>",
                "sv": "<p>Svenska veckans tisdagsmatiné</p><p>Skärgårdsvalserna och naturskildringarna har sin givna plats men programmet har lika mycket  sånger inspirerade av Everts vistelse (1910-1915) i Argentina.</p><p>Argentinsk folkmusik och tango har varit väldigt viktiga för båda artisterna: Pentti har både studerat för och samarbetat med Argentinska gitarrens stora namn såsom Eduardo oah Juan Falú, Jorge Cardoso och Jorge Morel.   Bandoneonvirtuosen Mikko har turnerat flirtigt som ackompanjatör för tangosångaren Martin Alvarado. Utöver Tango kan det nämnas att Mikko  ackompanjerat  bl.a. Sven Bertil Taube.</p><p>Pentti Hildén: sång och gitarr<br>Mikko Helenius bandoneon, dragspel, piano och sång. <br>Längd ca 60 min. <br>Språk: svenska.</p>",
                "en": "<p>From Samborombón to the Nordic coast - A musical journey in the footsteps of Evert Taube. Swedish Week (Svenska veckan) Tuesday matinée in swedish.</p><p>The programme offers a rich and varied selection of Evert Taube’s songs and includes many of his most beloved works alongside more rarely heard, \"forgotten\" gems.</p><p>The waltzes about the archipelago and descriptions of nature have their rightful place, but the programme also includes songs inspired by Evert's stay in Argentina (1910–1915).</p><p>Argentine folk music and tango have been very important to both artists: Pentti has both studied under and collaborated with great names within Argentine guitar, such as Eduardo and Juan Falú, Jorge Cardoso and Jorge Morel. Bandoneon virtuoso Mikko has toured extensively accompanying tango singer Martin Alvarado. In addition to Tango, Mikko has accompanied Sven Bertil Taube, among others.</p><p>Pentti Hildén: vocals and guitar<br>Mikko Helenius: bandoneon, accordion, piano and vocals<br>Duration apx 60 min.<br>Language: swedish.</p>"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Fran_Samborombon_till_den_nordiska_kusten_-_En_musikalisk_resa_i_Evert_Taubes_fotspar",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Fran_Samborombon_till_den_nordiska_kusten_-_En_musikalisk_resa_i_Evert_Taubes_fotspar_",
                "en": "http://www.vuotalo.fi/en/events/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Fran_Samborombon_till_den_nordiska_kusten_-_En_musikalisk_resa_i_Evert_Taubes_fotspar"
            },
            "name": {
                "fi": "Från Samborombon till den nordiska kusten - En musikalisk resa i Evert Taubes fotspår – Pentti Hildén & Mikko Helenius",
                "sv": "Från Samborombon till den nordiska kusten - En musikalisk resa i Evert Taubes fotspår – Pentti Hildén & Mikko Helenius",
                "en": "Från Samborombon till den nordiska kusten - En musikalisk resa i Evert Taubes fotspår – Pentti Hildén & Mikko Helenius"
            },
            "short_description": {
                "fi": "Samborombónista Pohjolan rannikoille - Musiikkimatka Evert Tauben jalanjäljissä. Ruotsalaisuuden viikon eli Svenska veckanin tiistaimatinea ruotsiksi.",
                "sv": "Svenska veckans tisdagsmatiné",
                "en": "From Samborombón to the Nordic coast - A musical journey in the footsteps of Evert Taube. Swedish Week (Svenska veckan) Tuesday matinée in swedish."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66779/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66846",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490495,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-21T15:14:00.875409Z",
                    "last_modified_time": "2025-08-21T15:14:00.875432Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776152.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490495/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-21T15:14:00.716977Z",
            "last_modified_time": "2025-08-29T12:14:16.814004Z",
            "date_published": null,
            "start_time": "2025-09-04T14: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": null,
            "description": {
                "fi": "<p>Tuore dokumenttielokuva Can't Look Away (USA, 2025) tarkastelee sosiaalisen median synkempää puolta sekä sen vaikutuksia nuoriin.</p><p>Elokuvassa seurataan oikeusprosessia, jossa ryhmä juristeja pyrkii saattamaan teknologiayhtiöt vastuuseen tuotteidensa ja palveluidensa lapsille ja nuorille aiheuttamista vahingoista.</p><p>Dokumenttielokuva on englanninkielinen ja se näytetään englanninkielisen tekstityksen kanssa.</p><p>Elokuvan kesto on 75 min.<br>Elokuvan ikäsuositus: 12<br>Elokuvan kieli ja tekstitys: englanti</p><p>Näytöksen jälkeen Musiikkisalissa käydään avoin keskustelu aiheen ympärillä. Keskustelun fasilitoi Smartphone Free Childhood Finland -järjestö.</p><p>Paneelissa Elina Kiiski-Kataja (Digirauha ry) ja Anni Pätilä sekä Katariina Leivo (Suojellaan Lapsia ry.)<br>Keskustelutilaisuuden kieli: suomi ja englanti</p><p>Vapaa pääsy</p>",
                "sv": "<p>Den nya dokumentären Can't Look Away (USA, 2025) utforskar den mörkare sidan av sociala medier och dess inverkan på unga människor.</p><p>Filmen följer den juridiska processen där en grupp advokater försöker hålla teknologibolag ansvariga för den skada som deras produkter och tjänster orsakar barn och ungdomar.</p><p>Dokumentärens språk: engelska, engelsk textning<br>Filmens längd: 75 min.</p><p>Efter visningen ordnas en öppen diskussion kring temat. Diskussionen faciliteras av organisationen Smartphone Free Childhood Finland. <br>Diskussionstillfällets språk: finska och engelska</p><p>Fritt inträde.</p>",
                "en": "<p>The recent documentary Can't Look Away (USA, 2025) explores the darker side of social media and its impacts on young people.</p><p>The film follows a legal process where a group of lawyers try to hold tech companies accountable for the harm their products and services cause to children and young people.</p><p>Documentary language: English with captions<br>Duration of the film: 75 min.</p><p>After the screening, the theme will be discussed further in an open conversation. The debate is facilitated by the organisation Smartphone Free Childhood Finland.</p><p>Conversation language: Finnish and English</p><p>Free entry.</p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/64DE1CAA27A6A786F0BD8331AC57ACEE/Can_t_Look_Away_-dokumenttielokuva_12_ja_avoin_keskustelu",
                "sv": "http://www.stoa.fi/sv/evenemang/event/64DE1CAA27A6A786F0BD8331AC57ACEE/Dokumentaren_Can_t_Look_Away_12_och_oppen_diskussion",
                "en": "http://www.stoa.fi/en/events/event/64DE1CAA27A6A786F0BD8331AC57ACEE/Can_t_Look_Away_documentary_film_12_and_open_discussion"
            },
            "name": {
                "fi": "Can't Look Away -dokumenttielokuva (12) ja avoin keskustelu",
                "sv": "Dokumentären Can't Look Away (12) och öppen diskussion",
                "en": "Can't Look Away documentary film (12+) and open discussion"
            },
            "short_description": {
                "fi": "Tuore dokumenttielokuva Can't Look Away (USA, 2025) tarkastelee sosiaalisen median synkempää puolta sekä sen vaikutuksia nuoriin.",
                "sv": "Den nya dokumentären Can't Look Away (USA, 2025) utforskar den mörkare sidan av sociala medier och dess inverkan på unga människor.",
                "en": "The recent documentary Can't Look Away (USA, 2025) explores the darker side of social media and its impacts on young people."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66846/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66682",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1162433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-02T08:13:43.171942Z",
                    "last_modified_time": "2025-07-02T08:13:43.171958Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772202.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1162433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-02T08:13:43.042214Z",
            "last_modified_time": "2025-08-29T11:17:00.201089Z",
            "date_published": null,
            "start_time": "2025-09-13",
            "end_time": "2025-10-04",
            "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": null,
            "description": {
                "fi": "<p>Omaperäinen lähiökulttuurin helmi Malmi Vice juhlistaa 20-vuotista eloaan värikkäällä näyttelyllä Malmitalon galleriassa.</p><p>Taiteilija <b>Valari Tynkkysen </b> luoma ironinen ja oivaltava Malmi Vice sai alkunsa vuosien 2004–2005 taitteessa. Noin 20 vuotta myöhemmin tämä suomenlaajuiseksi levinnyt paikallinen ilmiö on edelleen voimissaan!</p><p>Malmitalon galleria ja aula täyttyy syyskuussa eri tekniikoin valmistetuista töistä, jotka ovat läpileikkauksia Malmi Vice logoista, printeistä ja estetiikasta 20 vuoden ajalta.  Jos luulet, että ruska on syksyn värikkäin tapahtuma, olet väärässä.</p><p>Näyttelyn lisäksi Miami Vice näkyy Malmitalossa järjestettävässä Malmi Mayhemi-ilmaistapahtumassa 13.9. klo 13–19, jossa tarjoillaan lähiökulttuurin, urbaanin taiteen ja katumuodin parhaita paloja.</p>",
                "sv": "<p>Den unika internet- och memekulturens pärla Malmi Vice firar sitt 20-åriga liv med en färgstark utställning i galleriet i Malms kulturhus.</p><p>Den ironiska och insiktsfulla Malmi Vice, som skapades av konstnären Valari Tynkkynen, fick sin början i årsskiftet 2004–2005. Ungefär 20 år senare är detta lokala fenomen som har spridit sig över hela Finland fortfarande i full gång!</p><p>I september fylls galleriet och hallentrén i Malms kulturhus med arbeten som skapats med olika tekniker och som genomskärs av Malmi Vices logotyper, print och estetik under 20 år. Om du tror att ruskan är höstens mest färgstarka händelse, har du fel.</p><p>Förutom i utställningen visas Malmi Vice på gratisevenemanget Malmi Mayhem i Malms kulturhus den 13 september kl. 13–19, som serverar det bästa av förortskultur, urban konst och gatumode.</p><p>Fritt inträde</p>",
                "en": "<p>An original gem of internet and meme culture, Malmi Vice celebrates its 20th anniversary with a colourful exhibition at Malmitalo's gallery.</p><p>The ironic and insightful Malmi Vice, created by artist Valari Tynkkynen, was born in 2004–2005. Nearly 20 years on, this local phenomenon, which has now spread across Finland, is still going strong!</p><p>In September, Malmitalo's gallery and lobby will be filled with artworks made with various techniques, offering a cross-section of Malmi Vice logos, prints and aesthetics from across two decades. If you think autumn leaves are the most colourful thing this season, think again.</p><p>In addition to the exhibition, Malmi Vice will also take over the free Malmi Mayhemi event at Malmitalo on 13 September from 13:00 to 19:00, featuring the best of suburban culture, urban art and street fashion.</p><p>Free entry</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BF675A976F98603E8E6E42CA89953EC4/Live_Love_Lahio_Malmi_Vice_20_vuotta_juhlanayttely",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BF675A976F98603E8E6E42CA89953EC4/LIVE_LOVE_LAHIO_MALMI_VICE_20_AR",
                "en": "http://www.malmitalo.fi/en/events/event/BF675A976F98603E8E6E42CA89953EC4/LIVE_LOVE_SUBURBS_MALMI_VICE_20_YEARS"
            },
            "name": {
                "fi": "Live Love Lähiö – Malmi Vice 20 vuotta juhlanäyttely",
                "sv": "LIVE LOVE LÄHIÖ – MALMI VICE 20 ÅR",
                "en": "LIVE LOVE SUBURBS – MALMI VICE 20 YEARS"
            },
            "short_description": {
                "fi": "Omaperäinen lähiökulttuurin helmi Malmi Vice juhlistaa 20-vuotista eloaan värikkäällä näyttelyllä Malmitalon galleriassa.",
                "sv": "Den unika internet- och memekulturens pärla Malmi Vice firar sitt 20-åriga liv med en färgstark utställning i galleriet i Malms kulturhus.",
                "en": "An original gem of internet and meme culture, Malmi Vice celebrates its 20th anniversary with a colourful exhibition at Malmitalo's gallery."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66682/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}