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

{
    "meta": {
        "count": 21751,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=45",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=43"
    },
    "data": [
        {
            "id": "espoo_le:agofomcxci",
            "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:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 1494863,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-13T12:15:03.879662Z",
                    "last_modified_time": "2026-02-13T12:15:03.879678Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0bc6911c-087c-48c6-b1c6-f4fb0b06a669.jpg",
                    "name": "musafestarit",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "musafestarit",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494863/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-13T12:32:44.500368Z",
            "last_modified_time": "2026-02-13T12:32:44.500386Z",
            "date_published": null,
            "start_time": "2026-04-25T09:00:00Z",
            "end_time": "2026-04-25T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Sellon kirjastossa järjestetään Musafestarit lauantaina 25.4.2026",
                "sv": "Sellobibliotek ordnar en musikfestival lördagen den 25.4.2026",
                "en": "Sello Library will host a Music Festival on Saturday 25.4.2026"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Sellon kirjastossa järjestetään Musafestarit lauantaina 25.4.2026</p><p>&nbsp;</p><p>Musafestareilla esiintyjinä toimivat kirjaston asiakkaat. Jos soitat, laulat tai teet musaa yksin tai yhdessä sinulla on mahdollisuus päästä esiintymään! Pyrimme järjestämään kaikille halukkaille esiintymismahdollisuuden. Esitettävät musiikkityylit ovat vapaat. Omasta esityksestä on mahdollista saada tallenne. Yhden esityksen kesto voi olla 5-15min.</p><p>&nbsp;</p><p>Ilmoittautuminen tapahtuu täyttämällä alla oleva lomake. Otamme sinuun yhteyttä muutaman arkipäivän kuluttua ilmoittautumisesta.&nbsp;</p><p>&nbsp;</p><p><a href=\"https://link.webropol.com/s/musafestarit\">https://link.webropol.com/s/musafestarit</a></p><p>&nbsp;</p><p>Ilmoittautuminen sulkeutuu sunnuntaina 12.4.2026</p><p>#festarit #festivaali #musiikki #konsertti #esitys</p>",
                "sv": "<p>Sellobibliotek ordnar en musikfestival lördagen den 25.4.2026</p><p>&nbsp;</p><p>Musikfestivalerna framförs av bibliotekets kunder. Om du spelar, sjunger eller musicerar ensam eller tillsammans har du chansen att uppträda! Vi försöker ordna ett uppträdandetillfälle för alla som vill ha ett. De musikstilar som framförs är fria. Det är möjligt att få en inspelning av sitt eget framträdande. Längden på ett enskilt framträdande kan vara 5-15 minuter.</p><p>&nbsp;</p><p>För att registrera dig, vänligen fyll i formuläret nedan. Vi kommer att kontakta dig inom några arbetsdagar efter registreringen.&nbsp;</p><p>&nbsp;</p><p><a href=\"https://link.webropol.com/s/musafestarit\">https://link.webropol.com/s/musafestarit</a></p><p>&nbsp;</p><p>&nbsp;</p><p>Anmälan stänger på söndag 12.4.2026.</p><p>&nbsp;</p><p>(översatt av DeepL)</p><p>#festival #musik #konsert</p>",
                "en": "<p>Sello Library will host a Music Festival on Saturday 25.4.2026</p><p>&nbsp;</p><p>The Music Festivals are performed by the library's customers. If you do music, play any instrument, or have a band you have an opportunity to perform in Music Festival. We will try to arrange a performance opportunity for everyone who wants one.&nbsp;The styles of music performed are free. It is possible to get a recording of your own performance. The duration of a single performance can be 5-15min.</p><p>&nbsp;</p><p>To register for a music festival, please fill in the form below. We will contact you in a few working days.&nbsp;</p><p>&nbsp;</p><p><a href=\"https://link.webropol.com/s/musafestarit\">https://link.webropol.com/s/musafestarit</a></p><p>&nbsp;</p><p>Registration closes on Sunday 12.4.2026.</p><p>#music #festival #performance #live&nbsp;</p>"
            },
            "name": {
                "fi": "Sellon kirjaston Musafestarit VII",
                "sv": "Sellobibliotekets Musikfestival VII",
                "en": "Sello Library Music Festival VII"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lava",
                "sv": "scen Lava",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofomcxci/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agofn6paxy",
            "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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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": 1494860,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-13T11:52:14.078516Z",
                    "last_modified_time": "2026-02-13T11:52:14.078533Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0bc8cd4f-65c1-44c6-b5cb-bdb53acccd0d.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Satakielikuukauden animoitu kuva",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494860/?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-13T12:08:52.887944Z",
            "last_modified_time": "2026-02-13T12:08:52.887963Z",
            "date_published": null,
            "start_time": "2026-02-26T14:30:00Z",
            "end_time": "2026-02-26T15: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": "Satakielikuukauden tapahtuma: Monikielisiä runoja lavalla",
                "sv": "Satakielikuukausi-evenemang: Flerspråkiga dikter på scen",
                "en": "Satakielikuukausi event: Multilingual poems on stage"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa kuuntelemaan runoja albanian, espanjan, arabian, ruotsin, suomen ja englannin kielillä.</p>",
                "sv": "<p>Kom och lyssna på dikter på albanska, spanska, arabiska, svenska, finska och engelska.</p><p><br></p>",
                "en": "<p>Welcome to listen poems in Albanian, Spanish, Arabic, Swedish, Finnish, and English.</p><p><br></p>"
            },
            "name": {
                "fi": "Satakielikuukauden tapahtuma: Monikielisiä runoja lavalla",
                "sv": "Satakielikuukausi-evenemang: Flerspråkiga dikter på scen",
                "en": "Satakielikuukausi event: Multilingual poems on stage"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofn6paxy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agofn6pbqu",
            "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: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": 1494861,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-13T11:55:16.241755Z",
                    "last_modified_time": "2026-02-13T11:55:16.241772Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f7b5aa45-4f33-4d33-98fd-b35ccfc33f10.jpg",
                    "name": "",
                    "cropping": "0,378,1689,2067",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on Mika Aaltola ja Henri Vanhanen, jotka ovat kirjoittaneet Etulinjassa- Suomen turvallisuus epäjärjestyksen maailmassa kirjan",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494861/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-13T11:55:30.243640Z",
            "last_modified_time": "2026-02-13T11:55:30.243659Z",
            "date_published": null,
            "start_time": "2026-05-13T15:00:00Z",
            "end_time": "2026-05-13T16: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": "Luvassa on asiantuntija-alustus sekä mahdollisuus yleisökysymyksille ja keskustelulle. Tervetuloa kuulemaan ja keskustelemaan aiheista!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Miten Suomen turvallisuusympäristö on muuttunut kun maailman murros ja Yhdysvaltojen, Venäjän ja Kiinan kilpailu kovenee? Lippulaivan 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>"
            },
            "name": {
                "fi": "Turvallisuuspoliittinen ilta: Suomi maailmanpolitiikan etulinjassa"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofn6pbqu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agofeebtgy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15309/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?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: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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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:agofeebqli/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofeebram/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofeebrle/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofeebrwa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofeebsa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofeebsoe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofeebs2i/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494855,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-12T13:02:52.063881Z",
                    "last_modified_time": "2026-02-12T13:02:52.063896Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7e5d8659-50cd-42e2-be2e-cadf4c9068dd.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lukukoira Usva",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494855/?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-12T13:02:59.973501Z",
            "last_modified_time": "2026-02-12T13:02:59.973519Z",
            "date_published": null,
            "start_time": "2026-02-23T16:00:00Z",
            "end_time": "2026-05-18T15:45: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": "Jos lukeminen tuntuu vaikealta, Usvan kanssa on kiva opetella ja samalla voi antaa rapsutuksia.",
                "sv": "Om läsning känns svårt är det trevligt att öva med Usva, och samtidigt kan man klappa henne.",
                "en": "If reading feels difficult, it’s nice to practice with Usva, and you can give her some pets at the same time."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Jos lukeminen tuntuu vaikealta, lukulemmikki Usvan kanssa on kiva opetella ja samalla voi antaa rapsutuksia.</p>",
                "sv": "<p>Om läsning känns svårt är det trevligt att öva med Usva, och samtidigt kan man klappa henne.</p>",
                "en": "<p>If reading feels difficult, it’s nice to practice with Usva, and you can give her some pets at the same time.</p>"
            },
            "name": {
                "fi": "Lukukoira Usva",
                "sv": "Läshunden Usva",
                "en": "Reading dog Usva"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofeebtgy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agofeebtse",
            "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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "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": 1494856,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-12T12:32:10.908531Z",
                    "last_modified_time": "2026-02-12T12:32:10.908547Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7538308d-bd70-4840-8b0a-d779dd0b64d4.jpg",
                    "name": "Eveliina Kokkonen  ja Merja Korpisaari",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Eveliina Kokkonen  ja Merja Korpisaari",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494856/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-12T12:32:20.468120Z",
            "last_modified_time": "2026-02-12T12:32:20.468138Z",
            "date_published": null,
            "start_time": "2026-03-17T15:00:00Z",
            "end_time": "2026-03-17T17: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": "Kaikille avoin erityisherkkyysilta, jossa kuullaan alustus aiheeseen, tehdään keho-mieli -harjoituksia ja keskustellaan.",
                "sv": "Den högkänsliga personen blir gammal – kväll på finska",
                "en": "Highly sensitive people are aging - evening in Finnish"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Mitä haasteita tuo ikä? Miten voida ikääntyvänä erityisherkkänä hyvin?</p><p><br></p><p>Kaikille avoin erityisherkkyysilta, jossa kuullaan alustus aiheeseen, tehdään keho-mieli -harjoituksia ja keskustellaan.</p><p><br></p><p>Keskustelun alustaa HSP kokemusasiantuntija, KM Merja Korpisaari.&nbsp;</p><p>Hengitys- ja kehoharjoituksia ohjaa HSP kokemusasiantuntija Eveliina Kokkonen.</p><p>Lämpimästi tervetuloa kaikenikäiset!</p>",
                "sv": "<p>Den högkänsliga personen blir gammal – kväll på finska</p>",
                "en": "<p>Highly sensitive people are aging - evening in Finnish</p>"
            },
            "name": {
                "fi": "Erityisherkkä ikääntyy - ilta",
                "sv": "Den högkänsliga personen blir gammal – kväll på finska",
                "en": "Highly sensitive people are aging - evening in Finnish"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Akseli-sali",
                "sv": "Akseli salen",
                "en": "Akseli hall"
            },
            "provider": {
                "fi": "HSP Suomi ry",
                "sv": "HSP Suomi ry",
                "en": "HSP Suomi ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofeebtse/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agodgxanke",
            "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:p1808/?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: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:p556/?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": 1494795,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-04T13:32:33.505428Z",
                    "last_modified_time": "2026-02-04T13:32:33.505443Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/943beb47-d5fc-4a66-8431-b37bf2b02d06.png",
                    "name": "",
                    "cropping": "970,0,2890,1920",
                    "photographer_name": "kuva: Espoon kaupungin aineistopankki",
                    "alt_text": "International Mother Language Day program for children",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494795/?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-04T13:42:50.502672Z",
            "last_modified_time": "2026-02-11T13:27:07.567835Z",
            "date_published": null,
            "start_time": "2026-02-21T09:00:00Z",
            "end_time": "2026-02-21T11: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": "Bengalinkielen opettaja järjestää lapsille kirjastossa työpajan kansainvälisen äidinkielenpäivän kunniaksi",
                "en": "A Bengali language teacher is organizing a workshop for children at the library in honor of International Mother Language Day."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Bengalinkielen opettaja järjestää lapsille kirjastossa työpajan kansainvälisen äidinkielenpäivän kunniaksi</p><p>Lauantaina 21.2.2026 klo 11-13 Entressen kirjaston Estradilla</p><p><br></p><p>Tapahtuman järjestää opettaja Mahmuda&nbsp;Emdad, joka työskentelee Espoon kaupungin monikulttuuriset opetuspalvelut - yksikössä</p>",
                "en": "<p>A Bengali language teacher is organizing a workshop for children at the library in honor of International Mother Language Day.</p><p><br></p><p>Saturday, February 21, 2026, 11 a.m. to 1 p.m. at the Entresse Library Estradi</p><p><br></p><p>The event is organized by a teacher Mahmuda&nbsp;Emdad, She works in the Multicultural Education Services unit of the City of Espoo.</p>"
            },
            "name": {
                "fi": "Kansainvälisen äidinkielenpäivän ohjelmaa lapsille (bengalin kielellä) ",
                "en": "International Mother Language Day program for children (in Bengali) "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Estradi",
                "en": "Estradi"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agodgxanke/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agoezy2c7m",
            "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/helmet:11733/?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": [],
            "images": [
                {
                    "id": 1494389,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-07T09:35:33.323852Z",
                    "last_modified_time": "2026-01-07T09:35:33.323869Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0f45a0a8-7922-4e08-9894-109ab282442c.png",
                    "name": "",
                    "cropping": "122,0,596,474",
                    "photographer_name": "",
                    "alt_text": "Kahvikuppi, jossa Ranskan trikolori",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494389/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-11T13:10:51.348858Z",
            "last_modified_time": "2026-02-11T13:10:51.348877Z",
            "date_published": "2026-02-11T13:15:00Z",
            "start_time": "2026-02-23T16:30:00Z",
            "end_time": "2026-02-23T17: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": "Tervetuloa ranskankieliseen keskusteluryhmään, joka kokoontuu Kapyysissa 23.2.2026 klo 18:30-19:30",
                "sv": "Välkommen till språkcaféet på franska till Kapyysi den 23.2.2026 klockan 18:30-19:30.",
                "en": "Welcome to the French Conversation Group in Kapyysi room on 23.2.2026 at 18:30-19:30"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa ranskankieliseen keskusteluryhmään, joka kokoontuu Kapyysissa 23.2.2026 klo 18:30-19:30</p><p>Tämä ryhmä on suunnattu henkilöille, jotka osaavat jo ranskaa. Tapahtuma on kaikille avoin ja maksuton.</p><p><br></p><p><br></p>",
                "sv": "<p>Välkommen till språkcaféet på franska till Kapyysi den 23.2.2026 klockan 18:30-19:30.</p><p>Språkcaféet är syftat för dem som redan har någon kunskap i muntlig franska.</p><p>Evenemanget är helt gratis. Alla är välkomna.</p>",
                "en": "<p>Welcome to the French Conversation Group in Kapyysi room.</p><p><br></p><p>This is a relaxed session where we chat in French together with a cup of tea. You are welcome to join if you would like to practice speaking French. Everyone is welcome, and participation is free of charge.</p><p>The next session will be on 23.2.2026 at 18:30–19:30.</p>"
            },
            "name": {
                "fi": "Ranskankielinen keskusteluryhmä",
                "sv": "Språkcafé på franska",
                "en": "French Conversation Group"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kapyysi",
                "sv": "Kapyysi",
                "en": "Kapyysi"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoezy2c7m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agoep5hvxi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494843,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-10T13:38:09.332873Z",
                    "last_modified_time": "2026-02-10T13:38:09.332888Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1f6cbd04-5c43-4402-b7af-85cb5a368b1a.png",
                    "name": "",
                    "cropping": "78,0,722,644",
                    "photographer_name": "",
                    "alt_text": "Kerttu Mairinoja: taidenäyttely Sellon kirjaston lastenosaston taideseinällä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494843/?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-10T13:49:42.559151Z",
            "last_modified_time": "2026-02-11T13:01:21.326741Z",
            "date_published": "2026-02-05T13:17:00Z",
            "start_time": "2026-02-06T08:00:00Z",
            "end_time": "2026-03-13T16: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": "Taideteoksia eri tekniikoilla",
                "sv": "Konstverk med olika tekniker",
                "en": "Artworks using various techniques"
            },
            "info_url": null,
            "description": {
                "fi": "<p><strong>Kerttu Mairinoja</strong> (s. 2012) on opiskellut Espoon kuvataidekoulussa vuodesta 2020 lähtien. Lisäksi hän on osallistunut Lasten ja nuorten arkkitehtuurikoulu Arkin opetukseen vuodesta 2023 lähtien. Hän on toteuttanut teoksia monilla eri tekniikoilla: mm. akryylimaalaus, lyijykynätyöt, tussityöt, savityöt, huovutukset, pienoismallirakennelmat ja omat animaatiot.</p><p>Taidenäyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>",
                "sv": "<p><strong>Kerttu Mairinoja</strong> (född 2012) har studerat vid Espoo Art School sedan 2020. Sedan 2023 har hon också gått på Arkki, arkitekturskolan för barn och ungdomar. Hon har skapat verk med hjälp av olika tekniker, bland annat akrylmålning, blyertsteckningar, bläckteckningar, lerarbeten, tovning, miniatyrmodeller och egna animationer.&nbsp;</p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>",
                "en": "<p><strong>Kerttu Mairinoja</strong> (born 2012) has been studying at the Espoo Art School since 2020. She has also been attending classes at Arkki, architecture school for children and young people, since 2023. She has created works using a variety of techniques, including acrylic painting, pencil drawings, ink drawings, clay works, felting, miniature models, and her own animations.&nbsp;</p><p>The exhibition can be seen during the library opening hours. Welcome!</p>"
            },
            "name": {
                "fi": "Kerttu Mairinoja: Taidenäyttely",
                "sv": "Kerttu Mairinoja: Konstutställning",
                "en": "Kerttu Mairinoja: Art Exhibition"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lastenmaan taideseinä",
                "sv": "Konstvägg på barnavdelningen",
                "en": "Children's section art wall"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoep5hvxi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agoezy2f5m",
            "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: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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoezy2eci/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoezy2ese/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoezy2fay/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoezy2fo4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494847,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-11T12:59:24.065299Z",
                    "last_modified_time": "2026-02-11T12:59:24.065315Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6419d2ee-81b4-42d2-9401-025f26f1ebb3.jpg",
                    "name": "",
                    "cropping": "262,0,938,675",
                    "photographer_name": "",
                    "alt_text": "Kuvassa lukee lukulemmikki Dani ja siinä on Dani koiran kuva",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494847/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-11T12:59:30.357685Z",
            "last_modified_time": "2026-02-11T12:59:30.357703Z",
            "date_published": null,
            "start_time": "2026-02-11T14:00:00Z",
            "end_time": "2026-05-13T14: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 tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle.",
                "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.",
                "en": "Come and meet the reading dog and read a book of your choice to a patient listener."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle Lippulaivan kirjastossa.</p><p>Danin kevään käynnit:</p><p>Ke 14.1. klo 16.15-17.15 (huom. poikkeuksellinen aika)</p><p>Ke 11.2. klo 16-17</p><p>Ke 11.3. klo 16-17</p><p>Ke 15.4. klo 16-17</p><p>Ke 13.5. klo 16-17</p><p><br></p><p>#Lukukoira #lukulemmikki</p>",
                "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.</p>",
                "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener.</p><p>#reading buddy #reading dog</p>"
            },
            "name": {
                "fi": "Lukukoira Dani",
                "sv": " Läshund Dani",
                "en": " Reading dog Dani"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Komentosilta",
                "sv": "Komentosilta",
                "en": "Komentosilta"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoezy2f5m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agoeyb5mgq",
            "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: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/espoo_le:agggfz67wm/?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:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p1810/?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: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:p4934/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494845,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-11T09:00:26.304197Z",
                    "last_modified_time": "2026-02-11T09:00:26.304213Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/60617e91-e90d-4500-a3fc-a82987ddea12.png",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Piirretyssä kuvassa joukko ihmisiä työskentelee yhdessä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494845/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-10T15:15:39.391951Z",
            "last_modified_time": "2026-02-11T09:15:37.639271Z",
            "date_published": null,
            "start_time": "2026-03-03T15:00:00Z",
            "end_time": "2026-03-03T17: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": "Espoonlahden kulttuuritoimijoiden verkostoilta",
                "sv": "Esbovikens kulturaktörers nätverkskväll",
                "en": "Espoonlahti Cultural Operators’ Networking Evening"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa Espoonlahden kulttuuritoimijoiden verkostoiltaan!</p><p>Espoonlahden kulttuuritoimijoiden verkostoilta järjestetään tiistaina 3.3. klo 17–19 Lippulaivan kirjaston Salongissa. Tilaisuus on tarkoitettu kaikille Suur‑Espoonlahden alueen taiteen ja kulttuurin parissa toimiville — taiteilijoille, tuottajille, asukasyhdistyksille, taideyhdistyksille,organisaatioille ja muille alan toimijoille.</p><p>Tilaisuuteen voi osallistua myös, vaikka oma toiminta ei tällä hetkellä ulottuisi Suur‑Espoonlahden alueelle, mutta halua toimintaan alueella on.</p><p>Verkostoillan tavoitteena on tarjota ajankohtaista tietoa alueen kulttuuritoiminnasta, kuulla puhujia, vahvistaa toimijoiden välistä yhteistyötä sekä luoda mahdollisuuksia uusille kumppanuuksille.</p><p>Tervetuloa kuulemaan ajankohtaisista teemoista ja verkostoitumaan muiden kulttuurialan toimijoiden kanssa!</p><p>Pakollinen ennakkoilmoittautuminen 24.2.2026 osoitteesta: https://urly.fi/42P3.</p><p>Mukaan mahtuu 100 ensimmäistä ilmoittautunutta.</p>",
                "sv": "<p>Välkommen till nätverkskvällen för kulturaktörer i Esboviken!</p><p>Nätverkskvällen för kulturaktörer i Esboviken ordnas tisdag 3.3 kl. 17–19 i Lippulaivas bibliotek, Salongen. Evenemanget är avsett för alla som verkar inom konst och kultur i Stor‑Esboviken — konstnärer, producenter, invånar- och konstföreningar, organisationer och andra aktörer inom kulturfältet.</p><p>Du kan delta även om din nuvarande verksamhet inte ännu sträcker sig till Stor‑Esboviken, men du är intresserad av att verka i området.</p><p>Syftet med nätverkskvällen är att erbjuda aktuell information om kulturverksamheten i området, lyssna till talare, stärka samarbetet mellan aktörer samt skapa möjligheter för nya partnerskap.</p><p>Välkommen att ta del av aktuella teman och nätverka med andra kulturaktörer!</p><p>Obligatorisk förhandsanmälan senast 24.2.2026 på: https://urly.fi/42P3</p><p>Det finns plats för de 100 första som anmäler sig.</p>",
                "en": "<p>Welcome to the Espoonlahti Cultural Operators’ Networking Evening!</p><p>The networking evening for cultural operators in Espoonlahti will be held on Tuesday, March 3rd, from 17:00 to 19:00 at the Lippulaiva Library, in Salong. The event is intended for all those working in the field of arts and culture in the Greater Espoonlahti area — artists, producers, residents’ associations, art associations, organisations and other cultural practitioners.</p><p>You are also welcome to join even if your activities do not currently extend to the Greater Espoonlahti area, but you are interested in engaging in the area in the future.</p><p>The aim of the networking evening is to provide up‑to‑date information on local cultural activities, offer insights from guest speakers, strengthen collaboration between actors, and create opportunities for new partnerships.</p><p>Welcome to hear about current themes and to network with other cultural professionals!</p><p>Mandatory registration by February 24, 2026 at: https://urly.fi/42P3</p><p>Participation is limited to the first 100 registered attendees.</p>"
            },
            "name": {
                "fi": "Espoonlahden kulttuuritoimijoiden verkostoilta",
                "sv": "Esbovikens kulturaktörers nätverkskväll",
                "en": "Espoonlahti Cultural Operators’ Networking Evening"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Espoonlahden kulttuurihanke"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoeyb5mgq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agoep5hvby",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 1494842,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-10T14:02:02.517960Z",
                    "last_modified_time": "2026-02-10T14:02:02.517975Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/b4f7861e-65db-474a-840d-fb97f216a7c9.jpg",
                    "name": "vauva soittaa soittimia",
                    "cropping": "214,0,1066,853",
                    "photographer_name": "",
                    "alt_text": "musiikki ja vauva",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494842/?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-10T13:53:36.046487Z",
            "last_modified_time": "2026-02-10T14:02:59.179699Z",
            "date_published": null,
            "start_time": "2026-02-19T13:00:00Z",
            "end_time": "2026-02-19T13: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": "Konsertti on osallistava musiikkituokio, jossa soitamme ja laulamme aikaisemmista muskareista tuttuja kappaleita ja lauluja. Paikkoja on rajoitetusti."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Vauvamuskarin talvikonsertti Lippulaivan kirjaston Salongissa torstaina 19.2 klo 15.00-15.30</p><p><br></p><p>Kirjaston musiikkipedagogit Lauri Iljin ja Sakari Heikka järjestävät vauvamuskarin talvikonsertin. Konsertti on osallistava musiikkituokio, jossa soitamme ja laulamme aikaisemmista muskareista tuttuja kappaleita ja lauluja.</p><p>Konsertissa tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Konserttiin voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Konsertti on suunnattu 3kk - 3v ikäisille lapsille. On suositeltavaa ottaa mukaan oma viltti tai jarrusukat. Osallistuminen on maksutonta.</p><p>Vuorovaikutteinen vauvamuskarin talvikonsertti kestää noin 30 minuuttia. Paikkoja on rajoitetusti</p><p>Ennakkoilmoittautuminen webropol-lomakkeella:</p><p><a href=\"https://link.webropol.com/s/muskari\">https://link.webropol.com/s/muskari</a></p><p><br></p><p>#vauvamuskari #musiikki #konsertti #perhe #vauva</p>"
            },
            "name": {
                "fi": "Vauvamuskarin talvikonsertti"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoep5hvby/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnidmcoga",
            "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: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:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:agnidmchla/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmcila/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmci7y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmcjvu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmckjq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmck5q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmclsu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmcmhy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmcm6e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmcnsm/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490245,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T11:37:19.542981Z",
                    "last_modified_time": "2025-03-17T11:37:19.543003Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/bdb02369-37a7-4f2a-8066-d6a0186343a9.png",
                    "name": "",
                    "cropping": "132,0,653,522",
                    "photographer_name": "",
                    "alt_text": "Kuvassa popcornia ja klaffi.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490245/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-14T08:28:51.039993Z",
            "last_modified_time": "2026-02-10T10:24:07.516474Z",
            "date_published": null,
            "start_time": "2026-01-09T09:00:00Z",
            "end_time": "2026-05-29T10: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": "Aikuisille suunnatussa leffahetkessä katsotaan ennakkoon valittu elokuva vaihtelevista genreistä.",
                "sv": "Detta är ett tillfälle för vuxna att se en på förhand utvald film från olika genrer.",
                "en": "Aimed at adults, this is a time to watch a pre-selected film from a variety of genres."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa Kino Lippulaivaan! Muutaman kerran kuukaudessa Lippulaivan kirjaston Salonki muotoutuu leffateatteriksi.</p><p>Elokuvahetki on tarkoitettu aikuisille. Elokuvien ikärajat on merkitty jokaisen elokuvan nimen perään.</p><p>Elokuvat:</p><p>9.1 Spencer (K-12, draama, elämäkerta)</p><p>23.1. Asteroid City (K-7, draama, komedia)</p><p>6.2. Rinnakkaiset äidit (K-12, draama)</p><p>20.2. Van Gogh – Ikuisuuden porteilla (K-12, draama, elämäkerta)</p><p>6.3. Kärsimys a kunnia (K-16, draama)</p><p>20.3. Judy (K-12, draama)</p><p>3.4.</p><p>17.4.</p><p>15.5.</p><p>29.5.</p><p><br></p><p>Ilmoitamme elokuvat noin kuukautta ennen.</p><p>#helloespoo</p>",
                "sv": "<p>Välkommen till Kino Lippulaiva! Några gånger i månaden förvandlas salongen i Lippulaiva bibliotek till en biograf.&nbsp;</p><p><br></p><p>Filmkvällarna är endast för vuxna. Åldersgränsen för varje film anges efter titeln.&nbsp;</p><p><br></p><p>Filmerna:</p><p>9.1 Spencer (K-12, drama, biografi)</p><p>23.1. Asteroid City (K-7, drama, komedi)</p><p>6.2. Rinnakkaiset äidit (K-12, drama)</p><p>20.2. Van Gogh – Ikuisuuden porteilla (K-12, drama, biografi)</p><p>6.3. Kärsimys a kunnia (K-16, drama)</p><p>20.3. Judy (K-12, drama)</p><p>3.4.</p><p>17.4.</p><p>15.5.</p><p>29.5.</p><p><br></p><p>Vi annonserar filmerna ungefär en månad i förväg.&nbsp;</p><p>#helloespoo</p>",
                "en": "<p>Welcome to Kino Lippulaiva! A few times a month, the Salonki in the Lippulaiva Library is transformed into a cinema.&nbsp;</p><p><br></p><p>Movie nights are for adults only. The age limit for each film is indicated after the title.&nbsp;</p><p><br></p><p><br></p><p>Films:</p><p>9.1 Spencer (K-12, drama, biography)</p><p>23.1. Asteroid City (K-7, drama, comedy)</p><p>6.2. Rinnakkaiset äidit (K-12, drama)</p><p>20.2. Van Gogh – Ikuisuuden porteilla (K-12, drama, biography)</p><p>6.3. Kärsimys a kunnia (K-16, drama)</p><p>20.3. Judy (K-12, drama)</p><p>3.4.</p><p>17.4.</p><p>15.5.</p><p>29.5.</p><p><br></p><p>We announce the films about a month in advance.&nbsp;</p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Aikuisten päiväleffa",
                "sv": "Film för vuxna på dagtid",
                "en": "Daytime movie for adults"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmcoga/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agob2cxlai",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/espoo_le:agggfz65ay/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api"
                },
                {
                    "@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: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/espoo_le:agggfz65nu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?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:agggfz66by/?format=api"
                },
                {
                    "@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: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:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?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:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?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:agggfz67g4/?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:agggfz67ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?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:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?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:agggfz67zy/?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:agggfz7acu/?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/espoo_le:agggfz7aju/?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/espoo_le:agggfz7ane/?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/espoo_le:agggfz7asq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agn6agzgh4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwdz4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwe4q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwecy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwegu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwer4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cweue/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwexi/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?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": 1494691,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-28T10:57:54.547099Z",
                    "last_modified_time": "2026-01-28T10:57:54.547116Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/b58b0a7f-f847-4841-8328-5ec8c655fa07.jpg",
                    "name": "",
                    "cropping": "448,0,1600,1152",
                    "photographer_name": "Muuks Creative",
                    "alt_text": "Tumma fantasiamaisema, jossa sienimetsä ja täysikuu.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494691/?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-01-28T11:05:53.411367Z",
            "last_modified_time": "2026-02-10T08:52:40.640769Z",
            "date_published": "2026-02-02T06:00:00Z",
            "start_time": "2026-03-23T06:00:00Z",
            "end_time": "2026-03-29T17: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": "Espoon kaupunginkirjasto järjestää tapahtumia Helmet –kirjastojen yhteisellä Maagisella viikolla 23.3.-29.3.2026.",
                "sv": "Esbo stadsbibliotek ordnar flera evenemang under Helmet-bibliotekens gemensamma Magiska vecka 23.3–29.3.2026",
                "en": "Espoo City Library will be hosting events as part of Magical Week organised by Helmet libraries from 23 to 29 March 2026. "
            },
            "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>Entressen, Lippulaivan, Ison Omenan, Sellon ja Tapiolan kirjastoissa järjestetään taianomaista ohjelmaa.&nbsp;Tule maaliskuussa kirjastoon koko perheen voimin nauttimaan fantasia-aiheisista työpajoista, esityksistä ja kirjanäyttelyistä.&nbsp;</p><p>Tapahtumat päivittyvät nettisivuille helmikuun aikana. Löydät Maagisen viikon tapahtumat tapahtumasivuilta hakusanalla “Maaginen viikko”.&nbsp;</p><p>www.espoo.fi/tapahtumat&nbsp;ja&nbsp;www.helmet.fi/tapahtumat&nbsp;&nbsp;</p>",
                "sv": "<p>Välkommen att dyka ner i fantasins värld i mars! Esbo stadsbibliotek ordnar flera evenemang under Helmet-bibliotekens gemensamma Magiska vecka 23.3–29.3.2026.&nbsp;</p><p>Vi ordnar magiskt program i Entressebiblioteket, Lippulaivabiblioteket, Iso Omena bibliotek, Sellobiblioteket och Hagalunds bibliotek.&nbsp;Kom till biblioteket med hela familjen i mars, så kan ni njuta av verkstäder, föreställningar och bokutställningar med fantasytema.&nbsp;</p><p>Informationen om evenemangen publiceras på webben under februari månad. Du hittar Magiska veckans program på evenemangssidorna med sökordet ”Magiska veckan”[KO1]&nbsp;.&nbsp;</p><p>https://www.espoo.fi/sv/evenemang-i-esbo&nbsp;och https://helmet.finna.fi/Content/tapahtumat?lng=sv&nbsp;&nbsp;</p><p><br></p>",
                "en": "<p>This March, we invite you to dive into the world of fantasy! Espoo City Library will be hosting events as part of Magical Week organised by Helmet libraries from 23 to 29 March 2026.&nbsp;</p><p>The magic-filled events will take place at the Entresse, Lippulaiva, Iso Omena, Sello and Tapiola libraries.&nbsp;Come to the library in March to enjoy fantasy-themed workshops, performances, and book exhibitions. Make it a fun family outing.&nbsp;</p><p>Event details will be updated on the website during February. See what’s on by searching for ‘Magical Week’ on the events page.&nbsp;</p><p>www.espoo.fi/en/events-espoo and helmet.finna.fi/Content/tapahtumat?lng=en-gb&nbsp;&nbsp;</p>"
            },
            "name": {
                "fi": "Maaginen viikko Espoon kirjastoissa",
                "sv": "Magiska veckan i Esbo stadsbibliotek ",
                "en": "Magical Week in Espoo City libraries"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agob2cxlai/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agoefgdiui",
            "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: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: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:agoefgdepm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoefgdfqu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoefgdggm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoefgdheq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoefgdh5y/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494814,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-09T12:22:30.501030Z",
                    "last_modified_time": "2026-02-09T12:22:30.501060Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2b0ece64-6210-4561-9ae5-e04ca2ecc490.png",
                    "name": "Lippumeri",
                    "cropping": "113,0,448,335",
                    "photographer_name": "Paula Virta / EMMA",
                    "alt_text": "Kuvassa on Lippumeri taideteos.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494814/?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-09T12:31:55.452183Z",
            "last_modified_time": "2026-02-09T12:31:55.452203Z",
            "date_published": null,
            "start_time": "2026-02-26T13:00:00Z",
            "end_time": "2026-03-19T16: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": "Taidetyöpaja nuorille.",
                "sv": "Konstverkstad för ungdomar.",
                "en": "Art workshop for young people."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Järjestämme Sellon kirjaston Pointissa nuorille avoimia taidepajoja, joissa pääset osallistumaan Lippumeri-nimisen taideteoksen tekemiseen. Pajoissa jutellaan, piirretään ja maalataan: pääset tekemään taidetta omalla tavallasi. Et tarvitse mitään ennakko-osaamista.Voit osallistua hetken tai olla muutaman tunnin. Taidepajoissa suunnittelemme ja teemme yhdessä lippuja, jotka lopuksi painetaan ja nostetaan Alberganesplanadilla sijaitseviin 20:een lipputankoon tämän kevään aikana. Ohjaajana taidepajoissa on taiteilija Anastasia Artemeva sekä EMMAn taideohjaajia.</p><p>Lippumeri-taidepajoja on Pointissa seuraavina päivinä:</p><p>to 26.2. klo 15−18 / pe 27.2. klo 15−18 / to 5.3. klo 15−18 /</p><p>pe 6.3. klo 15−18 / to 19.3. klo 15−18</p><p>Tule mukaan kuulemaan lisää ja kokeilemaan!</p>",
                "sv": "<p>Vi anordnar öppna konstworkshops för ungdomar på Pointti i Sello-biblioteket. Du kan delta i skapandet av ett konstverk som heter Sea of Flags. Under workshops pratar, ritar och målar vi – du får skapa konst på ditt eget sätt. Du behöver ingen erfarenhet. Stanna några minuter eller några timmar – det är upp till dig. Du behöver inte anmäla dig. Kom bara dit och delta. Tillsammans kommer vi att designa och skapa flaggor som kommer att tryckas och hissas på 20 flaggstänger på Alberganesplanadi senare i vår. Workshoparna leds av konstnären Anastasia Artemeva och konstlärare från EMMA.</p><p><br></p><p>Workshopparna Sea of Flags på Pointti:</p><p>Torsdag 26.2 kl. 15–18 / fredag 27.2 kl. 15–18 / torsdag 5.3 kl. 15–18 / fredag 6.3 kl. 15–18 / torsdag 19.3 kl. 15–18</p><p>Kom och lyssna på mer – och prova själv!</p>",
                "en": "<p>We’re running open art workshops for young people at Pointti in Sello Library. You can take part in creating an artwork called Sea of Flags. In the workshops we talk, draw, and paint — you get to make art in your own way. You don’t need any experience. Stay for a few minutes or a few hours — it’s up to you. You don’t need to sign up. Just show up and join in. Together we’ll design and create flags that will be printed and raised on 20 flagpoles at Alberganesplanadi later this spring.</p><p>The workshops are led by artist Anastasia Artemeva and art instructors from EMMA.</p><p>The Sea of Flags workshops at Pointti:</p><p>Thu 26.2. klo 15−18 / Fri 27.2. klo 15−18 / Thu 5.3. klo 15−18 / Fri 6.3. klo 15−18 / Thu 19.3. klo 15−18</p><p>Come hear more — and try it out!</p>"
            },
            "name": {
                "fi": "Tule tekemään taideteosta Leppävaaraan!",
                "sv": "Var med och skapa ett konstverk i Leppävaara!",
                "en": "Join us in creating an artwork in Leppävaara!"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Pointti",
                "sv": "Pointti",
                "en": "Pointti"
            },
            "provider": {
                "fi": "EMMA",
                "sv": "EMMA",
                "en": "EMMA"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoefgdiui/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agoefgdjky",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1494815,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-09T12:25:44.933246Z",
                    "last_modified_time": "2026-02-09T12:26:30.940394Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/4f31b879-5f5d-48f0-abc3-8637302d658b.jpeg",
                    "name": "",
                    "cropping": "0,897,3587,4484",
                    "photographer_name": "",
                    "alt_text": "kaksi kättä venyttää välissään vaaleanpunaista venyvää limamaista ainetta",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494815/?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-09T12:29:03.761703Z",
            "last_modified_time": "2026-02-09T12:30:49.508790Z",
            "date_published": null,
            "start_time": "2026-02-17T14:00:00Z",
            "end_time": "2026-02-17T16: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": "Limaista puuhaa lomalla",
                "sv": "Slemig affär på semestern",
                "en": "Slimy business on vacation"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Asiakastoiveiden myötä järjestämme slime askartelupajan. Tapahtuma on suunnattu lapsille ja perheille. Alle kouluikäiset osallistuvat aikuisen kanssa. Mukaan mahtuu 12 ensiksi ilmoittautunutta. Sitova ilmoittautuminen linkin kautta: https://link.webropol.com/s/slime</p>",
                "sv": "<p>Som svar på kundernas önskemål anordnar vi en workshop i slime-hantverk. Evenemanget riktar sig till barn och familjer. Barn under skolåldern måste åtföljas av en vuxen. De första 12 personerna som anmäler sig kommer att accepteras. Bindande anmälan via länken: https://link.webropol.com/s/slime</p>",
                "en": "<p>In response to customer requests, we are organizing a slime craft workshop. The event is aimed at children and families. Children under school age must be accompanied by an adult. The first 12 people to register will be accepted. Binding registration via the link: https://link.webropol.com/s/slime</p>"
            },
            "name": {
                "fi": "Slime-paja",
                "sv": "Slem verkstad",
                "en": "Slime workshop"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Jukeboksi-tila",
                "sv": "Jukeboksi utrymmet",
                "en": "Jukeboksi venue"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoefgdjky/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agoeeyhnim",
            "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"
                }
            ],
            "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": 1494808,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-09T11:27:28.505321Z",
                    "last_modified_time": "2026-02-09T11:27:28.505337Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/44989700-8c2e-4a84-a60e-f53788a47ac9.jpg",
                    "name": "",
                    "cropping": "0,420,1080,1500",
                    "photographer_name": "",
                    "alt_text": "Joukko nuoria tietokoneen ääressä ja tapahtuman tiedot",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-09T11:27:41.495539Z",
            "last_modified_time": "2026-02-09T11:27:41.495558Z",
            "date_published": null,
            "start_time": "2026-02-28T13:00:00Z",
            "end_time": "2026-02-28T15: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": "Haluatko saada tietoa opiskelusta Suomessa todellisten kokemusten kautta?",
                "en": "Would you like to learn about studying in Finland through \nreal-life experiences?"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Haluatko saada tietoa opiskelusta Suomessa todellisten kokemusten kautta?</p><p> Seminaarissa menestyneet opiskelijat jakavat omia kokemuksiaan ja vastaavat yleisön kysymyksiin.</p><p> 🔹 Ohjelman kielet: dari / persia / suomi</p><p> 🔹 Tilaisuus on avoin kaikille</p><p> 🔹 Vapaa kysymys- ja vastausosio</p><p> </p><p> </p>",
                "en": "<p>Would you like to learn about studying in Finland through real-life experiences?</p><p>Students who have succeeded in their studies will share their experiences and answer questions from the audience.</p><p>🔹 Program languages: Dari / Persian / Finnish</p><p>🔹 The event is open to everyone</p><p>🔹 Free question and answer session</p><p><br></p>"
            },
            "name": {
                "fi": "Seminaari: Opiskelun polku Suomessa ",
                "en": "Seminar: The path to studying in Finland "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lava",
                "en": "Stage"
            },
            "provider": {
                "fi": "Kanun ry",
                "en": "Kanun ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoeeyhnim/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agn6kckzsu",
            "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: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: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:agn6kcksre/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kcktcu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kcktnm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kcktxu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckuci/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckum4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckuxe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckvby/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckvoq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckvy4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckwdi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckwpm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckwzy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckxge/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckxqy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckx4m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckyhq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckyry/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kcky34/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckzgi/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494601,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-22T08:17:57.273912Z",
                    "last_modified_time": "2026-01-22T08:17:57.273927Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/bfcdc8cd-36b5-4809-a913-b4dd4eceb28f.jpg",
                    "name": "",
                    "cropping": "0,0,1200,1200",
                    "photographer_name": "",
                    "alt_text": "Piirretty Picnic kori ja tilaisuuden tiedot",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494601/?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-22T08:18:05.995630Z",
            "last_modified_time": "2026-02-09T09:51:16.765509Z",
            "date_published": null,
            "start_time": "2026-01-23T15:00:00Z",
            "end_time": "2026-06-26T16: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": "PICNIC on viikoittainen espanjankielinen tapahtumasarja pienten lasten perheille. Se on yhteisö, jossa voit tavata muita espanjankielisiä perheitä.",
                "en": "PICNIC is a series of weekly encounters in Spanish for families with young children. A community where you'll meet other Spanish-speaking families."
            },
            "info_url": null,
            "description": {
                "fi": "<p>PICNIC on viikoittainen espanjankielinen tapahtumasarja pienten lasten perheille. Se on yhteisö, jossa voit tavata muita espanjankielisiä perheitä, leikkiä lastesi kanssa ja tutustua Helmetin espanjankieliseen lastenkirjallisuuskokoelmaan.&nbsp;</p>",
                "en": "<p>PICNIC is a series of weekly encounters in Spanish for families with young children. A community where you'll meet other Spanish-speaking families, play with your little ones and explore the Spanish children's literature collection at Helmet.&nbsp;</p>"
            },
            "name": {
                "fi": "Espanjankielisten perheiden Picnic tapaaminen",
                "en": "PICNIC 2026 Spring encounters"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "en": "Jam corner"
            },
            "provider": {
                "fi": "Ninho ry",
                "en": "Ninho ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6kckzsu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agn7vnnqti",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494642,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-26T13:20:17.656141Z",
                    "last_modified_time": "2026-01-26T13:20:17.656156Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0b32a176-24e3-43f0-8ae4-78699dc92388.jpg",
                    "name": "Mia Kolari: Pyykkikoreja ja päiväunia; Palikoita ja pilvilinnoja",
                    "cropping": "100,0,700,600",
                    "photographer_name": "",
                    "alt_text": "Mia Kolari: Hiljaisia oivalluksia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494642/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-26T13:29:49.110137Z",
            "last_modified_time": "2026-02-09T09:21:59.864312Z",
            "date_published": "2026-01-26T13:17:00Z",
            "start_time": "2026-02-02T08:00:00Z",
            "end_time": "2026-02-20T16: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": "Moniaistisen taidenäyttelyn teokset koostuvat maalauksellisten elementtien ohella kosketeltavista pinnoista ja muodoista, jotka lomittuvat toisiinsa.",
                "sv": "Verken i denna multisensoriska konstutställning består av måleriska element samt taktila ytor och former som flätas samman med varandra.",
                "en": "The works in this multi-sensory art exhibition consist of painterly elements as well as tactile surfaces and shapes that intertwine with each other."
            },
            "info_url": {
                "fi": "https://www.instagram.com/miakolari.art/",
                "sv": "https://www.instagram.com/miakolari.art/",
                "en": "https://www.instagram.com/miakolari.art/"
            },
            "description": {
                "fi": "<p>\"Teokseni syntyvät hiljaisuuden ja tuntoaistin rajapinnassa. Ne rakentuvat väreistä, muodoista ja kosketuksesta sekä avoimesta kokemuksesta. Itselleni on tärkeää, että taide ei katso katsojaa ulkoa päin, vaan kutsuu olemaan läsnä.</p><p>Diversiteettitaide, kuten minä sen tulkitsen, on taidetta, joka tunnistaa ja hyväksyy erilaisuuden kaikilla tasoilla. Se ei ole yhdenlaista, eikä se odota yleisöltään tiettyä tulkintaa tai suorituskykyä. Se on aistien avointa maisemaa, teoksia saa koskea ja niiden tarinoissa&nbsp;saa viipyä.</p><p>Teokset koostuvat muun muassa kosketeltavista tekstiilipinnoista, kohollaan olevista muodoista ja maalauksellisista elementeistä, jotka lomittuvat toisiinsa. Niissä kulkevat mukana myös kierrätysmateriaalit, jotka jatkavat omaa tarinaansa osana uutta kokonaisuutta.</p><p>Toivon, että taiteeni jättää jäljen, joka ei vaadi sanoja ja joka syntyy siitä, että saa vain olla kokonaisena ja keskeneräisenä. Jokainen työ on saanut rinnalleen pistekirjoituksen, joka jatkaa teoksen tarinaa ja tekee kokemuksesta moniaistillisemman.</p><p>Taiteeni on tila, läsnäolo itsessään on tarpeeksi. Olet tervetullut, koska sinä riität.\"</p><p><strong>Mia Kolari</strong></p><p>Taidenäyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa! </p><p><br></p>",
                "sv": "<p>Verken i <strong>Mia Kolari</strong>s multisensoriska konstutställning består bland annat av taktila textilytor, upphöjda former och måleriska element som flätas samman med varandra. De innehåller också återvunna material som fortsätter sin egen historia som en del av en ny helhet. Varje verk åtföljs av en beskrivning i blindskrift som fortsätter verkets historia och gör upplevelsen mer multisensorisk.</p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>",
                "en": "<p>The works in <strong>Mia Kolari</strong>'s multisensory art exhibition consist of, among other things, tactile textile surfaces, raised forms, and painterly elements that intertwine with each other. They also incorporate recycled materials that continue their own stories as part of a new whole. Each work is accompanied by a braille inscription that continues the story of the work and makes the experience more multisensory.</p><p>The exhibition can be seen during the library opening hours. Welcome!</p>"
            },
            "name": {
                "fi": "Mia Kolari: Hiljaisia oivalluksia (taidenäyttely)",
                "sv": "Mia Kolari: Tysta insikter (konstutställning)",
                "en": "Mia Kolari: Quiet insights (art exhibition)"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Galleria Anna",
                "sv": "Galleri Anna",
                "en": "Gallery Anna"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn7vnnqti/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmtglh2ai",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "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:agmtglhgly/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhg7i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhhte/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhigi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhi3e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhjoe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhkbe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhkue/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhlh4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhl3u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhmqa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhnhy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhomu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhpa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhpva/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhqka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhq5u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhrrm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhshu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhs2a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhto4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhuca/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhuuy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhvnu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhwci/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhxky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhx7a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhyve/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglhzjq/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-10T09:46:41.963866Z",
            "last_modified_time": "2026-02-09T08:43:54.677924Z",
            "date_published": null,
            "start_time": "2025-09-15T13:30:00Z",
            "end_time": "2026-05-11T15: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": "Tasty Snack- välipalaryhmässä valmistetaan yhdessä simppeleitä, hauskoja ja maukkaita välipaloja, herkkuja ja ruokia.",
                "sv": "I Tasty Snack-mellanmålsgruppen tillreder vi enkla, roliga och smakliga mellanmål, delikatesser och maträtter tillsammans.",
                "en": "In the Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tasty Snack- välipalaryhmässä valmistetaan yhdessä simppeleitä, hauskoja ja maukkaita välipaloja, herkkuja ja ruokia. Ruokalistalle kuuluu nopeita ja edullisia välipaloja, yllätyksellisiä makutrendejä maailmalta, takuuvarmoja peruspurtavia sekä toivereseptejä. Välipaloja valmistetaan niin tiimityönä kuin itsenäisesti. Oletko kokeillut tehdä itse leipää? Entäs Bobateetä? Suklaahippukeksejä? Tule mukaan oppimaan ja herkuttelemaan!</p><p>Ryhmään ei tarvitse ilmoittautua.</p><p>Harrastusryhmät alkavat viikolla 37 maanantaista 8.9.2025 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Osallistumiseen on mahdollista saada tukea. Ilmoittautumisen yhteydessä kerrothan lapsen mahdollisista tuen tarpeista tai muista huomioitavista asioista, jotta harrastuksen järjestäjä voi ottaa ne huomioon toiminnassaan ja sujuvoittaa osallistumista.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta. Harrastusryhmissä on myös mahdollista käydä tutustumassa ennen ilmoittautumista.&nbsp;&nbsp;</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–6.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita.&nbsp;</p>",
                "sv": "<p>I Tasty Snack-mellanmålsgruppen tillreder vi enkla, roliga och smakliga mellanmål, delikatesser och maträtter tillsammans. På menyn finns snabba och förmånliga mellanmål, överraskande smaktrender från hela världen, bombsäkra tilltugg samt önskerecept. Mellanmål tillreds både i grupp och på egen hand. Har du provat att baka bröd själv? Eller laga bubbelte? Chokladkex? Kom med och lär dig och ät gott!</p><p>Du behöver inte anmäla dig till den här gruppen.</p><p>Hobbygrupperna börjar vecka 37, måndagen den 8&nbsp;september 2025. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Det är möjligt att få stöd för deltagandet. Berätta i samband med anmälan om barnets eventuella stödbehov eller annat som ska tas i beaktande så att hobbyanordnaren kan planera sin verksamhet och göra deltagandet smidigare.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn. Det är också möjligt att bekanta sig med hobbygrupperna före anmälan.&nbsp;&nbsp;</p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–6 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum.&nbsp;</p>",
                "en": "<p>In the Tasty Snack group, you and the other group members will prepare simple, fun and tasty snacks, treats and meals. The menu includes quick and affordable snacks, surprising flavours from around the world, reliable basic snacks and recipes suggested by the participants. Snacks are prepared both as teamwork and independently. Have you tried making bread from scratch? How about boba tea? Or chocolate chip cookies? Join us for learning and snacking!</p><p>You don't need registrate for this group.</p><p>Hobby groups will start&nbsp;in week 37, on Monday, 8 September 2025 onwards. The hobby groups will meet weekly throughout the school year unless otherwise stated. The hobby groups do not meet during school holidays. The hobbies are free of charge for the participants. The City of Espoo has insured the hobby group participants.</p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. Support for participation is available. When registering, please notify any support needs your child might have or if there is anything else of note, so that the hobby organiser can take it into account in their activities and make participating easier.</p><p>The organiser of the hobby group contacts the guardians about the practical arrangements for the hobby. Please contact the hobby organiser if you want to cancel your child’s participation or if you have questions about the hobby. It is possible to try out the hobby groups before signing up.&nbsp;&nbsp;</p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils in grades 3–6 and take place after school days at school premises, near the school or via remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo. The principles of a safer space are applied in the hobby groups.&nbsp;</p>"
            },
            "name": {
                "fi": "Tasty Snack -välipalaharrastus 3.-9. -luokkalaisille",
                "sv": "Tasty Snack-mellanmålshobby för åk 3-6",
                "en": "Tasty Snack hobby for 3rd-6th graders"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Yhteystiedot: info@asadfriigym.fi",
                "sv": "Kontaktinformation: info@asadfriigym.fi",
                "en": "Contact details: info@asadfriigym.fi"
            },
            "provider": {
                "fi": "Espoon harrastuspolku | Asad Friigym",
                "sv": "Hobbystigen i Esbo | Asad Friigym",
                "en": "Espoo Hobby Path | Asad Friigym"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmtglh2ai/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agoedbevni",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494798,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-09T07:26:43.216013Z",
                    "last_modified_time": "2026-02-09T07:26:43.216029Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/23888d49-e957-4e9c-876c-5bff69c2ff48.jpg",
                    "name": "",
                    "cropping": "150,0,750,600",
                    "photographer_name": "",
                    "alt_text": "Petri Peltonen: On nature, surface, and seeing (valokuvanäyttely)",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494798/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-09T07:53:19.737253Z",
            "last_modified_time": "2026-02-09T07:53:19.737273Z",
            "date_published": "2026-02-09T07:25:00Z",
            "start_time": "2026-03-16T08:00:00Z",
            "end_time": "2026-04-03T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Valokuvanäyttely tutkii Suomen luonnonmaisemia ja sen yksityiskohtia.",
                "sv": "Fotoutställningen utforskar Finlands naturlandskap och deras detaljer.",
                "en": "The photo exhibition explores Finland's natural landscapes and their details."
            },
            "info_url": {
                "fi": "https://www.peltonenphotography.com",
                "sv": "https://www.peltonenphotography.com",
                "en": "https://www.peltonenphotography.com"
            },
            "description": {
                "fi": "<p><strong>Petri Peltonen</strong> on amatöörivalokuvaaja Espoosta. Hän aloitti teini-ikäisenä Nikon F1 -filmikameralla ja kellarissa sijaitsevalla pimiöllä. Myöhemmin digitaalinen maailma valloitti alaa, mutta nykyään hän on palannut filmin pariin mukanaan usein myös vuonna 1952 valmistettu Rolleicord 6 x 6 -filmikamera.</p><p>Nyt, kun intensiivinen työelämä on päättymässä, hän on päättänyt käyttää enemmän aikaa intohimoonsa: valokuvaukseen ja kirjoittamiseen.</p><p>Petri on pitänyt aiemmin kaksi näyttelyä. ”Vivid Landscapes” tutki Pohjois-Suomen maisemia hieman erilaisesta näkökulmasta, ja ”Jään Jäljet” tarkasteli viimeisimmän jääkauden jälkiä Suomen maisemissa.</p><p>Tämä näyttely ”On Nature, Surface, and Seeing” tutkii Suomen luonnonmaisemaa ja sen yksityiskohtia.</p><p>Kaikki kuvat ovat myös myynnissä halutussa tulostusmuodossa. </p><p><a href=\"https://www.peltonenphotography.com\">www.peltonenphotography.com</a></p><p>Taidenäyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>",
                "sv": "<p><strong>Petri Peltonen</strong> är en amatörfotograf bosatt i Esbo, Finland. Han började som tonåring med en Nikon F1-filmkamera och ett mörkrum i källaren. Senare tog den digitala världen över, men numera är han tillbaka till film med sin Rolleicord 6 x 6-filmkamera från 1952.</p><p>Nu när det intensiva arbetslivet närmar sig sitt slut är han fast besluten att ägna mer tid åt sina passioner: fotografering och skrivande.</p><p>Petri har haft två utställningar tidigare. ”Vivid Landscapes” utforskade landskapet i norra Finland med en twist, och ”Jään Jäljet” undersökte spåren efter den senaste istiden i det finska landskapet.</p><p>Den här utställningen undersöker Finlands naturlandskap och deras detaljer.</p><p>Alla bilder finns även till försäljning i önskat tryckformat.</p><p><a href=\"https://www.peltonenphotography.com\">www.peltonenphotography.com</a></p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>",
                "en": "<p><strong>Petri Peltonen</strong> is an amateur photographer based in Espoo, Finland. He started as a teenager with Nikon F1 film camera and darkroom in the basement. Later, the digital world took over, but nowadays he is again back in the film, also walking around with his Rolleicord 6 x 6 film camera from 1952.</p><p>Today, when the intense working life is coming to the end, he is determined to have more time for his passion: photography and writing.</p><p>Petri has had two exhibitions before. “Vivid Landscapes” studied the northern Finland landscape with a twist, and “Jään Jäljet” examined the signs of the latest glaciation in the Finnish landscape.</p><p>The current exhibition \"On Nature, Surface, and Seeing\" studies the Finnish landscape and its details.</p><p>All pictures are also for sale in desired print format.</p><p><a href=\"https://www.peltonenphotography.com\">www.peltonenphotography.com</a></p><p>The exhibition can be seen during the library opening hours. Welcome!</p>"
            },
            "name": {
                "fi": "Petri Peltonen: On Nature, Surface, and Seeing (valokuvanäyttely)",
                "sv": "Petri Peltonen: On Nature, Surface, and Seeing (fotoutställning)",
                "en": "Petri Peltonen: On Nature, Surface, and Seeing (photo exhibition)"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Vitriinigalleria (kirjaston ylempi kerros)",
                "sv": "Glassmontern & dess vägggalleri (bibliotekets övre våning)",
                "en": "Showcase Gallery (the upper floor of the library)"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoedbevni/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}