Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 6582,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=40&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=38&weekday=6%2C7"
    },
    "data": [
        {
            "id": "kulke:67334",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/"
                    },
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494538,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-19T13:14:39.750765Z",
                    "last_modified_time": "2026-01-19T13:14:39.750790Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780980.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494538/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-19T13:14:39.611017Z",
            "last_modified_time": "2026-03-20T01:12:46.168930Z",
            "date_published": null,
            "start_time": "2026-01-23T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8426E84C6B9C8E5B44516BC62C974884/Terasleidit_7_kuin_viimeista_paivaa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8426E84C6B9C8E5B44516BC62C974884/Terasleidit_7_kuin_viimeista_paivaa",
                "en": "http://www.malmitalo.fi/en/events/event/8426E84C6B9C8E5B44516BC62C974884/Terasleidit_7_kuin_viimeista_paivaa"
            },
            "provider": null,
            "description": {
                "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.</p><p>Kesto: 108 min<br>Ikäraja: 7<br>Kieli: suomi<br>Tekstitys: suomi</p>",
                "sv": "<p>I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.</p><p>När Inkeri är på kliniken hör hon läkaren säga till sjuksköterskan runt hörnet att både livstiden och hoppet är ute. Inkeris dotter Maija (Pirjo Lonka) tar sig an uppgiften att ge sin mor vård i livets slut, även om det innebär att tvinga henne till det, men Inkeri har andra planer. Hennes sista handling blir att rädda Maija från att upprepa de misstag hon gjort och att sedan kasta sig i Norra ishavet för evigt.</p><p>Inkeri flyr från servicehemmet för sin sista resa med sina stålsystrar och Matti (Eero Saarinen) som hänger med. Innan Norra ishavet låter Inkeri ännu livet ta över: i smärtsamma minnen, stora känslor och rejv i skogen.</p><p>Pamela Tolas Teräsleidit – Kuin viimeistä päivää är den oberoende uppföljaren till den älskade komedin Stålsystrar som år 2020 var den inhemska film som lockade mest publik.</p><p>Längd: 108 min<br>Språk: finska, textning: finska</p>",
                "en": "<p>In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow.</p><p>During her doctor’s appointment, Inkeri hears the doctor tell a nurse around the corner that she has no time left to live and no hope. Inkeri’s daughter Maija (Pirjo Lonka) takes on the task of providing her mother with hospice care whether she wants it or not, but Inkeri has other plans. As her last deed, she is planning to save Maija from repeating the mistakes that she herself has made and then throw herself into the Arctic Ocean forever.</p><p>Inkeri escapes from her service home for her last journey with the ladies of steel and Matti (Eero Saarinen), who ends up joining the ladies. Before the Arctic Ocean, Inkeri throws herself into life one more time: into painful memories, grand emotions and forest raves.</p><p>Pamela Tola's Teräsleidit – kuin viimeistä päivää (‘Like There’s No Tomorrow’) is an independent sequel to the best-selling domestic film of 2020, the beloved comedy Teräsleidit.</p><p>Duration: 108 min<br>Language: Finnish, subtitles: Finnish</p>"
            },
            "short_description": {
                "fi": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.",
                "sv": "I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.",
                "en": "In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Teräsleidit (7) – kuin viimeistä päivää – Kino Helios",
                "sv": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios",
                "en": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67334/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67333",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119962/",
                        "sv": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119962/",
                        "en": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119962/"
                    },
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494345,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-02T08:12:56.136962Z",
                    "last_modified_time": "2026-01-02T08:12:56.136977Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780979.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494345/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-02T08:12:56.037407Z",
            "last_modified_time": "2026-03-20T01:12:46.032723Z",
            "date_published": null,
            "start_time": "2026-01-23T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A9DEAEB0AB86068AB3CC062E8A2AD271/Kalevala_Kullervon_tarina_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A9DEAEB0AB86068AB3CC062E8A2AD271/Kalevala_Kullervon_tarina_16_",
                "en": "http://www.malmitalo.fi/en/events/event/A9DEAEB0AB86068AB3CC062E8A2AD271/Kalevala_Kullervon_tarina_16_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn.</p><p>Ainoa eloonjäänyt on Kalervon poikalapsi Kullervo, jonka Untamo päättää kasvattaa omanaan. Varttuessaan Kullervon raaka voima ja kapinallinen luonne tekevät hänestä vaarallisen, ja kyläläiset haluavat päästä hänestä lopullisesti eroon.</p><p>Kullervo etsii koko elämänsä olemassaololleen ja taidoilleen tarkoitusta. Kun menneisyyden tapahtumat paljastuvat hänelle, on hänen kohtalonsa selvä. Koston tie johdattaa Kullervon kohtaamaan Untamon ja pakottamaan hänet tilille syntiensä kanssa.</p><p>Kullervon kohtalo on Kalevalan kuuluisimpia. Antti J. Jokisen ohjauksessa isän ja pojan tarina herää vahvasti eloon Pohjois-Karjalan jylhissä kansallismaisemissa. Kullervon roolissa nähdään Elias Salonen ja Untamona Jussi-palkittu Eero Aho.</p><p>Ikäraja: 16<br>Kesto: 143 min<br>Ensi-ilta: 16.01.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kalevala: Kullervon tarina (16) – Kino Helios",
                "sv": "Kalevala: Kullervon tarina (16) – Kino Helios",
                "en": "Kalevala: Kullervon tarina (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67333/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvhga",
            "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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvje4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824172,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-03-12T11:18:33.632565Z",
                    "last_modified_time": "2026-03-12T11:18:33.632579Z",
                    "url": "https://helmet.finna.fi/FeedContent/EventImage?query%5Bid%5D=espoo_le:agmyxrtwdy&url=&image=https://espooevents.prod.espoon-voltti.fi/media/images/aa41a782-a291-4ee4-8a37-c010dae34d59.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": "",
                    "alt_text": "Lauantaileffa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824172/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-03-17T08:11:52.331906Z",
            "last_modified_time": "2026-03-19T13:15:04.666852Z",
            "date_published": null,
            "start_time": "2026-04-04T10:00:00Z",
            "end_time": "2026-04-04T12: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Kirjaston Sinisessä huoneessa järjestetään lauantaina 4.4., 18.4., 2.5., ja 30.5. klo 13 avoin elokuvanäytös lapsille ja perheille. </p><p>Katsottava S/K7 elokuva valitaan vaihtoehdoista näytöksen alussa.</p>",
                "sv": "<p>I bibliotekets Sininen huone anordnas öppna filmvisningar för barn och familjer lördagarna den 4 april, 18 april, 2 maj och 30 maj kl. 13.</p><p>Filmen (åldersgräns S/K7) väljs bland alternativen i början av visningen. Filmen visas på finska.</p>",
                "en": "<p>The Blue Room at the library will host open movie screenings for children and families on Saturdays, April 4, April 18, May 2, and May 30 at 1:00 PM. </p><p>The S/K7-rated movie to be shown will be selected from the options at the beginning of the screening. The film is in Finnish.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa viettämään lauantaita yhteisen elokuvahetken merkeissä!",
                "sv": "Välkommen att tillbringa lördagarna med en gemensam filmstund!",
                "en": "Come spend your Saturday enjoying a movie together!"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "name": {
                "fi": "Lauantain perheleffa",
                "sv": "Lördagsfilm för barn",
                "en": "Children's Saturday Movie"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvhga/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvhxa",
            "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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvje4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824172,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-03-12T11:18:33.632565Z",
                    "last_modified_time": "2026-03-12T11:18:33.632579Z",
                    "url": "https://helmet.finna.fi/FeedContent/EventImage?query%5Bid%5D=espoo_le:agmyxrtwdy&url=&image=https://espooevents.prod.espoon-voltti.fi/media/images/aa41a782-a291-4ee4-8a37-c010dae34d59.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": "",
                    "alt_text": "Lauantaileffa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824172/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-03-17T08:11:52.476468Z",
            "last_modified_time": "2026-03-19T13:15:04.640377Z",
            "date_published": null,
            "start_time": "2026-04-18T10:00:00Z",
            "end_time": "2026-04-18T12: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Kirjaston Sinisessä huoneessa järjestetään lauantaina 4.4., 18.4., 2.5., ja 30.5. klo 13 avoin elokuvanäytös lapsille ja perheille. </p><p>Katsottava S/K7 elokuva valitaan vaihtoehdoista näytöksen alussa.</p>",
                "sv": "<p>I bibliotekets Sininen huone anordnas öppna filmvisningar för barn och familjer lördagarna den 4 april, 18 april, 2 maj och 30 maj kl. 13.</p><p>Filmen (åldersgräns S/K7) väljs bland alternativen i början av visningen. Filmen visas på finska.</p>",
                "en": "<p>The Blue Room at the library will host open movie screenings for children and families on Saturdays, April 4, April 18, May 2, and May 30 at 1:00 PM. </p><p>The S/K7-rated movie to be shown will be selected from the options at the beginning of the screening. The film is in Finnish.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa viettämään lauantaita yhteisen elokuvahetken merkeissä!",
                "sv": "Välkommen att tillbringa lördagarna med en gemensam filmstund!",
                "en": "Come spend your Saturday enjoying a movie together!"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "name": {
                "fi": "Lauantain perheleffa",
                "sv": "Lördagsfilm för barn",
                "en": "Children's Saturday Movie"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvhxa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvigu",
            "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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvje4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824172,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-03-12T11:18:33.632565Z",
                    "last_modified_time": "2026-03-12T11:18:33.632579Z",
                    "url": "https://helmet.finna.fi/FeedContent/EventImage?query%5Bid%5D=espoo_le:agmyxrtwdy&url=&image=https://espooevents.prod.espoon-voltti.fi/media/images/aa41a782-a291-4ee4-8a37-c010dae34d59.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": "",
                    "alt_text": "Lauantaileffa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824172/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-03-17T08:11:52.611746Z",
            "last_modified_time": "2026-03-19T13:15:04.612868Z",
            "date_published": null,
            "start_time": "2026-05-02T10:00:00Z",
            "end_time": "2026-05-02T12: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Kirjaston Sinisessä huoneessa järjestetään lauantaina 4.4., 18.4., 2.5., ja 30.5. klo 13 avoin elokuvanäytös lapsille ja perheille. </p><p>Katsottava S/K7 elokuva valitaan vaihtoehdoista näytöksen alussa.</p>",
                "sv": "<p>I bibliotekets Sininen huone anordnas öppna filmvisningar för barn och familjer lördagarna den 4 april, 18 april, 2 maj och 30 maj kl. 13.</p><p>Filmen (åldersgräns S/K7) väljs bland alternativen i början av visningen. Filmen visas på finska.</p>",
                "en": "<p>The Blue Room at the library will host open movie screenings for children and families on Saturdays, April 4, April 18, May 2, and May 30 at 1:00 PM. </p><p>The S/K7-rated movie to be shown will be selected from the options at the beginning of the screening. The film is in Finnish.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa viettämään lauantaita yhteisen elokuvahetken merkeissä!",
                "sv": "Välkommen att tillbringa lördagarna med en gemensam filmstund!",
                "en": "Come spend your Saturday enjoying a movie together!"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "name": {
                "fi": "Lauantain perheleffa",
                "sv": "Lördagsfilm för barn",
                "en": "Children's Saturday Movie"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvigu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvivu",
            "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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvje4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824172,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-03-12T11:18:33.632565Z",
                    "last_modified_time": "2026-03-12T11:18:33.632579Z",
                    "url": "https://helmet.finna.fi/FeedContent/EventImage?query%5Bid%5D=espoo_le:agmyxrtwdy&url=&image=https://espooevents.prod.espoon-voltti.fi/media/images/aa41a782-a291-4ee4-8a37-c010dae34d59.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": "",
                    "alt_text": "Lauantaileffa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824172/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-03-17T08:11:52.752717Z",
            "last_modified_time": "2026-03-19T13:15:04.583328Z",
            "date_published": null,
            "start_time": "2026-05-30T10:00:00Z",
            "end_time": "2026-05-30T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Kirjaston Sinisessä huoneessa järjestetään lauantaina 4.4., 18.4., 2.5., ja 30.5. klo 13 avoin elokuvanäytös lapsille ja perheille. </p><p>Katsottava S/K7 elokuva valitaan vaihtoehdoista näytöksen alussa.</p>",
                "sv": "<p>I bibliotekets Sininen huone anordnas öppna filmvisningar för barn och familjer lördagarna den 4 april, 18 april, 2 maj och 30 maj kl. 13.</p><p>Filmen (åldersgräns S/K7) väljs bland alternativen i början av visningen. Filmen visas på finska.</p>",
                "en": "<p>The Blue Room at the library will host open movie screenings for children and families on Saturdays, April 4, April 18, May 2, and May 30 at 1:00 PM. </p><p>The S/K7-rated movie to be shown will be selected from the options at the beginning of the screening. The film is in Finnish.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa viettämään lauantaita yhteisen elokuvahetken merkeissä!",
                "sv": "Välkommen att tillbringa lördagarna med en gemensam filmstund!",
                "en": "Come spend your Saturday enjoying a movie together!"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "name": {
                "fi": "Lauantain perheleffa",
                "sv": "Lördagsfilm för barn",
                "en": "Children's Saturday Movie"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvivu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvje4",
            "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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvhga/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvhxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvigu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvivu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1824172,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-03-12T11:18:33.632565Z",
                    "last_modified_time": "2026-03-12T11:18:33.632579Z",
                    "url": "https://helmet.finna.fi/FeedContent/EventImage?query%5Bid%5D=espoo_le:agmyxrtwdy&url=&image=https://espooevents.prod.espoon-voltti.fi/media/images/aa41a782-a291-4ee4-8a37-c010dae34d59.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": "",
                    "alt_text": "Lauantaileffa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824172/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-03-17T08:11:51.628228Z",
            "last_modified_time": "2026-03-19T13:15:04.172760Z",
            "date_published": null,
            "start_time": "2026-04-04T10:00:00Z",
            "end_time": "2026-05-30T12: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Kirjaston Sinisessä huoneessa järjestetään lauantaina 4.4., 18.4., 2.5., ja 30.5. klo 13 avoin elokuvanäytös lapsille ja perheille. </p><p>Katsottava S/K7 elokuva valitaan vaihtoehdoista näytöksen alussa.</p>",
                "sv": "<p>I bibliotekets Sininen huone anordnas öppna filmvisningar för barn och familjer lördagarna den 4 april, 18 april, 2 maj och 30 maj kl. 13.</p><p>Filmen (åldersgräns S/K7) väljs bland alternativen i början av visningen. Filmen visas på finska.</p>",
                "en": "<p>The Blue Room at the library will host open movie screenings for children and families on Saturdays, April 4, April 18, May 2, and May 30 at 1:00 PM. </p><p>The S/K7-rated movie to be shown will be selected from the options at the beginning of the screening. The film is in Finnish.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa viettämään lauantaita yhteisen elokuvahetken merkeissä!",
                "sv": "Välkommen att tillbringa lördagarna med en gemensam filmstund!",
                "en": "Come spend your Saturday enjoying a movie together!"
            },
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "name": {
                "fi": "Lauantain perheleffa",
                "sv": "Lördagsfilm för barn",
                "en": "Children's Saturday Movie"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvje4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvjuq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1493836,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-18T12:08:52.276006Z",
                    "last_modified_time": "2025-11-18T12:08:52.276021Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/029d26e0-64ca-48b8-b00d-eec547c5896b.jpg",
                    "name": "",
                    "cropping": "218,0,862,644",
                    "photographer_name": "",
                    "alt_text": "Suomi sanoo tarvitsevansa osaajia, mutta haluaa halpatyövoimaa - Veera Kontulan valokuvia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493836/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-18T13:23:24.750496Z",
            "last_modified_time": "2026-03-18T13:23:24.750511Z",
            "date_published": "2026-03-18T13:20:00Z",
            "start_time": "2026-03-19T08: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p><strong>Veera Kontula</strong>n opinnäytetyön valokuvasarjassa on kymmenen Suomeen muuttanutta, joilla on korkeakoulututkinto. He eivät kuitenkaan ole saaneet koulutustaan vastaavaa työtä tai matka sinne on ollut kivinen. Filosofian professori on tehnyt töitä siivoojana eläkkeelle asti ja myy tällä hetkellä Iso numero -lehteä. Tai viestinnän asiantuntija saa vain parin päivän pätkiä. Suuri osa maahan muuttaneista on korkeakoulutettuja, niin kuin myös kuvasarjan henkilöt.</p><p>\"Opin kuvasarjaa tehdessäni aiheen olevan jatkuvasti pinnalla Suomeen muuttaneiden keskuudessa. Tilanne on monelle arkea, eikä paljoa lohduta, kun kuulee työkaverin pikaruokalassa etsineen lakialan töitä viimeiset kymmenen vuotta. Osa on myös maksanut suuren summan rahaa siitä, että pääsisi opiskelemaan. Suomalaisesta korkeakoulusta valmistuminen ei kuitenkaan aina auta työnsaantiin.</p><p>Herää kysymys, että miksi suomalaista koulutusta mainostetaan ulkomaille, jos sillä ei ole tarkoituskaan saada töitä täältä? Suomeen muuttaminen ei ole halpa ja helppo prosessi. Silti moni on sen valmis tekemään, mutta onko Suomi valmis antamaan mahdollisuuksia?</p><p>Suomi menettää suuren määrän koulutettuja henkilöitä. Samaan aikaan puhutaan, että Suomesta pitäisi tehdä houkuttelevampi maa huippuosaajille. Osaajista suuri osa ei kuitenkaan saa töitä ja lähtevät muualle.”</p>",
                "sv": "<p>Veera Kontulas examensarbetes fotoserie. Temat är varför det är så svårt för utlänningar att hitta arbete i Finland.&nbsp;</p>",
                "en": "<p>Photos from Veera Kontula's thesis. The theme is why is it so difficult for foreigners to find work in Finland?&nbsp;</p>"
            },
            "short_description": {
                "fi": "Veera Kontulan opinnäytetyön valokuvasarja",
                "sv": "Veera Kontulas examensarbetes fotoserie",
                "en": "Photos from Veera Kontula's thesis"
            },
            "location_extra_info": {
                "fi": "Valatori-seinä",
                "sv": "Valatori-väggen",
                "en": "Valatori Wall"
            },
            "name": {
                "fi": "Suomi sanoo tarvitsevansa osaajia, mutta haluaa halpatyövoimaa (valokuvia)",
                "sv": "Finland säger att det behöver kvalificerade arbetare, men vill ha lågavlönade anställda  (foton)",
                "en": "Finland says it needs skilled workers, but wants cheap labor (photos)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvjuq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvkq4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvlwe/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824173,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-18T12:20:27.502339Z",
                    "last_modified_time": "2026-03-18T12:20:27.502353Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/40d91e33-a769-426b-94fa-772aa90726d8.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Sinivuokkoja, mikrofoniin laulava tyttö ja saksofoni",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824173/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-18T12:28:06.796799Z",
            "last_modified_time": "2026-03-18T12:28:06.796816Z",
            "date_published": null,
            "start_time": "2026-03-28T12:00:00Z",
            "end_time": "2026-03-28T13: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Pe 27.3. kello 18:00</p><p>La 28.3. kello 14:00</p>",
                "sv": "<p>Fre 27.3. kl 18:00</p><p>Lö 28.3. kl 14:00</p>",
                "en": "<p>Fri 27.3. at 6 pm</p><p>Sat 28.3. at 2 pm</p>"
            },
            "short_description": {
                "fi": "Oppilaskonsertit",
                "sv": "Elevkonserter",
                "en": "Student concerts"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "name": {
                "fi": "Äänet esiin! Espoon työväenopiston kevätkonsertit",
                "sv": "Rösterna fram! Esbo arbetarinstituts vårkonserter",
                "en": "Voices to the front! Spring Concerts of the Espoo Adult Education Centre"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvkq4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvlwe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvkq4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvldi/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1824173,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-18T12:20:27.502339Z",
                    "last_modified_time": "2026-03-18T12:20:27.502353Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/40d91e33-a769-426b-94fa-772aa90726d8.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Sinivuokkoja, mikrofoniin laulava tyttö ja saksofoni",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824173/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-18T12:28:06.212157Z",
            "last_modified_time": "2026-03-18T12:28:06.212173Z",
            "date_published": null,
            "start_time": "2026-03-27T16:00:00Z",
            "end_time": "2026-03-28T13: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Pe 27.3. kello 18:00</p><p>La 28.3. kello 14:00</p>",
                "sv": "<p>Fre 27.3. kl 18:00</p><p>Lö 28.3. kl 14:00</p>",
                "en": "<p>Fri 27.3. at 6 pm</p><p>Sat 28.3. at 2 pm</p>"
            },
            "short_description": {
                "fi": "Oppilaskonsertit",
                "sv": "Elevkonserter",
                "en": "Student concerts"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "name": {
                "fi": "Äänet esiin! Espoon työväenopiston kevätkonsertit",
                "sv": "Rösterna fram! Esbo arbetarinstituts vårkonserter",
                "en": "Voices to the front! Spring Concerts of the Espoo Adult Education Centre"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvlwe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvodm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvmhm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvmxe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvnhe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvnvi/?format=api"
                }
            ],
            "images": [
                {
                    "id": 151294,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-05-22T11:46:30.237501Z",
                    "last_modified_time": "2024-05-22T11:46:30.237522Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/biisity%C3%B6paja.jpg",
                    "name": "",
                    "cropping": "517,0,2583,2066",
                    "photographer_name": "",
                    "alt_text": "nuori tekee omaa musiikkia. Kitara, tietokone ja piano",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151294/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-03-18T12:19:36.419755Z",
            "last_modified_time": "2026-03-18T12:19:36.419770Z",
            "date_published": null,
            "start_time": "2026-04-13T14:00:00Z",
            "end_time": "2026-05-25T15: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Oletko aina halunnut tehdä oman kappaleen tai biitin, mutta et tiedä miten lähteä liikkeelle? Nyt siihen on oiva apu, nimittäinTapiolan kirjaston nuortentilassa järjestetään biisipaja nuorille. Työvälineenä käytämme iPadeja ja syntetisaattorieta. Teemme myös sanoituksia valmistuneisiin biitteihin. Tapahtumaan ei ole ennakkoilmoittautumista ja osallistuminen on maksutonta.</p><p><br></p><p>Biisipaja järjestetään maanantaisin klo 17-18</p><p>13.4, 27.4, 11.5, 25.5</p><p>#musiikki #biisi #kappale #työpaja</p>",
                "en": "<p>Have you always wanted to make your own song or beat, but don't know how to get started? Now there's a great way to help you do just that: At Tapiola Library is a songwriting workshop for youth. We'll be using iPads and synthesizers as our tools. We'll also be writing lyrics to go with the finished beats. No pre-registration for the event, and participation is free of charge.</p><p><br></p><p><br></p><p>The songwriting workshop will be held at 5:00-6:00 p.m.</p><p>13.4, 27.4, 11.5, 25.5</p><p><br></p><p>#music #song #songwriting #workshop</p>"
            },
            "short_description": {
                "fi": "Tapiolan kirjaston nuortentilassa järjestetään biisipaja nuorille. Työvälineenä käytämme iPadeja ja syntetisaattorieta. Osallistuminen on maksutonta.",
                "en": "A songwriting workshop for young people will be held in the youth section of the Tapiola library.  Participation is free of charge."
            },
            "location_extra_info": {
                "fi": "nuortentila"
            },
            "name": {
                "fi": "Biisityöpaja nuorille",
                "en": "Songwriting Workshop for Youth"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvodm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agn4dwszce",
            "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/espoo_le:agggfz65nu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsfjy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsgum/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsh4i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsjdy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwskmq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsltm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsm34/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsod4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwspjm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsqri/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsrye/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwstbu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsuiy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsvpy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwswwq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwsx3y/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490192,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-12-30T11:23:45.697797Z",
                    "last_modified_time": "2024-12-30T11:23:45.697819Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/495df36d-f7b0-4b61-92de-dc5e51df0058.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "tanssivan parikunnan kädet",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490192/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2026-01-15T12:29:50.994852Z",
            "last_modified_time": "2026-03-18T09:24:31.336815Z",
            "date_published": null,
            "start_time": "2026-01-20T09:00:00Z",
            "end_time": "2026-05-05T10: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,
            "info_url": null,
            "provider": {
                "fi": " Espoon Tanssinystävät ry.",
                "sv": "Esbo Dansvänner rf ",
                "en": "Espoo Dance Enthusiasts Association"
            },
            "description": {
                "fi": "Entressen kirjaston Jukeboksin lavatanssit.<p>13.1.-5.5.2026</p><p>13.1. tutustuminen – tanssit</p><p>20.1. lavafoksi ja bachata</p><p>27.1. valssi ja rumba</p><p>3.2.. tanssit</p><p>10.2. tango ja cha cha</p><p>17.2. tanssit</p><p>24.2 hidas valssi ja fusku</p><p>3.3. tanssit</p><p>10.3. humppa ja salsa</p><p>17.3. tanssit</p><p>24.3. lavafoksi ja samba</p><p>31.3 tanssit</p><p>7.4. hidas valssi ja jive</p><p>14.4. tanssit</p><p>21.4. valssi ja rumba</p><p>28.4 tanssit</p><p>5.5. kertausta ja kauden päätöstanssit</p><p>Paikka Espoon keskus, Entressen kirjasto 3krs. Jukeboksi -Sali</p><p>kello 11 – 13. Opettajina Reijo ja Eija Karikivi. Ohjelman muutokset</p><p>mahdollisia.</p><p>Järjestävät Espoon Tanssinystävät ry ja Entressen kirjasto.</p><p>Vapaa pääsy.</p>",
                "sv": "Entresse bibliotekets sällskapdanser i Jukeboksi<p>13.1.-5.5.2026</p><p>13.1. Introduktion – dans</p><p>20.1. Foxtrot och bachata</p><p>27.1. Vals och rumba</p><p>3.2. Dans</p><p>10.2. Tango och cha-cha</p><p>17.2. Dans</p><p>24.2. Långsam vals och fusku</p><p>3.3. Dans</p><p>10.3. Humppa och salsa</p><p>17.3. Dans</p><p>24.3. Foxtrot och samba</p><p>31.3. Dans</p><p>7.4. Långsam vals och jive</p><p>14.4. Tanssit</p><p>21.4. Vals och rumba</p><p>28.4. Dans</p><p>5.5. Repetition och säsongsavslutningsdans</p><p>Plats: Esbo centrum, Entresse bibliotek, 3:e våningen, Jukeboksi</p><p>Tid: kl. 11–13</p><p>Instruktörer: Reijo och Eija Karikivi</p><p>Ändringar i programmet möjliga.</p><p>Arrangörer: Esbo Dansvänner rf. Fri entré.</p>",
                "en": "Entresse Library's Social Dances at Jukeboksi<p>13.1.-5.5.2026</p><p>13 Jan Introduction – dance</p><p>20 Jan foxtrot and bachata</p><p>27 Jan Waltz and rumba</p><p>3 Feb Dance</p><p>10 Feb Tango and cha-cha</p><p>17 Feb Dance</p><p>24 Feb Slow waltz and fusku</p><p>3 Mar Dance</p><p>10 Mar Humppa and salsa</p><p>17 Mar Dance</p><p>24 Mar foxtrot and samba</p><p>31 Mar Dance</p><p>7 Apr Slow waltz and jive</p><p>14 Apr Dance</p><p>21 Apr Waltz and rumba</p><p>28 Apr Dance</p><p>5 May Review and end-of-season dance</p><p>Location: Espoo Center, Entresse Library, 3rd floor, Jukeboksi</p><p>Time: 11 AM – 1 PM</p><p>Instructors: Reijo and Eija Karikivi</p><p>Program subject to change.</p><p>Organizers: Espoo Dance Enthusiasts Association. Free entry.</p>"
            },
            "short_description": {
                "fi": "Entressen kirjaston lavatanssit/opetus opettajina Reijo ja Eija Karikivi.",
                "sv": "Välkommen till dansa och lära!",
                "en": "Welcome to dance and learn!"
            },
            "location_extra_info": {
                "fi": "Jukeboksi",
                "sv": "Jukeboksi",
                "en": "Jukeboksi"
            },
            "name": {
                "fi": "Lavatanssit ",
                "sv": "Sällskapdanser",
                "en": "Social Dancing"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4dwszce/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvqze",
            "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:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvzna/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhr6iy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhr65e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhr7oe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhr76q/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-03-18T09:06:02.583802Z",
            "last_modified_time": "2026-03-18T09:06:02.583825Z",
            "date_published": null,
            "start_time": "2026-04-23T13:00:00Z",
            "end_time": "2026-05-28T14: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,
            "info_url": {
                "fi": "https://www.familiary.fi/",
                "en": "https://www.familiary.fi/en.html"
            },
            "provider": {
                "fi": "Familia ry ",
                "en": "Familia ry "
            },
            "description": {
                "fi": "<p><strong>(EN/FI)</strong></p>\nFamilia ry runs art workshops for children at the library in English<p><br></p><p>Join us for free arts and crafts workshops where children and parents can create together in a relaxed and welcoming space. Each session features a fun, simole craft activity and a chance for families to meet others in the community. No registration needed - just drop in and enjoy a creative moment together!</p><p><strong>When? Thursdays 23.4., 30.4., 21.5. &amp; 28.5. </strong></p><p><strong>from 16-17</strong></p><p>----</p><p><br></p>\nFamilia ry ohjaa taidepajoja lapsille kirjastolla englanniksi<p><br></p><p>Tule mukaan ilmaisiin askartelutyöpajoihin, joissa lapset ja vanhemmat voivat askarrella yhdessä rennossa ja viihtyisässä ympäristössä. Jokaisessa työpajassa on tarjolla hauska ja helppo askartelutehtävä sekä tilaisuus tutustua muihin yhteisön jäseniin. Ilmoittautumista ei tarvita – tule vain paikalle ja nauti luovasta hetkestä yhdessä!</p><p><br></p><p>Milloin ja monelta? Torstaisin 23.4., 30.4., 21.5. ja 28.5. klo 16–17</p>",
                "en": "<p>Join us for free arts and crafts workshops where children and parents can create together in a relaxed and welcoming space. Each session features a fun, simole craft activity and a chance for families to meet others in the community. No registration needed - just drop in and enjoy a creative moment together!</p><p><br></p><p><strong>When? Thursdays 23.4., 30.4., 21.5. &amp; 28.5. from 16-17</strong></p>"
            },
            "short_description": {
                "fi": "Familia ry ohjaa taidepajoja lapsille kirjastolla englanniksi",
                "en": "Familia ry runs art workshops for children at the library in English"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "en": "Salonki"
            },
            "name": {
                "fi": "Taide pop-up työpajat - kevät (engl.)",
                "en": "Art pop-up workshops - Spring series"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvqze/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvrji",
            "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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824177,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-18T08:13:17.191145Z",
                    "last_modified_time": "2026-03-18T08:13:17.191158Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7b261d81-1a13-4635-a2a6-c3c277d257b2.jpg",
                    "name": "",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "",
                    "alt_text": "Harppu ja kukkakimppu",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824177/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-18T08:13:27.688431Z",
            "last_modified_time": "2026-03-18T08:13:27.688449Z",
            "date_published": null,
            "start_time": "2026-04-26T11:00:00Z",
            "end_time": "2026-04-26T12: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,
            "info_url": null,
            "provider": {
                "fi": "Musiikkiopisto Juvenalia",
                "sv": "Musikskolan Juvenalia",
                "en": "Juvenalia Music School"
            },
            "description": {
                "fi": "<p>Musiikkiopisto Juvenalian harpistit esittävät monipuolisen kattauksen harppumusiikkia. Harppusoolojen lisäksi kuullaan myös pienyhtyeitä. Tervetuloa kuuntelemaan harppuyhtyeen keväistä helinää!</p>",
                "sv": "<p>Harpspelarna vid musikskolan Juvenalia framför ett varierat urval av harpmusik. Förutom harpsolon får man även höra mindre ensembler. Välkommen att lyssna på harpensemblen och njuta av vårens klangfulla toner!</p>",
                "en": "<p>The harpists of the Juvenalia Music School will perform a diverse selection of harp music. In addition to harp solos, the program will also feature small ensembles. Come and enjoy the harp ensemble’s springtime melodies!</p>"
            },
            "short_description": {
                "fi": "Musiikkiopisto Juvenalian harpistit esittävät monipuolisen kattauksen harppumusiikkia.",
                "sv": "Harpspelarna vid musikskolan Juvenalia framför ett varierat urval av harpmusik",
                "en": "The harpists of the Juvenalia Music School will perform a diverse selection of harp music."
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "name": {
                "fi": "Keväistä helinää - Musiikkiopisto Juvenalian harpistit lavalla",
                "sv": "Vårens klang – Harpisterna från musikskolan Juvenalia på scenen",
                "en": "The Sound of Spring - Harpists from the Juvenalia Music School Take the Stage"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvrji/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvrvm",
            "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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824178,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-09T07:50:23.673760Z",
                    "last_modified_time": "2026-03-09T07:50:23.673774Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/d4af1902-cf53-4700-98ba-53bbd78f6f65.jpg",
                    "name": "",
                    "cropping": "0,160,643,804",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on lapsia lukemassa ja kirjoittamassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824178/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-09T07:53:10.779685Z",
            "last_modified_time": "2026-03-18T06:52:30.518579Z",
            "date_published": null,
            "start_time": "2026-03-28T13:00:00Z",
            "end_time": "2026-03-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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Värikäs taide- ja yleissivistyyskisa vanhemmille ja lapsille. Tervetuloa mukaan tapahtumaan. Lapset voivat ottaa omat piirustustarvikkeet kisaa varten. Paperit tarjoaa tapahtuman järjestäjä (kynät voi lainata kirjastosta). Tapahtuma järjestetään monitoimisalissa Salonki.</p><p><br></p><p>Tapahtuma on englanninkielinen.</p><p><br></p><p>Program/Ohjelma:</p><p>15:00 - 15:45: Opening ceremony and art competition</p><p>15:45-16:00: Break</p><p>16:00 - 16:10: Kid's general knowledge competition</p><p>16:10-16:30: Parents general knowledge competition</p><p>16:30 - 16:50 Prize giving ceremony</p><p>16:50 - 17:00 Small snacks distribution for kids</p><p>17:00 the event ends</p><p><br></p><p>Dress code: Outfit that reflects your country, culture and traditions. However you can comes as you are.</p>",
                "en": "<p>Colourful art and general knowledge competition for parents and children. Feel free to join the event. Kids may require their own drawing materials to attend the competition. Papers will be offered by the event organizers (also pens can be borrowed from the library). The event will be arranged at multifunction room Salonki.</p><p>Program:</p><ul><li>15:00 - 15:45: Opening ceremony and art competition</li><li>15:45-16:00: Break</li><li>16:00 - 16:10: Kid's general knowledge competition</li><li>16:10-16:30: Parents general knowledge competition</li><li>16:30 - 16:50 Prize giving ceremony</li><li>16:50 - 17:00 Small snacks distribution for kids</li><li>17:00 the event ends</li></ul><p>Dress code: Outfit that reflects your country, culture and traditions. However you can comes as you are.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa mukaan vanhemmille ja lapsille suunnattuun englanninkieliseen taide- ja yleissivistyskisaan la 28.3. klo 15-17.",
                "en": "Welcome to the colourful art and general knowledge competition for parents and children on Saturday 28.3. from 15-17."
            },
            "location_extra_info": {
                "fi": "Salonki",
                "en": "Salonki"
            },
            "name": {
                "fi": "Englanninkielinen taide- ja yleissivistyskisa vanhemmille ja lapsille -PERUTTU ",
                "en": "Colourful art and general knowledge competition for parents and children -CANCELLED"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvrvm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvtpa",
            "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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvsrq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvtau/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-17T07:55:38.185905Z",
            "last_modified_time": "2026-03-17T07:55:38.185925Z",
            "date_published": null,
            "start_time": "2026-03-20T15:00:00Z",
            "end_time": "2026-03-27T16: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,
            "info_url": null,
            "provider": {
                "fi": "MLL Laaksolahti"
            },
            "description": {
                "fi": "<p>Maaliskuun ajan perjantaisin pelikerho Laaksolahden kirjastolla. Pelikerhossa pelaillaan lautapelejä porukalla ja mukaan ovat tervetulleita kaikki pelitaitoiset lapset ja nuoret. Aikuiset, mahdolliset kanssa-auttajat ja muut tulevaisuuden pelikerhon vetäjät myös ehdottomasti tervetuloa mukaan!</p>"
            },
            "short_description": {
                "fi": "Pelikerhossa pelaillaan lautapelejä porukalla ja mukaan ovat tervetulleita kaikki pelitaitoiset lapset ja nuoret."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Pelikerho"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvtpa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67230",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491265,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-31T14:13:45.986997Z",
                    "last_modified_time": "2025-10-31T14:13:45.987015Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780032.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491265/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-31T14:13:45.680691Z",
            "last_modified_time": "2026-03-16T15:13:14.017537Z",
            "date_published": null,
            "start_time": "2026-01-17",
            "end_time": "2026-05-16",
            "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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BE787352886B5C6A8A39979FE517699F/Annantalon_taidelauantait",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/BE787352886B5C6A8A39979FE517699F/Annegardens_konstlordagar_",
                "en": "http://www.annantalo.fi/en/events/event/BE787352886B5C6A8A39979FE517699F/Annantalo_Art_Saturdays_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantait ovat maksuttomia ja sopivat kaikenkielisille.  <br> <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p><p><b>17.1.2026 klo 11–14</b> <br>Meren asukas</p><p><b>24.1.2026 klo 11–14</b><br>Fragmentit framille</p><p><b>31.1.2026 klo 11–14</b><br>Small size days -työpaja: Tarinankerrontaa ja taiteilua!</p><p><b>7.2.2026 klo 11–14</b> <br>Hyvän unen apurit</p><p><b>14.2.2026 klo 11–14</b><br>Ei Annantalon taidelauantaita - AnnanHouse-tapahtuma klo 16-19</p><p><b>21.2.2026 klo 11–14</b> <br>Aarrejahti</p><p><b>28.2.2026 klo 11–14 </b><br> <u><a href=\"https://annantalo.fi/fi/tapahtumat/event/230927E0E7D4B562A3BD87B0143473B8/Annantalon_taidelauantai__Mariana___Alves_-_Spin_Me_a_Story\">Mariana & Alves - Spin me a Story</u></a></p><p><b>7.3.2026 klo 11–14 </b><br>Kämpillä</p><p><b>14.3.2026 klo 13–15 </b><br>Pöytäteatterin taikaa</p><p><b>21.3.2026 klo 11–14 </b><br>Fragmentit framille</p><p><b>28.3.2026 klo 11–14 </b><br>Tunneduunarin kunniamerkki</p><p><b>4.4.2026</b><br>Ei Annantalon taidelauantaita - Annantalo suljettu</p><p><b>11.4.2026</b><br>Ei Annantalon taidelauantaita - Barnfesten-tapahtuma klo 10-15</p><p><b>18.4.2026 klo 11–14</b> <br>Hyvän unen apurit</p><p><b>25.4.2026 klo 11–14 </b><br>Julkaistaan myöhemmin</p><p><b>2.5.2026 klo 11–14 </b><br>Kämpillä</p><p><b>9.5.2026 klo 11–14 </b><br>Kuka on sinun eläinoletettusi?</p><p><b>16.5.2026 klo 11-14</b>  <br>Fragmentit framille</p><p>Huom! Annantalon taidelauantaita ei järjestetä 14.2. ja 11.4.</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördagar är avgiftsfria och passar alla oberoende av vilket språk man talar.  <br> <br>Varmt välkommen till Annegården på lördagarna!</p><p>Obs! Annegårdens konstlördagar ordnas inte 14.2. och 11.4.</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturdays are free-of-charge and suitable for guests from all language backgrounds. <br> <br>We look forward to seeing you at Annantalo on Saturdays!</p><p>Please note! Annantalo Art Saturday will not be held on 14th February and 11th April</p>"
            },
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Annantalon taidelauantait",
                "sv": "Annegårdens konstlördagar",
                "en": "Annantalo Art Saturdays"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67230/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyxr7rki",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7gj4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7g6y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7hki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7hva/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7iaa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7ijy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7iue/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7i6m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7ji4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7jti/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7j5y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7kiq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7ktm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7k6i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7liu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7lue/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7l7u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7mky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7mvy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7naa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7nki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7nvu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7oai/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7oky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7ovm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7pae/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7pki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7puq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7p6q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7qjq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7qv4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7q74/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490241,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-20T12:30:46.474635Z",
                    "last_modified_time": "2025-05-20T12:30:46.474651Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/aa41a782-a291-4ee4-8a37-c010dae34d59.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "elokuvaliput ja popcornia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490241/?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": "2025-09-27T14:43:54.298827Z",
            "last_modified_time": "2026-03-16T13:30:42.701789Z",
            "date_published": null,
            "start_time": "2025-10-03T14:00:00Z",
            "end_time": "2026-05-29T16: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä!</p><p>Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina osallistujat saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p><strong>27.3.2026 elokuvailta järjestetään poikkeuksellisesti klo 18 alkaen. </strong>Teemana maagiset elokuvat. #maaginenviikko </p>",
                "sv": "<p>På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!</p><p>Den första fredagen i månaden visar vi alltid en åldersanpassad film (S). Övriga fredagar kan deltagare välja en film från S- och K7-utbudet.</p><p><br></p><p><strong>Den 27 mars 2026 hålls filmkvällen undantagsvis med start kl. 18.&nbsp;</strong></p>",
                "en": "<p>On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!</p><p>On the first Friday of the month, we always show an age-appropriate film (S). On other Fridays, participants can choose a film from the S and K7 selection.</p><p><br></p><p><strong>On March 27, 2026, the movie night will be held exceptionally starting at 6 p.m.&nbsp;</strong></p>"
            },
            "short_description": {
                "fi": "Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!",
                "sv": "På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!",
                "en": "On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Lasten perjantaileffa",
                "sv": "Fredagsfilm för barn",
                "en": "Children's Friday movie"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7rki/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvw3y",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvu6u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvvoa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvv5a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvwmu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1824180,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-16T11:33:51.069489Z",
                    "last_modified_time": "2026-03-16T11:34:52.506710Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/19a16f5b-ca2c-4554-9643-90ff715fb396.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Yksin vanhempana ry",
                    "alt_text": "kuvituskuva ryhmässä olemisesta",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824180/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-03-16T11:34:57.916210Z",
            "last_modified_time": "2026-03-16T11:34:57.916226Z",
            "date_published": null,
            "start_time": "2026-03-18T15:00:00Z",
            "end_time": "2026-04-08T16: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,
            "info_url": null,
            "provider": {
                "fi": "Yksin vanhempana ry."
            },
            "description": {
                "fi": "Espoon keskuksen vertaisryhmä yhden vanhemman perheille<p><strong>Keskiviikkoisin 18.3., 25.3., 1.4. ja 8.4. klo 17–19</strong></p><p>Tervetuloa juttelemaan vertaisseurassa arjen haasteista ja tulevaisuuden unelmista! Jokaisella kerralla on vaihtuva teema, jonka avulla tutustutaan toisiimme vähän pintaa syvemmältä ja löydetään voimavaroja, selviytymiskeinoja ja ilonaiheita omaan elämään. Ryhmää ohjaa perhetoiminnan koordinaattori Jenni.</p><p>Ryhmä on maksuton ja tarkoitettu vanhemmille, joilla on alle 18-v. lapsi. Lastenhoito etukäteisilmoittautuneille kirjaston yleisessä tilassa.</p><p>Lisätietoja <strong>Jenni Pesola, p. 044 793 6663, jenni.pesola@yksinvanhempana.fi</strong></p><p><strong>Yksin vanhempana ry.</strong></p><p><br></p>"
            },
            "short_description": {
                "fi": "Tervetuloa juttelemaan vertaisseurassa arjen haasteista ja\ntulevaisuuden unelmista!"
            },
            "location_extra_info": {
                "fi": "Ryhmätyötila Aisti "
            },
            "name": {
                "fi": "Vertaisryhmä yhden vanhemman perheille"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvw3y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnsxjgrtq",
            "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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsxjgojm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsxjgpz4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsxjgqni/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsxjgq74/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1491029,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-08T07:45:06.398951Z",
                    "last_modified_time": "2025-10-08T07:45:06.398966Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/d5447785-399b-4a30-8c8f-49c0a38675a6.png",
                    "name": "Kirjastokaveri.",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Viisi erilaista piirrettyä ihmishahmoa. Eri-ikäisiä, eri kulttuuritaustoista.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491029/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-17T09:12:45.775357Z",
            "last_modified_time": "2026-03-16T11:02:29.397711Z",
            "date_published": null,
            "start_time": "2026-01-12T08:00:00Z",
            "end_time": "2026-05-04T09: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,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "Tervetuloa kirjastoon!\nTapaa kirjastokaveri omalla kielelläsi!<p><br></p><p>Haluaisitko tulla kirjastoon lainaamaan kirjoja, pelaamaan ja harrastamaan, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p><br></p><p>DARIN-, PASHTUN-, TURKIN- JA URDUNKIELINEN KIRJASTOKAVERI TAVATTAVISSA:</p><p><br></p><p>Maanantaisin kerran kuussa klo 10–12:</p><ul><li>maanantai 12.1.2026</li><li>maanantai 9.2.2026</li><li>maanantai 9.3.2026</li><li>maanantai 6.4.2026 PERUTTU (kirjasto suljettu)</li><li>maanantai 4.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#kirjastokaveri #kirjasto #kaveri</p><p>#dari # pashtu # urdu #turkki</p>",
                "en": "Welcome to the library!\nMeet a library buddy in your own language!<p><br></p><p>Want to come to the library to loan books, play games and attend hobbies but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language.</p><p>No pre-registration, you are most warmly welcome!</p><p><br></p><p>MEET A DARI, PASHTO, TURKISH AND URDU SPEAKING LIBRARY BUDDY:</p><p><br></p><p>On Monday once a month at 10–12:</p><ul><li>Monday 12.1.2026</li><li>Monday 9.2.2026</li><li>Monday 9.3.2026</li><li>Monday 6.4.2026 CANCELLED (library is closed)</li><li>Monday 4.5.2026</li></ul><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p><p>#librarybuddy #library #buddy</p><p>#dari #pashto #urdu #turkish</p>"
            },
            "short_description": {
                "fi": "Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!",
                "en": "Want to come to the library but you find it hard for language or culture matters? Our  library buddy volunteers help you in your own language. "
            },
            "location_extra_info": {
                "fi": "Aula",
                "en": "Lobby"
            },
            "name": {
                "fi": " Kirjastokaveri: DARI, PASHTU, TURKKI JA URDU",
                "en": "Library buddy: DARI, PASHTO, TURKISH AND URDU"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsxjgrtq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}