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

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 ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&hide_recurring_children=true&page=12
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 19181,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=13",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=11"
    },
    "data": [
        {
            "id": "kulke:66757",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": {
                        "fi": "14€",
                        "sv": "14€",
                        "en": "14€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1256361,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T11:14:16.235195Z",
                    "last_modified_time": "2025-07-14T11:14:16.235210Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774910.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1256361/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T11:14:16.138407Z",
            "last_modified_time": "2025-08-05T11:12:40.465651Z",
            "date_published": null,
            "start_time": "2025-09-24T11: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.vuotalo.fi/fi/tapahtumat/event/3D2F38130F73B77EDB86F5FECED1DF36/Rakkautta_ja_Anarkiaa_x_Vuotalo_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/3D2F38130F73B77EDB86F5FECED1DF36/Rakkautta_ja_Anarkiaa_x_Vuotalo_",
                "en": "http://www.vuotalo.fi/en/events/event/3D2F38130F73B77EDB86F5FECED1DF36/Love_Anarchy_x_Vuotalo_"
            },
            "description": {
                "fi": "<p>R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!</p><p>Festivaaliohjelmistossa nähdään vuoden kauneimmat, hurjimmat ja tuoreimmat elokuvahelmet.</p><p>Ohjelmisto julkistetaan tiistaina 2.9. ja lipunmyynti alkaa torstaina 4.9. festivaalin nettisivuilla osoitteessa hiff.fi</p><p>Rakkautta & Anarkiaa -elokuvafestivaali järjestetään 18.–28.9.2025 Helsingin elokuvateattereissa ja Vuotalossa.</p>",
                "sv": "<p>R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!</p><p>Festivalprogrammet innehåller årets vackraste, vildaste och mest fräscha filmpärlor.</p><p>Programmet publiceras tisdagen den 2 september och biljetterna släpps till försäljning torsdagen den 4 september på festivalens webbplats på adressen hiff.fi</p><p>Filmfestivalen Rakkautta & Anarkiaa äger rum 18–28 september 2025 på Helsingfors biografer och Nordhuset.</p>",
                "en": "<p>This year, L&A festival film screenings will also be held at Vuotalo!</p><p>The festival programme features the most beautiful, wildest and freshest film gems of the year.</p><p>The programme will be announced on Tuesday 2 September and tickets will go on sale on Thursday 4 September on the festival website at hiff.fi</p><p>The Love & Anarchy Film Festival will take place from 18 to 28 September 2025 at the cinemas of Helsinki and Vuotalo.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!",
                "sv": "R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!",
                "en": "This year, L&A festival film screenings will also be held at Vuotalo!"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Rakkautta ja Anarkiaa x Vuotalo!",
                "sv": "Rakkautta ja Anarkiaa x Vuotalo!",
                "en": "Love & Anarchy x Vuotalo!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66757/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66756",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": {
                        "fi": "14€",
                        "sv": "14€",
                        "en": "14€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1256360,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T11:14:15.528483Z",
                    "last_modified_time": "2025-07-14T11:14:15.528522Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774908.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1256360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T11:14:15.429944Z",
            "last_modified_time": "2025-08-05T11:12:40.169457Z",
            "date_published": null,
            "start_time": "2025-09-20T15: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.vuotalo.fi/fi/tapahtumat/event/CA5E0AC294ABA09FCAC546FC02270DCF/Rakkautta_ja_Anarkiaa_x_Vuotalo_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/CA5E0AC294ABA09FCAC546FC02270DCF/Rakkautta_ja_Anarkiaa_x_Vuotalo_",
                "en": "http://www.vuotalo.fi/en/events/event/CA5E0AC294ABA09FCAC546FC02270DCF/Love_Anarchy_x_Vuotalo_"
            },
            "description": {
                "fi": "<p>R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!</p><p>Festivaaliohjelmistossa nähdään vuoden kauneimmat, hurjimmat ja tuoreimmat elokuvahelmet.</p><p>Ohjelmisto julkistetaan tiistaina 2.9. ja lipunmyynti alkaa torstaina 4.9. festivaalin nettisivuilla osoitteessa hiff.fi</p><p>Rakkautta & Anarkiaa -elokuvafestivaali järjestetään 18.–28.9.2025 Helsingin elokuvateattereissa ja Vuotalossa.</p>",
                "sv": "<p>R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!</p><p>Festivalprogrammet innehåller årets vackraste, vildaste och mest fräscha filmpärlor.</p><p>Programmet publiceras tisdagen den 2 september och biljetterna släpps till försäljning torsdagen den 4 september på festivalens webbplats på adressen hiff.fi</p><p>Filmfestivalen Rakkautta & Anarkiaa äger rum 18–28 september 2025 på Helsingfors biografer och Nordhuset.</p>",
                "en": "<p>This year, L&A festival film screenings will also be held at Vuotalo!</p><p>The festival programme features the most beautiful, wildest and freshest film gems of the year.</p><p>The programme will be announced on Tuesday 2 September and tickets will go on sale on Thursday 4 September on the festival website at hiff.fi</p><p>The Love & Anarchy Film Festival will take place from 18 to 28 September 2025 at the cinemas of Helsinki and Vuotalo.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!",
                "sv": "R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!",
                "en": "This year, L&A festival film screenings will also be held at Vuotalo!"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Rakkautta ja Anarkiaa x Vuotalo!",
                "sv": "Rakkautta ja Anarkiaa x Vuotalo!",
                "en": "Love & Anarchy x Vuotalo!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66756/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66754",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": {
                        "fi": "14€",
                        "sv": "14€",
                        "en": "14€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1256359,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T11:14:15.115203Z",
                    "last_modified_time": "2025-07-14T11:14:15.115218Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774907.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1256359/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T11:14:14.981515Z",
            "last_modified_time": "2025-08-05T11:12:40.048546Z",
            "date_published": null,
            "start_time": "2025-09-20T11: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.vuotalo.fi/fi/tapahtumat/event/CE5F7D1482CA76733E7A63DEA01FD3EA/Rakkautta_ja_Anarkiaa_x_Vuotalo_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/CE5F7D1482CA76733E7A63DEA01FD3EA/Rakkautta_ja_Anarkiaa_x_Vuotalo_",
                "en": "http://www.vuotalo.fi/en/events/event/CE5F7D1482CA76733E7A63DEA01FD3EA/Love_Anarchy_x_Vuotalo_"
            },
            "description": {
                "fi": "<p>R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!</p><p>Festivaaliohjelmistossa nähdään vuoden kauneimmat, hurjimmat ja tuoreimmat elokuvahelmet.</p><p>Ohjelmisto julkistetaan tiistaina 2.9. ja lipunmyynti alkaa torstaina 4.9. festivaalin nettisivuilla osoitteessa hiff.fi</p><p>Rakkautta & Anarkiaa -elokuvafestivaali järjestetään 18.–28.9.2025 Helsingin elokuvateattereissa ja Vuotalossa.</p>",
                "sv": "<p>R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!</p><p>Festivalprogrammet innehåller årets vackraste, vildaste och mest fräscha filmpärlor.</p><p>Programmet publiceras tisdagen den 2 september och biljetterna släpps till försäljning torsdagen den 4 september på festivalens webbplats på adressen hiff.fi</p><p>Filmfestivalen Rakkautta & Anarkiaa äger rum 18–28 september 2025 på Helsingfors biografer och Nordhuset.</p>",
                "en": "<p>This year, L&A festival film screenings will also be held at Vuotalo!</p><p>The festival programme features the most beautiful, wildest and freshest film gems of the year.</p><p>The programme will be announced on Tuesday 2 September and tickets will go on sale on Thursday 4 September on the festival website at hiff.fi</p><p>The Love & Anarchy Film Festival will take place from 18 to 28 September 2025 at the cinemas of Helsinki and Vuotalo.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "R&A-festivaalin elokuvanäytöksiä nähdään tänä vuonna myös Vuotalossa!",
                "sv": "R&A-festivalens filmvisningar kommer även i år att visas på Nordhuset!",
                "en": "This year, L&A festival film screenings will also be held at Vuotalo!"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Rakkautta ja Anarkiaa x Vuotalo!",
                "sv": "Rakkautta ja Anarkiaa x Vuotalo!",
                "en": "Love & Anarchy x Vuotalo!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66754/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66817",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1418212,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-05T11:12:39.197088Z",
                    "last_modified_time": "2025-08-05T11:12:39.197108Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771207.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1418212/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-05T11:12:39.132616Z",
            "last_modified_time": "2025-08-05T11:12:39.282945Z",
            "date_published": null,
            "start_time": "2025-09-15T13:00:00Z",
            "end_time": "2025-11-24T16: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": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/58EC9052DEC54BBBB0BEC157C2413895/Nuorten_suunnittelemat_iltapaivat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/58EC9052DEC54BBBB0BEC157C2413895/Eftermiddagar_planerade_av_unga",
                "en": "http://www.vuotalo.fi/en/events/event/58EC9052DEC54BBBB0BEC157C2413895/Afternoons_planned_by_young_people"
            },
            "description": {
                "fi": "<p>Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.</p><p>Vuosaarelaiset nuoret ovat ideoineet tekemistä koulu- tai työpäivän päätteeksi. Kaikki ovat tervetulleita, ikään katsomatta. Iltapäivät ovat ilmaisia ja tarvittavat materiaalit saa paikan päältä. Pistäydy tai viihdy vaikka koko aika!</p><p>Työpajoja ohjaa nuorisotyöntekijä sekä nuoret itse. Tarkemmasta ohjelmasta kerrotaan Vuotalon aulassa ja somekanavissa viimeistään viikkoa ennen.</p><p>Huom! Iltapäiviä ei järjestetä syysloman aikana.</p>",
                "sv": "<p>På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.</p><p>Ungdomar i Nordsjö har kommit med idéer om vad man kan göra när skol- eller arbetsdagen är slut. Alla är välkomna, oavsett ålder. Eftermiddagarna är kostnadsfria och det nödvändiga materialet finns tillgängligt på plats. Titta in eller stanna hela tiden!</p><p>Workshopparna leds av en ungdomsledare och ungdomarna själva. Det detaljerade programmet publiceras i Nordhusets aula och på sociala medier minst en vecka innan.</p><p>Obs! Eftermiddagarna ordnas inte under höstlovet.</p>",
                "en": "<p>On Monday afternoons, we will be doing arts and crafts and spending fun time together.</p><p>Young people in Vuosaari have come up with ideas for things to do at the end of the school or work day. All are welcome, regardless of age. The afternoons are free of charge and the materials needed are available on-site. Drop by for a moment or stay the whole time!</p><p>The workshops are run by a youth worker and the young people themselves. The detailed programme will be posted in the Vuotalo lobby and on social media at least one week in advance.</p><p>Please note! There will be no afternoon activities during the autumn holidays.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.",
                "sv": "På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.",
                "en": "On Monday afternoons, we will be doing arts and crafts and spending fun time together."
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Nuorten suunnittelemat iltapäivät – Operaatio Pulssi",
                "sv": "Eftermiddagar planerade av unga – Operaatio Pulssi",
                "en": "Afternoons planned by young people – Operation Pulse!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66817/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66810",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/o-vos-imitatores-3933582/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/o-vos-imitatores-3933582/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/o-vos-imitatores-3933582/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15€ / 10€",
                        "sv": "15€ / 10€",
                        "en": "15€ / 10€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1410896,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-04T11:14:42.674817Z",
                    "last_modified_time": "2025-08-04T11:14:42.674835Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775280.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1410896/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-04T11:14:42.487390Z",
            "last_modified_time": "2025-08-05T11:12:38.581453Z",
            "date_published": null,
            "start_time": "2025-09-11T15: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.vuotalo.fi/fi/tapahtumat/event/9A9B28072508E824225436A7EF3D14D2/O_vos_imitatores",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/9A9B28072508E824225436A7EF3D14D2/O_vos_imitatores",
                "en": "http://www.vuotalo.fi/en/events/event/9A9B28072508E824225436A7EF3D14D2/O_vos_imitatores"
            },
            "description": {
                "fi": "<p>Meren Sisaret on perustettu vuonna 2019 ja esittää enimmäkseen keskiaikaista musiikkia. Yhtyeessä laulavat kaikki ja lisäksi käytössä ovat kampiliira, nokkahuilu, sormipiano, munniharppu ja perkussiosoittimet.</p><p><b>Meren Sisarten</b> ensimmäinen konsertti pidettiin keväällä 2020 yhdessä Konsort Karhea-yhtyeen kanssa. Sittemmin Meren Sisaret on esiintynyt mm Tampereen Vapriikissa, Espoon tuomiokirkossa sekä Turun keskiaikaisilla markkinoilla. Kesällä 2025 ovat vuorossa Finströmin kirkko ja  Kastelholman linna.</p><p>Konsertin otsikko <b>O vos imitatores</b> viittaa varhaisella keskiajalla (1100-luku) eläneeseen Hildegard Bingeniläiseen. Konsertti sisältää musiikkia koko keskiajalta aina renessanssiin saakka, sekä pari kansanomaista laulua ja lyhyen modernistisen kommentin Hildegardille. Muita säveltäjiä ovat mm. Landini, da Perugia, Dunstable, Arcadelt & Marenzio.</p><p><b>Esiintyjät:</b><br>Essi Eero: sopraano - nokkahuilu, munniharppu & perkussio <br>Marika Olofsson: sopraano - munniharppu & perkussio  <br>Piia Kulku: mezzo - sormipiano, nokkahuilu  & perkussio <br>Susanna Tollet: mezzo - kampiliira & nokkahuilu  <br>Ulla Pedersen Estberg: altto - panhuilu, munniharppu & kellot</p>",
                "sv": "<p>Meren Sisaret grundades 2019 och framför främst medeltida musik. Det är en ensemble med enbart sång och består även av vevlira, blockflöjt, fingerpiano, mungiga och slagverk.</p><p><b>Meren Sisarets</b> första konsert hölls våren 2020 tillsammans med Konsort Karhea. Sedan dess har Meren sisaret uppträtt på Vapriikki i Tammerfors, Esbo domkyrka och den medeltida marknaden i Åbo. Sommaren 2025 står Finströms kyrka och Kastelholms slott på tur.</p><p>Konsertens titel, <b>O vos imitatores</b>, syftar på Hildegard av Bingen, som levde under tidig medeltid (1100-talet). Konserten innehåller musik från medeltiden till renässansen, plus ett par folksånger och en kort modernistisk kommentar till Hildegard. Andra kompositörer är Landini, da Perugia, Dunstable, Arcadelt & Marenzio.</p><p><b>Artister:</b><br>Essi Eero: sopran – blockflöjt, mungiga & slagverk <br>Marika Olofsson: sopran – mungiga & slagverk<br>Piia Kulku: mezzo – fingerpiano, blockflöjt & slagverk <br>Susanna Tollet: mezzo – vevlira & blockflöjt<br>Ulla Pedersen Estberg: alt – panflöjt, mungiga & klockspel</p>",
                "en": "<p>Meren Sisaret was founded in 2019 and performs mostly medieval music. The band is an all-singing ensemble, and their instruments include the hurdy-gurdy, the recorder, the kalimba, the mouth harp and percussion instruments</p><p><b>Meren Sisarets</b> first concert was held in the spring of 2020 together with the band Konsort Karhea. Since then, Meren Sisaret has performed at venues and events such as Vapriikki in Tampere, Espoo Cathedral and Turku Medieval Market. In the summer of 2025, the group will perform in the church of Finström and Kastelholm Castle. .</p><p>The title of the concert, <b>O vos imitatores</b>, refers to Hildegard of Bingen, who lived in the early Middle Ages (12th century). The concert will include music from the Middle Ages all the way to the Renaissance period, as well as a couple of folk songs and a short modernist comment to Hildegard. Other composers featured include Landini, da Perugia, Dunstable, Arcadelt and Marenzio, among others.</p><p><b>Performers:</b><br>Essi Eero: soprano – recorder, mouth harp & percussion <br>Marika Olofsson: soprano – mouth harp & percussion<br>Piia Kulku: mezzo – kalimba, recorder & percussion <br>Susanna Tollet: mezzo – hurdy-gurdy & recorder<br>Ulla Pedersen Estberg: alto – pan flute, mouth harp & bells</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Meren Sisaret on perustettu vuonna 2019 ja esittää enimmäkseen keskiaikaista musiikkia. Yhtyeessä laulavat kaikki ja lisäksi käytössä ovat kampiliira, nokkahuilu, sormipiano, munniharppu ja perkussiosoittimet.",
                "sv": "Meren Sisaret grundades 2019 och framför främst medeltida musik. Det är en ensemble med enbart sång och består även av vevlira, blockflöjt, fingerpiano, mungiga och slagverk.",
                "en": "Meren Sisaret was founded in 2019 and performs mostly medieval music. The band is an all-singing ensemble, and their instruments include the hurdy-gurdy, the recorder, the kalimba, the mouth harp and percussion instruments"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "O vos imitatores – Meren sisaret",
                "sv": "O vos imitatores – Meren sisaret",
                "en": "O vos imitatores – Meren sisaret"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66810/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22gype",
            "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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gspm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gs4y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gtjq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gtvy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gucq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22guou/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gu6a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gvna/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gvzq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gwga/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gwsu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gw6y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gxli/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gxxm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gydq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490152,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-06-18T07:26:22.260988Z",
                    "last_modified_time": "2025-06-18T07:26:22.261002Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0edb910a-42c4-4141-85f4-06eda0105f9d.jpg",
                    "cropping": "712,0,3560,2848",
                    "photographer_name": "",
                    "alt_text": "Ukulele group",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490152/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-18T07:56:32.636461Z",
            "last_modified_time": "2025-08-05T10:43:46.815953Z",
            "date_published": null,
            "start_time": "2025-09-01T14:00:00Z",
            "end_time": "2025-12-08T16:15: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,
            "description": {
                "fi": "<p>Tervetuloa soittamaan ukulelea!</p><p>Tässä ryhmässä soitamme suomen- ja englanninkielisiä lauluja ja opettelemme komppaamista, näppäilyä, melodiansoittoa sekä muita hauskoja ukulelen soittotekniikoita.</p><p>Ryhmälle on tärkeätä yhteisöllisyys sekä musiikin soittamisesta syntyvä ilo. Ryhmä esiintyy pari kertaa vuodessa kaupunginkirjaston ukuleleryhmien kevät- ja joulukonserteissa. Ryhmä käy myös säännöllisesti palvelukeskuksissa laulamassa ja soittamassa yhdessä seniorien kanssa.</p><p>HUOM! 20.10 Ei tuntia (Ryhmä esiintyy palvelukeskuksessa)</p>",
                "en": "<p>Welcome to play the ukulele!</p><p>In this group, we play Finnish and English songs and learn strumming, finger-picking, melody playing and other fun ukulele playing techniques.</p><p>Community spirit and the joy of playing music together are important values to the group. The group performs a couple of times a year at the Espoo city library. The group also regularly visits Service Centers to sing and play together with seniors.</p><p>Please NOTE! No class on 20.10. (The group performs in an elderly care center)</p>"
            },
            "location_extra_info": {
                "fi": "Tapahtumatila Heikki"
            },
            "short_description": {
                "fi": "Tervetuloa soittamaan ukulelea!",
                "en": "Welcome to play the ukulele!"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Ukulele edistyneiden ryhmä",
                "en": "Ukulele Advanced Group"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gype/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22g7om",
            "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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gy2u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gzgi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gzrm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gz54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g2jy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g2we/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g3b4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g3nm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g3yy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g4d4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g4pm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g43y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g5iq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g5uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g6ae/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g6ma/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g6xi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g7da/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490153,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-05T10:36:03.136543Z",
                    "last_modified_time": "2025-08-05T10:36:03.136559Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/771b8e6d-cff1-40dc-acab-6ecdd344bdbf.jpg",
                    "cropping": "320,0,1152,832",
                    "photographer_name": "",
                    "alt_text": "Ukullejamit",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490153/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-05T10:37:28.862171Z",
            "last_modified_time": "2025-08-05T10:37:28.862188Z",
            "date_published": null,
            "start_time": "2025-08-22T14:00:00Z",
            "end_time": "2025-12-19T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "description": {
                "fi": "<p>Ukulelejamit jatkuvat perjantaisin Tapiolan kirjaston tapahtumatila Heikissä. Jamit ovat avoimia kaikille soittotaidosta riippumatta. Voit osallistua jameihin kaikilla soittimilla. Tilasta löytyy piano. Voit myös ehdottaa kappaleita yhdessä soitettavaksi. Tule mukaan jameihin soittamaan ja laulamaan omia lempikappaleita ja nauttimaan yhdessä musisoinnista. </p><p>#ukulele #musiikki #jami #jamit&nbsp;</p>",
                "en": "<p>Ukulele jam will be held on Fridays at the Tapiola Library event space Heikki. The jam is open to everyone, and you can join with any instrument. There is an electric piano in the space. You can also suggest songs to play together. Come join to play and sing your favorite songs or just enjoy making music together.</p>"
            },
            "location_extra_info": {
                "fi": "Tapahtumatila Heikki",
                "en": "Event Space Heikki"
            },
            "short_description": {
                "fi": "Tule mukaan jameihin soittamaan ja laulamaan omia lempikappaleita ja nauttimaan yhdessä musisoinnista. ",
                "en": "Come join to play and sing your favorite songs or just enjoy making music together."
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Ukulelejamit",
                "en": "Ukulele Jam"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g7om/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:a49084fe-e2da-46d4-a21d-73eb01308bfe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TPR_integraatiotesti_482025979948074"
                    },
                    "description": null,
                    "price": {
                        "fi": "0"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-08-05T10:34:18.384528Z",
            "last_modified_time": "2025-08-05T10:34:18.384549Z",
            "date_published": "2025-08-04T09:14:57Z",
            "start_time": "2025-08-12T11:00:00Z",
            "end_time": "2025-08-16T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 4,
            "audience_max_age": 32,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-08-04T08:00:00+03:00",
            "enrolment_end_time": "2025-08-10T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "description": {
                "fi": "<div><p>Laajempi kuvaus</p></div>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Lyhyt kuvaus"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Annantalo"
            },
            "name": {
                "fi": "TPR integraatiotesti 4.8.2025"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a49084fe-e2da-46d4-a21d-73eb01308bfe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22hhcy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22g7z4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22haie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hawa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hbey/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hbti/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hccm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hcre/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hdam/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hdou/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hd44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22helq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22he2e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hfje/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hfxu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hggq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hguu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490154,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-05T10:15:17.531561Z",
                    "last_modified_time": "2025-08-05T10:15:17.531581Z",
                    "name": "Iltasatutunti",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3e6912e3-5de1-466b-a5ab-d30c88485e82.png",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Omenan iltasatutunti",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490154/?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": "2025-08-05T10:27:11.305746Z",
            "last_modified_time": "2025-08-05T10:27:11.305768Z",
            "date_published": null,
            "start_time": "2025-09-04T14:30:00Z",
            "end_time": "2025-12-18T16: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,
            "description": {
                "fi": "<p>Iltasatuhetkellä luetaan suomenkielisiä satuja ja tarinoita. Tulethan kuuntelemaan iltasatua oman aikuisen kanssa. Satuhetki on tarkoitettu alle kouluikäisille lapsille.</p><p>Satuhetki järjestetään joka torstai 4.9. alkaen läpi syksyn, klo 17.30 - 18, lastenosastolla.</p><p>Tervetuloa mukaan!</p>",
                "sv": "<p>Sagor och berättelser på finska läses under kvällens sagostund. Kom gärna och lyssna på en saga tillsammans med din egen vuxen. Sagorna är avsedda för barn under skolåldern.</p><p>Sagor hålls varje torsdag från 4.9. under hela hösten, kl. 17:30 till 18:00, på barnavdelningen.</p><p>Välkommen!</p>",
                "en": "<p>During evening storytime we read finnish stories and fairytales. Come and listen to the storytime together with your grown up. Stories are meant for children under school age.</p><p>Storytime is held every thursday from 4.9. onward for the whole autumn, at 17.30.-18, in the children's section.</p><p>Welcome!</p>"
            },
            "location_extra_info": {
                "fi": "Saturiutta",
                "sv": "Saturiutta",
                "en": "Saturiutta"
            },
            "short_description": {
                "fi": "Avoin suomenkielinen iltasatuhetki.",
                "sv": "Kvällens sagostund på finska.",
                "en": "Evening storytime in finnish."
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Ompun iltasatu",
                "sv": "Kvällens sagostund i Omppu på finska",
                "en": "Evening storytime in Omppu in finnish"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hhcy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22hii4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hhra/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hh4y/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490155,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T11:41:30.116405Z",
                    "last_modified_time": "2025-07-09T11:41:30.116419Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/19fca3ff-ca17-4b98-8829-2e515146efcf.png",
                    "cropping": "0,106,752,859",
                    "photographer_name": "",
                    "alt_text": "Musta välkkyvä lampun polttimo - logo, jossa onnellinen naama. Vihreällä teksti HERO, helsingin seudun erilaiset oppijat",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490155/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-30T08:22:40.763862Z",
            "last_modified_time": "2025-08-05T10:21:50.850688Z",
            "date_published": null,
            "start_time": "2025-09-08T14:00:00Z",
            "end_time": "2025-10-06T15: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,
            "description": {
                "fi": "<p>Tule Helsingin seudun erilaiset oppijat ry:n (HEROn) lukineuvontaan!</p><p><br></p><p>Haluatko tietoa lukivaikeuksista ja apuvälineistä, jotka helpottavat lukemista ja kirjoittamista? HERO:n maksuttomassa lukineuvonnassa saat asiantuntevaa ohjausta erityisopetuksen ammattilaisilta.</p><p>Löydät HEROn kirjaston aulatilasta tai muusta sille osoitetusta paikasta – etsi vihreä roll-up!</p><p>Tule keskustelemaan ja kuulemaan lisää oppimisesta sekä HERO:n toiminnasta. Nähdään kirjastossa!&nbsp;</p>",
                "sv": "<p>Dessutom får du bekanta dig med olika inlärningsspel som kan laddas ner till surfplatta eller dator.</p><p>Kom och diskutera eller lyssna på information om lärande samt bekanta dig med verksamheten vid Helsingforsregionens förening för olika inlärare (HERO).</p><p>Läsrådgivningen ges av våra specialpedagogiska experter och är kostnadsfri.</p>",
                "en": "<p>You can also explore various educational games that can be downloaded to a tablet or computer.</p><p>Come to chat or hear more about learning, and get to know the activities of the Helsinki Metropolitan Area Association for People with Learning Difficulties (HERO).</p><p>Our special education experts provide the reading guidance, and it is free of charge.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Neuvonnassa saat tietoa lukivaikeuksista, niiden tunnistamisesta sekä erilaisista lukemista ja kirjoittamista helpottavista apuvälineistä.",
                "sv": "Vid rådgivningen får du information om lässvårigheter, hur de kan identifieras samt om olika hjälpmedel som underlättar läsning och skrivning.",
                "en": "At the guidance service, you can get information about reading difficulties, how to identify them, and various tools that support reading and writing."
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Lukineuvontaa  Lippulaivan kirjastossa - mukana lukikoira Halla",
                "sv": "Läsrådgivning på biblioteket: Lippulaiva",
                "en": "Reading guidance at the library: Lippulaiva"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hii4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22hive",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490155,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T11:41:30.116405Z",
                    "last_modified_time": "2025-07-09T11:41:30.116419Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/19fca3ff-ca17-4b98-8829-2e515146efcf.png",
                    "cropping": "0,106,752,859",
                    "photographer_name": "",
                    "alt_text": "Musta välkkyvä lampun polttimo - logo, jossa onnellinen naama. Vihreällä teksti HERO, helsingin seudun erilaiset oppijat",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490155/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-30T08:15:59.188122Z",
            "last_modified_time": "2025-08-05T10:19:13.414234Z",
            "date_published": null,
            "start_time": "2025-10-09T14:00:00Z",
            "end_time": "2025-10-09T15: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,
            "description": {
                "fi": "<p>Tule Helsingin seudun erilaiset oppijat ry:n (HEROn) lukineuvontaan!</p><p><br></p><p>Haluatko tietoa lukivaikeuksista ja apuvälineistä, jotka helpottavat lukemista ja kirjoittamista? HERO:n maksuttomassa lukineuvonnassa saat asiantuntevaa ohjausta erityisopetuksen ammattilaisilta.</p><p>Löydät HEROn kirjaston aulatilasta tai muusta sille osoitetusta paikasta – etsi vihreä roll-up!</p><p>Tule keskustelemaan ja kuulemaan lisää oppimisesta sekä HERO:n toiminnasta. Nähdään kirjastossa!&nbsp;</p>",
                "sv": "<p>Dessutom får du bekanta dig med olika inlärningsspel som kan laddas ner till surfplatta eller dator.</p><p>Kom och diskutera eller lyssna på information om lärande samt bekanta dig med verksamheten vid Helsingforsregionens förening för olika inlärare (HERO).</p><p>Läsrådgivningen ges av våra specialpedagogiska experter och är kostnadsfri.</p>",
                "en": "<p>You can also explore various educational games that can be downloaded to a tablet or computer.</p><p>Come to chat or hear more about learning, and get to know the activities of the Helsinki Metropolitan Area Association for People with Learning Difficulties (HERO).</p><p>Our special education experts provide the reading guidance, and it is free of charge.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Neuvonnassa saat tietoa lukivaikeuksista, niiden tunnistamisesta sekä erilaisista lukemista ja kirjoittamista helpottavista apuvälineistä.",
                "sv": "Vid rådgivningen får du information om lässvårigheter, hur de kan identifieras samt om olika hjälpmedel som underlättar läsning och skrivning",
                "en": "At the guidance service, you can get information about reading difficulties, how to identify them, and various tools that support reading and writing."
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Lukineuvontaa  Entressen kirjastossa",
                "sv": "Läsrådgivning på biblioteket: Entresse",
                "en": "Reading guidance at the library: Entresse"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hive/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22hja4",
            "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:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490155,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T11:41:30.116405Z",
                    "last_modified_time": "2025-07-09T11:41:30.116419Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/19fca3ff-ca17-4b98-8829-2e515146efcf.png",
                    "cropping": "0,106,752,859",
                    "photographer_name": "",
                    "alt_text": "Musta välkkyvä lampun polttimo - logo, jossa onnellinen naama. Vihreällä teksti HERO, helsingin seudun erilaiset oppijat",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490155/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-30T08:13:56.817614Z",
            "last_modified_time": "2025-08-05T10:16:32.646914Z",
            "date_published": null,
            "start_time": "2025-09-16T14:00:00Z",
            "end_time": "2025-09-16T15: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,
            "description": {
                "fi": "<p>Tule Helsingin seudun erilaiset oppijat ry:n (HEROn) lukineuvontaan!</p><p><br></p><p>Haluatko tietoa lukivaikeuksista ja apuvälineistä, jotka helpottavat lukemista ja kirjoittamista? HERO:n maksuttomassa lukineuvonnassa saat asiantuntevaa ohjausta erityisopetuksen ammattilaisilta.</p><p>Löydät HEROn kirjaston aulatilasta tai muusta sille osoitetusta paikasta – etsi vihreä roll-up!</p><p>Tule keskustelemaan ja kuulemaan lisää oppimisesta sekä HERO:n toiminnasta. Nähdään kirjastossa!&nbsp;</p>",
                "sv": "<p>Dessutom får du bekanta dig med olika inlärningsspel som kan laddas ner till surfplatta eller dator.</p><p>Kom och diskutera eller lyssna på information om lärande samt bekanta dig med verksamheten vid Helsingforsregionens förening för olika inlärare (HERO).</p><p>Läsrådgivningen ges av våra specialpedagogiska experter och är kostnadsfri.</p>",
                "en": "<p>You can also explore various educational games that can be downloaded to a tablet or computer.</p><p>Come to chat or hear more about learning, and get to know the activities of the Helsinki Metropolitan Area Association for People with Learning Difficulties (HERO).</p><p>Our special education experts provide the reading guidance, and it is free of charge.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Neuvonnassa saat tietoa lukivaikeuksista, niiden tunnistamisesta sekä erilaisista lukemista ja kirjoittamista helpottavista apuvälineistä.",
                "sv": "Vid rådgivningen får du information om lässvårigheter, hur de kan identifieras samt om olika hjälpmedel som underlättar läsning och skrivning",
                "en": "At the guidance service, you can get information about reading difficulties, how to identify them, and various tools that support reading and writing."
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Lukineuvontaa  Tapiolan kirjastossa",
                "sv": "Läsrådgivning på biblioteket: Hagalund",
                "en": "Reading guidance at the library: Tapiola"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hja4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22hkju",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hjoi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hj4i/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490155,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T11:41:30.116405Z",
                    "last_modified_time": "2025-07-09T11:41:30.116419Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/19fca3ff-ca17-4b98-8829-2e515146efcf.png",
                    "cropping": "0,106,752,859",
                    "photographer_name": "",
                    "alt_text": "Musta välkkyvä lampun polttimo - logo, jossa onnellinen naama. Vihreällä teksti HERO, helsingin seudun erilaiset oppijat",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490155/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-30T08:04:56.878934Z",
            "last_modified_time": "2025-08-05T10:13:40.051266Z",
            "date_published": null,
            "start_time": "2025-11-12T15:00:00Z",
            "end_time": "2025-12-04T16: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,
            "description": {
                "fi": "<p>Tule Helsingin seudun erilaiset oppijat ry:n (HEROn) lukineuvontaan!</p><p><br></p><p>Haluatko tietoa lukivaikeuksista ja apuvälineistä, jotka helpottavat lukemista ja kirjoittamista? HERO:n maksuttomassa lukineuvonnassa saat asiantuntevaa ohjausta erityisopetuksen ammattilaisilta.</p><p>Löydät HEROn kirjaston aulatilasta tai muusta sille osoitetusta paikasta – etsi vihreä roll-up!</p><p>Tule keskustelemaan ja kuulemaan lisää oppimisesta sekä HERO:n toiminnasta. Nähdään kirjastossa!&nbsp;</p>",
                "sv": "<p>Dessutom får du bekanta dig med olika inlärningsspel som kan laddas ner till surfplatta eller dator.</p><p>Kom och diskutera eller lyssna på information om lärande samt bekanta dig med verksamheten vid Helsingforsregionens förening för olika inlärare (HERO).</p><p>Läsrådgivningen ges av våra specialpedagogiska experter och är kostnadsfri.</p>",
                "en": "<p>You can also explore various educational games that can be downloaded to a tablet or computer.</p><p>Come to chat or hear more about learning, and get to know the activities of the Helsinki Metropolitan Area Association for People with Learning Difficulties (HERO).</p><p>Our special education experts provide the reading guidance, and it is free of charge.</p>"
            },
            "location_extra_info": {
                "fi": "Aula"
            },
            "short_description": {
                "fi": "Neuvonnassa saat tietoa lukivaikeuksista, niiden tunnistamisesta sekä erilaisista lukemista ja kirjoittamista helpottavista apuvälineistä.",
                "sv": "Vid rådgivningen får du information om lässvårigheter, hur de kan identifieras samt om olika hjälpmedel som underlättar läsning och skrivning",
                "en": "At the guidance service, you can get information about reading difficulties, how to identify them, and various tools that support reading and writing."
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Lukineuvontaa Sellon kirjastossa",
                "sv": "Läsrådgivning på biblioteket: Sello",
                "en": "Reading guidance at the library: Sello"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hkju/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22hkxu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490155,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T11:41:30.116405Z",
                    "last_modified_time": "2025-07-09T11:41:30.116419Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/19fca3ff-ca17-4b98-8829-2e515146efcf.png",
                    "cropping": "0,106,752,859",
                    "photographer_name": "",
                    "alt_text": "Musta välkkyvä lampun polttimo - logo, jossa onnellinen naama. Vihreällä teksti HERO, helsingin seudun erilaiset oppijat",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490155/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-30T08:37:32.463595Z",
            "last_modified_time": "2025-08-05T10:04:32.554880Z",
            "date_published": null,
            "start_time": "2025-08-30T12:00:00Z",
            "end_time": "2025-08-30T13: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,
            "description": {
                "fi": "<p>Espoo-päivän yleisötilaisuus Entressen kirjastossa 30.8.25, klo 15:00–16:00.&nbsp;</p><p>&nbsp;</p><p>Espoo-päivän kunniaksi HERO tarjoaa kaikille espoolaisille ja kirjaston kävijöille, mutta myös satunnaisille ohikulkijoille asiantuntijaluennon oppimisen vaikeuksista ja monimuotoisesta oppimisesta.</p><p>Tervetuloa kuuntelemaan asiantuntija Aija Lundin luentoa&nbsp;Oppimisen vaikeudet: tunnistamisesta tukeen.</p><p>Luennon jälkeen ”oppimiskahvila” (yksilöllistä lukineuvontaa, ohjausta ja vastausta kuulijoiden kysymyksiin), klo 16:00–16:30.</p><p>Tilaisuuden kokonaiskesti on 1,5 h. Tilaisuus on maksuton.</p>"
            },
            "location_extra_info": {
                "fi": "Sininen huone"
            },
            "short_description": {
                "fi": "HERO tarjoaa asiantuntijaluennon oppimisen vaikeuksista ja monimuotoisesta oppimisesta."
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Tervetuloa Espoo-päivän juhlintaan Helsingin seudun erilaiset oppijat ry:n (HEROn) kanssa!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hkxu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66142",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:99/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1417602,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-05T09:12:54.012541Z",
                    "last_modified_time": "2025-08-05T09:12:54.012555Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772391.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1417602/?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-08-05T09:12:53.964140Z",
            "last_modified_time": "2025-08-05T09:12:54.088030Z",
            "date_published": null,
            "start_time": "2025-11-19T08:45: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.annantalo.fi/fi/tapahtumat/event/385425D066EA33A97A774A8D6A7A97EB/Lapset_soittavat_lapsille_-konsertti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/385425D066EA33A97A774A8D6A7A97EB/Lapset_soittavat_lapsille_-konsertti",
                "en": "http://www.annantalo.fi/en/events/event/385425D066EA33A97A774A8D6A7A97EB/Children_playing_for_children_-concert"
            },
            "description": {
                "fi": "<p>Itä-Helsingin musiikkiopiston oppilaat lavalla – tule mukaan nauttimaan IHMOn oppilaiden musiikin ilosta ja taitavasta musisoinnista.</p><p>Konsertissa kuulet monia eri soittimia, luvassa myös laulua ja leikkiä yhdessä yleisön kanssa. Konsertti soveltuu koko perheelle.</p><p>Ikäsuositus 2+<br>Kesto: 30 min<br>Kieli: suomi</p><p>Konsertti on maksuton, paikkavaraukset 19.10. alkaen kultus.fi</p>",
                "en": "<p>Students from the East Helsinki Music Institute on stage – come and feel the joy of IHMO student´s music and their skillful musicianship.</p><p>The concert will feature many different instruments, and there will also be singing and playing together with the audience. The concert is suitable for the whole family.</p><p>Free of charge, booking necessary: kultus.fi</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Itä-Helsingin musiikkiopiston oppilaat lavalla – tule mukaan nauttimaan IHMOn oppilaiden musiikin ilosta ja taitavasta musisoinnista.",
                "en": "Students from the East Helsinki Music Institute on stage – come and feel the joy of IHMO student´s music and their skillful musicianship."
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Lapset soittavat lapsille -konsertti",
                "sv": "Lapset soittavat lapsille -konsertti",
                "en": "Children playing for children -concert"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66142/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66141",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:99/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1417601,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-05T09:12:53.783261Z",
                    "last_modified_time": "2025-08-05T09:12:53.783273Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772390.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1417601/?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-08-05T09:12:53.726645Z",
            "last_modified_time": "2025-08-05T09:12:53.869452Z",
            "date_published": null,
            "start_time": "2025-11-19T07:30: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.annantalo.fi/fi/tapahtumat/event/F3E96B6B60FCC98F917FD342A5182254/Lapset_soittavat_lapsille_-konsertti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/F3E96B6B60FCC98F917FD342A5182254/Lapset_soittavat_lapsille_-konsertti",
                "en": "http://www.annantalo.fi/en/events/event/F3E96B6B60FCC98F917FD342A5182254/Children_playing_for_children_-concert"
            },
            "description": {
                "fi": "<p>Itä-Helsingin musiikkiopiston oppilaat lavalla – tule mukaan nauttimaan IHMOn oppilaiden musiikin ilosta ja taitavasta musisoinnista.</p><p>Konsertissa kuulet monia eri soittimia, luvassa myös laulua ja leikkiä yhdessä yleisön kanssa. Konsertti soveltuu koko perheelle.</p><p>Ikäsuositus 2+<br>Kesto: 30 min<br>Kieli: suomi</p><p>Konsertti on maksuton, paikkavaraukset 19.10. alkaen kultus.fi</p>",
                "en": "<p>Students from the East Helsinki Music Institute on stage – come and feel the joy of IHMO student´s music and their skillful musicianship.</p><p>The concert will feature many different instruments, and there will also be singing and playing together with the audience. The concert is suitable for the whole family.</p><p>Free of charge, booking necessary: kultus.fi</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Itä-Helsingin musiikkiopiston oppilaat lavalla – tule mukaan nauttimaan IHMOn oppilaiden musiikin ilosta ja taitavasta musisoinnista.",
                "en": "Students from the East Helsinki Music Institute on stage – come and feel the joy of IHMO student´s music and their skillful musicianship."
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Lapset soittavat lapsille -konsertti",
                "sv": "Lapset soittavat lapsille -konsertti",
                "en": "Children playing for children -concert"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66141/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22hsx4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hliq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hmda/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hm3i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hnty/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22holm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hpda/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hpz4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hqrq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hrji/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hsay/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490156,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-04T06:59:46.103389Z",
                    "last_modified_time": "2025-08-04T06:59:46.103403Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71caf056-7062-47d5-bae5-4bd345ae558e.jpg",
                    "cropping": "504,0,3528,3024",
                    "photographer_name": "",
                    "alt_text": "Dekkareita rivissä pöydällä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490156/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-05T09:01:48.945746Z",
            "last_modified_time": "2025-08-05T09:01:48.945764Z",
            "date_published": null,
            "start_time": "2025-08-07T12:00:00Z",
            "end_time": "2025-12-11T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "description": {
                "fi": "<p>Klubissa käymme vapaamuotoisia keskusteluja lennokkaasti aiheen vierestä puhuen. Pidätkö pehmodekkareista vai kylmästä kauhusta? &nbsp;Keräämme myös lehtileikkeitä ja seuraamme mitä dekkareita televisiossa näytetään.</p><p>Porukalla keskustellen on valittu kirjailijoita ja heiltä kultakin nimetty 2-3 kirjaa, jokainen tapaamiskerta on etukäteen teemoitettu: </p><p><br></p><p><strong> To 7.8.&nbsp;klo 15-17.&nbsp;Kesällä luettuja dekkareita.</strong></p><p>Maria Adolfsson: Doggerland-sarja: 1. \"Harha-askel\", 2. \"Myrskyvaroitus\",  \"Meren ja pirun välissä\".</p><p>&nbsp;</p><p><strong>To 21.8.&nbsp;klo 15-17. Nokkela ja hillitty dekkari.</strong></p><p>S.J. Bennett: Timanttitapaus, 2024 (Britannia) &nbsp;Freida McFadden: Kotiapulainen valvoo, 2024 (USA),&nbsp;&nbsp;\"Sarjamurhaajan tytär\", \"Työkaveri\".</p><p>&nbsp;</p><p><strong>To 4.9.&nbsp;klo 15-17. Cozy-Crime. Pehmodekkarit, murhat sivuroolissa.</strong></p><p>Richard Coles, luostari murhamysteeri&nbsp;kirjat -sarja, Daniel Clement rat-kaisee: \"Murha ennen iltahartautta\", \"Murha luostarissa\".</p><p>Nita Prose: \"Hotellivieras\". (kanadalainen)</p><p>Christoffer Holst (ruotsalainen)</p><p>&nbsp;</p><p><strong>To 18.9.&nbsp;klo 15-17. Islantilaiset dekkarit.</strong></p><p>Yrsa Sigurdardottir: romaanisarja (Freya ja Huldar, 6 kirjaa).&nbsp;\"Perimä\". Toinen romaanisarja (Musta jää-sarja): \"Muistan sinut\", 2022.</p><p>Lilja Sigurdardottir: \"Sysimusta kuilu\".</p><p>&nbsp;</p><p><strong>To 2.10.&nbsp;klo 15-17. Espanjalaiset jännityskirjat.</strong></p><p>Carlos Ruiz Zafón: 4 kirjan sarja. \"Tuulen varjo\", sykähdyttävä kirja.</p><p>&nbsp;</p><p><strong>To 16.10.&nbsp;klo 15-17. Englantilaiset dekkarit, synkkyyttä/kepeyttä.&nbsp;&nbsp;</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Kate Atkinson: etsivänä Jackson Brodie: \"Liian kirkas taivas\", \"kuolema kulkee kartanohotellissa\".</p><p>&nbsp;</p><p><strong>To 30.10.&nbsp;klo 15-17. Ruotsalaiset kirjasarjat.</strong></p><p> Viveca Sten: Åren murhat-sarja: 1. \"Lumen uhrit\".</p><p>&nbsp;Marianne Cedervall: Mullvaldsin murhat-sarja: 5. \"Viimeisen laulun kaiku\".</p><p>&nbsp;</p><p><strong>To 13.11.&nbsp;klo 15-17. Uusia suomalaisia dekkareita:</strong></p><p>Timo Sandberg (Lahti-sarja): 1. \"Mustamäki\", 8. \"Surmasatama\".</p><p>&nbsp;Martta Kaukonen: Terapiassa-trilogia 2021-2025.</p><p>&nbsp;Matti Laine (Kovaset-sarja): \"Isänsä tytär\"</p><p>&nbsp;</p><p><strong> TO 27.11.&nbsp;klo 15-17. Vakooja-dekkarit. Toimintathrillerit.</strong></p><p>Christian Rönnbacka: \"Hydra\" (Henna Björk 4.).</p><p>Harri Virtanen: \"Valaistunut tappaja\" (Joki-trilogia, 1. osa).</p><p><strong>&nbsp;</strong></p><p><strong>TO 11.12.&nbsp;klo 15-17. Keveyttä ja syvyyttä.</strong></p><p>Guillaume Musso: \"Joku toinen\", 2024 (ranskalainen)</p><p>&nbsp;Kate Atkinson: (ks. nro 6 syksyn listasta). (Britannia)</p><p>Bob Mortimer: Satsumakompleksi, 2022. (Britannia)</p><p>&nbsp;</p><p>Dekkarifanien ylläpitämä klubi joka toinen torstai kello klo 15-17, Ison Omenan kirjastossa, kokoushuone Aallossa.&nbsp;</p><p><br></p><p><br></p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Kokoushuone Aalto"
            },
            "short_description": {
                "fi": "Dekkarifanien ylläpitämä klubi joka toinen torstai kello klo 15-17, Ison Omenan kirjastossa, kokoushuone Aallossa. "
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Dekkariklubi Ison Omenan kirjastossa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hsx4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:27a59ecd-eb72-4c53-b15f-032a8a292e98",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:41419/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/7ebd1065-f24f-f011-877b-000d3ab0762c?readableEventId=695_muiden_ryhmien_tapahtuma_TESTAUKSEEN273216053"
                    },
                    "description": null,
                    "price": {
                        "fi": "0"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-08-05T05:30:05.271765Z",
            "last_modified_time": "2025-08-05T05:30:05.271784Z",
            "date_published": "2025-08-05T05:25:58Z",
            "start_time": "2025-08-31T05:00:00Z",
            "end_time": "2025-08-31T11: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": "2025-05-28T08:00:00+03:00",
            "enrolment_end_time": "2025-08-31T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "description": {
                "fi": "<div><p>Koko perheen iloinen &nbsp;laulu tapahtuma leikkipuisto Lammessa. Tarjolla laulua, liikuntaa, kasvomaalausta ja ilmainen kahvila/mehula.</p><p>Tarjolla. Mehua, kahvia, teetä ja vohveleita.</p></div>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Koko perheen iloinen laulu tapahtuma leikkipuisto Lammessa. Tarjolla laulua, liikuntaa, kasvomaalausta ja ilmainen kahvila/mehula."
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin kaupunki"
            },
            "name": {
                "fi": "#695 perheryhmien tapahtuma All-in-one"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:27a59ecd-eb72-4c53-b15f-032a8a292e98/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66753",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347620/",
                        "sv": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347620/",
                        "en": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347620/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 17,80 €",
                        "sv": "20 € / 17,80 €",
                        "en": "20 € / 17,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1255730,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T09:14:08.649845Z",
                    "last_modified_time": "2025-07-14T09:14:08.649865Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774906.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1255730/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T09:14:08.508444Z",
            "last_modified_time": "2025-08-04T15:14:34.471438Z",
            "date_published": null,
            "start_time": "2025-09-12T15: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.vuotalo.fi/fi/tapahtumat/event/D5CE02B8404B6EFCA1830B3657061B7D/Klubi-ilta_Atomirotta",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D5CE02B8404B6EFCA1830B3657061B7D/Klubi-ilta_Atomirotta",
                "en": "http://www.vuotalo.fi/en/events/event/D5CE02B8404B6EFCA1830B3657061B7D/Klubi-ilta_Atomirotta"
            },
            "description": {
                "fi": "<p>Atomirotta aloittaa jälleen Vuotalosta perinteisen Lähiö-kiertueensa!</p><p>”On suuri ilo ja kunnia jälleen startata Vuotalolta meidän perinteinen Lähiö-rundimme ja tietysti myös toimia legendaarisen venuen syyskauden itseoikeutettuna käyntiinpolkaisijana! Ja nämähän ovat aina todella upeita ja uniikkeja vetoja, koska perheen pienimmätkin pääsevät mukaan joraamaan! Hyvän mielen paikka numero yksi!”, yhtye iloitsee.</p><p>Ystävänpäivänä 2014 perustettu Atomirotta on alusta asti seurannut vanhaa hienoa viisautta: tekemällä oppii! Yhtye on pitänyt aina langat täysin omissa käsissään ja vaalinut tiukasti hienoa DIY-perinnettä.<br> <br>Vuonna 2025 on kulunut yksitoista vuotta: viisi albumia, lukuisia kulta- ja platinasinkkuja, oma levy-yhtiö, ohjelmatoimisto ja verkkokauppa sekä satoja räjäyttäviä keikkoja ennakkoluulottomasti kuumilta lähiöklubeilta aina suurimmille festarilavoille, joilla Atomirotalle on sementoitu maine yhtenä maamme kovimmista ja tinkimättömimmistä live-bändeistä!<br> <br>Kesto: 75 min (ei väliaikaa)<br>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa.<br>Sali avautuu klo 17.30.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille! <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/klubi-ilta-helsingin-kaupunki-nuorisolippu-vuotalo-20470579/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Atomirotta startar igen sin traditionella förortsturné från Nordhuset!</p><p>\"Det är ett stort nöje och en ära att återigen få starta vår traditionella förortsturné på Nordhuset och naturligtvis också att få vara den berättigade inledaren av den legendariska evenemangsplatsens höstsäsong! Och det här är alltid riktigt bra och unika evenemang, eftersom även de yngsta familjemedlemmarna kan vara med! Den främsta platsen för gott humör!\", säger bandet glatt.<br> <br>Atomirotta grundades på alla hjärtans dag 2014 och har alltid följt ett gammalt ordspråk: övning ger färdighet! Bandet har alltid hållit tyglarna helt i sina egna händer och har alltid strikt upprätthållit en fin DIY-tradition.<br> <br>År 2025 har elva år gått: fem album, många guld- och platinasinglar, eget skivbolag, artistförmedling och webbutik, och hundratals explosiva spelningar från heta förortsklubbar till de största festivalscenerna, vilket har cementerat Atomirottas rykte som ett av de tuffaste och mest kompromisslösa livebanden i landet!</p><p>Längd: 75 minuter (utan paus)<br>Klubbkväll: Café Pokkari står för serveringen, A-rättigheter. Under 18 år i sällskap med en vuxen.<br>Dörrarna till salen öppnas kl. 17.30.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!<br>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/klubi-ilta-helsingin-kaupunki-nuorisolippu-vuotalo-20470579/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Once again, Atomirotta will start their traditional Lähiö (‘Suburb’) tour at Vuotalo!</p><p>“It is a great pleasure and honour to once again start our traditional Lähiö tour at Vuotalo and, of course, to also be the self-appointed kickstarter of the autumn season of this legendary venue! And these are always really great and unique gigs, because even the youngest members of the family can join the fun! The number one feelgood place!” the band enthuses.<br> <br>Founded on Valentine’s Day 2014, Atomirotta has always followed a great old adage: you learn by doing! The band has always kept the reins completely in their own hands and has always strictly maintained a fine DIY tradition.<br> <br>In 2025, eleven years have passed: five albums, numerous gold and platinum singles, the band’s own record label, promotion agency and online store, and hundreds of explosive gigs with no prejudice from hot suburban clubs to the biggest festival stages, cementing Atomirotta’s reputation as one of the best and most uncompromising live bands in the country!</p><p>Duration: 75 min (no intermission)<br>Club night: catering by Café Pokkari, licensed to serve alcohol. People under the age of 18 must be accompanied by an adult.<br>The doors of the hall will open at 17.30.</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025! <br>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/klubi-ilta-helsingin-kaupunki-nuorisolippu-vuotalo-20470579/?affiliate=FSF\">HERE</a></u></p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Atomirotta aloittaa jälleen Vuotalosta perinteisen Lähiö-kiertueensa!",
                "sv": "Atomirotta startar igen sin traditionella förortsturné från Nordhuset!",
                "en": "Once again, Atomirotta will start their traditional Lähiö (‘Suburb’) tour at Vuotalo!"
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Klubi-ilta: Atomirotta",
                "sv": "Klubi-ilta: Atomirotta",
                "en": "Klubi-ilta: Atomirotta"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66753/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66815",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1411817,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-04T14:14:42.988433Z",
                    "last_modified_time": "2025-08-04T14:14:42.988452Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767429.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1411817/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-04T14:14:42.857069Z",
            "last_modified_time": "2025-08-04T14:14:43.158461Z",
            "date_published": null,
            "start_time": "2025-09-11",
            "end_time": "2025-10-04",
            "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.vuotalo.fi/fi/tapahtumat/event/117797951DECCAD454055484CF1E9B32/Sunny_Days",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/117797951DECCAD454055484CF1E9B32/Sunny_Days",
                "en": "http://www.vuotalo.fi/en/events/event/117797951DECCAD454055484CF1E9B32/Sunny_Days"
            },
            "description": {
                "fi": "<p>Kaarisillan media-alan ja kuvallisen ilmaisun opiskelijoiden ryhmänäyttely kertoo valoisista päivistä, joita ryhmä koki luokassa opiskellessaan.</p><p>Ryhmässä oli paljonkin keskustelua näyttelyn nimestä.  Kun kevättalvella kävimme tutustumassa Vuotalon näyttelytilaan, luonnehti joku ensimmäistä vaikutelmaansa siitä sanalla Avara. Toisena kannatuksen saaneena nimiehdotuksena oli Kaksi tilaa, joka kuvasi paitsi senhetkistä maalauksen tehtävänantoa Kaarisillassa, myös Vuotalon hienoa taidetilaa, joka muodostuu kahdesta eri osiosta, aulasta ja galleriasta.</p><p>Mutta viikkoja kului, alkoi tulla kevät. Seurasimme luokan ikkunoista, kuinka ulkona vuoroin satoi räntää, vuoroin paistoi aurinko ja välillä puhalsi kylmä viima saaden pienet muuttolinnut värisemään ja pörhistämään sulkaturkkiaan. Yhteisen elämän arkiasioiden ja havainnoinnin rinnalla tuleva näyttely ja nimijutut tuntuivat kovin kaukaiselta.</p><p>Sisällä lämpimässä keskustelimme kouluajasta, siitä millaista elämä ja opiskelu on Kaarisillassa ollut. Katsoimme taaksepäin kuluneita kuukausia ja ihmettelimme, kuinka on niin, että vaikka välillä tekeminen tuntuu junnaavan eikä mikään oikein huvita, on aika kuitenkin mennyt nopeasti. Jopa valoisasti. Tästä johtuikin puhe tulevaan näyttelyyn. Ja toisin kuin aikaisemmin, jolloin vähän jännittäen mietittiin teoksia tulevan paikan kautta, sen ehdoilla, haluttiinkin nyt esille laitettavilla töillä välittää katsojille juuri oman luokan ahkeraa, keskustelevaa ja iloista ilmapiiriä. Tuota fiilistä välitämme maalauksilla, grafiikalla, piirustuksilla, ehkä videoilla ja kolmiulotteisilla teoksilla.</p><p>Olkoon vaan ulkona kylmä, ja tulkoon vaan kaiken maailman pikkuharmeja, tai vähän isompiakin harmeja, niin meillä kuitenkin on luokassa omat työt, oma tukikohta, omat ihmiset ja - valoisat päivät - Sunny Days.</p>",
                "sv": "<p>Grupputställningen för Kaarisiltas studerande inom media och visuellt uttryck berättar om de ljusa dagar som gruppen upplevde under sina studier i klassrummet.</p><p>Det blev en hel del diskussioner i gruppen om namnet på utställningen. När vi besökte utställningslokalerna på Nordhuset i våras var det någon som beskrev sitt första intryck av lokalerna som ”Luftiga\". Det andra namnet som fick stöd var Två rum, som inte bara återspeglade det aktuella måleriuppdraget i Kaarisilla, utan också Nordhusets fina konstlokal, som består av två olika delar, aulan och galleriet.</p><p>Men allteftersom veckorna gick började våren komma. Vi såg från klassrumsfönstren hur det ibland töade, ibland sken solen och ibland kändes en kall bris som fick de små flyttfåglarna att fladdra och flaxa med fjädrarna. Den kommande utställningen och namngrejen kändes väldigt långt borta, vid sidan av det gemensamma livets vardag och observationer.</p><p>Inne i värmen pratade vi om vår skoltid, om hur livet och studierna på Kaarisilta har varit. Vi blickade tillbaka på de senaste månaderna och undrade hur det kommer sig att tiden har gått så fort, trots att saker och ting ibland verkar stå stilla och man inte riktigt känner för att göra något. Det hade rentav varit ljust. Därav samtalet om den kommande utställningen. Och till skillnad från tidigare, när verken var genomtänkta och på den framtida platsens villkor, ville man genom de nu utställda verken förmedla den arbetsamma, samtalande och glada atmosfären i klassrummet. Vi förmedlar den känslan genom målningar, grafik, teckningar, kanske videor och tredimensionella verk.</p><p>Oavsett om det är kallt ute, och oavsett om man har små eller stora bekymmer, har vi våra egna jobb, vår egen bas, våra egna människor och – ljusa dagar – Sunny Days i klassrummet.</p>",
                "en": "<p>This group exhibition by media and visual expression students of Kaarisilta tells the story of the bright days that the group experienced while studying in their classroom.</p><p>There was quite a lot of discussion in the group about the name of the exhibition. When we visited the Vuotalo exhibition space in the spring, someone described their first impression of it with the word Open. Another name proposal that received support was Two Spaces, which reflected not only the current painting assignment at Kaarisilla, but also Vuotalo’s fine art space, which consists of two different sections, a lobby and a gallery.</p><p>But as the weeks passed, spring drew near. We watched from the classroom windows as the weather varied between sleet and sunshine, and sometimes a cold breeze would blow and make the small migratory birds tremble and puff up their feathers. Next to the everyday tasks and observations of our shared life, the upcoming exhibition and its name felt very distant.</p><p>In the warm indoors, we talked about our school days, what life and studying at Kaarisilta have been like. We looked back on the past few months and wondered how it is that, even though sometimes things may seem stagnant and nothing really interests us, time has gone by so fast. Even sunnily. This led us to talk about the upcoming exhibition. And unlike before, when we were thinking about the works with slight nervousness in terms of the upcoming location, we now wanted the works on display to convey to the viewers the industrious, conversational and joyful atmosphere in the classroom. We will convey that feeling through paintings, graphics, drawings, perhaps videos and three-dimensional works.</p><p>No matter if it is cold outside and no matter what minor or even major setbacks we face, we will have our own works, our own base, our own people – and sunny days – in the classroom.</p>"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Kaarisillan media-alan ja kuvallisen ilmaisun opiskelijoiden ryhmänäyttely kertoo valoisista päivistä, joita ryhmä koki luokassa opiskellessaan.",
                "sv": "Grupputställningen för Kaarisiltas studerande inom media och visuellt uttryck berättar om de ljusa dagar som gruppen upplevde under sina studier i klassrummet.",
                "en": "This group exhibition by media and visual expression students of Kaarisilta tells the story of the bright days that the group experienced while studying in their classroom."
            },
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Sunny Days – Kaarisillan media-alan ja kuvallisen ilmaisun opiskelijat",
                "sv": "Sunny Days – Studenter från medieområdet och visuellt uttryck vid Kaarisilta",
                "en": "Sunny Days – Media and visual expression students of Kaarisilta"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66815/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}