Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 7011,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=44&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=42&weekday=6%2C7"
    },
    "data": [
        {
            "id": "espoo_le:agozxhtkb4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:28401/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?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:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824130,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-19T11:05:00.919104Z",
                    "last_modified_time": "2025-09-19T11:05:00.919119Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/c93a50ea-97a3-4711-9343-68c4c782475a.jpg",
                    "name": "",
                    "cropping": "419,0,1500,1081",
                    "photographer_name": "Laura / Espoon kaupunginkirjasto",
                    "alt_text": "Kirjastoauto Välkky puiden siimeksessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824130/?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:agozxhq6vm/?format=api"
                }
            ],
            "created_time": "2026-04-07T08:38:34.956725Z",
            "last_modified_time": "2026-04-07T08:38:34.956743Z",
            "date_published": null,
            "start_time": "2026-07-04T08:00:00Z",
            "end_time": "2026-07-04T11: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,
            "name": {
                "fi": "Välkky Haltian retkilauantaissa",
                "sv": "Välkky på Haltias \"Retkilauantai\"",
                "en": "Välkky at Haltia’s OutdoorSaturday"
            },
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": {
                "fi": "Suomen luontokeskus Haltia",
                "sv": "Finlands naturcentrum Haltia",
                "en": "Haltia - The Finnish Nature Centre"
            },
            "short_description": {
                "fi": "Espoon kirjasto- ja kulttuuriauto Välkky päivystää Haltian edustalla  kello 11–14.",
                "sv": "Esbos bok- och kulturbuss Välkky finns på plats framför Haltia kl. 11–14.",
                "en": "Espoo’s library and culture bus Välkky is stationed in front of Haltia from 11 am to 2 pm."
            },
            "info_url": {
                "fi": "https://haltia.com/retkilauantai/",
                "sv": "https://haltia.com/retkilauantai/",
                "en": "https://haltia.com/retkilauantai/"
            },
            "description": {
                "fi": "<p>Espoon kirjasto- ja kulttuuriauto Välkky päivystää Haltian edustalla Retkilauantaina kello 11–14. Mukana on luonto- ja retkeilyaiheisia kirjoja. Löydät autosta myös kuukauden teeman mukaista aineistoa!</p><p>Tervetuloa lainaamaan ja palauttamaan kirjoja, tai ihan vain lueskelemaan, tai tutustumaan vähän erilaiseen kirjastoon!</p><p>Voit lainata aineistoa Helmet-kirjastokortilla ja palauttaa kirjat mihin tahansa Helmet-kirjastoon. Jos sinulla ei ole vielä kirjastokorttia, teemme sen sinulle. Ota henkkarit mukaan.</p>",
                "sv": "<p>Esbos bok- och kulturbuss Välkky finns på plats framför Haltia under Retkilauantai kl. 11–14. Det finns böcker med natur- och friluftstema ombord. Du hittar också material som passar månadens tema!</p><p>Välkommen att låna och returnera böcker, läsa en stund eller bara bekanta dig med ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och returnera böckerna till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Espoo’s library and culture bus Välkky is stationed in front of Haltia on Outdoor Saturday from 11 am to 2 pm. There are nature and hiking-themed books on board. You’ll also find materials related to the monthly theme!</p><p>Welcome to borrow and return books, enjoy some reading time, or simply explore a different kind of library!</p><p>You can borrow materials with your Helmet library card and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtkb4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtkpu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:28401/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?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:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824130,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-19T11:05:00.919104Z",
                    "last_modified_time": "2025-09-19T11:05:00.919119Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/c93a50ea-97a3-4711-9343-68c4c782475a.jpg",
                    "name": "",
                    "cropping": "419,0,1500,1081",
                    "photographer_name": "Laura / Espoon kaupunginkirjasto",
                    "alt_text": "Kirjastoauto Välkky puiden siimeksessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824130/?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:agozxhq6vm/?format=api"
                }
            ],
            "created_time": "2026-04-07T08:38:02.372462Z",
            "last_modified_time": "2026-04-07T08:38:02.372480Z",
            "date_published": "2026-04-07T08:32:00Z",
            "start_time": "2026-05-02T08:00:00Z",
            "end_time": "2026-05-02T11: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,
            "name": {
                "fi": "Välkky Haltian retkilauantaissa",
                "sv": "Välkky på Haltias \"Retkilauantai\"",
                "en": "Välkky at Haltia’s OutdoorSaturday"
            },
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": {
                "fi": "Suomen luontokeskus Haltia",
                "sv": "Finlands naturcentrum Haltia",
                "en": "Haltia - The Finnish Nature Centre"
            },
            "short_description": {
                "fi": "Espoon kirjasto- ja kulttuuriauto Välkky päivystää Haltian edustalla  kello 11–14.",
                "sv": "Esbos bok- och kulturbuss Välkky finns på plats framför Haltia kl. 11–14.",
                "en": "Espoo’s library and culture bus Välkky is stationed in front of Haltia from 11 am to 2 pm."
            },
            "info_url": {
                "fi": "https://haltia.com/retkilauantai/",
                "sv": "https://haltia.com/retkilauantai/",
                "en": "https://haltia.com/retkilauantai/"
            },
            "description": {
                "fi": "<p>Espoon kirjasto- ja kulttuuriauto Välkky päivystää Haltian edustalla Retkilauantaina kello 11–14. Mukana on luonto- ja retkeilyaiheisia kirjoja. Löydät autosta myös kuukauden teeman mukaista aineistoa!</p><p>Tervetuloa lainaamaan ja palauttamaan kirjoja, tai ihan vain lueskelemaan, tai tutustumaan vähän erilaiseen kirjastoon!</p><p>Voit lainata aineistoa Helmet-kirjastokortilla ja palauttaa kirjat mihin tahansa Helmet-kirjastoon. Jos sinulla ei ole vielä kirjastokorttia, teemme sen sinulle. Ota henkkarit mukaan.</p>",
                "sv": "<p>Esbos bok- och kulturbuss Välkky finns på plats framför Haltia under Retkilauantai kl. 11–14. Det finns böcker med natur- och friluftstema ombord. Du hittar också material som passar månadens tema!</p><p>Välkommen att låna och returnera böcker, läsa en stund eller bara bekanta dig med ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och returnera böckerna till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Espoo’s library and culture bus Välkky is stationed in front of Haltia on Outdoor Saturday from 11 am to 2 pm. There are nature and hiking-themed books on board. You’ll also find materials related to the monthly theme!</p><p>Welcome to borrow and return books, enjoy some reading time, or simply explore a different kind of library!</p><p>You can borrow materials with your Helmet library card and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtkpu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtk7i",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824131,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-07T06:25:54.739221Z",
                    "last_modified_time": "2026-04-07T06:25:54.739234Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/bec27b53-5e28-48a3-ae6c-6ff2f72b72ab.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "kuva luotu tekoälyllä",
                    "alt_text": "Ai-photo, where kids posing in Helsinki",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824131/?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-07T06:46:52.316622Z",
            "last_modified_time": "2026-04-07T06:46:52.316638Z",
            "date_published": null,
            "start_time": "2026-04-18T11:00:00Z",
            "end_time": "2026-04-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,
            "name": {
                "fi": "Suomalais-kiinalainen nuorten lausuntakilpailu ja kulttuuriesitys",
                "en": "Finnish-Chinese youth recitation contest & cultural performance"
            },
            "location_extra_info": {
                "fi": "Estradi",
                "en": "Estradi"
            },
            "provider": {
                "fi": "Suomen kiinalaisten lapsiperheiden yhdistys ry",
                "en": "Association of Chinese Families with Children in Finland"
            },
            "short_description": {
                "fi": "luvassa iloinen kokoontuminen, nuorten kykyjen esittelyä sekä kulttuurien vaalimista",
                "en": "A joyful gathering is in store, featuring a showcase of young talent and a celebration of culture"
            },
            "info_url": null,
            "description": {
                "fi": "Suomalais-kiinalainen nuorten lausuntakilpailu ja kulttuuriesitys<p><strong>Lauantaina 18.4.2026 klo 14.00-17.00/ Estradi</strong></p><p>Luvassa iloinen kokoontuminen, nuorten kykyjen esittelyä sekä kulttuurien vaalimista. Kaikki ovat tervetulleita seuraamaan esityksiä.</p><p><br></p><p>Järjestäjä: Suomen kiinalaisten lapsiperheiden yhdistys ry</p>",
                "en": "Finnish-Chinese youth recitation contest &amp; cultural performance<p><strong>Saturday, April 18, 2026, 2:00–5:00 p.m. / Estradi</strong></p><p>A joyful gathering is in store, featuring a showcase of young talent and a celebration of culture. Everyone is welcome to attend the performances.</p><p><br></p><p><br></p><p>Organizer: Association of Chinese Families with Children in Finland</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtk7i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67970",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubb-ankdamm-67xnaked-vuotalo-21179214/",
                        "sv": "https://www.lippu.fi/event/klubb-ankdamm-67xnaked-vuotalo-21179214/",
                        "en": "https://www.lippu.fi/event/klubb-ankdamm-67xnaked-vuotalo-21179214/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20€/15€",
                        "sv": "20€/15€",
                        "en": "20€/15€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494465,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-13T12:13:41.995440Z",
                    "last_modified_time": "2026-01-13T12:13:41.995456Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780482.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494465/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-13T12:13:41.753995Z",
            "last_modified_time": "2026-04-07T06:12:51.158891Z",
            "date_published": null,
            "start_time": "2026-04-10T15: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,
            "name": {
                "fi": "67xNaked – Klubb Ankdamm",
                "sv": "67xNaked – Klubb Ankdamm",
                "en": "67xNaked – Klubb Ankdamm"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "67xNaked yhdistelee varhaisjazzin energiaa, improvisaatiota ja performanssia luoden rohkeita, yllätyksellisiä ja vahvasti vuorovaikutteisia konserttikokemuksia.",
                "sv": "67xNaked kombinerar early jazz-energi, improvisation och performance och skapar djärva, överraskande och starkt interaktiva konsertupplevelser.",
                "en": "67xNaked blends early-jazz energy, improvisation and performance to create bold, surprising and strongly interactive concert experiences."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7F423ACB2FF992FF71379E3A19640799/67xNaked",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/7F423ACB2FF992FF71379E3A19640799/67xNaked",
                "en": "http://www.vuotalo.fi/en/events/event/7F423ACB2FF992FF71379E3A19640799/67xNaked"
            },
            "description": {
                "fi": "<p>67xNaked yhdistelee varhaisjazzin energiaa, improvisaatiota ja performanssia luoden rohkeita, yllätyksellisiä ja vahvasti vuorovaikutteisia konserttikokemuksia.</p><p>67xNaked on vuonna 2017 perustettu intensiivinen, omaperäinen ja performatiivinen jazz-yhtye, joka kiertää aktiivisesti Suomessa, Baltian maissa, Isossa-Britanniassa ja Irlannissa. Yhtye tunnetaan yllättävistä, improvisaatioon perustuvista esityksistään, joissa se yhdistää varhaisen jazzin ja bluesin raakaa energiaa, leikkisyyttä ja rohkeutta iloon, luovuuteen sitoutuen esitysten vapauteen.</p><p>Yhtyeen repertuaari kattaa 1920–40-lukujen jazzia, omia sävellyksiä, spoken wordia, performanssitaidetta ja tanssia. Jazz toimii alustana vahvasti vuorovaikutteiselle ja improvisoidulle keikkakokemukselle, joka on joka kerta eri tavalla eläväinen.<br>67xNaked ei kumartele minkään genren tai rajan edessä. Sen sijaan se jatkaa varhaisen jazzin perintöä vapautuksen muotona; huutona, juhlana ja ilon kipinänä kaoottisen maailman keskellä.</p><p>Jimbino Vegan (UK) – klarinetti, laulu, kitara<br>Jack Butler (TR) – paasuna, laulu<br>Tomi Kettunen (FI) – kitara<br>Philip Holm (FI) – kontrabasso<br>Alm Gnista (FI) – lyömäsoittimet, spoken word</p><p>Kieli: ruotsi, suomi, englanti</p><p>Kesto 2 tuntia sis. tauon. Klubi-ilta, A-oikeudet, tarjoilusta vastaa Kahvila Pokkari. Ovet avataan klo 17.30. <br>Liput @ Lippu.fi tai lippuautomaatilta ovelta.</p>",
                "sv": "<p>67xNaked kombinerar early jazz-energi, improvisation och performance och skapar djärva, överraskande och starkt interaktiva konsertupplevelser.</p><p>67xNaked, grundat 2017, är en intensiv, originell och performativ jazzensemble som turnerar aktivt i Finland, Baltikum, Storbritannien och Irland. Gruppen är känd för sina överraskningsfyllda och improvisationsdrivna shower som blandar den råa energin, lekfullheten och djärvheten i tidig jazz och blues med glädje, kreativitet och ett djupt engagemang för friheten i framförandet.</p><p>Deras repertoar består av jazz från 1920- till 1940-talet, egna kompositioner, spoken word, performancekonst och dans. Jazzen fungerar som bas för en starkt platsresponsiv och improviserad upplevelse, alltid unik, alltid levande i ögonblicket.<br>67xNaked böjer sig inte för någon genre eller gräns. I stället för det vidare arvet från den tidiga jazzen som en form av befrielse; ett rop, en hyllning och en gnista av glädje mitt i en kaotisk värld.</p><p>Jimbino Vegan (UK) – klarinett, gitarr, sång<br>Jack Butler (TR) – trombon, sång<br>Tomi Kettunen (FI) – gitarr<br>Philip Holm (FI) – kontrabas<br>Alm Gnista (FI) – slagverk, spoken word</p><p>Språk: svenska, finska, engelska</p><p>Längd: 2 h inkl.paus. Klubb-kväll, A-rättigheter, Café Pokkari svarar för serveringen. Dörrarna öppnas kl. 17.30.<br>Biljetter från Lippu.fi eller från biljettautomaten vid dörren.</p>",
                "en": "<p>67xNaked blends early-jazz energy, improvisation and performance to create bold, surprising and strongly interactive concert experiences.</p><p>67xNaked, founded in 2017, is a fierce, original and performative jazz ensemble, touring actively across Finland, the Baltics, the UK and Ireland. Known for their surprise-filled, improvisation-driven shows, the group blends the raw energy, playfulness, and boldness of early jazz and blues with joy, creativity, and a deep commitment to the freedom of performance.</p><p>Their repertoire spans 1920s–40s jazz, original compositions, spoken word, performance art, and dance. Jazz acts as the foundation for a strongly site responsive and improvised experience; always unique, always alive in the moment.<br>67xNaked bows to no genre or boundary. Instead, they carry forward the legacy of early jazz as a form of liberation; a cry, a celebration, and a spark of joy in the midst of a chaotic world.<br>Line up:</p><p>Jimbino Vegan (UK) – clarinet, guitar, vocals<br>Jack Butler (TR) – trombone, vocals<br>Tomi Kettunen (FI) – guitar<br>Philip Holm (FI) – double bass<br>Alm Gnista (FI) – percussion, spoken word</p><p>Duration 2h including intermission. Club Night, A-rights, refreshments by Café Pokkari. The doors will open at 17.30.<br>Tickets from Lippu.fi or from the ticket machine at the door.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67970/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68089",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3873721",
                        "sv": "https://www.lippu.fi/eventseries/name-3873721",
                        "en": "https://www.lippu.fi/eventseries/name-3873721"
                    },
                    "description": null,
                    "price": {
                        "fi": "22,80-38,90 €",
                        "sv": "22,80-38,90 €",
                        "en": "22,80-38,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494846,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-11T10:12:55.002712Z",
                    "last_modified_time": "2026-02-11T10:12:55.002726Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785481.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494846/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-11T10:12:54.846447Z",
            "last_modified_time": "2026-04-02T09:12:55.944229Z",
            "date_published": null,
            "start_time": "2026-04-12T11: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,
            "name": {
                "fi": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Loppuunmyyty! / Sold out!",
                "sv": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Slutsåld!",
                "en": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Sold out!"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Jumppatytöt ry",
                "sv": "Jumppatytöt ry",
                "en": "Jumppatytöt ry"
            },
            "short_description": {
                "fi": "Jumppatytöt on esitys joukkuevoimistelusta.",
                "sv": "Jumppatytöt är en föreställning om estetisk truppgymnastik.",
                "en": "Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/06970AD0DCFF4E15C48076F7330AA007/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/06970AD0DCFF4E15C48076F7330AA007/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki",
                "en": "http://www.savoyteatteri.fi/en/events/event/06970AD0DCFF4E15C48076F7330AA007/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki"
            },
            "description": {
                "fi": "<p>Jumppatytöt on esitys joukkuevoimistelusta.</p><p>Se on entisten voimistelijoiden matka menneisiin ja nykyisiin kehoihin – harjoittelun, kilpailun, vertailun, arvioinnin, ilon, kauneuden, yhteisöllisyyden ja vertaisuuden äärelle.<br>Esitys on oodi suomalaiselle naisvoimistelulle ja kaikille, jotka ovat joskus harjoitelleet niin, että suussa maistuu metalli.<br>Erityiskiitos päiväkirjoille vuosina 1998-2009 ja tytöille, jotka niitä jaksoivat raapustaa ja häpeästä huolimatta säilyttää.</p><p>“NAUTTIKAA!”</p><p>Jumppatytöt kiertueen tekijätiedot:</p><p>Teksti, ohjaus, dramaturgia, esiintyminen: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografia: Antton Laine ja työryhmä<br>Äänisuunnittelu: Roy Boswell, Oscar Fagerudd ja työryhmä<br>Video: Työryhmän kotivideoista ja arkistomateriaaleista koostanut Liisa Mudist<br>Kiertueen valosuunnittelu: Heikki Paasonen<br>Kiertueen skenografia: Heikki Paasonen ja työryhmä<br>Kiertueen teknikot: Oscar Fagerudd, Aleksi Karjalainen ja Pinja Kokkonen<br>Kiertueen tour manager: Jukka Siurua<br>Kiertueen tuotanto: Ella Lahdenmäki ja työryhmä<br>Esityskuvat: Jukka Hämeenniemi / @agg_dad Juliste: Jaakko Pietiläinen</p><p>Suositusikäraja: K-12<br>Esityksen kesto: 1 h 45 min, ei väliaikaa</p><p>Esitystä ovat tukeneet: Kansan sivistysrahasto (presidentti Tarja Halosen rahasto), Ida Aalberg -säätiö (Petra Uexküllin rahasto), Samuel Huberin taidesäätiö, Helsingin kaupunki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>",
                "sv": "<p>Jumppatytöt är en föreställning om estetisk truppgymnastik.</p><p>Den beskriver tidigare gymnasters resa till sina tidigare och nuvarande kroppar – träning, tävling, jämförelser, bedömning, glädje, skönhet, gemenskap och kamratskap.<br>Föreställningen är en hyllning till den finländska damgymnastiken och till alla som någon gång tränat så att de fått blodsmak i munnen.<br>Ett särskilt tack till dagböckerna från 1998–2009 och till de flickor som orkade skriva i dem och behöll dem trots skammen.</p><p>”NJUT!”</p><p>Om skaparna av Jumppatytöt-turnén:</p><p>Text, regi, dramaturgi, framförande: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografi: Antton Laine och en arbetsgrupp<br>Ljuddesign: Roy Boswell, Oscar Fagerudd och en arbetsgrupp<br>Video: Liisa Mudist har sammanställt arbetsgruppens hemmavideor och arkivmaterial<br>Ljusdesign för turnén: Heikki Paasonen<br>Turnéns scenografi: Heikki Paasonen och en arbetsgrupp<br>Tekniker under turnén: Oscar Fagerudd, Aleksi Karjalainen och Pinja Kokkonen<br>Tour manager för turnén: Jukka Siurua<br>Turnéproduktion: Ella Lahdenmäki och en arbetsgrupp<br>Bilder från föreställningen: Jukka Hämeenniemi/@agg_dad Juliste: Jaakko Pietiläinen</p><p>Åldersrekommendation: K-12<br>Föreställningens längd: 1 h 45 min, ingen paus</p><p>Föreställningen har fått stöd av: Folkets Kulturfond (president Tarja Halonens fond), Ida Aalberg-stiftelsen (Petra Uexkülls fond), Samuel Hubers konststiftelse, Helsingfors stad, Finska Kulturfonden Birkaland, Finska Kulturfonden Nyland, Finska Kulturfonden Egentliga Finland</p>",
                "en": "<p>Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics.</p><p>It is a journey of former gymnasts into past and present bodies – into training, competition, comparison, evaluation, joy, beauty, communality and peerage.<br>The performance is an ode to Finnish women’s gymnastics and to everyone who has ever practised until they can taste metal in their mouth.<br>Special thanks to diary entries from 1998–2009 and the girls who kept writing them and held onto them despite the embarrassment.</p><p>“ENJOY!”</p><p>Jumppatytöt tour creative team:</p><p>Script, direction, dramaturgy, performance: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Choreography: Antton Laine and the team<br>Sound design: Roy Boswell, Oscar Fagerudd and the team<br>Video: Compiled by Liisa Mudist from the team’s home videos and archival material<br>Lighting design for the tour: Heikki Paasonen<br>Scenography for the tour: Heikki Paasonen and the team<br>Tour technicians: Oscar Fagerudd, Aleksi Karjalainen and Pinja Kokkonen<br>Tour manager: Jukka Siurua<br>Tour production: Ella Lahdenmäki and the team<br>Performance images: Jukka Hämeenniemi / @agg_dad Poster: Jaakko Pietiläinen</p><p>Minimum age recommendation: 12<br>Performance duration: 1 h 45 min, no intermission</p><p>The show is supported by: People’s Education Fund (President Tarja Halonen Fund), Ida Aalberg Foundation (Petra Uexküll Fund), Samuel Huber Art Foundation, City of Helsinki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68089/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68127",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-21341081/",
                        "sv": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-21341081/",
                        "en": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-21341081/"
                    },
                    "description": null,
                    "price": {
                        "fi": "16,80€/10€",
                        "sv": "16,80€/10€",
                        "en": "16,80€/10€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1791684,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-02T06:13:08.821743Z",
                    "last_modified_time": "2026-04-02T06:13:08.821756Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785681.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1791684/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-02T06:13:08.764506Z",
            "last_modified_time": "2026-04-02T06:13:08.905263Z",
            "date_published": null,
            "start_time": "2026-05-16T12: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,
            "name": {
                "fi": "Balettikoulu Anne Hirvonen: Tuhkimo",
                "sv": "Balettikoulu Anne Hirvonen: Tuhkimo",
                "en": "Balettikoulu Anne Hirvonen: Tuhkimo"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Balettikoulu Anne Hirvosen Kevätnäytös"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/232BC920D4E11E8ED9643E9B593F8AEF/Balettikoulu_Anne_Hirvonen_Tuhkimo",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/232BC920D4E11E8ED9643E9B593F8AEF/Balettikoulu_Anne_Hirvonen_Tuhkimo",
                "en": "http://www.malmitalo.fi/en/events/event/232BC920D4E11E8ED9643E9B593F8AEF/Balettikoulu_Anne_Hirvonen_Tuhkimo"
            },
            "description": {
                "fi": "<p>Balettikoulu Anne Hirvosen Kevätnäytös</p><p>Kesto: 1 t</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68127/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68126",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-21341080/",
                        "sv": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-21341080/",
                        "en": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-21341080/"
                    },
                    "description": null,
                    "price": {
                        "fi": "16,80 €/ 10 €",
                        "sv": "16,80 €/ 10 €",
                        "en": "16,80 €/ 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1791683,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-02T06:13:08.553321Z",
                    "last_modified_time": "2026-04-02T06:13:08.553337Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785680.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1791683/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-02T06:13:08.485066Z",
            "last_modified_time": "2026-04-02T06:13:08.657520Z",
            "date_published": null,
            "start_time": "2026-05-16T09: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,
            "name": {
                "fi": "Balettikoulu Anne Hirvonen: Tuhkimo",
                "sv": "Balettikoulu Anne Hirvonen: Tuhkimo",
                "en": "Balettikoulu Anne Hirvonen: Tuhkimo"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Balettikoulu Anne Hirvosen Kevätnäytös"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C998D35D53CCA832EDA58A3369F2486A/Balettikoulu_Anne_Hirvonen_Tuhkimo",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C998D35D53CCA832EDA58A3369F2486A/Balettikoulu_Anne_Hirvonen_Tuhkimo",
                "en": "http://www.malmitalo.fi/en/events/event/C998D35D53CCA832EDA58A3369F2486A/Balettikoulu_Anne_Hirvonen_Tuhkimo"
            },
            "description": {
                "fi": "<p>Balettikoulu Anne Hirvosen Kevätnäytös</p><p>Kesto: 1 t</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68126/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnsnbvaiq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuuua/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuvoy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuwb4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuwwq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuxle/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbux5i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuyre/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuzea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuzwa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu2k4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu264/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu3si/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu4fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu4yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu5my/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu57u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu6si/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu7fe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu7xa/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494219,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-16T08:59:30.175118Z",
                    "last_modified_time": "2025-12-16T08:59:30.175134Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0149cf2a-122d-4b0e-b714-7d3fe80b1424.png",
                    "name": "",
                    "cropping": "217,0,770,553",
                    "photographer_name": "",
                    "alt_text": "Kolme kuvaa, joissa jokaisessa seniori on opastamassa toista seniorissa jonkinlaisen digipulman kanssa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494219/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-12-16T09:13:20.600088Z",
            "last_modified_time": "2026-04-02T06:07:32.291878Z",
            "date_published": null,
            "start_time": "2026-01-14T08:00:00Z",
            "end_time": "2026-05-20T09: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,
            "name": {
                "fi": "Enter ry - digiopastusta seniorilta seniorille",
                "sv": "Enter rf – digital handledning från senior till senior",
                "en": "Enter ry – digital guidance from senior to senior"
            },
            "location_extra_info": {
                "fi": "Kari",
                "sv": "Kari",
                "en": "Kari"
            },
            "provider": {
                "fi": "Enter  ry",
                "sv": "Enter  ry",
                "en": "Enter  ry"
            },
            "short_description": {
                "fi": "Kiireetöntä opastusta tietoteknisissä asioissa",
                "sv": "Lugn, icke-brådskande handledning i IT-frågor",
                "en": "Unhurried guidance in IT matters"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kiireetöntä opastusta tietoteknisissä asioissa</p><p>Opastuksessa käydään yleensä läpi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia, tai laitteen hankintaa.</p><p>Varaa aika kirjastolta joko kirjaston palvelutiskiltä tai soittamalla 09-81657723</p>",
                "sv": "<p>Lugn, icke-brådskande handledning i IT-frågor</p><p>Handledningen omfattar vanligtvis grundläggande användning av mobiltelefon, surfplatta eller dator, elektroniska tjänster eller inköp av en enhet.</p><p>Boka tid via biblioteket antingen vid bibliotekets servicedisk eller genom att ringa 09-81657723.</p>",
                "en": "<p>Unhurried guidance in IT matters for seniors</p><p>The guidance usually covers basic use of a mobile phone, tablet, or computer, digital services, or purchasing a device.</p><p>Book an appointment at the library either at the service desk or by calling 09-81657723.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbvaiq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agohvtp6ga",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtpypu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtpzfm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtpzta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtpz74/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp2nq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp23a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp3hu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp3va/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp4da/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp4pm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp44e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp5lu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp5yy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvttfwq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvttgha/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvttgxy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtthiy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtthy4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvttika/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494915,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-12T13:31:10.669319Z",
                    "last_modified_time": "2025-12-12T13:31:10.669334Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/09716021-71f6-45d4-b8a3-3dafe694fa7d.png",
                    "name": "",
                    "cropping": "218,0,769,552",
                    "photographer_name": "",
                    "alt_text": "Seniori-ikäisiä ihmisiä opettamassa toisiaan digilaitteilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494915/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-12-12T13:51:20.799712Z",
            "last_modified_time": "2026-04-02T06:06:16.093899Z",
            "date_published": null,
            "start_time": "2026-01-13T08:00:00Z",
            "end_time": "2026-05-19T09: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,
            "name": {
                "fi": "Enter ry - Digiopastusta seniorilta seniorille",
                "sv": "Enter - Digistöd från seniorer till seniorer",
                "en": "Enter - Digital guidance from seniors to seniors"
            },
            "location_extra_info": {
                "fi": "Kari",
                "sv": "Kari",
                "en": "Kari"
            },
            "provider": {
                "fi": "Enter",
                "sv": "Enter",
                "en": "Enter"
            },
            "short_description": {
                "fi": "Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole",
                "sv": "Kom modigt och fråga vad som helst om din digitala apparat - det finns inga dumma frågor.",
                "en": "Come and ask anything of your digital device, there are no silly questions."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole. Saat kiireetöntä opastusta tietoteknisissä asioissa.</p><p>Opastuksessa käydään yleensä läpi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia, tai laitteen hankintaa.</p><p>Varaa aika kirjastolta joko kirjaston palvelutiskiltä tai soittamalla 09-81657723</p>",
                "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater. Enters handledning är personlig, avgiftsfri och sker i lugn takt.&nbsp;Hos oss handleder seniorer andra seniorer.</p><p>Se aktuell information om platser där du kan få Enters handledning&nbsp;på svenska:&nbsp;https://www.entersenior.fi/sv/handledning/huvudstadsregionen/&nbsp;</p>",
                "en": "<p>Enter ICT Association for Seniors offers personal, free of charge, peer tutoring for the elderly people. With us, seniors guide other seniors with the use of digital devices.</p><p>See where to get Enter's Digital Support&nbsp;in English:&nbsp;https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp6ga/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agn2dx4j44",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx3zim/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx32hy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx325q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx33ue/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx34jm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx347m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx35vq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx36li/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx37cq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx37zq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4aoi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4bee/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4b4a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4cru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4dje/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4d7m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4ex4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4fpu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4ggm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4g6i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4huq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4iku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4jem/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490140,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-06T12:32:34.854849Z",
                    "last_modified_time": "2025-08-06T12:32:34.854864Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2c4bf282-bcc7-456f-ac98-f084f3f47a81.png",
                    "name": "",
                    "cropping": "172,0,519,347",
                    "photographer_name": "",
                    "alt_text": "Kuvassa teksti: Hei seniori, lähde mukaan polulle kohti parempaa hyvinvointia! Kiinnostaako terveyden ja hyvinvoinnin edistäminen yhdessä muiden seniorien kanssa?",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490140/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2026-01-09T07:58:53.914548Z",
            "last_modified_time": "2026-04-02T05:47:13.130373Z",
            "date_published": null,
            "start_time": "2026-01-12T10:30:00Z",
            "end_time": "2026-06-15T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ison Omenan kirjaston senioreiden Hyvinvointipolku",
                "sv": "Seniorernas Välmåendestig i Iso Omena biblioteket",
                "en": "Wellbeing Path for Seniors at Iso Omena Library"
            },
            "location_extra_info": {
                "fi": "Meri",
                "sv": "Meri",
                "en": "Meri"
            },
            "provider": null,
            "short_description": {
                "fi": "Ikätoverien seuraa, infoa ja keskustelua",
                "sv": "Trevligt sällskap, nyttig information och givande samtal",
                "en": "Good company, helpful info, and engaging conversation"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kiinnostaako sinua terveyden ja hyvinvoinnin edistäminen yhdessä muiden senioreiden kanssa?</p><p>Ikääntyneiden avoin hyvinvointipolku on suunniteltu tuomaan sisältöä ja energiaa elämääsi!&nbsp;</p><p>Maanantaisin klo 13-14.30</p><p>19.1.26 alkaen</p><p>Ison Omenan palvelutori, kokoustila MERI</p><p><br></p><p>Toiminta on maksutonta</p><p><br></p><p>TULE TAI SOITA!</p><p>Jouni 040 162 6427</p><p>Pirjo 046 877 1917&nbsp;</p>",
                "sv": "<p>Saknar du något att göra</p><p>och sällskap av jämnåriga?</p><p>Du är varmt välkommen till de äldres öppna vardagsrum,</p><p>OLKKARI</p><p>på måndagar med start 12.1. kl. 13-14:30</p><p>Iso Omena bibliotek (Meri-mötesrum)</p><p>Verksamheten är kostnadsfri</p><p><br></p><p>KOM ELLER RING!</p><p>Jouni 040 162 6427</p><p>Pirjo 046 877 1917</p>",
                "en": "<p>Looking for something to do and the company of peers?</p><p>You are warmly welcome to the open lounge for seniors,</p><p>OLKKARI</p><p>On Mondays starting January 12th, from 13am to 2:30 pm.</p><p>Iso Omena Library (Meri meeting room)</p><p>Participation is free of charge</p><p><br></p><p>COME OR CALL!</p><p>Jouni 040 162 6427</p><p>Pirjo 046 877 1917</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4j44/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny27foea",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27ffpm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27ff7u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fgri/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fhau/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fhqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fibi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fiqe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fjay/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fjqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fkbi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fkrq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27flcq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27flsa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fmc4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fmsq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fncm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fnsq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494367,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T08:29:39.316473Z",
                    "last_modified_time": "2026-01-05T08:29:39.316494Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/973e2aab-76dd-4cd7-8eb7-b948ff9f5782.jpeg",
                    "name": "",
                    "cropping": "232,0,818,586",
                    "photographer_name": "",
                    "alt_text": "Senioreita jumppaamassa tuolilla istuen",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494367/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2026-01-05T08:34:35.784381Z",
            "last_modified_time": "2026-04-02T05:45:40.185483Z",
            "date_published": null,
            "start_time": "2026-01-12T08:00:00Z",
            "end_time": "2026-05-04T08: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,
            "name": {
                "fi": "Tuolijumppa + kehonhuolto ja tasapaino Ison Omenan kirjastossa",
                "sv": "Stolgymnastik + kroppsvård och balans på Ison Omenas bibliotek",
                "en": "Chair exercise + body care and balance at Iso Omena Library"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "short_description": {
                "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä) Tervetuloa!",
                "sv": "Stolgymnastik, kroppsvård och balans varje måndag. (ingen undervisning under helgdagar) Välkommen!",
                "en": "Chair gymnastics, streching and balance every Monday. (no instruction during public holidays) Welcome!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>Ma klo 10.00-10.30 Tuolijumppa</p><p>Ma klo 10.35-11.05 Kehonhuolto &amp;tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p><p><br></p><p>Tuolijumppa Ison Omenan kirjastossa myös joka keskiviikko 10:30-11:35</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Stolgymnastik, kroppsvård och balans varje måndag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>Mån 10.00-10.30 Stolgymnastik</p><p>Mån 10.35-11.05 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p><p><br></p><p>Stolgympa på Ison Omenas bibliotek även varje onsdag kl. 10.30–11.35</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>Chair gymnastics, streching and balance every Monday. (no instruction during public holidays)</p><p>Schedule:</p><p>Mon 10.00-10.30 Chair exercises</p><p>Mon 10.35-11.05 Body care &amp; balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p><p><br></p><p>Chair exercise at Iso Omena Library also every Wednesday from 10:30 AM to 11:35 AM</p><p><br></p><p>#helloespoo</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27foea/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68272",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1683110,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-20T12:14:26.966488Z",
                    "last_modified_time": "2026-03-20T12:14:26.966505Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786145.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1683110/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-20T12:14:26.610294Z",
            "last_modified_time": "2026-04-01T13:14:01.050494Z",
            "date_published": null,
            "start_time": "2026-06-13T11:30:00Z",
            "end_time": "2026-06-13T15: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,
            "name": {
                "fi": "Rosettes, Nevala + kesätekemistä ja kohtaamisia – Malmin tapahtumakesä 2026",
                "sv": "Rosettes, Nevala + sommaraktiviteter och möten – Malms evenemangssommar 2026",
                "en": "Rosettes, Nevala + summer activities and encounters – Malmi Summer of Events 2026"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule mukaan puuhastelemaan nuorten ideoiman luovan tekemisen parissa ja tanssimaan monipuolisiin äänimaailmoihin vievän Rosettesin ja soft-rock-yhtye Nevalan tahtiin!",
                "sv": "Kom med och pyssla med kreativa aktiviteter som ungdomarna tänkt ut och dansa till Rosettes mångsidiga ljudvärldar och soft-rock-gruppen Nevala!",
                "en": "Come join us for creative activities created by young people and dance to the diverse soundscapes of Rosettes and soft rock band Nevala!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/27A936EFADAC1A0D50FED0CE4AE42AAA/Rosettes_Nevala_kesatekemista_ja_kohtaamisia",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/27A936EFADAC1A0D50FED0CE4AE42AAA/Rosettes_Nevala_sommaraktiviteter_och_moten",
                "en": "http://www.malmitalo.fi/en/events/event/27A936EFADAC1A0D50FED0CE4AE42AAA/Rosettes_Nevala_summer_activities_and_encounters"
            },
            "description": {
                "fi": "<p>Tule mukaan puuhastelemaan nuorten ideoiman luovan tekemisen parissa ja tanssimaan monipuolisiin äänimaailmoihin vievän Rosettesin ja soft-rock-yhtye Nevalan tahtiin!</p><p><b>Päivän ohjelma</p><p>klo 14.30–18.30 Malmin kesätyönuorten ideoimaa kivaa kesätekemistä ja kohtaamisia kaiken ikäisille</b><br>Malmin nuorisotyöyksikön kesätyöntekijät toteuttavat kaikille avointa hyvän mielen toimintaa. Tule mukaan!<br>Paikka: Ala Malmin tori</p><p><b>klo 15.00–16.00 Nevala</b></p><p>Nevala on neljän entisen kämppäkaverin muodostama helsinkiläinen bändi, jonka musiikissa ystävyys, ajaton laulunkirjoitus ja pop nerous kohtaavat. Yhtyeen toinen albumi Take Me to the Honky Tonk käsittelee vapautumista ja hullaantumista – tapahtuvat ne sitten henkisesti, musiikillisesti tai halvassa yökerhossa.<br>Albumi on äänitetty pienessä hirsimökissä Väinö Karjalaisen johdolla, ja osa kappaleista on syntynyt Styrsön saarella Göteborgin edustalla.<br>Nevalan nelikkoa säestää bändi, jossa soittavat Riku Sonkkanen, Kalle Outila ja Adeola Ikuesan.<br>Paikka: Konttilava, Ala Malmin tori</p><p><b>klo 17.00–18.00 Rosettes</b></p><p>Rosettes on vuonna 2021 Helsingissä perustettu kokoonpano, jonka vaikutteet ulottuvat rytmimusiikin eri genreihin. DIY henkisyys yhdistyy soulin ja R’n’B:n grooveen sekä jazzmaiseen tunnelmaan.</p><p>Psykedeelinen ja tanssittava Rosettes on keikkaillut muun muassa Burghausenin jazzviikoilla ja Tavastialla. Viimeisin vinyylisingle Souvenir/Green Ray julkaistiin Timmion Recordsin kautta elokuussa 2024 ja debyyttialbumi Lifestyles 4.4.2025.</p><p>Kokoonpano:<br>Rosita Halonen – basso<br>Jaakko Hietakangas – kitara<br>Markus Hietamies – rummut<br>Tatu Kuisma – kitara<br>Tytti Roto – laulu ja koskettimet<br>Eero Tarmio – perkussio<br>Eero Koski – pasuuna<br>Ami Vuorinen – tenorisaksofoni</p>",
                "sv": "<p>Kom med och pyssla med kreativa aktiviteter som ungdomarna tänkt ut och dansa till Rosettes mångsidiga ljudvärldar och soft-rock-gruppen Nevala!</p><p><b>Dagens program</p><p>kl. 14.30–18.30<br>Trevliga sommaraktiviteter och möten för alla åldrar som planerats av unga sommarjobbare i Malm</b></p><p>Sommarjobbarna vid enheten för ungdomsarbete i Malm ordnar feel good-verksamhet som är öppen för alla. Kom med!<br>Plats: Nedre Malms torg</p><p><b>kl. 15.00–16.00<br>Nevala</b></p><p>Nevala är ett band från Helsingfors som består av fyra vänner som tidigare bodde ihop. I deras musik möts vänskapen, tidlöst låtskrivande och popgenialitet. Bandets andra album, Take Me to the Honky Tonk, handlar om frigörelse och förälskelse – oavsett om det sker andligt, musikaliskt eller på en billig nattklubb.<br>Albumet spelades in i en liten timmerstuga under ledning av Väinö Karjalainen, och några av låtarna skrevs på ön Styrsö utanför Göteborg.<br>Nevala-kvartetten ackompanjeras av ett band bestående av Riku Sonkkanen, Kalle Outila och Adeola Ikuesan.<br>Plats: Containerscenen, Nedre Malms torg</p><p><b>kl. 17.00–18.00<br>Rosettes</b></p><p>Rosette är ett band som grundades 2021 i Helsingfors, och vars influenser kommer från olika genrer inom rytmisk musik. DIY-anda kombineras med soul- och R'n'B-grooves och en jazzig atmosfär.</p><p>Psykedeliska och dansanta Rosettes har spelat bland annat på Jazzveckan i Burghausen och på Tavastia. Den senaste vinylsingeln Souvenir/Green Ray släpptes genom Timmion Records i augusti 2024 och debutalbumet Lifestyles den 4 april 2025.</p><p><i>Sammansättning:</i><br>Rosita Halonen – bas<br>Jaakko Hietakangas – gitarr<br>Markus Hietamies – trummor<br>Tatu Kuisma – gitarr<br>Tytti Roto – sång och keyboard<br>Eero Tarmio – slagverk<br>Eero Koski – trombon<br>Ami Vuorinen – tenorsaxofon</p>",
                "en": "<p>Come join us for creative activities created by young people and dance to the diverse soundscapes of Rosettes and soft rock band Nevala!</p><p><b>The day’s programme</p><p>14.30–18.30<br>Fun summer activities and encounters for all ages, organised by the Malmi Youth Work Unit’s young summer workers</b></p><p>Malmi Youth Work Unit’s summer workers will provide enjoyable activities open to all. Join us!<br>Place: Ala-Malmi Square</p><p><b>15.00–16.00<br>Nevala</i></p><p>Nevala are a Helsinki-based band formed by four former roommates, whose music is a meeting of friendship, timeless songwriting and pop genius. The band’s second album Take Me to the Honky Tonk is about liberation and infatuation – whether they happen emotionally, musically or in a cheap nightclub.<br>The album was recorded in a small log cabin under the direction of Väinö Karjalainen, and some of the songs were written on the island of Styrsö off Gothenburg.<br>The Nevala quartet will be accompanied by a band featuring Riku Sonkkanen, Kalle Outila and Adeola Ikuesan.<br>Place: Container stage, Ala-Malmi Square</p><p><b>17.00-18.00<br>Rosettes</b></p><p>Rosettes are a Helsinki-based band founded in 2021, whose influences span different genres of rhythm music. The band combine a DIY mindset with soul, R’n’B grooves and a jazzy atmosphere.</p><p>Psychedelic and danceable in their sound, Rosettes have performed at venues and events such as the Burghausen International Jazz Week in Germany and Tavastia here in Finland. The group’s latest vinyl single Souvenir/Green Ray was released via Timmion Records in August 2024, and their debut album Lifestyles was released on 4 April 2025.</p><p><i>Line-up:</i><br>Rosita Halonen – bass<br>Jaakko Hietakangas – guitar<br>Markus Hietamies – drums<br>Tatu Kuisma – guitar<br>Tytti Roto – vocals and keyboard<br>Eero Tarmio – percussion<br>Eero Koski – trombone<br>Ami Vuorinen – tenor saxophone</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68272/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtp3u",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtrpm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/kiintymysvanhemmuus",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824136,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-01T13:11:12.993629Z",
                    "last_modified_time": "2026-04-01T13:11:12.993643Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/717bd949-44e3-46db-85a6-02bb70e17e3c.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "luumupuu ja pieniä otuksia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824136/?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-03-11T10:27:58.923422Z",
            "last_modified_time": "2026-04-01T13:12:50.609980Z",
            "date_published": null,
            "start_time": "2026-05-09T08:00:00Z",
            "end_time": "2026-05-09T09: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,
            "name": {
                "fi": "Perhekahvila Luumupuu",
                "sv": "Familjecaféet Luumupuu",
                "en": "Family Café Luumupuu"
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "provider": {
                "fi": "Kiintymysvanhemmuus ry",
                "sv": "Kiintymysvanhemmuus ry",
                "en": "Kiintymysvanhemmuus ry"
            },
            "short_description": {
                "fi": "Mikä on perhekahvila?\nLeikkiä lapsille ja vauvoille\nTule tapaamaan muita vanhempia tai hengailemaan\nTarjolla kahvia/teetä ja pientä purtavaa ilmaiseksi",
                "sv": "Vad är ett familjecafé?\nLek för barn och bebisar\nKom och träffa andra föräldrar eller bara häng\nGratis kaffe/te och små tilltugg",
                "en": "What is a family café?\nPlaytime for children and babies\nCome meet other parents or just hang out\nFree coffee/tea and small snacks"
            },
            "info_url": {
                "fi": "http://kiintymysvanhemmuus.fi",
                "sv": "http://kiintymysvanhemmuus.fi",
                "en": "http://kiintymysvanhemmuus.fi"
            },
            "description": {
                "fi": "<p>Kerran kuussa lauantaisin klo 11-12:30 Tapiolan kirjastossa Tapahtumatila Heikissä.</p><p><br></p><p><strong>Mikä on perhekahvila?</strong></p><ul><li>Leikkiä lapsille ja vauvoille</li><li>Tule tapaamaan muita vanhempia tai ihan vaan hengailemaan</li><li>Tarjolla kahvia/teetä ja pientä purtavaa ilmaiseksi</li></ul><p><br></p><p><strong>Ohjelma</strong>:</p><ul><li>14.3.2026 Vapaata leikkiä.</li><li>11.4.2026 Teemana kantaminen. Vieraana kantoliinayhdistyksen kantovälinetukihenkilö.</li><li>9.5.2026 Satuhierontatuokio kirjaston henkilökunnan vetämänä.</li></ul><p>Perhekahvilan järjestää Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>",
                "sv": "<p>En gång i månaden på lördagar kl. 11–12.30 i Hagalunds bibliotek, i Evenemangsutrymmet Heikki.</p><p><strong>Vad är ett familjecafé?</strong></p><ul><li>Lek för barn och bebisar</li><li>Kom och träffa andra föräldrar eller bara häng</li><li>Gratis kaffe/te och små tilltugg</li></ul><p><strong>Program</strong>:</p><ul><li>14.3.2026: Fri lek</li><li>11.4.2026: Tema: bärande. Gäst: handledare i bärredskap från Bärsjalsföreningen</li><li>9.5.2026: Sagomassage-stund ledd av bibliotekets personal</li></ul><p>Familjecaféet ordnas av Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>",
                "en": "<p>Once a month on Saturdays at 11:00–12:30 at Tapiola Library in the event room Heikki.</p><p><strong>What is a family café?</strong></p><ul><li>Playtime for children and babies</li><li>Come meet other parents or just hang out</li><li>Free coffee/tea and small snacks</li></ul><p><strong>Programme</strong>:</p><ul><li>14 March 2026: Free play</li><li>11 April 2026: Theme: babywearing. Guest: babywearing educator from the Babywearing Association</li><li>9 May 2026: Story massage session led by the library staff</li></ul><p>The family café is organised by Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtp3u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtqwu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtrpm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/kiintymysvanhemmuus",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824136,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-01T13:11:12.993629Z",
                    "last_modified_time": "2026-04-01T13:11:12.993643Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/717bd949-44e3-46db-85a6-02bb70e17e3c.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "luumupuu ja pieniä otuksia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824136/?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-03-11T10:27:58.642612Z",
            "last_modified_time": "2026-04-01T13:12:50.572188Z",
            "date_published": null,
            "start_time": "2026-04-11T08:00:00Z",
            "end_time": "2026-04-11T09: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,
            "name": {
                "fi": "Perhekahvila Luumupuu",
                "sv": "Familjecaféet Luumupuu",
                "en": "Family Café Luumupuu"
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "provider": {
                "fi": "Kiintymysvanhemmuus ry",
                "sv": "Kiintymysvanhemmuus ry",
                "en": "Kiintymysvanhemmuus ry"
            },
            "short_description": {
                "fi": "Mikä on perhekahvila?\nLeikkiä lapsille ja vauvoille\nTule tapaamaan muita vanhempia tai hengailemaan\nTarjolla kahvia/teetä ja pientä purtavaa ilmaiseksi",
                "sv": "Vad är ett familjecafé?\nLek för barn och bebisar\nKom och träffa andra föräldrar eller bara häng\nGratis kaffe/te och små tilltugg",
                "en": "What is a family café?\nPlaytime for children and babies\nCome meet other parents or just hang out\nFree coffee/tea and small snacks"
            },
            "info_url": {
                "fi": "http://kiintymysvanhemmuus.fi",
                "sv": "http://kiintymysvanhemmuus.fi",
                "en": "http://kiintymysvanhemmuus.fi"
            },
            "description": {
                "fi": "<p>Kerran kuussa lauantaisin klo 11-12:30 Tapiolan kirjastossa Tapahtumatila Heikissä.</p><p><br></p><p><strong>Mikä on perhekahvila?</strong></p><ul><li>Leikkiä lapsille ja vauvoille</li><li>Tule tapaamaan muita vanhempia tai ihan vaan hengailemaan</li><li>Tarjolla kahvia/teetä ja pientä purtavaa ilmaiseksi</li></ul><p><br></p><p><strong>Ohjelma</strong>:</p><ul><li>14.3.2026 Vapaata leikkiä.</li><li>11.4.2026 Teemana kantaminen. Vieraana kantoliinayhdistyksen kantovälinetukihenkilö.</li><li>9.5.2026 Satuhierontatuokio kirjaston henkilökunnan vetämänä.</li></ul><p>Perhekahvilan järjestää Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>",
                "sv": "<p>En gång i månaden på lördagar kl. 11–12.30 i Hagalunds bibliotek, i Evenemangsutrymmet Heikki.</p><p><strong>Vad är ett familjecafé?</strong></p><ul><li>Lek för barn och bebisar</li><li>Kom och träffa andra föräldrar eller bara häng</li><li>Gratis kaffe/te och små tilltugg</li></ul><p><strong>Program</strong>:</p><ul><li>14.3.2026: Fri lek</li><li>11.4.2026: Tema: bärande. Gäst: handledare i bärredskap från Bärsjalsföreningen</li><li>9.5.2026: Sagomassage-stund ledd av bibliotekets personal</li></ul><p>Familjecaféet ordnas av Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>",
                "en": "<p>Once a month on Saturdays at 11:00–12:30 at Tapiola Library in the event room Heikki.</p><p><strong>What is a family café?</strong></p><ul><li>Playtime for children and babies</li><li>Come meet other parents or just hang out</li><li>Free coffee/tea and small snacks</li></ul><p><strong>Programme</strong>:</p><ul><li>14 March 2026: Free play</li><li>11 April 2026: Theme: babywearing. Guest: babywearing educator from the Babywearing Association</li><li>9 May 2026: Story massage session led by the library staff</li></ul><p>The family café is organised by Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtqwu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtrpm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/kiintymysvanhemmuus",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtp3u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtqwu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwcby/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1824136,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-01T13:11:12.993629Z",
                    "last_modified_time": "2026-04-01T13:11:12.993643Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/717bd949-44e3-46db-85a6-02bb70e17e3c.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "luumupuu ja pieniä otuksia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824136/?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-03-11T10:27:58.001122Z",
            "last_modified_time": "2026-04-01T13:12:50.159719Z",
            "date_published": null,
            "start_time": "2026-03-14T09:00:00Z",
            "end_time": "2026-05-09T09:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Perhekahvila Luumupuu",
                "sv": "Familjecaféet Luumupuu",
                "en": "Family Café Luumupuu"
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "provider": {
                "fi": "Kiintymysvanhemmuus ry",
                "sv": "Kiintymysvanhemmuus ry",
                "en": "Kiintymysvanhemmuus ry"
            },
            "short_description": {
                "fi": "Mikä on perhekahvila?\nLeikkiä lapsille ja vauvoille\nTule tapaamaan muita vanhempia tai hengailemaan\nTarjolla kahvia/teetä ja pientä purtavaa ilmaiseksi",
                "sv": "Vad är ett familjecafé?\nLek för barn och bebisar\nKom och träffa andra föräldrar eller bara häng\nGratis kaffe/te och små tilltugg",
                "en": "What is a family café?\nPlaytime for children and babies\nCome meet other parents or just hang out\nFree coffee/tea and small snacks"
            },
            "info_url": {
                "fi": "http://kiintymysvanhemmuus.fi",
                "sv": "http://kiintymysvanhemmuus.fi",
                "en": "http://kiintymysvanhemmuus.fi"
            },
            "description": {
                "fi": "<p>Kerran kuussa lauantaisin klo 11-12:30 Tapiolan kirjastossa Tapahtumatila Heikissä.</p><p><br></p><p><strong>Mikä on perhekahvila?</strong></p><ul><li>Leikkiä lapsille ja vauvoille</li><li>Tule tapaamaan muita vanhempia tai ihan vaan hengailemaan</li><li>Tarjolla kahvia/teetä ja pientä purtavaa ilmaiseksi</li></ul><p><br></p><p><strong>Ohjelma</strong>:</p><ul><li>14.3.2026 Vapaata leikkiä.</li><li>11.4.2026 Teemana kantaminen. Vieraana kantoliinayhdistyksen kantovälinetukihenkilö.</li><li>9.5.2026 Satuhierontatuokio kirjaston henkilökunnan vetämänä.</li></ul><p>Perhekahvilan järjestää Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>",
                "sv": "<p>En gång i månaden på lördagar kl. 11–12.30 i Hagalunds bibliotek, i Evenemangsutrymmet Heikki.</p><p><strong>Vad är ett familjecafé?</strong></p><ul><li>Lek för barn och bebisar</li><li>Kom och träffa andra föräldrar eller bara häng</li><li>Gratis kaffe/te och små tilltugg</li></ul><p><strong>Program</strong>:</p><ul><li>14.3.2026: Fri lek</li><li>11.4.2026: Tema: bärande. Gäst: handledare i bärredskap från Bärsjalsföreningen</li><li>9.5.2026: Sagomassage-stund ledd av bibliotekets personal</li></ul><p>Familjecaféet ordnas av Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>",
                "en": "<p>Once a month on Saturdays at 11:00–12:30 at Tapiola Library in the event room Heikki.</p><p><strong>What is a family café?</strong></p><ul><li>Playtime for children and babies</li><li>Come meet other parents or just hang out</li><li>Free coffee/tea and small snacks</li></ul><p><strong>Programme</strong>:</p><ul><li>14 March 2026: Free play</li><li>11 April 2026: Theme: babywearing. Guest: babywearing educator from the Babywearing Association</li><li>9 May 2026: Story massage session led by the library staff</li></ul><p>The family café is organised by Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtrpm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhttge",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824138,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-01T11:24:46.802805Z",
                    "last_modified_time": "2026-04-01T11:24:46.802819Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7b76784e-d9b8-4802-a3c8-b80afe9a2d84.png",
                    "name": "",
                    "cropping": "100,0,700,600",
                    "photographer_name": "",
                    "alt_text": "Elviira Elo: Äiti Maan omakuvat",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824138/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-05T09:00:11.592353Z",
            "last_modified_time": "2026-04-01T11:24:57.736043Z",
            "date_published": "2026-03-05T08:18:00Z",
            "start_time": "2026-03-15T08:00:00Z",
            "end_time": "2026-04-03T15: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,
            "name": {
                "fi": "Elviira Elo: Äiti Maan omakuvat (taidenäyttely)",
                "sv": "Elviira Elo: Moder Jords självporträtt (konstutställning)",
                "en": "Elviira Elo: Mother Earth's self-portraits (art exhibition)"
            },
            "location_extra_info": {
                "fi": "Galleria Anna",
                "sv": "Galleri Anna",
                "en": "Gallery Anna"
            },
            "provider": null,
            "short_description": {
                "fi": "Taidenäyttely tutkii ihmisen luontosuhdetta teossarjan kautta, jossa Äiti Maa näyttäytyy tietoisena olentona.",
                "sv": "Konstutställningen utforskar relationen mellan människan och naturen genom en serie verk där Moder Jord porträtteras som ett medvetet väsen.",
                "en": "The art exhibition explores the relationship between humans and nature through a series of works in which Mother Earth is portrayed as a conscious being."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Taidenäyttely <em>Äiti Maan omakuvat</em> tutkii ihmisen ja luonnon välistä suhdetta teossarjan kautta, jossa Äiti Maa näyttäytyy tietoisena olentona. Esillä on sekä luontosuhteemme kukoistus että sen rappio ja luonnon tuhoutuminen.</p><p><strong>Elviira Elo</strong> on 27-vuotias taiteilija Helsingistä.&nbsp;</p><p>”Ammennan inspiraatiota laajalti luonnosta, erityisesti ilmakuvista. Erilaiset luonnosta löytyvät tekstuurit, muodot ja liike kiehtovat minua. Luonto onkin tärkein innoittajani luomisprosessissa. Taiteessani näkyvät abstrakti ekspressionismi sekä orgaaniset muodot. Eniten käyttämäni tekniikat ovat öljypastellit ja vesivärit.&nbsp;</p><p>Taiteelleni on ominaista voimakas, intuitiivinen ja rohkea värien käyttö. Tukeudun värivalinnoissani vahvasti sisäiseen ohjaukseen ja hallitsen kylläisen väripaletin tasapainottamisen siten, että voimakkaat värit tukevat toisiaan luoden dynaamisen vaikutelman.&nbsp;</p><p>Luomisprosessissa minulle tärkeintä ei ole se, mitä paperille syntyy, vaan se mitä sisälläni tapahtuu. Virittäytyminen omaan sisäiseen maailmaan ja intuitioon, sekä sisäisen kriitikon hiljentäminen ovat tärkeitä osia sitä prosessia, jota kutsun ’sielusta luomiseksi’.”&nbsp;</p><p>”Näyttelyn teoksissa toimin kanavana Äiti Maan äänelle ja kokemuksille. Hänen kauttaan katsoja pääsee tutustumaan Luontoäidin sisimpään, ja tulee johdatelluksi aina vain syvemmälle luonnon eri ominaisuuksien äärelle. Luonnon unohdetut puolet - voima ja herkkyys, pinta ja syvyys - tuodaan valoon, muistuttaen katsojaa luonnon monimuotoisuudesta. Aivan viimeiseksi Äiti Maa päästää ilmoille hätähuudon ja paljastaa suurimman uhrauksensa; kohtalonsa ihmiskunnan käsissä.</p><p>Toivon että teokseni herättävät jokaista kävijää tarkastelemaan omaa suhdettaan luontoon syvemmin - tai kokonaan uudesta näkövinkkelistä.”</p><p>Taidenäyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>",
                "sv": "<p>Konstutställningen <em>Moder Jords självporträtt</em> <em>(Äiti Maan omakuvat)</em> utforskar relationen mellan människan och naturen genom en serie verk där Moder Jord porträtteras som ett medvetet väsen. Utställningen skildrar både blomstringen av vår relation till naturen och dess nedgång och förstörelse.</p><p><strong>Elviira Elo</strong> är en 27-årig konstnär från Helsingfors.&nbsp;</p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>",
                "en": "<p>The art exhibition <em>Mother Earth's Self-Portraits (Äiti Maan omakuvat) </em>explores the relationship between humans and nature through a series of works in which Mother Earth is portrayed as a conscious being. The exhibition depicts both the flourishing of our relationship with nature and its decline and destruction.</p><p><strong>Elviira Elo</strong> is a 27-year-old artist from Helsinki.&nbsp;</p><p>The exhibition can be seen during the library opening hours. Welcome!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhttge/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtwj4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtuh4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtu6m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtvue/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1824140,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-01T11:21:14.914957Z",
                    "last_modified_time": "2026-04-01T11:21:14.914974Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/56a13e2a-b70c-40b7-845c-a1241bf686b0.png",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Vihreää taustaa vasten teksti: 4H-yrityskoulutus 13.-22-4. Matinkylässä. Nuori poika kantaa viherkasvia.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824140/?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-03-07T14:55:41.901358Z",
            "last_modified_time": "2026-04-01T11:21:32.344537Z",
            "date_published": null,
            "start_time": "2026-04-13T13:30:00Z",
            "end_time": "2026-04-22T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Tee oma liiketoimintasuunnitelma ja perusta oma yritys",
                "sv": "Gör upp din egen affärsplan och starta ditt eget företag",
                "en": "Create your own business plan and start your own company"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": "4H yrityskoulutus",
                "sv": "4H yrityskoulutus",
                "en": "4H yrityskoulutus"
            },
            "short_description": {
                "fi": "\n4H-yrityskoulutus on maksuton koulutus nuorille, jonka avulla voit kokeilla pienimuotoista yritystoimintaa helposti",
                "sv": "4H‑företagsutbildningen är en kostnadsfri kurs för ungdomar, som gör det lätt att prova på småskalig företagsverksamhet.",
                "en": "The 4H Entrepreneurship Training is a free course for the youth, that allows you to easily try small‑scale entrepreneurship"
            },
            "info_url": {
                "fi": "https://www.pks4h.fi/tapahtumat/4h-yrityskoulutus-espoossa-2/",
                "sv": "https://www.pks4h.fi/tapahtumat/4h-yrityskoulutus-espoossa-2/",
                "en": "https://www.pks4h.fi/tapahtumat/4h-yrityskoulutus-espoossa-2/"
            },
            "description": {
                "fi": "<p>13.–22.4. Matinkylä, Ison Omenan kirjasto</p><p>20.-27.4. Tapiola, Tapiolan nuorisotila</p><p><br></p><p>4H-yrityskoulutus on maksuton koulutus, jonka avulla voit kokeilla pienimuotoista yritystoimintaa helposti. Koulutuksen aikana laadit liiketoimintasuunnitelman omaa yritystä varten. Saat 300 €:n yrityssetelin yritystoiminnan aloittamiseen! 💰</p><p><br></p><p>Koulutukseen voivat osallistua kaikki 13-25-vuotiaat espoolaiset.</p><p>Kurssille mahtuu 20 osallistujaa, ilmoittautuminen alkaa 16.3.</p>",
                "sv": "<p>13–22.4. Mattby, Iso Omena‑biblioteket</p><p>20–27.4. Hagalund, Hagalunds ungdomslokal</p><p>4H‑företagsutbildningen är en kostnadsfri kurs som gör det lätt att prova på småskalig företagsverksamhet. Under utbildningen gör du en affärsplan för ditt eget företag. Du får dessutom en företagskupong på 300 € för att komma igång! 💰</p><p>Alla 13–25‑åriga esbobor kan delta.</p><p>Kursen rymmer 20 deltagare och anmälan öppnar den 16 mars.</p>",
                "en": "<p>13–22 April, Matinkylä, Iso Omena Library</p><p>20–27 April, Tapiola, Tapiola Youth Centre</p><p>The 4H Entrepreneurship Training is a free course that allows you to easily try small‑scale entrepreneurship. During the training, you will create a business plan for your own company. You will also receive a €300 business voucher to help you get started! 💰</p><p>All Espoo residents aged 13–25 are welcome to participate.</p><p>The course can accommodate 20 participants, and registration opens on 16 March.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtwj4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtw7a",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824141,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-01T11:20:03.901435Z",
                    "last_modified_time": "2026-04-01T11:20:03.901450Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2a72094a-e3fa-4d97-a33d-fa90b07f2f4d.png",
                    "name": "",
                    "cropping": "2,0,900,897",
                    "photographer_name": "",
                    "alt_text": "Aino-Maija Laaksonen: Kevään kosketuksessa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824141/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-18T13:08:49.141986Z",
            "last_modified_time": "2026-04-01T11:20:16.619934Z",
            "date_published": "2026-03-14T12:32:00Z",
            "start_time": "2026-03-15T08:00:00Z",
            "end_time": "2026-04-03T15: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,
            "name": {
                "fi": "Aino-Maija Laaksonen: Kevään kosketuksessa (näyttely)",
                "sv": "Aino-Maija Laaksonen: Kevään kosketuksessa / I vårens beröring (utställning))",
                "en": "Aino-Maija Laaksonen: Kevään kosketuksessa / Touched by Spring, exhibition)"
            },
            "location_extra_info": {
                "fi": "Galleria Betoni",
                "sv": "Galleri Betoni",
                "en": "Gallery Betoni"
            },
            "provider": null,
            "short_description": {
                "fi": "Taidenäyttely koostuu värikkäistä akryylimaalauksista, joita on korostettu hiilellä.",
                "sv": "Konstutställningen består av färgstarka akrylmålningar som förstärkts med kol.",
                "en": "The art exhibition consists of colourful acrylic paintings enhanced with charcoal."
            },
            "info_url": null,
            "description": {
                "fi": "<p><em>Kevään kosketuksessa</em> -näyttely tuo katsojille positiivista mieltä ja iloa siitä, että talven selkä taittuu. Pitkän pimeän jälkeen uusi kevät ja käsinkosketeltava valo paljastavat meistä itsestämme, sekä ympäristöstämme uusia puolia, joita nyt näemme paremmin.</p><p>Näyttely koostuu akryylimaalauksista, joita syventää hiili. Teokset rakentuvat pala palalta värien rinnastuksista luoden erilaisia esittäviä ja abstrahoituja kuvia, jotka jättävät tilaa katsoa ja tulkita, kuka mitenkin omalla tavallaan. Näyttelykokonaisuus antaa voimaa ja virittää mielen uuteen aikaan.</p><p>Taidenäyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>",
                "sv": "<p>Utställningen <em>I vårens beröring</em> ger besökarna en positiv känsla och glädje över att vintern är på väg att ta slut. Efter en lång mörk period avslöjar den nya våren och det påtagliga ljuset nya sidor av oss själva och vår omgivning, som vi nu ser tydligare.</p><p>Utställningen består av akrylmålningar som fördjupas av kol. Verken byggs upp bit för bit av färgkontraster och skapar olika figurativa och abstrakta bilder som lämnar utrymme för betraktaren att se och tolka på sitt eget sätt. Utställningen ger kraft och stämmer in sinnet på en ny tid.</p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>",
                "en": "<p>The exhibition <em>Touched by Spring </em>brings viewers a positive outlook and joy as winter finally comes to an end. After a long period of darkness, the arrival of spring and the tangible light reveal new aspects of ourselves and our surroundings that we can now see more clearly.</p><p>The exhibition consists of acrylic paintings enhanced with charcoal. The works are built piece by piece from color combinations, creating various representational and abstract images that leave room for viewers to observe and interpret them in their own unique ways. The exhibition tries to provide strength and attune the mind to a new era.</p><p>The exhibition can be seen during the library opening hours. Welcome!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtw7a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtzdq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtx5i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtykq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtyw4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1824143,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-01T11:15:00.657839Z",
                    "last_modified_time": "2026-04-01T11:15:00.657857Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6d74a759-c4c4-4a7b-81fc-7afb27c48097.JPG",
                    "name": "",
                    "cropping": "900,0,3430,2529",
                    "photographer_name": "",
                    "alt_text": "Pieni tyttö maalaa vesvärillä. Kuvassa näkyvät vain pöydän pinta, kirjanmerkki jota hän maalaa ja tytön kädet.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824143/?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-03-25T10:34:58.600136Z",
            "last_modified_time": "2026-04-01T11:15:12.507954Z",
            "date_published": null,
            "start_time": "2026-04-13T12:00:00Z",
            "end_time": "2026-06-08T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Taide pop-up työpajat - kevään sarja",
                "sv": "Konst‑pop‑up‑verkstäder – vårens serie",
                "en": "Art pop‑up workshops – spring series"
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "provider": {
                "fi": "Familia ry",
                "sv": "Familia rt",
                "en": "Familia ry"
            },
            "short_description": {
                "fi": "Ilmainen askartelukerho",
                "sv": "\nGratis pysselklubb",
                "en": "Free craft club"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule mukaan maksuttomiin taide- ja askartelutyöpajoihin, joissa lapset ja vanhemmat voivat luoda yhdessä rennossa ja lämpimässä ilmapiirissä. Jokaisella kerralla on tarjolla hauska ja helppo askartelutehtävä sekä mahdollisuus tutustua muihin alueen perheisiin.</p><p>Et tarvitse ennakkoilmoittautumista – poikkea paikalle ja nauttikaa yhteisestä luovasta hetkestä!</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Delta i våra kostnadsfria konst- och pysselverkstäder där barn och föräldrar kan skapa tillsammans i en avslappnad och välkomnande miljö. Varje tillfälle bjuder på en rolig och enkel pysselaktivitet samt en chans för familjer att träffa andra i området.</p><p>Ingen förhandsanmälan behövs – kom bara förbi och njut av en kreativ stund tillsammans!</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>Join us for free arts and crafts workshops where children and parents can create together in a relaxed and welcoming space. Each session features a fun, simple craft activity and a chance for families to meet others in the community. No registration needed - just drop in and enjoy a creative moment together!</p><p><br></p><p>#helloespoo</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtzdq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtzri",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824144,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-01T11:13:13.626859Z",
                    "last_modified_time": "2026-04-01T11:13:13.626877Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/97e60599-b106-44d6-acc8-0f1543ba79d3.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Tummansininen pohja, jossa pavun mallinen aukko. Sieltä näkyy sähkökitara ja musta piano. Teksti valkoisella: combo Continental",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824144/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-25T12:37:52.732142Z",
            "last_modified_time": "2026-04-01T11:13:24.578264Z",
            "date_published": null,
            "start_time": "2026-04-11T11:00:00Z",
            "end_time": "2026-04-11T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Combo Continental - konsertti",
                "sv": "Combo Continental – konsert",
                "en": "Combo Continental – concert "
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "short_description": {
                "fi": "Ohjelmassa Pertti Taivaisen instrumentaali-sävellyksiä, sekä jazz-viihdemusiikkia. ",
                "sv": "Programmet innehåller instrumentalkompositioner av Pertti Taivainen samt jazz- och underhållningsmusik.",
                "en": "The programme includes instrumental compositions by Pertti Taivainen, as well as jazz and light entertainment music."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Ohjelmassa Pertti Taivaisen instrumentaali-sävellyksiä, sekä jazz-viihdemusiikkia.&nbsp;</p><p><br></p><p><br></p><p><br></p>",
                "sv": "<p>Programmet innehåller instrumentalkompositioner av Pertti Taivainen samt jazz- och underhållningsmusik.</p>",
                "en": "<p>The programme includes instrumental compositions by Pertti Taivainen, as well as jazz and light entertainment music.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtzri/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}