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 ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&page=19&weekday=6%2C7
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 4968,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=20&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=18&weekday=6%2C7"
    },
    "data": [
        {
            "id": "kulke:66710",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-magnum-bonum-3921843/#calendar-start=2025-10",
                        "sv": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-magnum-bonum-3921843/#calendar-start=2025-10",
                        "en": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-magnum-bonum-3921843/#calendar-start=2025-10"
                    },
                    "price": {
                        "fi": "22 € / 17 €",
                        "sv": "22 € / 17 €",
                        "en": "22 € / 17 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1218497,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T11:12:45.901540Z",
                    "last_modified_time": "2025-07-09T11:12:45.901553Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774927.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1218497/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-09T11:12:45.803856Z",
            "last_modified_time": "2025-09-01T08:14:05.032124Z",
            "date_published": null,
            "start_time": "2025-10-24T15: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6202E1883AE509F3C97F16EA0E12199A/Magnum_Bonum_SVE_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/6202E1883AE509F3C97F16EA0E12199A/Magnum_Bonum_SVE_",
                "en": "http://www.vuotalo.fi/en/events/event/6202E1883AE509F3C97F16EA0E12199A/Magnum_Bonum_SVE_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Magnum Bonum (SVE) – Klubb Ankdamm",
                "sv": "Magnum Bonum (SVE) – Klubb Ankdamm",
                "en": "Magnum Bonum (SVE) – Klubb Ankdamm"
            },
            "provider": null,
            "short_description": {
                "fi": "Useista 80-luvun hiteistä tunnettu ruotsalainen Magnum Bonum esiintyy Vuotalossa!",
                "sv": "Svenska Magnum Bonum, kända för flera 80-talshits, uppträder i Nordhuset!",
                "en": "Swedish Magnum Bonum, known for several 80s hits, will perform at Vuotalo!"
            },
            "description": {
                "fi": "<p>Useista 80-luvun hiteistä tunnettu ruotsalainen Magnum Bonum esiintyy Vuotalossa!</p><p>Kappaleet kuten Hög Hatt, Marie, Loverboy, Digital Panik, Radio Love, Gigolo, Vi vill ha mer ja Skateboard soivat ahkerasti radiossa 1980-luvulla.</p><p>Magnum Bonum perustettiin Huddingessa jo 1970-luvun puolivälissä. Yhtye on myynyt yli 500 000 levyä ja kiertänyt ahkerasti Ruotsissa ja Suomessa vuosina, etenkin huippuvuosinaan 1978–1985. Bändi piti muutaman vuoden tauon, kunnes alkoi soittamaan jälleen 1990-luvun alussa.</p><p>Yhtyeen jäsenet ovat vuosien aikana vaihdelleet ja nykinen timanttinen kokoonpano on tässä:<br>• Mats Hedström – kitara ja laulu, joka on jatkanut musiikin parissa ja elättää itsensä lauluntekijänä ja tuottajana, mm. yhdellä Billboard-ykköshittillä Yhdysvalloissa.<br>• Per Schiller – kitara ja laulu, työskentelee rakennusalalla.<br>• Mark Tysper – basso, yrittäjä.<br>• Dan Mazreliez – rummut, työskentelee ääniteknikkona elokuva- ja tv-alalla, mm. Millennium-trilogian parissa.</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p><p>Kesto: n. 120 min. sis. väliaika.</p>",
                "sv": "<p>Svenska Magnum Bonum, kända för flera 80-talshits, uppträder i Nordhuset!</p><p>Låtar som Hög Hatt, Marie, Loverboy, Digital Panik, Radio Love, Gigolo, Vi vill ha mer och Skateboard spelades flitigt i radion under 1980-talet.</p><p>Magnum Bonum bildades i Huddinge redan i mitten av 1970-talet. Bandet har sålt över 500 000 skivor och turnerat flitigt i Sverige och Finland, särskilt under sina glansår 1978–1985. Bandet tog en paus på några år, men började spela igen i början av 1990-talet.</p><p>Bandets medlemmar har varierat genom åren och den nuvarande lysande uppsättningen är denna:<br>Mats Hedström –  gitarr och sång,  som har fortsatt med musiken och försörjt sig som låtskrivare och producent med bland annat en billboard 1 i USA <br>Per Schiller –  gitarr och sång som jobbar i byggbranchen  <br>Mark Tysper –  bas , entreprenör<br>Dan Mazreliez –  trummor, jobbar som ljudtekniker inom film och tv bland annat gjort Millenium trilogin.<br> <br>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.</p><p>Längd: ca 120 min. inkl. paus.</p>",
                "en": "<p>Swedish Magnum Bonum, known for several 80s hits, will perform at Vuotalo!</p><p>Songs like Hög Hatt, Marie, Loverboy, Digital Panik, Radio Love, Gigolo, Vi vill ha mer and Skateboard were frequently played on the radio during the 1980s.</p><p>Magnum Bonum was founded in Huddinge already in the mid-1970s. The band has sold over 500,000 records and toured extensively in Sweden and Finland, especially during its peak years 1978–1985. After a break of a few years, the band started performing again in the early 1990s.</p><p>The band’s members have changed over the years, and the current brilliant lineup is:<br>Mats Hedström – Guitar, Vocals<br>Per Schiller – Guitar, Vocals<br>Mark Tysper – Bass, Vocals<br>Dan Mazreliez  – Percussions, Vocals</p><p>Club night, A-rights, refreshments provided by Café Pokkari, the doors will open at 17.30.<br> <br>Duration: apx. 120 min. with intermission.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66710/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000148",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849161/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000148/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000148/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000148/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360030,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:19.912887Z",
                    "last_modified_time": "2025-03-17T22:17:19.912902Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/9c/af/kuningatar222-tickets_369620_3121710_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360030/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:20.629627Z",
            "last_modified_time": "2025-08-30T22:16:27.654793Z",
            "date_published": null,
            "start_time": "2025-08-30T15: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,
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=en"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kuningatarnäytelmä"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Jussi Moila - Sini Pesonen KUNINGATARNÄYTELMÄ Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654."
            },
            "description": {
                "fi": "<p>Jussi Moila - Sini Pesonen<br><strong>KUNINGATARNÄYTELMÄ</strong></p><p>Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654. Jussi Moilan kirjoittama ja Sini Pesosen ohjaama historiallinen nykydraama hengittää vahvasti tätä päivää teemoillaan vallasta, sukupuolesta ja rakkaudesta.</p><p>Nuoreen Kristinaan kohdistuu järkälemäisiä odotuksia. Hän on tyttö, jota kasvatetaan kuninkaaksi. Nainen, jonka tulee turvata kuningassuku avioitumalla ja synnyttämällä perillinen. Hallitsija, jonka täytyy olla sodassa ryvettyneen kansakuntansa keulakuva ja johtaja.</p><p>Mutta Kristina haluaa jotain aivan muuta. Hän haluaa tehdä synkästä ja sivistymättömästä Ruotsista tieteen ja taiteen johtotähden, eurooppalaisen vapauden ja sivistyksen valtakunnan. Ja Kristina haluaa hovineitonsa Bellen.</p><p>Ristipaine julkisen roolin ja yksityiselämän välillä synnyttää hurjaa, hauskaa ja koskettavaa draamaa. Anarkistisen kuningatar Kristinan kiehtovassa roolissa nähdään Elsi Sloan. Belleä näyttelee Aino Sirje.</p><p>Rooleissa: Rauno Ahonen, Pekka Huotari, Vappu Nalbantoglu, Aino Seppo, Aino Sirje, Elsi Sloan, Alvari Stenbäck, Mikko Vihma, Joachim Wigelius, Vilma Sippola</p><p>Ohjaus: Sini Pesonen<br>Koreografia: Kaisa Torkkel<br>Lavastus: Tinja Salmi<br>Pukusuunnittelu: Henna-Riikka Taskinen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Valosuunnittelu: Kari Leppälä<br>Videosuunnittelu: Tinja Salmi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Henna Piirto<br>Erikoistehosteet: Markku Ahonen</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000148/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19999866",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849158/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999866/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999866/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999866/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360031,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:20.182714Z",
                    "last_modified_time": "2025-03-17T22:17:20.182730Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360031/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:20.518482Z",
            "last_modified_time": "2025-08-30T22:16:27.516444Z",
            "date_published": null,
            "start_time": "2025-08-30T15: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,
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Let'S Play Business Ensi-Ilta"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella."
            },
            "description": {
                "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Tiina Peltoneni, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999866/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19999844",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849158/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999844/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999844/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999844/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360031,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:20.182714Z",
                    "last_modified_time": "2025-03-17T22:17:20.182730Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360031/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:20.392858Z",
            "last_modified_time": "2025-08-29T22:16:24.692072Z",
            "date_published": null,
            "start_time": "2025-08-29T15: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,
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Let'S Play Business Ennakko"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella."
            },
            "description": {
                "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Tiina Peltoneni, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999844/?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": [],
                    "info_url": null,
                    "price": null,
                    "description": 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,
            "location_extra_info": null,
            "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"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Ylä-Malmin toripäivä",
                "sv": "Ylä-Malmin toripäivä",
                "en": "Ylä-Malmi Market Day"
            },
            "provider": null,
            "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!"
            },
            "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>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66956/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66955",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoy-teatteri/itsenaeisyyspaeivaen-rauhanmatinea-aeiti-maa-isaenmaa-3951690/"
                    },
                    "price": {
                        "fi": "10-30 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490567,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-29T12:14:36.987794Z",
                    "last_modified_time": "2025-08-29T12:14:36.987812Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777063.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490567/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-29T12:14:36.877671Z",
            "last_modified_time": "2025-08-29T14:14:22.473844Z",
            "date_published": null,
            "start_time": "2025-12-06T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/25390F6944DD0778E8FE171583D04C15/Itsenaisyyspaivan_rauhanmatinea_-_Aiti_maa_-_isanmaa"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Itsenäisyyspäivän rauhanmatinea - Äiti maa - isänmaa"
            },
            "provider": {
                "fi": "Suomen Rauhanliitto - Finlands Fredsförbund ry"
            },
            "short_description": null,
            "description": {
                "fi": "<p>Suomen Rauhanliiton ja Sadankomitean perinteisessä itsenäisyyspäivä matineassa, 6.12 klo 13-15.30 on mukana kertomassa suhteestaan äitimaa – isänmaahan sekä rauhaan useita yhteiskunnan vaikuttajia tieteen, taiteen ja yhteiskunnan muilta aloilta sekä musiikkia ja tanssia kaikkien ikäluokkien makuun.</p><p>Esiintyjinä mm. Kjell Westö, Meri Valkama, CMI - Martti Ahtisaari Peace Foundation, Pekka Haavisto sekä Paleface, Harri Saksala, Tarja Rasmussen tanssiopisto ja paljon lisää tulossa.  Tilaisuuden juontaa Jukka Puotila.</p><p>Tilaisuus on hyvä aloitus Itsenäisyyspäivän viettoon.</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66955/?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": [],
                    "info_url": null,
                    "price": null,
                    "description": 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,
            "location_extra_info": null,
            "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"
            },
            "provider_contact_info": null,
            "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"
            },
            "provider": null,
            "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."
            },
            "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>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66682/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqkb5jzq",
            "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: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/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490574,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-29T10:38:55.145125Z",
                    "last_modified_time": "2025-08-29T10:38:55.145140Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/b153e314-33c1-4eb1-a6ec-f9ef32536455.jpg",
                    "cropping": "130,0,409,279",
                    "photographer_name": "",
                    "alt_text": "Kolme muusikkoa lavalla ja teksti Triolé",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490574/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-29T10:42:13.956433Z",
            "last_modified_time": "2025-08-29T10:42:13.956449Z",
            "date_published": "2025-08-29T10:37:00Z",
            "start_time": "2025-08-30T09:00:00Z",
            "end_time": "2025-08-30T09: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,
            "location_extra_info": {
                "fi": "Stage"
            },
            "info_url": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Trio Triolé Ison Omenan stagella"
            },
            "provider": null,
            "short_description": {
                "fi": "Elävänmusiikin matinea Espoopäivän kunniaksi"
            },
            "description": {
                "fi": "<p>Trio Triolé esiintyy Stagella!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5jzq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22sqzi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490248,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-06-04T08:06:11.047248Z",
                    "last_modified_time": "2025-06-04T08:06:11.047261Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/dd7b89f1-9f20-496a-a708-585a388bbda2.png",
                    "cropping": "164,0,639,476",
                    "photographer_name": "",
                    "alt_text": "Kuvassa lukee adg- Asian dancing group",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490248/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-04T08:11:03.320397Z",
            "last_modified_time": "2025-08-29T10:16:05.564590Z",
            "date_published": null,
            "start_time": "2025-08-30T08:00:00Z",
            "end_time": "2025-08-30T13: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,
            "location_extra_info": {
                "fi": "Salonki",
                "en": "Salonki"
            },
            "info_url": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Embrace the Rhythm of Asia - tapahtuma",
                "en": "Embrace the Rhythm of Asia - Espoo Päivä 30th of August"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa Embrace the rhythm of Asia-tapahtumaan Salonkiin Espoo-päivänä!",
                "en": "Welcome to Embrace the rhythm of Asia event! There will be a teacher-led dance workshop, performances and more!"
            },
            "description": {
                "fi": "<p>Ohjelmassa on tanssityöpaja, esityksiä ja paljon muuta. Tervetuloa!</p><p><br></p><p>Tapahtuman ohjelma englanniksi:</p><p><br></p><p>Our Asian Dancing Group is dedicated to bringing the rich and diverse dance traditions of Asia to life. From traditional folk dances to contemporary interpretations, we celebrate the artistry, culture, and beauty of Asian movement. Event is held in Lippulaiva Library's Salonki space.</p><p>There will be teacher-led Chinese dance, Korean dance workshop, on stage performances and more!</p><p><br></p><p>Program</p><p>11:00 -11:15 Opening ceremony</p><p>11:15-11:20&nbsp;Dance&nbsp;by Asian dance group (ADG)</p><p>11:20-11:30 Chinese woman dance by Jade dancing group</p><p>11:30-12:00 Chinese ancient music instrument play by Sir Hu</p><p>12:00-12,05,Thai kid dance by the Finnish Thai Association</p><p>12:05-12:10 Kid piano play by Mengya Chinese school</p><p>12:10-12:20 Kid sing poems by Mengya Chinese school</p><p>12:20-12:50 Chinese dance workshop by ADG</p><p>13:00-13:40 break (Chinese calligraphy and&nbsp;painting&nbsp;art exhibition by Qianhu art institute )</p><p>13:40-13:50 Chinese round fan dance by ADG</p><p>13:50-14:00 Chinese woman dance by Jade dancing group</p><p>14:00-14:20 math games by Xiangxiang math group</p><p>14:20-14:28: Indian kid dance by the Finnish Thai Association</p><p>14:28-15:00 Korean dance workshop by ADG</p><p>15:00-15:10 Kid duo sinning and piano by Mengya Chinese school</p><p>15:10-15:30 Indian dance work shop by the Finnish Thai association&nbsp;</p><p><br></p><p>Free entrance!</p><p>More information: asddance0@gmail.com</p><p>asiandancegroup.fi</p><p><br></p><p>The event is in English and Finnish.</p>",
                "en": "<p>There will be a teacher-led dance workshop, performances and more!</p><p><br></p><p>The event programme:</p><p><br></p><p>Our Asian Dancing Group is dedicated to bringing the rich and diverse dance traditions of Asia to life. From traditional folk dances to contemporary interpretations, we celebrate the artistry, culture, and beauty of Asian movement. Event is held in Lippulaiva Library's Salonki space.</p><p>There will be teacher-led Chinese dance, Korean dance workshop, on stage performances and more!</p><p><br></p><p>Program</p><p>11:00 -11:15 Opening ceremony</p><p>11:15-11:20&nbsp;Dance&nbsp;by Asian dance group (ADG)</p><p>11:20-11:30 Chinese woman dance by Jade dancing group</p><p>11:30-12:00 Chinese ancient music instrument play by Sir Hu</p><p>12:00-12,05,Thai kid dance by the Finnish Thai Association</p><p>12:05-12:10 Kid piano play by Mengya Chinese school</p><p>12:10-12:20 Kid sing poems by Mengya Chinese school</p><p>12:20-12:50 Chinese dance workshop by ADG</p><p>13:00-13:40 break (Chinese calligraphy and&nbsp;painting&nbsp;art exhibition by Qianhu art institute )</p><p>13:40-13:50 Chinese round fan dance by ADG</p><p>13:50-14:00 Chinese woman dance by Jade dancing group</p><p>14:00-14:20 math games by Xiangxiang math group</p><p>14:20-14:28: Indian kid dance by the Finnish Thai Association</p><p>14:28-15:00 Korean dance workshop by ADG</p><p>15:00-15:10 Kid duo sinning and piano by Mengya Chinese school</p><p>15:10-15:30 Indian dance work shop by the Finnish Thai association&nbsp;</p><p><br></p><p>Free entrance!</p><p>More information: asddance0@gmail.com</p><p>asiandancegroup.fi</p><p>The event is in English and Finnish.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22sqzi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66947",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490566,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-29T10:15:41.458744Z",
                    "last_modified_time": "2025-08-29T10:15:41.458760Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776500.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490566/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-29T10:15:41.354498Z",
            "last_modified_time": "2025-08-29T10:15:41.587004Z",
            "date_published": null,
            "start_time": "2025-09-19T15: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8E05F904483F1E8104C7E893F9F72A77/The_Last_Viking_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8E05F904483F1E8104C7E893F9F72A77/The_Last_Viking_16_",
                "en": "http://www.malmitalo.fi/en/events/event/8E05F904483F1E8104C7E893F9F72A77/The_Last_Viking_16_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "The Last Viking (16) – Kino Helios",
                "sv": "The Last Viking (16) – Kino Helios",
                "en": "The Last Viking (16) – Kino Helios"
            },
            "provider": null,
            "short_description": {
                "fi": "Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa."
            },
            "description": {
                "fi": "<p>Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa.</p><p>Ennen sitä hänen on kuitenkin saatava käsiinsä ryöstösaalis, jonka vuoksi hän joutui vankilaan – rahat, jotka hänen kaksoisveljensä Manfred on piilottanut. Valitettavasti Manfred on vetäytynyt traumaattisten kokemusten vuoksi uuteen alter egoonsa, Beatlesien keulahahmoon John Lennoniin. Ja tämä \"John\" ei tiedä mitään kadonneista rahoista.</p><p>Ankerin vanha rikoskumppani Nice Flemming sen sijaan muistaa rahat hyvin ja vaatii nyt omaa osuuttaan. Veljekset palaavat kotiseudulleen etsimään rahoja, mutta löytävät kätköistä paljon enemmän kuin osasivat odottaa…</p><p>Ikäraja: 16<br>Kesto: 116 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66947/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66946",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490565,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-29T10:15:39.665080Z",
                    "last_modified_time": "2025-08-29T10:15:39.665097Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776496.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490565/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-29T10:15:39.524728Z",
            "last_modified_time": "2025-08-29T10:15:39.826826Z",
            "date_published": null,
            "start_time": "2025-09-13T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C35842F9C71C56A967E18278CEDC26AC/The_Last_Viking_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C35842F9C71C56A967E18278CEDC26AC/The_Last_Viking_16_",
                "en": "http://www.malmitalo.fi/en/events/event/C35842F9C71C56A967E18278CEDC26AC/The_Last_Viking_16_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "The Last Viking (16) – Kino Helios",
                "sv": "The Last Viking (16) – Kino Helios",
                "en": "The Last Viking (16) – Kino Helios"
            },
            "provider": null,
            "short_description": {
                "fi": "Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa."
            },
            "description": {
                "fi": "<p>Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa.</p><p>Ennen sitä hänen on kuitenkin saatava käsiinsä ryöstösaalis, jonka vuoksi hän joutui vankilaan – rahat, jotka hänen kaksoisveljensä Manfred on piilottanut. Valitettavasti Manfred on vetäytynyt traumaattisten kokemusten vuoksi uuteen alter egoonsa, Beatlesien keulahahmoon John Lennoniin. Ja tämä \"John\" ei tiedä mitään kadonneista rahoista.</p><p>Ankerin vanha rikoskumppani Nice Flemming sen sijaan muistaa rahat hyvin ja vaatii nyt omaa osuuttaan. Veljekset palaavat kotiseudulleen etsimään rahoja, mutta löytävät kätköistä paljon enemmän kuin osasivat odottaa…</p><p>Ikäraja: 16<br>Kesto: 116 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66946/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agmpkiokre",
            "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: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": [],
                    "info_url": null,
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "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:56/?format=api"
                }
            ],
            "created_time": "2025-08-29T09:21:29.269504Z",
            "last_modified_time": "2025-08-29T09:37:37.116750Z",
            "date_published": null,
            "start_time": "2025-08-31T09:30:00Z",
            "end_time": "2025-08-31T11: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-08-29T12:30:00+03:00",
            "enrolment_end_time": "2025-08-30T12:30:00+03:00",
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kokeilu",
                "sv": "",
                "en": ""
            },
            "provider": null,
            "short_description": {
                "fi": "Kokeilu",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Kokeilu</p>\n",
                "sv": "",
                "en": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agmpkiokre/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66945",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490563,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-29T09:13:46.435865Z",
                    "last_modified_time": "2025-08-29T09:13:46.435887Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776504.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490563/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-29T09:13:46.337686Z",
            "last_modified_time": "2025-08-29T09:13:46.566433Z",
            "date_published": null,
            "start_time": "2025-09-20T15: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D74E194E43B674082FF649D5ED06FD82/Downton_Abbey_Viimeinen_naytos_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D74E194E43B674082FF649D5ED06FD82/Downton_Abbey_Viimeinen_naytos_S_",
                "en": "http://www.malmitalo.fi/en/events/event/D74E194E43B674082FF649D5ED06FD82/Downton_Abbey_Viimeinen_naytos_S_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Downton Abbey – Viimeinen näytös (S) – Kino Helios",
                "sv": "Downton Abbey – Viimeinen näytös (S) – Kino Helios",
                "en": "Downton Abbey – Viimeinen näytös (S) – Kino Helios"
            },
            "provider": null,
            "short_description": {
                "fi": "Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle."
            },
            "description": {
                "fi": "<p>Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle.</p><p>Kun rakastetut hahmot yrittävät luotsata Downton Abbeyn kartanoa tulevaisuuteen, heidän on hyväksyttävä muutoksen tuulet ja aloitettava uusi ajanjakso.</p><p>Ikäraja: Sallittu kaikenikäisille<br>Kesto: 124 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66945/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66943",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490561,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-29T09:13:43.237268Z",
                    "last_modified_time": "2025-08-29T09:13:43.237285Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776493.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490561/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-29T09:13:43.077349Z",
            "last_modified_time": "2025-08-29T09:13:43.403919Z",
            "date_published": null,
            "start_time": "2025-09-12T12: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EF6CF8AB1611899D90DA135FA4CEB6C1/Downton_Abbey_Viimeinen_naytos_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EF6CF8AB1611899D90DA135FA4CEB6C1/Downton_Abbey_Viimeinen_naytos_S_",
                "en": "http://www.malmitalo.fi/en/events/event/EF6CF8AB1611899D90DA135FA4CEB6C1/Downton_Abbey_Viimeinen_naytos_S_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Downton Abbey – Viimeinen näytös (S) – Kino Helios",
                "sv": "Downton Abbey – Viimeinen näytös (S) – Kino Helios",
                "en": "Downton Abbey – Viimeinen näytös (S) – Kino Helios"
            },
            "provider": null,
            "short_description": {
                "fi": "Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle."
            },
            "description": {
                "fi": "<p>Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle.</p><p>Kun rakastetut hahmot yrittävät luotsata Downton Abbeyn kartanoa tulevaisuuteen, heidän on hyväksyttävä muutoksen tuulet ja aloitettava uusi ajanjakso.</p><p>Ikäraja: Sallittu kaikenikäisille<br>Kesto: 124 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66943/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66179",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178694,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T09:13:57.420870Z",
                    "last_modified_time": "2025-07-04T09:13:57.420886Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772438.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178694/?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-07-04T09:13:57.314936Z",
            "last_modified_time": "2025-08-29T08:13:55.244643Z",
            "date_published": null,
            "start_time": "2025-10-11T10:00:00Z",
            "end_time": "2025-10-11T12: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D56BBBC212B789696FA06FBA81E987A2/Rusinat_pullasta_-_Alyvapaat_Taidepajojen_riemua_jo_10_vuotta_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D56BBBC212B789696FA06FBA81E987A2/Russinen_ur_bullen_De_intelligensbefriade_Konstworkshopparna_fyller_10_ar_",
                "en": "http://www.annantalo.fi/en/events/event/D56BBBC212B789696FA06FBA81E987A2/Picking_the_best_bits_Alyvapaat_Joy_of_art_workshops_for_a_decade_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Rusinat pullasta - Älyvapaat: Taidepajojen riemua jo 10 vuotta! – Huom! Poikkeava kellonaika.",
                "sv": "Russinen ur bullen – De intelligensbefriade: Konstworkshopparna fyller 10 år! – Obs! Annat klockslag än normalt.",
                "en": "Picking the best bits – Älyvapaat: Joy of art workshops for a decade! – Please note the different time."
            },
            "provider": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Rusinat pullasta</b></p><p>Nyt poimitaan parhaat päältä! Pajoissa pääset tekemään unelmista asumuksia, osallistumaan Annantalon ajoihin ja kenties käymään myös kuussa! Juhlan kunniaksi tehdään myös omia juhlatamineita, joita voi esitellä muotinäytöksessä.</p><p>Tapahtuman järjestävät yhdessä Annantalo ja vapaaehtoisten Älyvapaa-yhteisö jo kymmenettä kertaa – luvassa siis taidepajojen riemua täyden kympin verran!</p><p>Tapahtuma on maksuton, ei ennakkoilmoittautumista.</p><p>Tarkempi ohjelma julkaistaan lähempänä tapahtumaa.<br>Työpajat käynnissä klo 13–15<br>Huom! Viimeiset osallistujat pajoihin klo 15.</p><p>Ikäsuositus: kaikenikäisille, alle 8-v lapset aikuisen kanssa.<br>Työskentelykieli: suomi</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66179/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22l3oy",
            "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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490193,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-07-02T10:08:30.034509Z",
                    "last_modified_time": "2025-07-02T10:08:30.034532Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f4be16e2-9d55-4a46-8b02-5663131c94e0.png",
                    "cropping": "76,0,864,788",
                    "photographer_name": "Cipriano Oquiniame",
                    "alt_text": "taiteilija Cipriano Oquiniamen maalaama Mona Lisa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490193/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T11:14:42.243456Z",
            "last_modified_time": "2025-08-29T06:46:38.856559Z",
            "date_published": null,
            "start_time": "2025-08-30T11:00:00Z",
            "end_time": "2025-08-30T14: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,
            "location_extra_info": {
                "fi": "Stage",
                "en": "Stage"
            },
            "info_url": {
                "fi": "https://lu.ma/weareinversus",
                "en": "https://lu.ma/weareinversus"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Espoo-päivä: ART IS FUNTASTIC! työpaja taiteilijan Cipriano Oquiniame kanssa - luolamaalauksista moderniin taiteeseen (englanniksi) ",
                "en": "Espoo day: ART IS FUNTASTIC! with Cipriano Oquiniame - From Cave Paintings to Modern Art."
            },
            "provider": {
                "fi": "weareinversus",
                "en": "weareinversus"
            },
            "short_description": {
                "fi": "Tule mukaan erittäin interaktiiviseen ja hauskaan ARTΞ-historiatyöpajaan Ison Omenan kirjastoon!",
                "en": "Join us for a highly interactive and fun ARTΞ history workshop at Iso Omena Library! "
            },
            "description": {
                "fi": "ARTΞ IS FUNTASTIC! Työpaja taiteilija Cipriano Oquiniamen kanssa -&nbsp;Luolamaalauksista nykytaiteeseen.<p><strong>Tule mukaan erittäin interaktiiviseen ja hauskaan ARTΞ-historiatyöpajoihin</strong></p><p>(Työpajat englanniksi)</p><p>ARTΞ IS FUNTASTIC -kiertueen aikataulu:</p><p>LA 23.8 | LIPPULAIVA | Kajuutta klo 14-16</p><p>KE 27.8 | SELLO | Akseli klo 16-18</p><p>TO 28.8 | ENTRESSE | Sininen huone (osana Itämeri-päivän ohjelmaa) klo 16-18.</p><p>LA 30.8 | ISO OMENA | Stage (Espoo-päivä) klo 14-17 -&gt; pidempi hop on- hop off -työpaja</p><p>LA 6.9. | TAPIOLA | Kaija klo 14-16</p><p><br></p><p>INV∃RSUS™ Team: Cipriano Oquiniame (LIVE Portugalista 🤩) ja Alfredo Abambres ─ vievät meidät hämmästyttävälle (virtuaaliselle) matkalle taiteen maailmaan.</p><p>Alle kahdessa tunnissa \"vierailemme\" taiteilijan studiossa Portugalissa, tutkimme taiteen kehitystä muinaisista luolapiirroksista nykyaikaisiin graffiteihin ja sen innoittamina herätämme mielikuvituksemme henkiin paperilla kokeilemalla värejä, muotoja ja tekniikoita. 🌿</p><p>Työpajan aikana luomme omat uniikit mestariteoksemme 🖌️, askartelemme taskukokoisen taidehistorian oppaan 📑 ja saamme vielä muutamia yllätyksiä. 🫣&nbsp;</p><p>Oletko valmis?&nbsp;</p><p>Tehdään yhdessä!&nbsp;</p><p><br></p><p>Muutokset mahdollisia!</p><p><br></p><p><br></p><p>#HelloEspoo</p><p>#Espoopäivä</p>",
                "en": "ARTΞ IS FUNTASTIC! with Cipriano Oquiniame\n- From Cave Paintings to Modern Art.<p><strong>Join us for a highly interactive and fun ARTΞ history workshops</strong></p><p>ARTΞ IS FUNTASTIC tour schedule:</p><p>Sat 23.8 | LIPPULAIVA Library | Kajuutta from 14-16.</p><p>Wed 27.8 | SELLO Library | Akseli from 16-18</p><p>Thur 28.8 | ENTRESSE Library | Sininen huone (as part of the Baltic Sea Day programme) 16-18.</p><p>Sat 30.8 | ISO OMENA Library | Stage (Espoo Day) 14-17 -&gt; longer hop on - hop off workshop</p><p>Sat 6.9. | TAPIOLA Library | Kaija from 14-16</p><p>INV∃RSUS™ Team: Cipriano Oquiniame (LIVE from Portugal 🤩) and Alfredo Abambres ─ will take us on an amazing (virtual) journey through the world of art.</p><p>In under 2 hours, we'll \"visit\" the artist studio in Portugal, explore the evolution of art from ancient cave drawings to modern graffiti, and inspired by it, we'll bring our imagination to life on paper, experimenting with colors, shapes, and techniques. 🌿</p><p>During the workshop we'll create our own unique masterpieces 🖌️, craft a pocket-sized art history guide 📑, and get a few more surprises. 🫣</p><p>&nbsp;</p><p>Are you ready?</p><p>Let's play!</p><p><br></p><p>Changes are possible!</p><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22l3oy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqkb5kka",
            "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:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490575,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-29T06:36:28.994031Z",
                    "last_modified_time": "2025-08-29T06:36:28.994045Z",
                    "name": "Fixa garderoben!",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7a5ee23b-2619-454c-82bf-8ac6bd3a5935.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Parsintamateriaalia ja Tuuli Solhagen",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490575/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-29T06:43:26.280535Z",
            "last_modified_time": "2025-08-29T06:43:26.280552Z",
            "date_published": "2025-08-29T06:41:07.483000Z",
            "start_time": "2025-09-20T11:00:00Z",
            "end_time": "2025-09-20T13: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,
            "location_extra_info": {
                "fi": "Kirjaston Paja",
                "sv": "Verkstaden / \"Pajan\""
            },
            "info_url": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Fixa garderoben! Korjaustyöpaja ruotsiksi",
                "sv": "Fixa garderoben! Laga och lappa-verkstad"
            },
            "provider": null,
            "short_description": {
                "fi": "Vaatteiden korjaustyöpaja",
                "sv": "Lär dig allt om hållbar klädkonsumtion!\n"
            },
            "description": {
                "fi": "<p>Dags att ta hand om höstgarderoben? Men vad ska du göra när favoritjeansen fått hål på knäna och festskjortan har fläckar som inte går bort? Hur sköter du bäst om dina älsklingsplagg?</p><p>Det får du lära dig på bibbans laga och lappa-lördag med Tuuli Solhagen från Espoo Mending och handarbetsaktivisten Niko Lindgren också känd som Mending Neko . Vi inleder verkstaden med en introduktion till hållbar klädkonsumtion och efter det får du hjälp med att reparera dina egna plagg. Ta med dig ett trasigt plagg - material och verktyg bjuder vi på.</p><p>Varmt välkommen till verkstaden eller ”Pajan” på Iso Omena bibliotek i Mattby 20.9 kl. 14-16!</p><p>Evenemanget ordnas av Hela Helmet läser som är ett projekt som sprider läslust och -inspiration bland svenskspråkiga vuxna i huvudstadsregionen.</p>",
                "sv": "<p>Dags att ta hand om höstgarderoben? Men vad ska du göra när favoritjeansen fått hål på knäna och festskjortan har fläckar som inte går bort? Hur sköter du bäst om dina älsklingsplagg?</p><p>Det får du lära dig på bibbans laga och lappa-lördag med Tuuli Solhagen från Espoo Mending och handarbetsaktivisten Niko Lindgren också känd som Mending Neko . Vi inleder verkstaden med en introduktion till hållbar klädkonsumtion och efter det får du hjälp med att reparera dina egna plagg. Ta med dig ett trasigt plagg - material och verktyg bjuder vi på.</p><p>Varmt välkommen till verkstaden eller ”Pajan” på Iso Omena bibliotek i Mattby 20.9 kl. 14-16!</p><p>Evenemanget ordnas av Hela Helmet läser som är ett projekt som sprider läslust och -inspiration bland svenskspråkiga vuxna i huvudstadsregionen.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5kka/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqkb5p6m",
            "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:p10727/?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:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5kxi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5lcy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5lou/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5lzu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5mem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5mpa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5mz4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5ney/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5npi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5nzu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5oee/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5ora/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5o4m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5piu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5ps4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490576,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-28T16:42:17.396704Z",
                    "last_modified_time": "2025-08-28T16:42:17.396717Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/976b1358-e3d1-4193-bfb1-8fea495e3ce4.png",
                    "cropping": "94,0,468,375",
                    "photographer_name": "",
                    "alt_text": "kuva päiväkirjan sivusta jota on koristeltu piirtäen kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490576/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-28T16:45:04.872580Z",
            "last_modified_time": "2025-08-28T16:45:04.872598Z",
            "date_published": null,
            "start_time": "2025-09-11T14:00:00Z",
            "end_time": "2025-12-18T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Sininen huone"
            },
            "info_url": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Art Journal - Taidepäiväkirjatyöpaja"
            },
            "provider": null,
            "short_description": {
                "fi": "Taidepäiväkirjatyöpajassa työstetään taidepäiväkirjaa kuvan ja tekstin kautta. "
            },
            "description": {
                "fi": "Art Journal - Taidepäiväkirjatyöpaja <p><strong>Torstaisin kello 17-19.30, Entressen kirjasto, Sininen huone</strong></p><p><br></p><p>Haluatko saada uusia ideoita ja kokeilla uusia tekniikoita taidepäiväkirjan tekemiseen?</p><p>Taidepäiväkirjatyöpajassa työstetään taidepäiväkirjaa kuvan ja tekstin kautta. Taidepäiväkirjoissa hyödynnetään paljon kierrätysmateriaaleja. Materiaalit, myös päiväkirjapohjan, saat kirjastosta. Tai ota omat materiaalit mukaan.&nbsp;</p><p>Tämä tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta.</p><p><br></p><p>Järjestäjä: Kirjasto</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5p6m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22yhsu",
            "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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x2rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x3k4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x4em/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x454/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x5ye/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x6si/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22x7ma/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yahy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ybbi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yb3m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ycwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ydpe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yeji/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yfdu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yf6q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ygxu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490286,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-28T06:52:31.443870Z",
                    "last_modified_time": "2025-05-28T06:52:31.443885Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/200fcba3-f6f0-4824-9b36-23399eb2bfea.jpg",
                    "cropping": "280,0,1000,720",
                    "photographer_name": "",
                    "alt_text": "satumainen puutarha",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490286/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-28T06:57:26.341473Z",
            "last_modified_time": "2025-08-28T13:06:04.521994Z",
            "date_published": null,
            "start_time": "2025-09-05T14:00:00Z",
            "end_time": "2025-12-19T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "info_url": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Ukrainalainen lasten teatterikerho Naamiot",
                "sv": "Ukrainska barnteaterklubben Masker",
                "en": "Ukrainian Children's Theater Masks"
            },
            "provider": null,
            "short_description": {
                "fi": "Täällä voit kokeilla, kuvitella ja näyttää.",
                "sv": "Här kan du prova, fantisera, visa och experimentera.",
                "en": " Here you can try, fantasize, show, experiment. "
            },
            "description": {
                "fi": "<p>Що таке театр?</p><p>місце гри та спілкування</p><p>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</p><p>тут можна пробувати, вигадувати, показувати, експериментувати</p><p>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</p><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p>Ваша дитина навчиться:</p><p>виступати перед публікою</p><p>чітко та правильно говорити</p><p>не боятися сцени</p><p>висловлювати свої думки вголос</p><p>вміти концентруватися, проявляти та керувати емоціями</p><p>«користуватися головою» за призначенням</p><p>бути активною та азартною</p><p>володіти своїм тілом</p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою tatiana.divosvit@gmail.com або за тел. +358413179903</p><p><br></p><p>--------------------------------------------</p><p><br></p><p>Mitä on teatteri?</p><p>Paikka leikkiin ja kommunikointiin. Täällä voit kokeilla, fantasioida ja näyttää. Tuemme vapaata itseilmaisua.</p><p>Joten jos lapsesi haaveilee esiintymisestä lavalla ja haluat nähdä hänet innostuneena ja silmät loistaen - tuo hänet meille!</p><p>Lapsesi oppii:</p><p>- puhumaan yleisön edessä</p><p>- puhumaan selkeästi ja oikein</p><p>- rohkeaksi näyttämöllä</p><p>- ilmaisemaan ajatuksensa ääneen</p><p>- keskittymään, näyttämään ja hallitsemaan tunteita</p><p>Teatteri on avoinna 8-16-vuotiaille lapsille perjantaisin 17.00-18.30.</p><p>Voit ilmoittautua studioon ja saada tietoa koulutusohjelmasta sähköpostitse suomenukrlastteatteri@gmail.com ja mob. +358413179903</p>",
                "sv": "<p>Vad är teater?</p><p>En plats för lek och kommunikation. Det finns inga dagböcker där du för varje ämne får en bedömning, eftersom alla är utmärkta i spelet. Här kan du försöka, fantisera, visa, experimentera. Vi kommer bara att stödja frihet självuttryck och uppmana mod.</p><p>Så om ditt barn drömmer om att uppträda på scen, och du vill se honom entusiastisk och med lysande ögon - ta med dem till oss!</p><p>Ditt barn kommer att lära sig:</p><p>tala inför publik</p><p>tala tydligt och korrekt</p><p>att inte vara rädd för scenen</p><p>uttrycka sina tankar högt</p><p>kunna koncentrera sig, visa och hantera känslor</p><p>\"Använd huvudet\" för dess avsedda ändamål</p><p>vara aktiv och spelande</p><p>skickligt äger sin kropp</p><p><br></p><p>Teatern har öppet för barn 8-16 år varje fredag 17.00-18.30. 18.10. inställd.</p><p>Entresse bibliotek, Blå rummet</p><p>Du kan anmäla dig till studion och få information om utbildningsprogrammet via e-post tatiana.divosvit@gmail.com och mob. +358413179903</p>",
                "en": "<p>What is theater?</p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p>Your child will learn:</p><p>speak in front of the public</p><p>speak clearly and correctly</p><p>not to be afraid of the stage</p><p>express your thoughts out loud</p><p>to be able to concentrate, show and manage emotions</p><p>«use your head» for its intended purpose</p><p>be active and gambling</p><p>skillfully owns his body</p><p>During autumn 2024 the theater opens for children 8 -16 y.o. every Friday 17.00-18.30, except on 18.10.</p><p>Entresse library, Blue Room</p><p>You can sign up for the studio and get information about the training program by e-mail tatiana.divosvit@gmail.com and mob. +358413179903</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22yhsu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66539",
            "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:104/?format=api"
                },
                {
                    "@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/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/164/?format=api"
            },
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1218824,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T12:14:16.611029Z",
                    "last_modified_time": "2025-07-09T12:14:16.611045Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775000.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1218824/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-09T12:14:16.481359Z",
            "last_modified_time": "2025-08-28T12:13:34.219601Z",
            "date_published": null,
            "start_time": "2025-08-30T10:00:00Z",
            "end_time": "2025-08-30T14: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,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/8C4E8D9822F462855D5AD8997EFC6784/Stoa_menee_metsaan",
                "sv": "http://www.stoa.fi/sv/evenemang/event/8C4E8D9822F462855D5AD8997EFC6784/Stoa_gar_till_skogs",
                "en": "http://www.stoa.fi/en/events/event/8C4E8D9822F462855D5AD8997EFC6784/Stoa_goes_into_the_woods"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Stoa menee metsään",
                "sv": "Stoa går till skogs",
                "en": "Stoa goes into the woods"
            },
            "provider": null,
            "short_description": {
                "fi": "Suomen luonnon päivänä mennään yhdessä Karhukallion metsään nauttimaan musiikista, saduista ja riippumatossa lepäilystä.",
                "sv": "Under Finska naturens dag går man tillsammans till skogen i Björnklippan för att njuta av musik, sagor och vila i hängmattan.",
                "en": "On Finnish Nature Day, we go to Karhukallio Forest together to enjoy music, fairytales and relaxation in a hammock."
            },
            "description": {
                "fi": "<p>Suomen luonnon päivänä mennään yhdessä Karhukallion metsään nauttimaan musiikista, saduista ja riippumatossa lepäilystä.</p><p>Lähimetsät ovat tärkeitä viherkäytäviä, levon ja leikin paikkoja. Kun Stoa menee metsään, on tarjolla muun muassa metsäsatuja, akustista musiikkia ja riippumatoissa lepäilyä. Metsä kutsuu myös tutkimiseen ja taiteen tekemiseen. Hengähdä kanssamme hetkinen ja vaikutu kaupunkiluonnon ihmeistä! Tapahtuma sopii monen ikäisille.</p><p>klo 13 ja 13.30: Metsäsatutuokiot. Ikäsuositus 3–7-vuotiaille. Tukiot ovat samansisältöiset. Ota varmuudeksi mukaan oma istuinalusta!</p><p>klo 14: Ötökkäelämää -työpaja<br>Tutustutaan yhdessä lähimetsän ötököihin. Mitä muurahaiset puuhastelevat loppukesällä? Missä siirat ja hämähäkit piileksivät? Vieläkö näkyy kimalaisia, ja minne ne katoavat talveksi? Työpajan ohjaa biologi, tietokirjailija Sanja Hakala.</p><p>klo 14.45: Metsäinen kirjavinkkaus aikuisille</p><p>klo 15.30: Karhukallion metsäkonsertti: Kielo Kärkkäinen<br>Kielo Kärkkäisen elokuinen esitys koostuu musiikista, runoista ja yhteisestä tarinoinnista. Laulaja-lauluntekijä esittää folkia suomeksi, espanjaksi ja englanniksi, minkä lisäksi myös yleisö pääsee laulamaan. Tilaisuuden dramaturgia muotoutuu ympäristön, läsnäolijoiden ja sään yhteistyönä. Metsä on salliva konserttisali, jossa voi istua tai kuljeskella, havainnoida, nauttia eväistä sekä tutustua muihin eläviin.</p><p>Katsomona konsertissa on 20 riippumattoa ja kallioinen katsomo. Ota varmuudeksi mukaan oma alusta.</p><p>***</p><p>Näin pääset paikalle:</p><p>Pääset paikalle esimerkiksi Itäkeskuksesta pikaratikalla 15. Jää pois Kauppamyllyntien pysäkillä.</p><p>Kävellen tai pyörällä matka on Stoalta n. 1,7 kilometriä. Pyöräparkki Kauppamyllyntien pysäkin vieressä.</p><p>Astu metsään sen eteläisestä reunasta, Holkkitien ja Viilarintien risteyksestä. Olemme teitä siellä vastassa ja neuvomme eteenpäin.</p><p>HUOM! Metsäpolku ei ole esteetön. Rattailla, joissa on hyvät renkaat, pääsee satutuokioon asti. Valitettavasti rollaattorilla tai pyörätuolilla ei pysty juurien ja kivien vuoksi poluilla liikkumaan.</p><p>Muita ohjeita:</p><p>Pukeudu säänmukaisesti ja varustaudu hyvillä jalkineilla.</p><p>Mukaan voi ottaa myös omaa evästä. Älä jätä metsään mitään roskia.</p><p>***</p><p>Tapahtuman järjestää Stoa: Itäkeskuksen kirjasto, Kulttuuripalvelut, Helsingin työväenopisto ja Nuorisopalvelut.</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Under Finska naturens dag går man tillsammans till skogen i Björnklippan för att njuta av musik, sagor och vila i hängmattan.</p><p>Skogarna i närheten är viktiga grönkorridorer, platser för vila och lek. Då Stoa går till skogs erbjuds bland annat sagor i skogen, akustisk musik och vila i hängmattor. Maten tillreds med trangia och skogen kallar även till att skapa konst. Pusta ut en stund tillsammans med oss och bli fascinerad av stadsnaturens under!</p><p>Programmet:</p><p>Sagostunder i skogen kl. 13 och 13.30. Åldersrekommendation: 3–7-åringar.</p><p>14.00: Workshop om insektsliv<br>Låt oss lära känna insekterna i den lokala skogen tillsammans. Vad gör myrorna på sensommaren? Var gömmer sig getingarna och spindlarna? Finns det fortfarande humlor, och vart försvinner de över vintern? Workshopen leds av biologen och fackboksförfattaren Sanja Hakala.</p><p>kl. 14:45: Tips om skogsböcker för vuxna</p><p>Björnklippans skogskonsert kl. 15.30: Kielo Kärkkäinen</p><p>Kielo Kärkkäinens uppträdande i augusti består av musik, dikter och gemensamma berättelser.Sångaren-låtskrivaren framför folkmusik på finska, spanska och engelska. Även publiken får möjlighet att sjunga. Dramaturgin i evenemanget uppstår som ett samarbete mellan miljön, deltagarna och vädret. Skogen är en tolerant konsertsal där man kan sitta eller vandra, iaktta, njuta av sin matsäck samt bekanta sig med andra levande varelser.</p><p>Konsertlokalen har 20 hängmattor och ett stenställ. Ta med egen plattform för säkerhets skull.</p><p>Hitta hit:</p><p>Du kan ta dig dit till exempel från Östra centrum med spårvagn 15. Gå av vid hållplatsen Kauppamyllyntie.</p><p>Avståndet från Stoa till fots eller med cykel är cirka 1,7 kilometer.</p><p>Gå in i skogen från dess södra kant, vid korsningen mellan Holkkitie och Viilarintie. Vi möter dig där och ger dig vägbeskrivning.</p><p>OBS! Skogsstigen är inte tillgänglig. Barnvagnar med bra däck kan nå sagoområdet. Tyvärr kan du inte använda rullator eller rullstol på stigarna på grund av rötter och stenar.</p><p>Övriga instruktioner:</p><p>Klä dig lämpligt för vädret och använd bra skor.</p><p>Du kan också ta med egen mat. Lämna inget skräp i skogen.</p><p>Fritt inträde</p><p>Evenemanget ordnas av Stoa: Östra centrums bibliotek, Kulturtjänster, Helsingfors arbetarinstitut och Ungdomstjänster</p>",
                "en": "<p>On Finnish Nature Day, we go to Karhukallio Forest together to enjoy music, fairytales and relaxation in a hammock.</p><p>Local forests are important green corridors, as well as places of rest and play. When Stoa goes into the woods, the forest will also offer things such as woodland fairytales, acoustic music and hammocks to relax in. The catering is prepared on a portable stove, and the forest also invites you to make art. Take a moment to breathe with us and let yourself be amazed by the wonders of urban nature!</p><p>Program: <br>at 13:00 and 13:30: forest fairytales Recommended for ages 3–7.</p><p>at 14.00..: Insect Life Workshop<br>Let's get to know the insects in the local forest together. What do ants do in late summer? Where do the wasps and spiders hide? Are there still bumblebees, and where do they disappear to for the winter? The workshop will be led by biologist and non-fiction writer Sanja Hakala.</p><p>2:45 p.m.: Forest book tips for adults</p><p>at 15:30 Forest Concert at Karhukallio: Kielo Kärkkäinen</p><p>Kielo Kärkkäinen’s performance in August promises music, poems and shared storytelling. The singer-songwriter will perform folk music in Finnish, Spanish and English, and the audience will also have a chance to sing along. The dramaturgy of the event is shaped by the environment, the people present and the weather. The forest is an approachable concert hall where you can sit down or stroll around, observe, enjoy your snacks and meet other living beings.</p><p>The concert venue has 20 hammocks and some place mats to sit on the cliff. Bring your own mat to sit on just in case.</p><p>How to get there:</p><p>You can get there, for example, from Itäkeskus by light rail 15. Get off at the Kauppamyllyntie stop.</p><p>The distance from Stoa by foot or bike is about 1.7 kilometers.</p><p>Enter the forest from its southern edge, at the intersection of Holkkitie and Viilarintie. We will meet you there and give you directions.</p><p>NOTE! The forest path is not accessible. Strollers with good tires can reach the fairy tale area. Unfortunately, you cannot use a rollator or wheelchair on the paths due to roots and stones.</p><p>Other instructions:</p><p>Dress appropriately for the weather and wear good footwear.</p><p>You can also bring your own food. Do not leave any trash in the forest.</p><p>Free entry</p><p>The event is organised by Stoa: Itäkeskus Library, Cultural Services, Helsinki Finnish Adult Education Centre and Youth Services</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66539/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}