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

{
    "meta": {
        "count": 21736,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=42",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=40"
    },
    "data": [
        {
            "id": "espoo_le:agoivz65bm",
            "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/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:p7349/?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": 1494929,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-23T13:17:05.833482Z",
                    "last_modified_time": "2026-02-23T13:17:05.833499Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/63a63393-1689-4751-8198-d32dd3ab6e41.jpg",
                    "name": "Henri Vanhanen",
                    "cropping": "0,0,800,800",
                    "photographer_name": "",
                    "alt_text": "Henri Vanhanen ja kirjan kansikuva",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494929/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-23T13:17:21.590859Z",
            "last_modified_time": "2026-02-23T13:17:21.590964Z",
            "date_published": null,
            "start_time": "2026-04-29T15:00:00Z",
            "end_time": "2026-04-29T16: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,
            "short_description": {
                "fi": "Miten Suomen turvallisuusympäristö on muuttunut kun maailman murros ja Yhdysvaltojen, Venäjän ja Kiinan kilpailu kovenee? ",
                "sv": "Säkerhetspolitisk kväll: Finland i global politikens framkant. Evengemang är på finska.",
                "en": "Security Policy Evening: Finland at the forefront of global politics. Event is in Finnish."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Miten Suomen turvallisuusympäristö on muuttunut kun maailman murros ja Yhdysvaltojen, Venäjän ja Kiinan kilpailu kovenee? Sellon kirjastossa vierailee ulko- ja turvallisuuspolitiikan asiantuntija ja tietokirjailija Henri Vanhanen, joka avaa maailmanpolitiikan ajankohtaisimpia teemoja.</p><p>Tilaisuudessa Vanhanen alustaa uutuuskirjansa ”Etulinjassa - Suomen turvallisuus epäjärjestyksen maailmassa” (Otava) pohjalta, jonka hän on kirjoittanut yhdessä europarlamentaarikko Mika Aaltolan kanssa. Teos pureutuu turvallisuuspolitiikan nykyhetkeen ja tulevaisuuteen sekä siihen, miten meidän on sopeuduttava muuttuvaan maailmanjärjestykseen ja mitä se vaatii Suomelta.</p><p>Luvassa on asiantuntija-alustus sekä mahdollisuus yleisökysymyksille ja keskustelulle. Tervetuloa kuulemaan ja keskustelemaan aiheista!</p><p> </p><p> </p>",
                "sv": "<p>Säkerhetspolitisk kväll: Finland i global politikens framkant. Evengemang är på finska.</p>",
                "en": "<p>Security Policy Evening: Finland at the forefront of global politics. Event is in Finnish.</p>"
            },
            "name": {
                "fi": "Turvallisuuspoliittinen ilta: Suomi maailmanpolitiikan etulinjassa",
                "sv": "Säkerhetspolitisk kväll: Finland i global politikens framkant. Evengemang är på finska.",
                "en": "Security Policy Evening: Finland at the forefront of global politics. Event is in Finnish."
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoivz65bm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agoituy234",
            "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:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1494927,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-23T08:57:45.461937Z",
                    "last_modified_time": "2026-02-23T08:57:45.461953Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ff4cdbfa-dbd2-48c9-9e44-702ec1f3acd4.jpeg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Saara Salmi / S&S",
                    "alt_text": "Kirjailija Anu Kaaja nojaa tuolin selkämykseen ja ja katsoo kaukaisuuteen. Vieressä on kuva hänen kirjastaan Siluetinleikkaaja.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494927/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-23T09:05:15.440678Z",
            "last_modified_time": "2026-02-23T10:57:03.755266Z",
            "date_published": "2026-02-23T08:54:00Z",
            "start_time": "2026-05-21T15:00:00Z",
            "end_time": "2026-05-21T16: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,
            "short_description": {
                "fi": "Kirjailija Anu Kaaja vieraana Tapiolan kirjastossa.",
                "sv": "Författaren Anu Kaaja gästar Hagalunds bibliotek.",
                "en": "Author Anu Kaaja visiting Tapiola Library."
            },
            "info_url": {
                "fi": "https://kustantamo.sets.fi/kirja/siluetinleikkaaja/",
                "sv": "https://kustantamo.sets.fi/kirja/siluetinleikkaaja/",
                "en": "https://kustantamo.sets.fi/kirja/siluetinleikkaaja/"
            },
            "description": {
                "fi": "<p><strong>Anu Kaaja</strong> (s. 1984) on Helsingissä asuva palkittu kirjailija, joka tunnetaan rohkeasta ja älykkäästä proosasta, joka yhdistää taidehistorian, kirjallisuuden ja nykyajan ilmiöt. Hänen uusin romaaninsa on <a href=\"https://helmet.finna.fi/Record/helmet.2633060?sid=5266082953\"><strong>Siluetinleikkaaja </strong></a>(S&amp;S 2026), jossa symboliikka ja mielikuvitus kietoutuvat yhteen: tornipöllöjä, salaperäisiä nukkeja, umpeenkasvaneita taloja, sfinkseiksi muuttuvia ihmisiä sekä kissoja, jotka liikkuvat maailmojen välillä.</p><p>Kaajaa haastattelee kirjailija Sinikka Paavilainen.</p><p>Tilaisuus järjestetään yhteistyössä Espoon Kirjailijat ry:n kanssa.</p>",
                "sv": "<p><strong>Anu Kaaja </strong>(f. 1984) är en prisbelönt författare bosatt i Helsingfors. Hon är känd för sin modiga och intelligenta prosa, där konsthistoria, litteratur och nutida fenomen vävs samman. Hennes nyaste roman, <strong>Siluetinleikkaaja </strong>(S&amp;S, 2026), är en berättelse som förenar symbolik och fantasi med tornugglor, gåtfulla dockor, igenvuxna hus, människor som förvandlas till sfinxer och katter som rör sig mellan världar.</p><p>Kaaja intervjuas av författaren Sinikka Paavilainen.</p><p>Evenemanget ordnas i samarbete med Esbo författare rf.</p><p>Evenemanget är på finska.</p>",
                "en": "<p><strong>Anu Kaaja </strong>(b. 1984) is an award‑winning author living in Helsinki. She is known for her bold and intelligent prose, where art history, literature, and contemporary phenomena intertwine. Her newest novel, <strong>Siluetinleikkaaja </strong>(S&amp;S, 2026), blends symbolism and imagination, featuring barn owls, mysterious dolls, overgrown houses, people transforming into sphinxes, and cats that move between worlds.</p><p>Kaaja will be interviewed by writer Sinikka Paavilainen.</p><p>The event is organized in collaboration with Espoon Kirjailijat ry.</p><p>The event is held in Finnish.</p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Anu Kaaja",
                "sv": "Författarbesök med Anu Kaaja",
                "en": "Author Guest: Anu Kaaja"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kaija",
                "sv": "Kaija",
                "en": "Kaija"
            },
            "provider": {
                "fi": "Espoon Kirjailijat ry",
                "sv": "Esbo författare rf",
                "en": "Espoon Kirjailijat ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoituy234/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agoithfj7a",
            "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: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:agoithfeom/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoithffca/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoithffpa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoithff6m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoithfglm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoithfgya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoithfheq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoithfhra/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoithfh5m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoithfilm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoithfizm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoithfjf4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoithfjsy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494926,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-07T09:42:35.932145Z",
                    "last_modified_time": "2026-01-07T09:42:35.932162Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ced32047-39b7-42e2-94b0-b31495e0a89a.jpg",
                    "name": "",
                    "cropping": "100,0,1100,1000",
                    "photographer_name": "AJ Savolainen",
                    "alt_text": "2 herraa istuu tietokoneen ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494926/?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-02-23T07:57:41.056815Z",
            "last_modified_time": "2026-02-23T07:57:41.056833Z",
            "date_published": null,
            "start_time": "2026-02-25T08: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,
            "short_description": {
                "fi": "Maksutonta, henkilökohtaista ja kiireetöntä digiopastusta senioreille. Opastajina ikäihmisten tietotekniikkayhdistyksen vapaaehtoiset seniorit. Tervetuloa!",
                "sv": "Personligt och avgiftsritt digistöd från seniorer till seniorer. Som handledare Enter ry:s frivilliga. \t",
                "en": "Peer tutoring in IT matters for seniors in Finnish. \t"
            },
            "info_url": {
                "fi": "https://www.entersenior.fi/opastus/espoo/",
                "sv": "https://www.entersenior.fi/sv/handledning/huvudstadsregionen/",
                "en": "https://www.entersenior.fi/yhdistys/en/"
            },
            "description": {
                "fi": "<p>Ikäihmisten tietotekniikkayhdistys Enterin vapaaehtoiset vertaisopastajat tarjoavat maksutonta, henkilökohtaista ja kiireetöntä digiopastusta.</p><p>Opastuksissa käydään usein läpi esimerkiksi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia tai laitteen hankintaa.</p><p>Tule rohkeasti kysymään mitä tahansa tietotekniikasta - tyhmiä kysymyksiä ei ole.</p><p>Ota mukaan oma laitteesi ja tarvittavat tunnukset ja salasanat palveluun, jota haluat harjoitella.</p><p>Ajanvaraus&nbsp;kirjastosta&nbsp;p. 050 428 9392.</p>",
                "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater.</p><p>Enters handledning är personlig, avgiftsfri och sker i lugn takt. Hos oss handleder seniorer andra seniorer.</p><p><strong>Se aktuell information om platser där du kan få Enters handledning på svenska:\t</strong><a href=\"https://www.entersenior.fi/sv/handledning/\t\">https://www.entersenior.fi/sv/handledning/\t</a></p>",
                "en": "<p><strong>Enter ICT Association for Seniors</strong> 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 <strong>in English: </strong><a href=\"https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T \">https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T </a></p>"
            },
            "name": {
                "fi": "Digiopastusta seniorilta seniorille Tapiolan kirjastossa",
                "sv": "Digistöd från seniorer till seniorer",
                "en": "Peer tutoring in IT matters for seniors"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoithfj7a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agohcjwu2i",
            "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:p2625/?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:p556/?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:agohcjwtoy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohcjwuma/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494899,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-18T13:41:04.205241Z",
                    "last_modified_time": "2026-02-18T13:41:04.205259Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/44d69d9e-3814-4dcd-a9e0-a3fcd74dc8e6.jpg",
                    "name": "",
                    "cropping": "0,125,1000,1125",
                    "photographer_name": "Darina Rodanova",
                    "alt_text": "People in an art exhibition",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494899/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-18T13:54:02.670126Z",
            "last_modified_time": "2026-02-23T07:50:54.266464Z",
            "date_published": null,
            "start_time": "2026-02-28T10:00:00Z",
            "end_time": "2026-03-14T12: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,
            "short_description": {
                "fi": "“My Story (also) Lives Here” on taidetyöpajojen sarja, jonka kokoontumisissa käsitellään jälkien jättämistä, muistoja ja kuulumista.",
                "en": "\"My Story (also) Lives Here\" is a series of creative workshops about belonging, memories, and leaving traces."
            },
            "info_url": {
                "fi": "https://espoonteatteri.fi/naapurusto/",
                "en": "https://espoonteatteri.fi/en/naapurusto-unites-espoo-citizens/"
            },
            "description": {
                "fi": "<p>Jos sinua kiinnostaa tarinankerronta, kuvaaminen, luova liikkuminen ja lähiympäristön tutkaileminen taiteen kautta, tämä työpajasarja voisi sopia sinulle! Kutsumme espoolaisia, etenkin maahanmuuttajataustaisia espoolaisia, osallistumaan näihin työpajoihin, jotka toteutetaan &amp;&nbsp;Espoon&nbsp;teatterilla ja Tapiolan kirjastolla, sekä ulkotiloissa.&nbsp;</p><p><strong>“My&nbsp;Story&nbsp;(also)&nbsp;Lives&nbsp;Here”</strong> on&nbsp;taidetyöpajojen sarja, jonka kokoontumisissa käsitellään jälkien jättämistä, muistoja ja kuulumista.&nbsp;Taidetyöpajojen&nbsp;lopputuloksena syntyy itse tehtyjä&nbsp;Muistomonumentteja&nbsp;– julkisesti jaettuja muistijälkiä ja tarinan sirpaleita, joiden avulla osallistujat ottavat julkista tilaa takaisin käyttöönsä omassa naapurustossaan. Aiempaa kokemusta taiteesta ei tarvita. Työpajat sopivat koko perheelle, myös lapsille (5-vuotiaista alkaen).&nbsp;Lapset osallistuvat aina oman aikuisen kanssa.&nbsp;</p><p><strong>Taiteilija ja ohjaaja</strong>:&nbsp;Dash&nbsp;Che&nbsp;</p><p><strong>Kieli</strong>: englanti,&nbsp;ohjaaja puhuu myös venäjää ja auttavaa suomea&nbsp;</p><p><strong>Kenelle</strong>: maahanmuuttajataustaisille&nbsp;espoolaisille, työpajat&nbsp;sopivat koko perheelle, myös lapsille (5-vuotiaista alkaen). Lapset osallistuvat aina oman aikuisen kanssa.&nbsp;</p><p><strong>Aikataulu</strong>:&nbsp;</p><p>Työpajat jakaantuvat Tapiolan kirjaston ja Espoon teatterin kesken. On suositeltavaa osallistua kaikkiin työpajoihin.</p><ul><li>14. helmikuuta – &amp;&nbsp;Espoon&nbsp;teatteri&nbsp;</li><li>28. helmikuuta – Tapiolan kirjasto&nbsp;</li><li>7. maaliskuuta – &amp;&nbsp;Espoon&nbsp;teatteri&nbsp;</li><li>14. maaliskuuta – Tapiolan kirjasto&nbsp;</li><li>21. maaliskuuta – &amp;&nbsp;Espoon&nbsp;teatteri&nbsp;</li></ul><p><strong>Aika</strong>:&nbsp;klo 12.00–14.00&nbsp;</p><p><br></p><p><br></p>\nMikä &amp;Naapurusto?&nbsp;<p>Lähes neljännes espoolaisista puhuu äidinkielenään jotain muuta kuin suomea, ruotsia tai saamea.&nbsp;Naapurustomme on siis hyvin monikulttuurinen. Tästä syntyi idea &amp;&nbsp;Espoon&nbsp;teatterin &amp;Naapurusto-hankkeelle, jonka lähtökohta on&nbsp;teatterin lupaus olla eri taustaisten ihmisten kohtaamispaikka.&nbsp;Projektia&nbsp;rahoittaa&nbsp;Suomenkulttuurirahasto&nbsp;ja&nbsp;Länsi-Uudenmaan&nbsp;hyvinvointialue.&nbsp;</p>",
                "en": "<p>Are you interested in movement, fun exercises, and&nbsp;exploring the neighbourhood together using various artistic methods such as storytelling, drawing creative maps, filming, sound recording,&nbsp;and movement? If yes, this could be the perfect project for you!&nbsp;</p><p><strong>\"My Story (also) Lives Here\"</strong> is a series of&nbsp;creative workshops about belonging, memories, and leaving traces. Espoo-based residents with multicultural backgroundsare invited to&nbsp;participate&nbsp;in these workshops that will take place both&nbsp;at &amp; Espoo&nbsp;theatre and&nbsp;Tapiola&nbsp;library, and&nbsp;outdoors.&nbsp;</p><p>The project&nbsp;may help&nbsp;participants reconnect with their personal histories attached to places from their present in Espoo as well as their past&nbsp;elsewhere and&nbsp;maybemake new friends.&nbsp;The outcome of the project will be self-made Memory Monuments - publicly shared memory traces and fragments of stories as a way of reclaiming public spaces within the&nbsp;neighbourhood.&nbsp;</p><p><strong>Artist and Facilitator</strong>: Dash Che (dash.che@espoonteatteri.fi),&nbsp;speaks English,&nbsp;Russian&nbsp;and Finnish.&nbsp;&nbsp;</p><p><strong>To whom</strong>:&nbsp;Espoo-based residents with&nbsp;immigrant or&nbsp;multicultural backgrounds. The workshops are suitable for&nbsp;families&nbsp;with&nbsp;kids (age 5 and older). Children take part with their adult. You&nbsp;don't&nbsp;need&nbsp;any&nbsp;previous&nbsp;experience in the arts to&nbsp;participate.&nbsp;</p><p><strong>Language</strong>: English.&nbsp;</p><p><strong>Cost</strong>: Free&nbsp;</p><p><strong>Dates &amp; Locations:&nbsp;</strong></p><p>The course is split between the Tapiola Library and &amp; Espoo Theater. It is preferable to commit to the whole course.</p><ul><li>14 February - &amp; Espoo&nbsp;theatre&nbsp;&nbsp;</li><li>28 February –&nbsp;Tapiola&nbsp;Library&nbsp;</li><li>7 March - &amp; Espoo&nbsp;theatre&nbsp;</li><li>14 March –&nbsp;Tapiola&nbsp;Library&nbsp;</li><li>21 March - &amp; Espoo&nbsp;theatre&nbsp;</li></ul><p><strong>Time</strong>: 12:00 -14:00&nbsp;</p><p><br></p><p><br></p>\nWhat &amp;Neighbourhood?&nbsp;&nbsp;<p>&amp;Neighbourhood&nbsp;is rooted in &amp; Espoo theatre’s commitment to being a meeting place for people from diverse backgrounds. Project aims to build dialogue and understanding – not by erasing differences, but by exploring how they form part of our collective life in Espoo. The project is funded by the Finnish Cultural Foundation and Western Uusimaa Wellbeing Services County.&nbsp;</p>"
            },
            "name": {
                "fi": "Työpaja: “My Story (also) Lives Here” ",
                "en": "Workshop “My Story (also) Lives Here” "
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "& Espoon teatteri",
                "en": "& Espoo theatre"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohcjwu2i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agoiszjcdq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "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": 1494664,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-28T13:05:37.831432Z",
                    "last_modified_time": "2026-01-28T13:05:37.831448Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/562f0d82-3d42-4a08-ab2d-52188b513bc3.png",
                    "name": "",
                    "cropping": "306,0,1087,780",
                    "photographer_name": "",
                    "alt_text": "Rivissä vanhoja nukketeatterinukkeja, hoviväkeä. Ja teksti Prinsessa Ruususen elämää - nukketeatteri",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494664/?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-02-23T07:13:24.667998Z",
            "last_modified_time": "2026-02-23T07:13:24.668017Z",
            "date_published": null,
            "start_time": "2026-03-18T13:00:00Z",
            "end_time": "2026-03-18T13: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,
            "short_description": {
                "fi": "Prinsessa Ruusunen – elämää, perinteestä nykyhetkeen",
                "sv": "Törnrosa – från tradition till nutid",
                "en": "Sleeping Beauty – from tradition to the present day"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Prinsessa Ruusunen – elämää, perinteestä nykyhetkeen.</p><p>Esitys herättää henkiin arvostetun nukentekijä Lembit Roosan alkuperäiset, käsintehdyt nuket, jotka esiintyivät Vihreässä Omenassa yli satakertaa. Neljän vuosikymmenen tauon jälkeen nämä taidokkaat nuket saavat uuden elämän ohjaaja Elina Rainion ja&nbsp;näyttelijä Pirre Toikkasen käsissä.Esitys yhdistää perinteisen nukketeatteritaiteen nykypäivän lasten maailmaan – lempeästi, osallistavasti ja läsnäollen.</p><p>Nukketeatteri tuo taiteen suoraan lasten arkeen – sinne, missä he jo ovat.&nbsp;Se tarjoaa vastapainoa digitaaliselle maailmalle:&nbsp;konkreettista ja kosketeltavaa vuorovaikutusta,&nbsp;turvallisen tilan tunteiden ja tarinoiden käsittelyyn.</p><p>Kohderyhmä: 3 – 8-vuotiaat lapset</p><p>Kesto: noin 30 minuuttia</p>",
                "sv": "<p>Törnrosa – liv från tradition till nutid</p><p>Föreställningen väcker till liv de ursprungliga handgjorda dockorna av den uppskattade dockmakaren Lembit Roosa, som uppträdde över hundra gånger på Gröna Äpplet. Efter ett uppehåll på fyra decennier får dessa skickligt skapade dockor nytt liv i händerna på regissören Elina Rainio och skådespelaren Pirre Toikkanen. Föreställningen förenar traditionell dockteater med dagens barns värld – varsamt, deltagande och närvarande.</p><p>Dockteater för konsten direkt in i barnens vardag – dit där de redan finns. Den erbjuder en motvikt till den digitala världen: konkret och berörande interaktion samt ett tryggt rum för att bearbeta känslor och berättelser.</p><p>Målgrupp: barn 3–8 år</p><p>Längd: cirka 30 minuter</p>",
                "en": "<p>Sleeping Beauty – life from tradition to the present day</p><p>The performance brings to life the original handmade puppets created by the respected puppet maker Lembit Roosa, which appeared over a hundred times at the Green Apple Theatre. After a break of four decades, these skilfully crafted puppets gain a new life in the hands of director Elina Rainio and actor Pirre Toikkanen. The performance combines traditional puppetry with the world of today’s children – gently, interactively, and with a strong sense of presence.</p><p>Puppet theatre brings art directly into children’s everyday lives – right where they already are. It offers a counterbalance to the digital world: tangible interaction and a safe space for exploring emotions and stories.</p><p>Target group: children aged 3–8</p><p>Duration: approximately 30 minutes</p>"
            },
            "name": {
                "fi": "Nukketeatteri: Prinsessa Ruususen elämää",
                "sv": "Dockteater: Törnrosas liv (föreställning på finska)",
                "en": "Puppet Theatre: The Life of Sleeping Beauty (performance in Finnish)"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Perhealue",
                "sv": "Perhealue",
                "en": "Perhealue"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoiszjcdq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agohw4ufma",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": 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:agohw4t74u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohw4uarm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohw4ubau/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohw4uboq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohw4ub3q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohw4ucje/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohw4ucxe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohw4udei/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohw4udri/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohw4ueai/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohw4uenm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohw4ue5m/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-20T13:30:48.772176Z",
                    "last_modified_time": "2026-02-20T13:30:48.772192Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/06af5fe3-d995-42a9-bb70-efa56a3795da.png",
                    "name": "",
                    "cropping": "62,0,246,185",
                    "photographer_name": "",
                    "alt_text": "Game Night neonkyltti",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-02-20T13:31:01.269262Z",
            "last_modified_time": "2026-02-20T13:31:01.269280Z",
            "date_published": null,
            "start_time": "2026-02-24T13:30:00Z",
            "end_time": "2026-05-19T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Peli-illassa voit pelata Xbox-konsolilla tiistaisin pajassa",
                "sv": "På spelkvällen kan du spela med Xbox-konsolen på tisdagar i Paja-verkstaden.",
                "en": "During the game night, you can play on the Xbox console on Tuesdays in the makerspace."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Peli-illat alkavat 24.2. ja silloin pajaloungessa on mahdollisuus pelata Xboxilla lastenosaston pelikonsolien lisäksi. Kerrothan kirjaston työntekijälle, jos haluat pelata konsolilla. Pelaamisessa noudatetaan Espoon kirjastojen yhteisiä pelisääntöjä. Tervetuloa! </p><p>Huom! Peli-iltaa ei järjestetä tiistaina 10.3.</p><p><br></p>",
                "sv": "<p>Spelkvällarna börjar den 24.2 och då finns det möjlighet att spela på Xbox i Paja-verkstadsloungen utöver barnavdelningens spelkonsoler. Berätta gärna för bibliotekspersonalen om du vill spela på en konsol. Vid spelandet följs Esbo biblioteks gemensamma spelregler. Välkommen!</p><p>Obs! Spelkväll ordnas inte på tisdag 10.3.</p>",
                "en": "<p>Game nights start on February 24th, and at that time you can play Xbox in the makerspace lounge in addition to the library’s children’s section game consoles. Please let a library staff member know if you would like to use a console. The shared game rules of Espoo libraries apply when playing. Welcome!</p><p>Note! The game night will not be held on Tuesday, March 10th.</p>"
            },
            "name": {
                "fi": "Peli-ilta pajaloungessa",
                "sv": "Spelkväll i Paja-verkstadsloungen",
                "en": "Game Night at the Makerspace Lounge"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja-verkstäder",
                "en": "Makerspace"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohw4ufma/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agohwo55pa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?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:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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:p4354/?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": 1494922,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-20T12:21:49.900668Z",
                    "last_modified_time": "2026-02-20T12:21:49.900691Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/8c2454fa-543e-464f-a3aa-22c081ef7f54.png",
                    "name": "",
                    "cropping": "229,0,1855,1626",
                    "photographer_name": "",
                    "alt_text": "Maaginen viikko",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494922/?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-02-20T12:22:15.804244Z",
            "last_modified_time": "2026-02-20T13:25:31.767760Z",
            "date_published": null,
            "start_time": "2026-03-26T14:00:00Z",
            "end_time": "2026-03-26T16: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,
            "short_description": {
                "fi": "Maagisen viikon leivontapaja",
                "sv": "Magisk vecka med bakningsworkshop",
                "en": "Magical week baking workshop"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa sukeltamaan fantasian maailmaan maaliskuussa! Espoon kaupunginkirjasto järjestää tapahtumia Helmet –kirjastojen yhteisellä Maagisella viikolla 23.3.-29.3.2026.&nbsp;</p><p>Lippulaivan Kapyysissä leivotaan yhdessä maagisia leivonnaisia. Mukaan mahtuu 12 ensimmäistä.</p><p>#maaginen viikko</p>",
                "sv": "<p>Välkommen att under mars dyka in i fantasyvärlden! Esbo stadsbibliotek ordnar evenemang under Helmet-bibliotekens gemensamma Magiska vecka från 23-29.3.2026.</p><p>Vi bakar magiska bakverk i Lippulaivas utrymme Kapyysi. Med ryms de 12 första personer.</p><p>#maaginen viikko</p><p><br></p>",
                "en": "<p>Dive into the world of fantasy in March! Espoo City Library is organizing events during the joint Magical Week of Helmet libraries from March 23 to March 29, 2026.&nbsp;</p><p>Welcome to bake magical pastry in Lippulaiva. The first 12 can join the group.</p><p>#maaginen viikko</p>"
            },
            "name": {
                "fi": "Leivontapaja Magic edition",
                "sv": "Bakningskurs Magic edition",
                "en": "Baking workshop Magic edition"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohwo55pa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agohw4uf5y",
            "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:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p10727/?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": [],
            "images": [
                {
                    "id": 1494925,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-20T13:11:49.498274Z",
                    "last_modified_time": "2026-02-20T13:11:49.498303Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6179d70c-2d95-4379-9b1f-9d3ff4820cc5.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Nuoria kesämaisemassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494925/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-20T13:18:45.536775Z",
            "last_modified_time": "2026-02-20T13:18:45.536794Z",
            "date_published": null,
            "start_time": "2026-03-03T13:00:00Z",
            "end_time": "2026-03-03T16: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,
            "short_description": {
                "fi": "Tule kysymään kursseistamme, nappaa mukaasi esite, osallistu arvontaan ja nosta kortti, joka saattaa johdattaa sinut kohti uutta oppimispolkua!",
                "sv": "Kom och fråga om våra kurser, ta med dig en broschyr, delta i utlottningen och dra ett kort som kanske leder dig mot en ny lärstig!",
                "en": "Come ask about our courses, pick up a brochure, take part in the raffle, and draw a card that might lead you toward a new learning path!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Rakkaudesta oppimiseen – eilen, nyt ja huomenna</p><p>&nbsp;</p><p>Tänä vuonna on syytä juhlaan: täytämme 60 vuotta! Juhlavuoden teema Eilen, nyt ja huomenna kuljettaa meitä kesäyliopiston historian, nykyhetken ja tulevaisuuden äärelle – mutta katse ei jää vain omaan toimintaamme. Tarkastelemme teeman kautta ilmiöitä ja aiheita laajasti eri näkökulmista. Juhlavuoden kunniaksi järjestämme maksuttomia luentoja ja tapahtumia. Tiistaina 3.3. vierailemme Ison Omenan kirjastossa klo 15–18. Löydät meidät Palvelutorin aulasta.</p>",
                "sv": "<p>Kärlek till lärande – igår, idag och imorgon</p><p>I år har vi anledning att fira: vi fyller 60 år! Jubileumstemat Igår, idag och imorgon tar oss genom sommaruniversitetets historia, nutid och framtid — men blicken stannar inte enbart vid vår egen verksamhet. Genom temat granskar vi fenomen och ämnen ur många olika perspektiv. Med anledning av jubileumsåret ordnar vi avgiftsfria föreläsningar och evenemang. Tisdagen den 3 mars besöker vi Iso Omena‑biblioteket kl. 15–18. Du hittar oss i Servicetorgens aula.</p><p><br></p>",
                "en": "<p>Love for Learning – Yesterday, Today and Tomorrow</p><p>This year we have a reason to celebrate: we are turning 60! The anniversary theme Yesterday, Today and Tomorrow takes us through the history, present and future of the Summer University — but our focus is not limited to our own activities. Through this theme, we explore phenomena and topics from a wide range of perspectives. In honour of the anniversary year, we are organising free lectures and events. On Tuesday 3 March, we will visit Iso Omena Library from 15:00 to 18:00. You can find us in the Service Square lobby.</p>"
            },
            "name": {
                "fi": "Helsingin seudun kesäyliopiston pop-up",
                "sv": "Svenska Huvudstadsregionens sommaruniversitets pop‑up",
                "en": "Helsinki Metropolitan Area Summer University pop‑up  "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Palvelutorin aula",
                "sv": "Palvelutorin aula",
                "en": "Palvelutorin aula"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohw4uf5y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agohwo54fy",
            "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/yso:p1278/?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"
                },
                {
                    "@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": [],
            "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:agohwo53ei/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohwo532i/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494920,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-20T12:51:00.747503Z",
                    "last_modified_time": "2026-02-20T12:51:00.747519Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/221f6b02-74de-435e-8310-c1d1e8495869.jpg",
                    "name": "Naisten päivä",
                    "cropping": "536,0,1376,840",
                    "photographer_name": "",
                    "alt_text": "Naisten päivä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494920/?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-02-20T13:04:29.606950Z",
            "last_modified_time": "2026-02-20T13:04:29.606968Z",
            "date_published": null,
            "start_time": "2026-03-06T16:00:00Z",
            "end_time": "2026-03-07T09: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,
            "short_description": {
                "fi": "Juhlava lasten konsertti kansainvälisen naistenpäivän 8.3 kunniaksi "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kansainvälisen naistenpäivän juhlakonsertti 8. maaliskuuta. </p><p>Esiintyy Sellon kirjastokerhon lastenryhmä Vera Kruglikin johdolla.</p><p>Праздничный концерт к международному женскому дню 8 марта.&nbsp;</p><p>Выступает детский коллектив кружка библиотеки Селло под руководством Веры Круглик.</p>"
            },
            "name": {
                "fi": "Juhlava lasten konsertti kansainvälisen naistenpäivän 8.3 kunniaksi "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lava"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohwo54fy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agohwo54rm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?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": 1491192,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-10-26T09:00:39.500409Z",
                    "last_modified_time": "2025-10-26T09:00:39.500427Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f78a5ebd-87df-4160-9109-6d0e209f56ca.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "maapallo jonka sisällä teksti kohtuusklubi",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491192/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-20T12:58:35.182274Z",
            "last_modified_time": "2026-02-20T12:58:35.182294Z",
            "date_published": null,
            "start_time": "2026-02-27T16:00:00Z",
            "end_time": "2026-02-27T17:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Mikä on kohtuullista? Tule mukaan miettimään! Lukupiiri sopii kaikille, joita kohtuullisuus kiinnostaa. "
            },
            "info_url": {
                "fi": "https://www.sll.fi/uusimaa/tule-mukaan/toimintaryhmat/kohtuusklubi/"
            },
            "description": {
                "fi": "<p><strong>Helmikuussa lukupiiri perjantaina 27.2. kello 18 Entressen kirjastossa, Siltakatu 11, 02770 Espoo. (Ryhmätyötila Aisti) </strong></p>\n<a href=\"https://helmet.finna.fi/Record/helmet.2495440?sid=5262135691\">Kirjana Taina Laane: Säällisiä ajatuksia. </a><p><br></p><p>Positiivisen psykologian asiantuntija, kouluttaja ja kirjailija <strong>Taina Laane</strong> kirjoittaa elämästä ilmastovaateiden keskellä, mutta - uskaltaako sen sanoa ääneen - velvollisuuksia täyteen ahdetun elämän keskellä maailman pelastaminen on joskus vaan - raskasta.</p><p>Voisimmeko pelastaa myös itsemme? Voisiko myötätunto taltuttaa riittämättömyyden tunteen?</p><p>Lukupiiri sopii kaikille, joita kohtuullinen elämäntapa kiinnostaa. Keskustelemme kirjan herättämistä ajatuksista. Voit tulla mukaan, vaikka et olisi ehtinyt lukea kirjaa.</p><p>Lukupiirin ohjaavat <strong>Anna ja Mia</strong>. Ei ennakkoilmoittautumista. Tervetuloa!</p><p>Lukupiiri on osa <strong>Suomen luonnonsuojeluliiton Uudenmaan piirin Kohtuusklubin toimintaa.</strong></p><p>Kohtuusklubi on toimintaryhmä, jonka aktiivit järjestävät kestävään elämäntapaan liittyviä tapahtumia, tempauksia, retkiä ja muuta mukavaa.</p>"
            },
            "name": {
                "fi": "Kohtuullinen lukupiiri "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Ryhmätyötila Aisti"
            },
            "provider": {
                "fi": "Lukupiiri on osa Suomen luonnonsuojeluliiton uudenmaanpiirin Kohtuusklubin toimintaa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohwo54rm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agoeeyhmpm",
            "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/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?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": 1490194,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-02-21T13:14:25.503797Z",
                    "last_modified_time": "2025-02-21T13:14:25.503811Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/bcf810b0-69f8-4f7b-bb74-43d0659b2743.JPG",
                    "name": "",
                    "cropping": "39,0,702,663",
                    "photographer_name": "",
                    "alt_text": "henkilöllä käsissä musta lautanen jossa tomaattilohkoja, fenkolilohkoja, pinaatinlehtiä ja paneroituja kasviksia sekä bataatinpaloja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490194/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-09T11:34:33.531899Z",
            "last_modified_time": "2026-02-20T12:27:54.682698Z",
            "date_published": null,
            "start_time": "2026-02-23T09:00:00Z",
            "end_time": "2026-02-23T12: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,
            "short_description": {
                "fi": "Kokataan ja syödään yhdessä ",
                "sv": "Låt oss laga mat och äta tillsammans ",
                "en": "We cook and eat together"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kokkaillaan ja syödään yhdessä lounas.</p><p>Mukaan mahtuu 10 ensimmäistä.</p><p>Kokkailu on aikuisille.</p><p>Tapahtuma on maksuton.</p><p>Kokkailu tapahtuu Entressen kirjaston Jukeboksi-tilassa.</p><p>Ennakkoilmoittautuminen <a href=\"https://link.webropol.com/s/marokkolainenlounas\">linkin kautta</a>.</p><p>Ilmoittautuminen on sitova.</p>",
                "sv": "<p>Låt oss laga mat och äta lunch tillsammans.</p><p>De första 10 personerna kan delta.</p><p>Matlagningen är för vuxna.</p><p>Evenemanget är gratis.</p><p>Vi kommer att ordna matlagningen i Jukebox-utrymmet på Entresse Library.</p><p>Förhandsanmäl dig <a href=\"https://link.webropol.com/s/marokkolainenlounas\">via länken</a>.</p><p>Anmälan är bindande.</p>",
                "en": "<p>Let´s cook and eat a vegetarian lunch together.</p><p>The first 10 people can join in.&nbsp;</p><p>Cooking is for adults.</p><p>The event is free of charge.&nbsp;</p><p>Cooking happens in Entresse library, Jukeboksi venue.</p><p>Pre-register <a href=\"https://link.webropol.com/s/marokkolainenlounas\">via link</a>. </p><p>Registration is binding.</p>"
            },
            "name": {
                "fi": "Kokataan kasvislounas Entressen kirjastossa",
                "sv": "Låt oss laga en vegetarisk lunch tillsammans",
                "en": "Let´s cook together vegetarian lunch at Entresse library!"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Jukeboksi-tila",
                "sv": "Jukeboksi utrymme",
                "en": "Jukeboksi venue"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoeeyhmpm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agohv4y2ji",
            "has_user_editable_resources": true,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                }
            ],
            "registration": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/181/?format=api"
            },
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/181/signup-group/create",
                        "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/181/signup-group/create",
                        "en": "https://linkedregistrations.test.hel.ninja/en/registration/181/signup-group/create"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-20T12:07:58.332790Z",
            "last_modified_time": "2026-02-20T12:07:58.332806Z",
            "date_published": null,
            "start_time": "2026-03-02T14:00:00Z",
            "end_time": "2026-03-02T15: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": 40,
            "minimum_attendee_capacity": 0,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tapahtuman lyhyt kuvaus"
            },
            "info_url": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Tapahtuman kuvaus</p>"
            },
            "name": {
                "fi": "23.2. JIIRI-kahvit"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agohv4y2ji/?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-02-20T10:17:54.282672Z",
            "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,
            "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>"
            },
            "name": {
                "fi": "Enter ry - Digiopastusta seniorilta seniorille",
                "sv": "Enter - Digistöd från seniorer till seniorer",
                "en": "Enter - Digital guidance from seniors to seniors"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kari",
                "sv": "Kari",
                "en": "Kari"
            },
            "provider": {
                "fi": "Enter",
                "sv": "Enter",
                "en": "Enter"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp6ga/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnh2zthsu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "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:agnh2ztfam/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2ztfq4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2ztf7a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2ztgmy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2ztg3a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2zthhm/?format=api"
                }
            ],
            "images": [
                {
                    "id": 152115,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-15T06:47:28.191606Z",
                    "last_modified_time": "2024-08-15T06:47:28.191622Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/book-1283865_1920.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Avoin kirja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152115/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-13T12:30:04.908952Z",
            "last_modified_time": "2026-02-20T09:29:09.041190Z",
            "date_published": null,
            "start_time": "2026-01-07T15:30:00Z",
            "end_time": "2026-05-27T16: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,
            "short_description": {
                "fi": "Kalajärven kirjaston lukupiiri",
                "sv": "Kalajärvi biblioteks läsecirkel",
                "en": "Kalajärvi Library Reading Circle"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kalajärven kirjaston lukupiiri kokoontuu Kevätkauden 2026 seuraavina keskiviikkoina klo 17:30-19:00 / Apaja-tilassa</p><p>7.1. Minna Maijalan \"Katri Vala: kulkuri &amp; näkijä\"</p><p>4.2.<a href=\"https://helmet.finna.fi/Record/helmet.2015918?sid=5233842913\"> Antonio Muñoz Molinan \"Kuun tuuli\"</a></p><p>4.3. <a href=\"https://helmet.finna.fi/Record/helmet.2209693?sid=5233842283\">René Nyberg: Viimeinen juna Moskovaan</a></p><p>1.4. <a href=\"https://helmet.finna.fi/Record/helmet.2006299?sid=5261957995\">Tuomas Anhava: Kevään kukat, syksyn kuu</a></p><p>29.4.</p><p>27.5.</p>",
                "sv": "<p>Kalajärvi biblioteks läsecirkel på finska</p>",
                "en": "<p>Kalajärvi Library Reading Circle in Finnish</p>"
            },
            "name": {
                "fi": "Kalajärven kirjaston lukupiiri",
                "sv": "Kalajärvi biblioteks läsecirkel",
                "en": "Kalajärvi Library Reading Circle"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Apaja",
                "sv": "Apaja",
                "en": "Apaja"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2zthsu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agohms5z64",
            "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/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:agohms5yym/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohms5zlm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohms5zuy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494909,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-17T15:46:28.390916Z",
                    "last_modified_time": "2026-02-17T15:46:28.390931Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/510fc833-af5c-4845-bd73-1b07dcdfefde.png",
                    "name": "",
                    "cropping": "116,0,584,467",
                    "photographer_name": "",
                    "alt_text": "Musiikin teoriaa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494909/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-19T14:13:07.526429Z",
            "last_modified_time": "2026-02-19T14:58:28.638264Z",
            "date_published": null,
            "start_time": "2026-03-19T15:45:00Z",
            "end_time": "2026-04-09T16: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,
            "short_description": {
                "fi": "Musiikin teoriaa käytännönläheisesti",
                "en": "Music Theory Basics"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tällä kurssilla käydään läpi musiikin teorian perusteita käytännönläheisesti. Tutustumme säveliin, intervalleihin, sointuihin, rytmiin, ja asteikoihin. Käytännön esimerkein ja tehtävien avulla käymme läpi, miten tämä tietämys voi rikastuttaa musiikin ymmärtämistä, kuuntelu- ja soittamiskokemusta. Kurssilla keskitytään länsimaisen taidemusiikin teoriaan ja tätä tietämystä laajennetaan esimerkeillä muista musiikkikulttuureista. Aikaisempaa tietämystä musiikin teoriasta ei tarvitse olla. Max. 10 osallistujaa. Voitte ottaa oman melodiasoittimen mukaan, jos sellainen löytyy. Kurssin ohjaa musiikkipedagogi Sakari Heikka. Tervetuloa!</p><p>Ilmoittaudu tästä linkistä: <a href=\"https://link.webropol.com/s/musiikinteoriaa\">https://link.webropol.com/s/musiikinteoriaa</a></p>",
                "en": "<p>This course covers the fundamentals of music theory in a practical, hands-on way. We will explore notes, intervals, chords, rhythm, and scales. Through practical examples and exercises, we will examine how this knowledge can enrich musical understanding, listening, and playing experiences.</p><p>The course focuses on the theory of Western art music, and this knowledge will be broadened with examples from other musical cultures. No prior knowledge of music theory is required. You can bring a melodyinstrument if you have one.</p><p>Maximum of 10 participants.</p><p>Teaching in Finnish.</p><p>The course is led by music educator Sakari Heikka. Welcome!</p><p>Register via this link:</p><p><a href=\"https://link.webropol.com/s/musiikinteoriaa\">https://link.webropol.com/s/musiikinteoriaa</a></p>"
            },
            "name": {
                "fi": "Musiikin teoriaa",
                "en": "Music Theory"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kokoustila Ilmari",
                "en": "Kokoustila Ilmari"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohms5z64/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agohms52hu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": [],
            "images": [
                {
                    "id": 1494910,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-19T13:54:58.813047Z",
                    "last_modified_time": "2026-02-19T13:55:05.025036Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/b5f8f641-cd98-44a2-abb6-e53322e385a6.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Vaaleita kangaskasseja vihreällä pohjalla ja teksti Lohkottujen päivien kangaskassipaja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494910/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-19T14:00:04.848706Z",
            "last_modified_time": "2026-02-19T14:00:04.848726Z",
            "date_published": null,
            "start_time": "2026-03-08T11:00:00Z",
            "end_time": "2026-03-08T14: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,
            "short_description": {
                "fi": "Tule tekemään persoonallinen  kassi",
                "sv": "Kom och gör en personlig tygkasse",
                "en": "Come and make a personalised tote bag"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapahtumassa voit suunnitella kuvan tai tekstin, jonka saa painatettua kangaskassiin. Voit myös käyttää valmista kuvaa. Kangaskasseja riittää 50:lle ensimmäiselle. Tervetuloa!&nbsp;</p><p>#helloespoo</p>",
                "sv": "<p>På evenemanget kan du designa en bild eller text som trycks på en tygkasse. Du kan också använda en färdig bild. Tygkassar finns för de första 50 deltagarna. Välkommen!</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>At the event, you can design an image or text to be printed on a canvas tote bag. You can also use a ready‑made image. Tote bags are available for the first 50 participants. Welcome!</p><p><br></p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Kangaskassin painatusta",
                "sv": " Svenska Tryck på tygkasse",
                "en": " Printing on a canvas tote bag"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohms52hu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agohmflxci",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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": 1494906,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-19T12:38:09.241045Z",
                    "last_modified_time": "2026-02-20T08:47:33.226112Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6c5e2fc7-6b6f-4c0e-99ae-ff2dbc5d2894.png",
                    "name": "",
                    "cropping": "108,0,768,660",
                    "photographer_name": "",
                    "alt_text": "Maaginen viikko",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494906/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-02-19T13:07:38.716274Z",
            "last_modified_time": "2026-02-19T13:07:38.716295Z",
            "date_published": null,
            "start_time": "2026-03-24T14:00:00Z",
            "end_time": "2026-03-24T17: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,
            "short_description": {
                "fi": "Maagisen viikon lautapelitapahtuma",
                "sv": "Magisk vecka med brädspel",
                "en": "Magical week board game event"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Espoon kaupunginkirjasto järjestää tapahtumia Helmet-kirjastojen yhteisellä maagisella viikolla 23.-29.3.2026.</p><p>Tervetuloa pelaamaan maagisia ja fantasialautapelejä vauvasta vaariin. Luvassa on maaginen labyrintti tai Velhojen yö, jossa pelimerkit hohtavat! </p><p># Maaginen viikko</p>",
                "sv": "<p>Esbo stadsbibliotek organiserar evenemang under den gemensamma magiska veckan i Helmet biblioteken från 23 -29.3.2026. </p><p>Alla hjärtligt välkomna, från barn till senior, att spela bredspel både magiska och fantasy. Njut av en magisk labyrint eller en kväll med magiker spelet, där spelpjäserna glimmar!&nbsp;</p><p># Magiska veckan</p>",
                "en": "<p>Espoo city library is organizing events during the joint Helmet Librarie's Magic week from March 23 to 29, 2026.</p><p>Welcome to play magical fantasy board games. Enjoy a game of Magic maze or a game of Night wizards, where the game pieces glow!&nbsp;The event is open and free for everyone.</p><p># Magical week</p>"
            },
            "name": {
                "fi": "Maagiset lautapelit",
                "sv": "Magiska brädspel",
                "en": "Magical board games"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohmflxci/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agohkasnli",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1494900,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-19T07:52:12.728630Z",
                    "last_modified_time": "2026-02-19T07:52:12.728648Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0ba4a0a5-003e-48c4-ab74-4e939d865d31.jpg",
                    "name": "",
                    "cropping": "448,0,1600,1152",
                    "photographer_name": "",
                    "alt_text": "Sienikuva",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494900/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-02-19T07:54:19.441476Z",
            "last_modified_time": "2026-02-19T13:04:16.914477Z",
            "date_published": "2026-02-19T07:55:48.227000Z",
            "start_time": "2026-03-23T13:30:00Z",
            "end_time": "2026-03-23T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule opettelemaan taikatemppuja!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Maaginen viikko toteutetaan Entressen kirjastossa. pääset harjoittelemaan oikeita taikatemppuja maagisen henkilökunnan kanssa.</p>"
            },
            "name": {
                "fi": "Maaginen taikatemppupaja"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sininen huone"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohkasnli/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny4whbnu",
            "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:agggfz67dq/?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/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:agny4wgzoe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wgz4e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg2je/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg2v4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg3em/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg3sq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg4bm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg4pu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg46e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg5ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg5wy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg6ee/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg6sa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg66a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg7ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg7wy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whaea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whar4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whbbe/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494376,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-05T12:42:46.693088Z",
                    "last_modified_time": "2026-01-05T12:42:46.693105Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6a0f2969-d169-490e-a9f9-aa12be8216ec.png",
                    "name": "",
                    "cropping": "105,0,371,266",
                    "photographer_name": "",
                    "alt_text": "Lapset askartelevat pöydän ääressä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494376/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-01-05T12:46:45.466006Z",
            "last_modified_time": "2026-02-19T12:42:13.162097Z",
            "date_published": null,
            "start_time": "2026-01-21T13:30:00Z",
            "end_time": "2026-05-27T14: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,
            "short_description": {
                "fi": "Askarrellaan ja taiteillaan yhdessä. ",
                "sv": "Låt oss pyssla och skapa konst tillsammans. ",
                "en": "Let’s craft and make art together. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan joka viikko yhdessä Ison Omenan kirjaston pajaan. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa materiaalit.&nbsp;</p><p>Pienet lapset yhdessä oman aikuisen kanssa.&nbsp;</p><p><br></p><p>Tervetuloa!&nbsp;</p>",
                "sv": "<p>Kom&nbsp;och&nbsp;pyssla&nbsp;varje&nbsp;vecka&nbsp;i&nbsp;verkstaden&nbsp;på&nbsp;Ison&nbsp;Omenas&nbsp;bibliotek.&nbsp;Varje&nbsp;verkstadsaftermiddag&nbsp;har&nbsp;ett&nbsp;eget&nbsp;tema.&nbsp;Biblioteket&nbsp;står&nbsp;för&nbsp;materialet.&nbsp;</p><p>Små&nbsp;barn&nbsp;tillsammans&nbsp;med&nbsp;sin&nbsp;egen&nbsp;vuxen.&nbsp;</p><p><br></p><p>Välkommen!&nbsp;</p>",
                "en": "<p>Come&nbsp;and&nbsp;craft&nbsp;every&nbsp;week&nbsp;in&nbsp;the&nbsp;workshop at Iso Omena Library.&nbsp;Each&nbsp;workshop&nbsp;afternoon&nbsp;has&nbsp;its&nbsp;own&nbsp;theme.&nbsp;The&nbsp;library&nbsp;provides&nbsp;all&nbsp;materials.&nbsp;</p><p>Small&nbsp;children&nbsp;together&nbsp;with&nbsp;your&nbsp;grown&nbsp;up.&nbsp;</p><p><br></p><p>Welcome!&nbsp;</p>"
            },
            "name": {
                "fi": "Pajailtapäivä Ison Omenan kirjastossa",
                "sv": "Verkstadseftermiddag på Iso Omenas bibliotek",
                "en": "Workshop afternoon at Iso Omena Library "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja-verkstäder",
                "en": "Makerspace"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whbnu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agohmflyem",
            "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/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:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494908,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-19T12:30:16.751327Z",
                    "last_modified_time": "2026-02-19T12:30:16.751344Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/263619c1-3a4b-4616-9873-5be0720f1771.png",
                    "name": "",
                    "cropping": "117,0,683,566",
                    "photographer_name": "",
                    "alt_text": "Sumuinen metsä taustalla, jonka edustalla kreikkalaistyylinen temppeli, punainen lippu, miekka, kreikkalainen sotilaskypärä, sekä lentävä pegasus.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494908/?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-02-19T12:32:51.925396Z",
            "last_modified_time": "2026-02-19T12:32:51.925413Z",
            "date_published": null,
            "start_time": "2026-03-23T13:30:00Z",
            "end_time": "2026-03-23T15: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,
            "short_description": {
                "fi": "Maaginen Percy Jackson- tapahtuma",
                "sv": "Magiska Percy Jackson-evenemang",
                "en": "Magical Percy Jackson event"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Huomio kaikki Puolijumalat!</p><p>Haluatko tavata muita Percy Jackson- sarjan faneja? Selvittää, kuka kreikkalaisen taruston jumalista olisi jumalallinen vanhempasi? Tehdä pinssejä, joista muut tunnistavat sinut Percy Jackson-faniksi? Tehdä oman Puoliveristen leirin kaulakorusi? Osoittaa syvää tietämystäsi Percy Jackson- kirjoista tietovisassa?</p><p>Osallistu Ison Omenan kirjaston maagiseen Percy Jackson- tapahtumaan!</p><p>Koska? 23.03. klo 15:50-17:30</p><p>Missä? Ison Omenan kirjaston pajassa&nbsp;</p>",
                "sv": "<p>Lystring alla halvblod!</p><p>Vill du möta andra fans av Percy Jackson-serien? Ta reda på vilken gud som är din gudomliga förälder? Göra pins som visar andra ditt Percy-Jackson-intresse? Göra ett eget Halvblodslägerhalsband? Briljera med din kunskap om Percy-Jackson-böckerna i en frågesport?</p><p>Häng med på Iso omenas magiska Percy Jackson-evenemang!</p><p>När? 23.3 kl. 15:30-17:30</p><p>Var? Iso omena biblioteks verkstad</p>",
                "en": "<p>Attention all Half-Bloods!</p><p>Do you want to meet other fans of the Percy Jackson series? Find out which god is your godly parent? Make pins that show others your Percy Jackson enthusiasm? Make your own Camp Half-Blood necklace? Show off your deep knowledge of the Percy Jackson books in a quiz?</p><p>Join Iso omena library’s magical Percy Jackson event!</p><p>When? 23rd of March at 3:30 p.m. - 5:30 p.m.</p><p>Where? Iso omena library’s makerspace</p>"
            },
            "name": {
                "fi": "Maaginen Percy Jackson- tapahtuma",
                "sv": "Magiska Percy Jackson-evenemang",
                "en": "Magical Percy Jackson event"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Verkstad",
                "en": "Makerspace"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohmflyem/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}