Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=27
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 32399,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=28",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=26"
    },
    "data": [
        {
            "id": "kulke:67498",
            "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:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494291,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-22T14:13:39.043729Z",
                    "last_modified_time": "2025-12-22T14:13:39.043751Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781605.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494291/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-22T14:13:38.942892Z",
            "last_modified_time": "2026-04-21T05:13:37.917782Z",
            "date_published": null,
            "start_time": "2026-03-07T09:00:00Z",
            "end_time": "2026-03-07T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "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>Kämpillä</b></p><p>Kenen koira on karannut naapuriin? Mitä piileskelee ullakolla? Keneltä on unohtunut puurokattila liedelle?</p><p>Annantalon taidelauantain avoimessa työpajassa pääset piirtämään oman huoneen yhteiseen kerrostaloon, jonka ikkunoiden takaa avautuu mitä kummallisempia tapahtumia. Mitä kummaa sinun kämpässäsi tapahtuu? Yhteinen teos jää osaksi Annantalon 2krs käytävän näyttelyä.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</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><p><b>Kämpillä – I folks lyor</b><br>Vems hund har sprungit till grannen? Vad är det som gömmer sig på vinden? Vem har glömt grötkastrullen på spisen?</p><p>I den öppna verkstaden under Annegårdens konstlördag kan du rita ditt eget rum i ett gemensamt höghus, där de märkligaste saker händer bakom fönstren. Vad för konstigt händer i din lya? Det gemensamma verket blir en del av utställningen i korridoren på andra våningen i Annegården.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.<br>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</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><p><b>In the apartment</b><br>Whose dog has run away and gone next door? What is hiding in the attic? Who forgot their porridge pot on the stove? <br>At this Annantalo Art Monday open workshop, you will get to draw your own room in a shared apartment building, where the strangest things can be seen happening outside through the windows. What strange things are going on in your apartment? The resulting joint work will be featured in an exhibition in the second-floor corridor of Annantalo.</p><p>Annantalo Art Saturday <br>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.<br>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/42996AFC72CDB97F4160456779FFA7A6/Annantalon_taidelauantai_Kampilla",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/42996AFC72CDB97F4160456779FFA7A6/Annegardens_konstlordagar_Kampilla_I_folks_lyor_",
                "en": "http://www.annantalo.fi/en/events/event/42996AFC72CDB97F4160456779FFA7A6/Annantalo_Art_Saturdays_In_the_apartment_"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Kämpillä",
                "sv": "Annegårdens konstlördagar: Kämpillä – I folks lyor",
                "en": "Annantalo Art Saturdays: In the apartment"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67498/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67497",
            "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:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?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:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494645,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-27T08:13:00.233390Z",
                    "last_modified_time": "2026-01-27T08:13:00.233410Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781604.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494645/?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": "2026-01-27T08:13:00.144327Z",
            "last_modified_time": "2026-04-21T05:13:35.275711Z",
            "date_published": null,
            "start_time": "2026-02-28T09:00:00Z",
            "end_time": "2026-02-28T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "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": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.",
                "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer."
            },
            "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>Nastat kortit</b></p><p>Pistele reikiä paperikorttiin luodaksesi kauniita pitsimäisiä kuvioita. Rauhallista ja piikikästä puuhaa!<br> <br>Alle kouluikäisille aikuisen kanssa.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaa Chloé Mahy.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p>Gör hål i ett papperskort för att skapa vackra spetsliknande mönster. En rogivande och lite stickig aktivitet!<br> <br>För barn under 7 år i sällskap av en vuxen.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen led av Chloé Mahy.</p><p>Varmt välkomna till Annegården på lördagar!</p>",
                "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Pin Me a Picture</b></p><p>Punch holes on a paper card to create beautiful lacey patterns. Soothing and prickly business!</p><p>For kids under 7 with an adult.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by Chloé Mahy.</p><p>A warm welcome to Annantalo on Saturdays!</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/230927E0E7D4B562A3BD87B0143473B8/Annantalon_taidelauantai_Nastat_kortit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/230927E0E7D4B562A3BD87B0143473B8/Annegardens_konstlordag",
                "en": "http://www.annantalo.fi/en/events/event/230927E0E7D4B562A3BD87B0143473B8/Annantalo_Art_Saturday_Pin_Me_a_Picture"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Nastat kortit",
                "sv": "Annegårdens konstlördag",
                "en": "Annantalo Art Saturday: Pin Me a Picture"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67497/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67496",
            "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:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494288,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-22T13:14:03.140827Z",
                    "last_modified_time": "2025-12-22T13:14:03.140848Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781603.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494288/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-22T13:14:03.023796Z",
            "last_modified_time": "2026-04-21T05:13:32.375074Z",
            "date_published": null,
            "start_time": "2026-02-21T09:00:00Z",
            "end_time": "2026-02-21T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "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>Aarrejahti</b></p><p>Mikä on sinun aarteesi? Miten hyvä piilottaja olet? Työpajassa tehdään omalle aarteelle salaperäinen rasia, sekä sen luo johdattava tarunhohtoinen aarrekartta! Pääset piirtämään eri välineillä ja tutkimaan kuinka paperiin loihditaan ajan patinaa. Saat kotiin vietäväksi välineet jännittävään aarrejahtileikkiin.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p><p>P.S. Annnasalissa vierailee Teatteri Rollo: Köpöttäjät esitys klo 14!</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><p><b>Skattjakt</b><br>Vad är din skatt? Hur bra är du på att gömma saker? I verkstaden tillverkar du en mystisk låda för din skatt och en sagoomspunnen skattkarta som leder till den! Du får rita med olika redskap och utforska hur man ger papper patina. Du får med dig verktyg hem för en spännande skattjakt.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.<br>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p><p>P.S. Teatteri Rollo besöker Annansali kl.14 med Köpöttäjät föreställningen ( ordlös)</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><p><b> Treasure hunt</b><br>What is your treasure? How good are you at hiding things? At this workshop, you will get to make a mysterious box for your treasure and a legendary treasure map that leads to it! You will get to draw with different media and explore how you can create a patina of time on paper. After the workshop, you will have the equipment for an exciting treasure hunt game at home!</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises.</p><p>The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p><p>P.S. In Annansali at 2 pm Köpöttäjät by Teatteri Rollo, a wordless humoristic play.</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1F5D550069EF1AB758B5711D7BBA08BD/Annantalon_taidelauantai_Aarrejahti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/1F5D550069EF1AB758B5711D7BBA08BD/Annegardens_konstlordagar_Skattjakt",
                "en": "http://www.annantalo.fi/en/events/event/1F5D550069EF1AB758B5711D7BBA08BD/Annantalo_Art_Saturdays_Treasure_hunt"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Aarrejahti",
                "sv": "Annegårdens konstlördagar: Skattjakt",
                "en": "Annantalo Art Saturdays: Treasure hunt"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67496/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago2wenalu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 1824206,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-03T08:39:11.272697Z",
                    "last_modified_time": "2024-04-03T08:39:11.272719Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/woman-wearing-cute-white-dress-with-ukelele_1.jpg",
                    "name": "",
                    "cropping": "672,0,3359,2688",
                    "photographer_name": "",
                    "alt_text": "ukulele keväisessä maisemassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824206/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-20T12:17:28.008497Z",
            "last_modified_time": "2026-04-20T12:17:28.008518Z",
            "date_published": null,
            "start_time": "2026-05-28T14:00:00Z",
            "end_time": "2026-05-28T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa kuuntelemaan ukuleleryhmien kevätkonserttia Lippulaivan kirjaston lavalle! Konsertissa esiintyy Espoon kaupunginkirjaston ukuleleryhmät.",
                "sv": "Välkommen till ukulelegruppernas vårkonsert på Lippulaivabiblioteket! Konserten framförs av Esbo stadsbiblioteks ukulelegrupper.",
                "en": "Welcome to the spring concert of ukulele groups on the stage of Lippulaiva library! The concert will be performed by the Espoo City Library's ukulele groups."
            },
            "description": {
                "fi": "<p>Ukuleleryhmien kevätkonsertti Lippulaivan kirjaston Salongissa 28.5 kello 17.00</p><p>Tervetuloa kuuntelemaan ukuleleryhmien kevätkonserttia Lippulaivan kirjaston lavalle! Konsertissa esiintyy Espoon kaupunginkirjaston ukuleleryhmät. Konsertissa kuulemme tunnettuja suomen-&nbsp;ja englanninkielisiä kappaleita. Tilaisuus on yhteislaulutyyppinen ja kaikkien kappaleiden sanat projisoidaan seinään. Konsertin lopuksi soitamme muutaman yhteislaulun, jossa kaikki halukkaat pääsevät soittamaan. Lämpimästi tervetuloa!</p><p>#musiikki #konsertti #ukulele</p>",
                "sv": "<p>Välkommen till ukulelegruppernas vårkonsert på Lippulaivabiblioteket! Konserten framförs av Esbo stadsbiblioteks ukulelegrupper.</p>",
                "en": "<p>Welcome to the spring concert of ukulele groups on the stage of Lippulaiva library! The concert will be performed by the Espoo City Library's ukulele groups. You can sing along during the concert. At the end of the concert we will play a few songs together, where everyone can join in. You are warmly welcome!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Ukuleleryhmien kevätkonsertti",
                "sv": "Ukulele vårkonsert",
                "en": "Spring concert of ukulele groups"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2wenalu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago2vwp7o4",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqbj4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490704,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-09T09:42:42.964320Z",
                    "last_modified_time": "2025-09-09T09:42:42.964337Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/16472c66-149f-48bc-8385-aef38a4b60cb.jpg",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Shakkilauta, tulilieskat ja teksti.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490704/?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": "2026-04-20T11:32:23.150040Z",
            "last_modified_time": "2026-04-20T11:32:23.150056Z",
            "date_published": null,
            "start_time": "2026-07-27T12:00:00Z",
            "end_time": "2026-07-27T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Heroclix lautapelin opastusta ja pelaamista.",
                "sv": "Instruktioner och spelupplägg för brädspelet Heroclix.",
                "en": "Heroclix board game instructions and gameplay."
            },
            "description": {
                "fi": "<p>Tervetuloa opettelemaan ja pelaamaan Heroclix lautapeliä.</p><p>Heroclix peli Entressen kirjaston Kibessä klo 15-17.</p>",
                "sv": "<p>Välkommen att lära dig och spela brädspelet Heroclix.</p><p><br></p><p>Heroclix-spelet på Entresse Library Kibe kl. 15-17.</p>",
                "en": "<p>Welcome to learn and play the Heroclix board game.</p><p><br></p><p>Heroclix game at the Entresse Library Kibe from 3-5 pm.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Heroclix lautapeli",
                "sv": "Heroclix brädspel",
                "en": "Heroclix board game"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwp7o4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago2vwqafi",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqbj4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490704,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-09T09:42:42.964320Z",
                    "last_modified_time": "2025-09-09T09:42:42.964337Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/16472c66-149f-48bc-8385-aef38a4b60cb.jpg",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Shakkilauta, tulilieskat ja teksti.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490704/?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": "2026-04-20T11:32:23.028416Z",
            "last_modified_time": "2026-04-20T11:32:23.028431Z",
            "date_published": null,
            "start_time": "2026-07-20T12:00:00Z",
            "end_time": "2026-07-20T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Heroclix lautapelin opastusta ja pelaamista.",
                "sv": "Instruktioner och spelupplägg för brädspelet Heroclix.",
                "en": "Heroclix board game instructions and gameplay."
            },
            "description": {
                "fi": "<p>Tervetuloa opettelemaan ja pelaamaan Heroclix lautapeliä.</p><p>Heroclix peli Entressen kirjaston Kibessä klo 15-17.</p>",
                "sv": "<p>Välkommen att lära dig och spela brädspelet Heroclix.</p><p><br></p><p>Heroclix-spelet på Entresse Library Kibe kl. 15-17.</p>",
                "en": "<p>Welcome to learn and play the Heroclix board game.</p><p><br></p><p>Heroclix game at the Entresse Library Kibe from 3-5 pm.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Heroclix lautapeli",
                "sv": "Heroclix brädspel",
                "en": "Heroclix board game"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqafi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago2vwqarm",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqbj4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490704,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-09T09:42:42.964320Z",
                    "last_modified_time": "2025-09-09T09:42:42.964337Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/16472c66-149f-48bc-8385-aef38a4b60cb.jpg",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Shakkilauta, tulilieskat ja teksti.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490704/?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": "2026-04-20T11:32:22.904209Z",
            "last_modified_time": "2026-04-20T11:32:22.904224Z",
            "date_published": null,
            "start_time": "2026-07-13T12:00:00Z",
            "end_time": "2026-07-13T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Heroclix lautapelin opastusta ja pelaamista.",
                "sv": "Instruktioner och spelupplägg för brädspelet Heroclix.",
                "en": "Heroclix board game instructions and gameplay."
            },
            "description": {
                "fi": "<p>Tervetuloa opettelemaan ja pelaamaan Heroclix lautapeliä.</p><p>Heroclix peli Entressen kirjaston Kibessä klo 15-17.</p>",
                "sv": "<p>Välkommen att lära dig och spela brädspelet Heroclix.</p><p><br></p><p>Heroclix-spelet på Entresse Library Kibe kl. 15-17.</p>",
                "en": "<p>Welcome to learn and play the Heroclix board game.</p><p><br></p><p>Heroclix game at the Entresse Library Kibe from 3-5 pm.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Heroclix lautapeli",
                "sv": "Heroclix brädspel",
                "en": "Heroclix board game"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqarm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago2vwqa5y",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqbj4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490704,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-09T09:42:42.964320Z",
                    "last_modified_time": "2025-09-09T09:42:42.964337Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/16472c66-149f-48bc-8385-aef38a4b60cb.jpg",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Shakkilauta, tulilieskat ja teksti.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490704/?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": "2026-04-20T11:32:22.786077Z",
            "last_modified_time": "2026-04-20T11:32:22.786092Z",
            "date_published": null,
            "start_time": "2026-07-06T12:00:00Z",
            "end_time": "2026-07-06T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Heroclix lautapelin opastusta ja pelaamista.",
                "sv": "Instruktioner och spelupplägg för brädspelet Heroclix.",
                "en": "Heroclix board game instructions and gameplay."
            },
            "description": {
                "fi": "<p>Tervetuloa opettelemaan ja pelaamaan Heroclix lautapeliä.</p><p>Heroclix peli Entressen kirjaston Kibessä klo 15-17.</p>",
                "sv": "<p>Välkommen att lära dig och spela brädspelet Heroclix.</p><p><br></p><p>Heroclix-spelet på Entresse Library Kibe kl. 15-17.</p>",
                "en": "<p>Welcome to learn and play the Heroclix board game.</p><p><br></p><p>Heroclix game at the Entresse Library Kibe from 3-5 pm.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Heroclix lautapeli",
                "sv": "Heroclix brädspel",
                "en": "Heroclix board game"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqa5y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago2vwqbj4",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqdm4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwp7o4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqafi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqarm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqa5y/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490704,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-09T09:42:42.964320Z",
                    "last_modified_time": "2025-09-09T09:42:42.964337Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/16472c66-149f-48bc-8385-aef38a4b60cb.jpg",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Shakkilauta, tulilieskat ja teksti.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490704/?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": "2026-04-20T11:32:22.165891Z",
            "last_modified_time": "2026-04-20T11:32:22.165909Z",
            "date_published": null,
            "start_time": "2026-07-06T12:00:00Z",
            "end_time": "2026-07-27T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Heroclix lautapelin opastusta ja pelaamista.",
                "sv": "Instruktioner och spelupplägg för brädspelet Heroclix.",
                "en": "Heroclix board game instructions and gameplay."
            },
            "description": {
                "fi": "<p>Tervetuloa opettelemaan ja pelaamaan Heroclix lautapeliä.</p><p>Heroclix peli Entressen kirjaston Kibessä klo 15-17.</p>",
                "sv": "<p>Välkommen att lära dig och spela brädspelet Heroclix.</p><p><br></p><p>Heroclix-spelet på Entresse Library Kibe kl. 15-17.</p>",
                "en": "<p>Welcome to learn and play the Heroclix board game.</p><p><br></p><p>Heroclix game at the Entresse Library Kibe from 3-5 pm.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Heroclix lautapeli",
                "sv": "Heroclix brädspel",
                "en": "Heroclix board game"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqbj4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago2vwqbwu",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqdm4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490704,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-09T09:42:42.964320Z",
                    "last_modified_time": "2025-09-09T09:42:42.964337Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/16472c66-149f-48bc-8385-aef38a4b60cb.jpg",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Shakkilauta, tulilieskat ja teksti.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490704/?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": "2026-04-20T11:28:30.214152Z",
            "last_modified_time": "2026-04-20T11:28:30.214166Z",
            "date_published": null,
            "start_time": "2026-06-25T12:00:00Z",
            "end_time": "2026-06-25T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Heroclix lautapelin opastusta ja pelaamista.",
                "sv": "Instruktioner och spelupplägg för brädspelet Heroclix.",
                "en": "Heroclix board game instructions and gameplay."
            },
            "description": {
                "fi": "<p>Tervetuloa opettelemaan ja pelaamaan Heroclix lautapeliä.</p><p>Heroclix peli Entressen kirjaston Kibessä klo 15-17.</p>",
                "sv": "<p>Välkommen att lära dig och spela brädspelet Heroclix.</p><p><br></p><p>Heroclix-spelet på Entresse Library Kibe kl. 15-17.</p>",
                "en": "<p>Welcome to learn and play the Heroclix board game.</p><p><br></p><p>Heroclix game at the Entresse Library Kibe from 3-5 pm.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Heroclix lautapeli",
                "sv": "Heroclix brädspel",
                "en": "Heroclix board game"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqbwu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago2vwqcfe",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqdm4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490704,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-09T09:42:42.964320Z",
                    "last_modified_time": "2025-09-09T09:42:42.964337Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/16472c66-149f-48bc-8385-aef38a4b60cb.jpg",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Shakkilauta, tulilieskat ja teksti.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490704/?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": "2026-04-20T11:28:30.001374Z",
            "last_modified_time": "2026-04-20T11:28:30.001390Z",
            "date_published": null,
            "start_time": "2026-06-18T12:00:00Z",
            "end_time": "2026-06-18T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Heroclix lautapelin opastusta ja pelaamista.",
                "sv": "Instruktioner och spelupplägg för brädspelet Heroclix.",
                "en": "Heroclix board game instructions and gameplay."
            },
            "description": {
                "fi": "<p>Tervetuloa opettelemaan ja pelaamaan Heroclix lautapeliä.</p><p>Heroclix peli Entressen kirjaston Kibessä klo 15-17.</p>",
                "sv": "<p>Välkommen att lära dig och spela brädspelet Heroclix.</p><p><br></p><p>Heroclix-spelet på Entresse Library Kibe kl. 15-17.</p>",
                "en": "<p>Welcome to learn and play the Heroclix board game.</p><p><br></p><p>Heroclix game at the Entresse Library Kibe from 3-5 pm.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Heroclix lautapeli",
                "sv": "Heroclix brädspel",
                "en": "Heroclix board game"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqcfe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago2vwqcry",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqdm4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490704,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-09T09:42:42.964320Z",
                    "last_modified_time": "2025-09-09T09:42:42.964337Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/16472c66-149f-48bc-8385-aef38a4b60cb.jpg",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Shakkilauta, tulilieskat ja teksti.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490704/?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": "2026-04-20T11:28:29.883338Z",
            "last_modified_time": "2026-04-20T11:28:29.883356Z",
            "date_published": null,
            "start_time": "2026-06-11T12:00:00Z",
            "end_time": "2026-06-11T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Heroclix lautapelin opastusta ja pelaamista.",
                "sv": "Instruktioner och spelupplägg för brädspelet Heroclix.",
                "en": "Heroclix board game instructions and gameplay."
            },
            "description": {
                "fi": "<p>Tervetuloa opettelemaan ja pelaamaan Heroclix lautapeliä.</p><p>Heroclix peli Entressen kirjaston Kibessä klo 15-17.</p>",
                "sv": "<p>Välkommen att lära dig och spela brädspelet Heroclix.</p><p><br></p><p>Heroclix-spelet på Entresse Library Kibe kl. 15-17.</p>",
                "en": "<p>Welcome to learn and play the Heroclix board game.</p><p><br></p><p>Heroclix game at the Entresse Library Kibe from 3-5 pm.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Heroclix lautapeli",
                "sv": "Heroclix brädspel",
                "en": "Heroclix board game"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqcry/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago2vwqc7m",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqdm4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490704,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-09T09:42:42.964320Z",
                    "last_modified_time": "2025-09-09T09:42:42.964337Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/16472c66-149f-48bc-8385-aef38a4b60cb.jpg",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Shakkilauta, tulilieskat ja teksti.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490704/?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": "2026-04-20T11:28:29.764979Z",
            "last_modified_time": "2026-04-20T11:28:29.764994Z",
            "date_published": null,
            "start_time": "2026-06-04T12:00:00Z",
            "end_time": "2026-06-04T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Heroclix lautapelin opastusta ja pelaamista.",
                "sv": "Instruktioner och spelupplägg för brädspelet Heroclix.",
                "en": "Heroclix board game instructions and gameplay."
            },
            "description": {
                "fi": "<p>Tervetuloa opettelemaan ja pelaamaan Heroclix lautapeliä.</p><p>Heroclix peli Entressen kirjaston Kibessä klo 15-17.</p>",
                "sv": "<p>Välkommen att lära dig och spela brädspelet Heroclix.</p><p><br></p><p>Heroclix-spelet på Entresse Library Kibe kl. 15-17.</p>",
                "en": "<p>Welcome to learn and play the Heroclix board game.</p><p><br></p><p>Heroclix game at the Entresse Library Kibe from 3-5 pm.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Heroclix lautapeli",
                "sv": "Heroclix brädspel",
                "en": "Heroclix board game"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqc7m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago2vwqdm4",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3ezvgue/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqbj4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqbwu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqcfe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqcry/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqc7m/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490704,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-09T09:42:42.964320Z",
                    "last_modified_time": "2025-09-09T09:42:42.964337Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/16472c66-149f-48bc-8385-aef38a4b60cb.jpg",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Shakkilauta, tulilieskat ja teksti.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490704/?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": "2026-04-20T11:28:28.925464Z",
            "last_modified_time": "2026-04-20T11:28:28.925478Z",
            "date_published": null,
            "start_time": "2026-06-04T12:00:00Z",
            "end_time": "2026-06-25T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Heroclix lautapelin opastusta ja pelaamista.",
                "sv": "Instruktioner och spelupplägg för brädspelet Heroclix.",
                "en": "Heroclix board game instructions and gameplay."
            },
            "description": {
                "fi": "<p>Tervetuloa opettelemaan ja pelaamaan Heroclix lautapeliä.</p><p>Heroclix peli Entressen kirjaston Kibessä klo 15-17.</p>",
                "sv": "<p>Välkommen att lära dig och spela brädspelet Heroclix.</p><p><br></p><p>Heroclix-spelet på Entresse Library Kibe kl. 15-17.</p>",
                "en": "<p>Welcome to learn and play the Heroclix board game.</p><p><br></p><p>Heroclix game at the Entresse Library Kibe from 3-5 pm.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Heroclix lautapeli",
                "sv": "Heroclix brädspel",
                "en": "Heroclix board game"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vwqdm4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny4whvte",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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: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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wh6ia/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494379,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-05T12:12:05.181591Z",
                    "last_modified_time": "2026-01-05T12:12:05.181609Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/bebb8b79-b7ee-4f94-bb4c-ef822dd3ef01.png",
                    "name": "",
                    "cropping": "140,0,1274,1135",
                    "photographer_name": "",
                    "alt_text": "Lasten elokuva -teksti ja popcornia.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494379/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-01-05T12:18:39.260932Z",
            "last_modified_time": "2026-04-20T11:07:45.445754Z",
            "date_published": null,
            "start_time": "2026-05-16T09:00:00Z",
            "end_time": "2026-05-16T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Lasten elokuva joka lauantai kirjastossa. ",
                "sv": "Barnfilm varje lördag på biblioteket. ",
                "en": "Children's movie every Saturday at the library. "
            },
            "description": {
                "fi": "<p>Lasten elokuva kirjaston VOX-tilassa joka lauantai klo 12:00. Voit tuoda omat herkut mukanasi. Elokuva on&nbsp;suomenkielellä. Elokuva on&nbsp;suomenkielellä.&nbsp;</p><p><br></p><p>Elokuvan ikäraja on enintään K-7.&nbsp;</p>",
                "sv": "<p>Barnfilm&nbsp;i&nbsp;bibliotekets&nbsp;VOX-utrymme&nbsp;varje&nbsp;lördag&nbsp;kl. 12:00.&nbsp;Ta&nbsp;med&nbsp;egen&nbsp;dryck&nbsp;och&nbsp;snacks!&nbsp;Filmen&nbsp;är&nbsp;på&nbsp;finska.&nbsp;</p><p><br></p><p>Filmens&nbsp;åldersgräns&nbsp;är&nbsp;högst&nbsp;7&nbsp;år&nbsp;(K-7).&nbsp;</p>",
                "en": "<p>Children's&nbsp;movie&nbsp;in&nbsp;the&nbsp;library's&nbsp;VOX&nbsp;space&nbsp;every&nbsp;Saturday&nbsp;at 12 pm.&nbsp;Bring&nbsp;your&nbsp;own&nbsp;drinks&nbsp;and snacks!&nbsp;The&nbsp;movie&nbsp;is in&nbsp;Finnish.&nbsp;The&nbsp;age&nbsp;limit&nbsp;for a&nbsp;film&nbsp;is&nbsp;seven&nbsp;or&nbsp;less.&nbsp;</p><p><br></p><p>Welcome&nbsp;to&nbsp;the&nbsp;movie!&nbsp;</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Lasten elokuva",
                "sv": "Barnfilm",
                "en": "Children's movie"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whvte/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvfde",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhu5xu/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824124,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-03-14T07:57:27.001884Z",
                    "last_modified_time": "2026-03-14T07:57:27.001900Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/8bff21a9-2117-4883-99e2-5fe3bb2a1692.jpg",
                    "name": "",
                    "cropping": "106,0,534,427",
                    "photographer_name": "Kuva Creative_Media_Imaging Pixabaystä",
                    "alt_text": "Kuvassa henkilö pelaamassa lautapeliä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824124/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-03-20T11:28:23.408476Z",
            "last_modified_time": "2026-04-20T11:03:31.043431Z",
            "date_published": null,
            "start_time": "2026-04-23T14:00:00Z",
            "end_time": "2026-04-23T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Pelikerho lapsille ja nuorille",
                "sv": "Spelklubb för barn och ungdomar",
                "en": "Gaming club for children and youth"
            },
            "description": {
                "fi": "<p>Tervetuloa lasten ja nuorten pelikerhoon. Pelikerho kokoontuu Entressen kirjaston Kibessä torstaisin klo 17. Kerhossa pelataan lautapelejä, sekä konsolipelejä osallistujien toiveiden mukaan. Tervetuloa.</p>",
                "sv": "<p>Välkommen till spelklubben för barn och ungdomar. Klubben träffas i Kibe-avdelningen på Entresse-biblioteket på torsdagar kl. 17.00. Vi spelar brädspel och konsolspel, beroende på vad deltagarna vill spela. Välkommen.</p>",
                "en": "<p>Welcome to the children’s and youth’s game club. The club meets at the Kibe section of the Entresse Library on Thursdays at 5 p.m. We play board games and video games based on the participants preferences. Welcome!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Pelikerho lapsille ja nuorille",
                "sv": "Spelklubb för barn och ungdomar ",
                "en": "Gaming club for children and youth"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvfde/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago2vi346a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/4m6kOJWnr",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824204,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-20T10:12:11.869246Z",
                    "last_modified_time": "2026-04-20T10:12:11.869260Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/eca3d336-206a-4421-9f57-fde0445046e2.png",
                    "name": "",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "espoon laulu",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824204/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-20T10:29:07.702273Z",
            "last_modified_time": "2026-04-20T10:29:07.702289Z",
            "date_published": "2026-04-20T09:05:54.608000Z",
            "start_time": "2026-05-27T15:00:00Z",
            "end_time": "2026-05-27T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Kevään ääniä - Espoon laulu- kuoron konsertti",
                "sv": "\nVårens ljud - Espoon laulu- körskonsert",
                "en": "Sounds of Spring - Espoon laulu -  Choir Concert"
            },
            "description": {
                "fi": "<p>Kevään ääniä -konsertti 27.5.2026</p><p>Kevään ääniin kuuluvat lintujen liverrykset, puron solina, sateen ropina, haravointi ja miksei myös kuorolaulu!</p><p>Espoon Laulu -kuoron ja kaupunginkirjaston yhteistyö jatkuu Kevään ääniä -konsertilla Lippulaivan kirjaston Salongissa. Luvassa keväisiä helmiä, yhteislauluja ja kurkistuksia kuoron tulevan 40-vuotisjuhlakonsertin ohjelmistoon.</p><p>Keskiviikko 27.5. klo 18</p><p>Lippulaivan kirjasto, Salonki</p><p>Espoonlahdenkatu 8</p><p>Konserttiin on vapaa pääsy. Tervetuloa nauttimaan ja laulamaan mukana!</p>",
                "sv": "<p>Vårens ljud- konsert 27.5.2026</p><p>Vårens ljud inkluderar fågelsång, sorlet från en bäck, regnets smattrande, krattning och, varför inte, körsång!</p><p>Samarbetet mellan Espoon Laulu-kören och stadsbiblioteket fortsätter med Vårens ljudkonsert i Lippulaiva biblioteks salong. Vårpärlor, allsång och en smygtitt på körens kommande 40-årsjubileumskonsert.</p><p><br></p><p>Onsdagen den 27.5. kl. 18.00</p><p>Lippulaiva bibliotek, Salonki</p><p>Espoonlahdenkatu 8</p><p>Fri entré till konserten. Välkommen att njuta och sjunga med!</p>",
                "en": "<p>Sounds of Spring Concert 27.5.2026</p><p>The sounds of spring include the chirping of birds, the murmur of a stream, the patter of rain, raking and, why not, choir singing!</p><p>The collaboration between the Espoon Laulu Choir and the City Library continues with the Sounds of Spring Concert in the Salongi of the Lippulaiva Library. Spring gems, group singing and a sneak peek into the choir's upcoming 40th anniversary concert.</p><p><br></p><p>Wednesday 27.5. at 6 pm</p><p>Lippulaiva Library, Salonki</p><p>Espoonlahdenkatu 8</p><p>Admission to the concert is free. Welcome to enjoy and sing along!</p>"
            },
            "info_url": {
                "fi": "https://www.espoonlaulu.fi/"
            },
            "name": {
                "fi": "Kevään ääniä - Espoon laulu- kuoron konsertti",
                "sv": "Vårens ljud - Espoon laulu- körskonsert",
                "en": "Sounds of Spring - Espoon laulu -  Choir Concert"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2vi346a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68495",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/4141404",
                        "en": "https://www.lippu.fi/eventseries/4141404"
                    },
                    "price": {
                        "fi": "39,50-89,50 €",
                        "en": "39,50-89,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1824203,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-20T10:13:20.807063Z",
                    "last_modified_time": "2026-04-20T10:13:20.807081Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789937.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824203/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-20T10:13:20.705444Z",
            "last_modified_time": "2026-04-20T10:13:20.972875Z",
            "date_published": null,
            "start_time": "2026-09-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "AIT Music Production & Goldenzwaig Creative Solutions",
                "en": "AIT Music Production & Goldenzwaig Creative Solutions"
            },
            "short_description": null,
            "description": {
                "fi": "<p>starring<br><b>Ingeborga Dapkunaite<br>Mikhail Zygar</b></p><p>Lost Stories tells five emotional novellas of love — and reveals how ordinary people can save the world. This captivating play is a powerful theatrical exploration of love, choice making, and the weight of responsibility, written by acclaimed author and director <b>Mikhail Zygar</b> and based on his latest book, <i>The Dark Side of the Earth</i>.</p><p>Lost Stories are performed by a truly extraordinary duo: <b>Ingeborga Dapkunaite</b> and <b>Mikhail Zygar</b> himself.</p><p><b>Zygar</b> is an internationally acclaimed writer, journalist and playwright. He is, in particular, known for his best-selling books that critically explain the nature of the modern Russian state, such as <i>All the Kremlin's Men and War</i> and <i>Punishment</i>. He was stamped by the Russian “Ministry of Justice” as a “foreign agent” and currently lives in exile in the USA.</p><p><b>Dapkunaite</b> is a world-renowned Lithuanian actress known for her versatile roles in international cinema and theatre, including the Oscar-winning <i>Burnt by the Sun</i>, Hollywood and Nordic hits like <i>Mission Impossible</i> and <i>Okkupert</i>, theatre production <i>In the Solitude of Cotton Fields</i> in a duo with John Malkovich, among many others.</p><p>Together, Zygar and Dapkunaite unfold Lost Stories as a series of five mesmerizing novellas. Each scene tells a unique story of a life at a crossroads — moments where a single, personal choice transcends the individual to become a turning point in history. From legendary figures like Lilya Brik and Sergei Parajanov to everyday individuals whose names never graced history books, this play proves that it is often the most \"ordinary\" people who hold the power to change the world’s course.</p><p>2026 has been a year of sweeping success for Lost Stories. Following sold-out performances in over 10 countries — including such theatre capitals as New York, Los Angeles, London, Paris, Amsterdam, Berlin and Barcelona — this acclaimed production finally arrives in Helsinki.</p><p>Don't miss this soul-stirring evening of storytelling that challenges us to see our own lives as part of a much larger, historical tapestry.</p><p>Lost Stories are performed in Russian (no subtitles). <br>The event is followed by a Q&A and an autograph session.</p>",
                "en": "<p>starring<br><b>Ingeborga Dapkunaite<br>Mikhail Zygar</b></p><p>Lost Stories tells five emotional novellas of love — and reveals how ordinary people can save the world. This captivating play is a powerful theatrical exploration of love, choice making, and the weight of responsibility, written by acclaimed author and director <b>Mikhail Zygar</b> and based on his latest book, <i>The Dark Side of the Earth</i>.</p><p>Lost Stories are performed by a truly extraordinary duo: <b>Ingeborga Dapkunaite</b> and <b>Mikhail Zygar</b> himself.</p><p><b>Zygar</b> is an internationally acclaimed writer, journalist and playwright. He is, in particular, known for his best-selling books that critically explain the nature of the modern Russian state, such as <i>All the Kremlin's Men and War</i> and <i>Punishment</i>. He was stamped by the Russian “Ministry of Justice” as a “foreign agent” and currently lives in exile in the USA.</p><p><b>Dapkunaite</b> is a world-renowned Lithuanian actress known for her versatile roles in international cinema and theatre, including the Oscar-winning <i>Burnt by the Sun</i>, Hollywood and Nordic hits like <i>Mission Impossible</i> and <i>Okkupert</i>, theatre production <i>In the Solitude of Cotton Fields</i> in a duo with John Malkovich, among many others.</p><p>Together, Zygar and Dapkunaite unfold Lost Stories as a series of five mesmerizing novellas. Each scene tells a unique story of a life at a crossroads — moments where a single, personal choice transcends the individual to become a turning point in history. From legendary figures like Lilya Brik and Sergei Parajanov to everyday individuals whose names never graced history books, this play proves that it is often the most \"ordinary\" people who hold the power to change the world’s course.</p><p>2026 has been a year of sweeping success for Lost Stories. Following sold-out performances in over 10 countries — including such theatre capitals as New York, Los Angeles, London, Paris, Amsterdam, Berlin and Barcelona — this acclaimed production finally arrives in Helsinki.</p><p>Don't miss this soul-stirring evening of storytelling that challenges us to see our own lives as part of a much larger, historical tapestry.</p><p>Lost Stories are performed in Russian (no subtitles). <br>The event is followed by a Q&A and an autograph session.</p>"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/69CBAA62ABB0A647589EF28EC850204F/Lost_Stories_Ingeborga_Dapkunaite_Mikhail_Zygar",
                "en": "http://www.savoyteatteri.fi/en/events/event/69CBAA62ABB0A647589EF28EC850204F/Lost_Stories_Ingeborga_Dapkunaite_Mikhail_Zygar"
            },
            "name": {
                "fi": "Lost Stories: Ingeborga Dapkunaite & Mikhail Zygar – by Mikhail Zygar",
                "en": "Lost Stories: Ingeborga Dapkunaite & Mikhail Zygar – by Mikhail Zygar"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68495/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:1b36fd54-ce31-4af4-8833-0dae3a5a272d",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Humppakestit341779322"
                    },
                    "price": {
                        "fi": "0"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api"
                }
            ],
            "created_time": "2026-04-20T09:16:41.521317Z",
            "last_modified_time": "2026-04-20T09:32:37.054198Z",
            "date_published": "2026-04-20T09:09:06Z",
            "start_time": "2026-04-24T21:00:00Z",
            "end_time": "2026-04-24T22:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "eläkeläiset"
            },
            "short_description": {
                "fi": "jep."
            },
            "description": {
                "fi": "<div><p>tervetuloa</p></div>"
            },
            "info_url": null,
            "name": {
                "fi": "Humppakestit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:1b36fd54-ce31-4af4-8833-0dae3a5a272d/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68220",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:47/?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/yso:p39492/?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": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1609712,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-13T09:13:34.854832Z",
                    "last_modified_time": "2026-03-13T09:13:34.854844Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786284.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1609712/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-13T09:13:34.756563Z",
            "last_modified_time": "2026-04-20T09:13:16.664229Z",
            "date_published": null,
            "start_time": "2026-04-23T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": null,
            "description": {
                "fi": "<p>CaisaKalliossa nähdään torstaina otteita kirjallisen ilmaisun lopputöistä. Niitä lukevat Erika von Boehm, Emma Knuuti, Aura Koivukangas, Jay Tauslahti, Ilmari Tommola ja Veera Valkila.</p><p>Kesto on noin tunti. Vapaa pääsy.</p>"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/911E661EC8E5541ED06B5639DB05EFFE/CaisaKallio_esittaa_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/911E661EC8E5541ED06B5639DB05EFFE/CaisaKallio_esittaa_",
                "en": "http://www.caisa.fi/en/events/event/911E661EC8E5541ED06B5639DB05EFFE/CaisaKallio_esittaa_"
            },
            "name": {
                "fi": "CaisaKallio esittää: – Kirjallisen ilmaisun lopputöitä",
                "sv": "CaisaKallio esittää:",
                "en": "CaisaKallio esittää:"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68220/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}