Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 33065,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=38&show_all=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=36&show_all=true"
    },
    "data": [
        {
            "id": "kulke:66998",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3971894",
                        "sv": "https://www.lippu.fi/eventseries/name-3971894",
                        "en": "https://www.lippu.fi/eventseries/name-3971894"
                    },
                    "price": {
                        "fi": "29,90 / 33.90 €",
                        "sv": "29,90 / 33.90 €",
                        "en": "29,90 / 33.90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490701,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-09T09:14:27.775714Z",
                    "last_modified_time": "2025-09-09T09:14:27.775732Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777414.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490701/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-09T09:14:27.639670Z",
            "last_modified_time": "2026-04-08T11:13:41.712706Z",
            "date_published": null,
            "start_time": "2026-04-23T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/97927E539CB06E6D5F7F5D9D284D598E/Levi_Sct",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/97927E539CB06E6D5F7F5D9D284D598E/Levi_Sct",
                "en": "http://www.savoyteatteri.fi/en/events/event/97927E539CB06E6D5F7F5D9D284D598E/Levi_Sct"
            },
            "provider": {
                "fi": "Live Nation Finland Oy",
                "sv": "Live Nation Finland Oy",
                "en": "Live Nation Finland Oy"
            },
            "description": {
                "fi": "<p>Klassisen musiikin ja hiphopin yhdistävä pianistitähti Levi.Sct keväällä Helsinkiin</p><p>Runsaasti huomiota sosiaalisessa mediassa herättänyt ja yli miljoona Instagram-seuraajaa kartuttanut pianistilahjakkuus <b>Levi.Sct</b> konsertoi Helsingin Savoy-teatterissa torstaina 23.4.2026!.</p><p>Levi.Sct (Levi Schechtmann, syntynyt 1999) on genrerajoja rikkova saksalainen pianisti, joka yhdistelee ennakkoluulottomasti musiikkityylejä ja uudistaa samalla klassisen musiikin konserttikokemusta. Hän yhdistää Bachin ja Chopinin luomat musiikilliset maailmat nykyaikaisiin vaikutteisiin, kuten hiphopin ja housen rytmeihin. Tuloksena on rohkea, elokuvallinen ja mukaansatempaava äänimaisema.</p><p>Sukupolvensa seuratuimpien pianistilahjakkuuksien joukkoon noussut Levi.Sct on herättänyt huomiota sosiaalisessa mediassa ja kerännyt lyhyessä ajassa Instagramissa yli 1,2 miljoonaa seuraajaa. Vasta uransa ensiaskelia ottava artisti on jo ehtinyt esiintyä Hampurin Elbphilharmonien ja Brysselin Flageyn kaltaisissa maineikkaissa konserttisaleissa. Artisti on saanut kiitosta esiintymisistään, joiden intensiivisyys ja immersiivisyys tuo klassiseen musiikkiin uudenlaista energiaa.</p><p>Ovet aukeavat klo 18.</p><p>LIPUT:<br>Myynnissä perjantaina 12.9.2025 klo 11 osoitteessa lippu.fi<br>Hinta alkaen 29,90 € sisältäen palvelumaksun, tilauskulut alk. 1,50 € + 0,65 % tilauksesta</p><p><i>Mastercardin kortinhaltijoilla on pääsy tapahtuman ennakkomyyntiin Suomessa ke 10.9. klo 10:00 – pe 12.9. klo 10:00 välisenä aikana. Lue lisää osoitteessa https://www.priceless.com/music </i></p>",
                "sv": "<p>Stjärnpianisten Levi.Sct, som kombinerar klassisk musik och hiphop, kommer till Helsingfors i vår</p><p>Den begåvade pianisten Levi.Sct, som har väckt stor uppmärksamhet på sociala medier och har över en miljon följare på Instagram, ger en konsert på Savoy-teatern i Helsingfors torsdagen den 23 april 2026!</p><p>Levi.Sct (Levi Schechtmann, född 1999) är en genreöverskridande tysk pianist som kombinerar olika musikstilar på ett fördomsfritt sätt och samtidigt förnyar konsertupplevelsen inom klassisk musik. Han kombinerar de musikaliska världar som Bach och Chopin skapat med samtida influenser som hiphop- och houserytmer. Resultatet är ett djärvt, filmiskt och medryckande ljudlandskap.</p><p>Levi.Sct har blivit en av de mest följda pianotalangerna i sin generation och har väckt uppmärksamhet på sociala medier med över 1,2 miljoner följare på Instagram på kort tid. Artisten, som ännu bara tagit de första stegen i sin karriär, har redan uppträtt i prestigefyllda konsertsalar som Elbphilharmonie i Hamburg och Flagey i Bryssel. Artisten har hyllats för sina framträdanden, vars intensitet och immersivitet ger klassisk musik en ny slags energi.</p><p>Dörrarna öppnas kl. 18.</p>",
                "en": "<p>Levi.Sct, a star pianist combining classical music and hip hop, to perform in Helsinki in spring</p><p>The talented pianist Levi.Sct, who has attracted a lot of attention on social media and has amassed over a million Instagram followers, will give a concert at the Savoy Theatre in Helsinki on Thursday 23 April 2026.</p><p>Levi.Sct (Levi Schechtmann, b. 1999) is a genre-bending German pianist who combines musical styles in an open-minded way while reforming experiences of classical music concerts. He combines the musical worlds created by Bach and Chopin with contemporary influences, such as hip hop and house rhythms. The result is a bold, cinematic and immersive soundscape.</p><p>Levi.Sct, who has become one of the most followed piano talents of his generation, has attracted attention on social media, amassing over 1.2 million followers on Instagram in a short period of time. The artist, who is just taking the first steps in his career, has already performed in prestigious concert halls such as the Elbphilharmonie in Hamburg and the Flagey in Brussels. The artist has been praised for his performances, which bring a new energy to classical music through their intense and immersive nature.</p><p>Doors open at 18:00.</p>"
            },
            "short_description": {
                "fi": "Klassisen musiikin ja hiphopin yhdistävä pianistitähti Levi.Sct keväällä Helsinkiin",
                "sv": "Stjärnpianisten Levi.Sct, som kombinerar klassisk musik och hiphop, kommer till Helsingfors i vår",
                "en": "Levi.Sct, a star pianist combining classical music and hip hop, to perform in Helsinki in spring"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Levi.Sct",
                "sv": "Levi.Sct",
                "en": "Levi.Sct"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66998/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68385",
            "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:602/?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:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1803579,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-08T11:13:40.109872Z",
                    "last_modified_time": "2026-04-08T11:13:40.109890Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787930.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1803579/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-08T11:13:39.964951Z",
            "last_modified_time": "2026-04-08T11:13:40.299884Z",
            "date_published": null,
            "start_time": "2026-04-21T14:00:00Z",
            "end_time": "2026-04-21T17: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/DAED8C0AAC8B1071C684CF2570B729CC/Helsingin_Pyorapajan_mobiilipaja",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/DAED8C0AAC8B1071C684CF2570B729CC/Helsingin_Pyorapajan_mobiilipaja",
                "en": "http://www.vuotalo.fi/en/events/event/DAED8C0AAC8B1071C684CF2570B729CC/Helsingin_Pyorapajan_mobiilipaja"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tule opettelemaan pyöränkorjausta ja huoltamaan polkupyöräsi maksuttomassa tee se itse työpajassa.</p><p>Tule opettelemaan pyöränkorjausta ja huoltamaan polkupyöräsi Helsingin pyöräpajan järjestämässä maksuttomassa tee se itse työpajassa.</p><p>Mobiilipaja tuo paikalle pyöränhuollossa yleisimmin tarvittavat työkalut, aineet ja osat.</p><p>Vapaaehtoisemme opastavat ja auttavat tarvittaessa.</p><p>Paikka: Vuotalon piha</p><p>Kieli: suomi, englanti</p><p>Vapaa pääsy</p>"
            },
            "short_description": {
                "fi": "Tule opettelemaan pyöränkorjausta ja huoltamaan polkupyöräsi maksuttomassa tee se itse työpajassa."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Helsingin Pyöräpajan mobiilipaja – Vuotalon Ekoviikko",
                "sv": "Helsingin Pyöräpajan mobiilipaja – Vuotalon Ekoviikko",
                "en": "Helsingin Pyöräpajan mobiilipaja – Vuotalon Ekoviikko"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68385/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68357",
            "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:602/?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:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1791990,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-02T10:12:54.836565Z",
                    "last_modified_time": "2026-04-02T10:12:54.836581Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787786.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1791990/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-02T10:12:54.575454Z",
            "last_modified_time": "2026-04-08T10:13:39.491871Z",
            "date_published": null,
            "start_time": "2026-04-20T05:00:00Z",
            "end_time": "2026-04-25T13: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/7AFF5B936612D61141DB97449A18399D/Vuotalon_Ekoviikko"
            },
            "provider": null,
            "description": {
                "fi": "<p>Rakenna linnunpönttö, tee löytöjä kulttuurikirppiksessä tai osallistu muihin Vuotalon Ekoviikon työpajoihin ja tapahtumiin!</p><p>Vuotalon Ekoviikolla voit osallistua linturetkelle, huoltaa polkupyöräsi sekä tutustua Helsingin jätteiden historiaan. Maanantaista lauantaihin jatkuva Ekoviikko tarjoilee monenlaisia työpajoja ja tapahtumia lapsille, nuorille ja aikuisille ympäri kulttuurikeskusta. Lisätietoja yksittäisistä tapahtumista löydät Vuotalo.fi-tapahtumakalenterista hakusanalla Vuotalon Ekoviikko. Kaikki tapahtumat ovat maksuttomia pois lukien Mimmit & Luonnonsuojelun supersankarit -konsertit.</p><p>EKOVIIKON TAPAHTUMAT</p><p>Ma 20.4. klo 16–18 Nuorten suunnittelema ekoaiheinen Kierrätyskeskuksesta hankittujen ruukkujen koristelutyöpaja (Vuotalon aula)</p><p>Ma 20.4. klo 18–20 Linturetki Broändan purolaaksoon <br>Keväisellä retkellä bongataan lintuja ja kuullaan alueen historiallisista muinaisjäännöksistä, kuten vanhasta rajakivestä sekä Vartioharjun linnavuoresta. Lähtö ja paluu Kallvikintien ja Broändan puron risteyksestä. Ei ennakkoilmoittautumista.</p><p>Ti 21.4. klo 15–18.15 Kierrätä pitsejä (Vuotalon aula)<br>Työpajassa pohditaan käyttöä kierrätyspitseille kirjoen ja askarrellen. Tule kokeilemaan mahdollisuuksia ja ideoimaan käyttökohteita. Ei ennakkoilmoittautumista.</p><p>ti 21.4. klo 16–20 ja ke 22.4. klo 16–20 Ympäristöviikon linnunpönttöpajat (Vuotalon K-kerroksen puupaja)<br>Tule auttamaan lintuja ja rakentamaan linnunpönttö oman lapsen tai nuoren, kaverin kersan tai vaikka lapsenlapsen kanssa!</p><p>Ti 21.4. klo 17–20 Helsingin Pyöräpajan mobiilipaja  <br>Tule opettelemaan pyöränkorjausta ja huoltamaan polkupyöräsi Helsingin pyöräpajan järjestämässä maksuttomassa tee se itse työpajassa.</p><p>Ke 22.4. klo 15–16 Ekoteemainen koululaiskeskiviikko, kirjaston lastenalue</p><p>Ke 22.4. klo 15–19 Neuvontaa ja vinkkejä ympäristöystävällisempään arkeen (Vuosaaren kirjaston aula)</p><p>Ke 22.4. klo 16–16.45 Opastus Roskaa! -näyttelyyn sekä uusittuihin kirjastotiloihin <br>Yleisöopastuksella tutustutaan yhdessä oppaan johdolla Roskaa! -näyttelyyn. Näyttelyopastuksen jälkeen teemme kierroksen kirjaston uusituissa tiloissa.</p><p>Ke 22.4. klo 17–18 Luento: Kuopat, kummut ja roskispalot – Helsingin jätteiden historiaa (Vuosaaren kirjaston stage)<br>Miten Helsingin kaupungissa käsiteltiin ja käsitellään jätettä ennen ja nyt?  Aiheesta puhuu Helsingin kaupunginmuseon Roskaa!-näyttelyn tuottaja, museolehtori Magnus Rask.</p><p>Pe 24.4. klo 10–11.30 Kirjaston pienten aamu luontoteemalla</p><p>La 25.4. klo 10–16 Vuotalon Ekolauantai (Vuotalon aula ja yläpiha)</p><p>klo 10–13.30 Kulttuurikirpputori <br>klo 10–15 Vuosaaren yhteiset roskatalkoot <br>klo 10–13.30 Nuorten suunnittelemat työpajat (taimien istutus ja ympäristöaiheinen visa)<br>klo 10 – 13:30 Mainiot materiaalit: askartelumassaa hedelmänkuorista <br>klo 10–13  MLL Vuosaaren yhdistyksen Kierrätysonnenpyörä ja vohvelien paistamista (Vuotalon yläpiha)<br>klo 15–16 Mimmit & Luonnonsuojelun supersankarit LOPPUUNMYYTY ja klo 17–18 Mimmit på svenska -konsertit Vuosalissa <br> <br>Näiden Ekoviikon tapahtumien lisäksi voit koko viikon ajan tutustua kirjastossa ekoaiheiseen kirjanäyttelyyn. Vuotalon aulassa Roskaa! – mitä jätämme jälkeemme Helsingin kaupunginmuseon kierrätysaiheinen näyttely 23.5.2026 asti.</p><p>Tapahtuma on osa Week17 / Viikko17 ekoviikkoa. Viikko17 on kansainvälinen kirjastojen teemaviikko, jonka aikana nostetaan esille YK:n kestävän kehityksen 17 globaalia tavoitetta.</p>"
            },
            "short_description": {
                "fi": "Rakenna linnunpönttö, tee löytöjä kulttuurikirppiksessä tai osallistu muihin Vuotalon Ekoviikon työpajoihin ja tapahtumiin!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vuotalon Ekoviikko"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68357/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68382",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1803409,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-08T09:13:55.174345Z",
                    "last_modified_time": "2026-04-08T09:13:55.174362Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786112.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1803409/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-08T09:13:55.044049Z",
            "last_modified_time": "2026-04-08T09:13:55.344540Z",
            "date_published": null,
            "start_time": "2026-05-11T14: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.kanneltalo.fi/fi/tapahtumat/event/D376E4A3BCA62F0F2BB507ADBBB7AEC0/Maksuttomat_maanantait_Tuu_laulamaan_suomeksi",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D376E4A3BCA62F0F2BB507ADBBB7AEC0/Maksuttomat_maanantait_Tuu_laulamaan_suomeksi",
                "en": "http://www.kanneltalo.fi/en/events/event/D376E4A3BCA62F0F2BB507ADBBB7AEC0/Maksuttomat_maanantait_Tuu_laulamaan_suomeksi"
            },
            "provider": null,
            "description": {
                "fi": "<p>Perheille suunnatut tapaamiset, jossa musiikin ja kuvan kautta jaetaan kokemuksia suomen kielestä ja kulttuurista sekä tutustutaan vuorovaikutteisesti suomalaiseen kulttuuriin.</p><p>Päämääränä on kutkuttaa osallistujan luontaista ilmaisua laulun ja piirtämisen kautta, tukea suomen kielen ja kulttuurin oppimista. Työpajoissa rakennetaan siltoja kulttuurien ja kielten välille.<br> <br>Noin tunnin kestävä hetki koostuu monenlaisista suomeksi laulettavista lauluista, jotka käsittelevät arjen perussanastoa. Hetkeen kuuluu kansanlauluja, ikivihreitä ja tämän päivän lauluja tunteista, vuodenajoista ja arjen askareista. Laulamalla tuetaan kieleen ja kulttuuriin tutustumista.</p><p>Myös kuvat opettavat sanoja suomalaisesta kulttuurista Sarin live-piirtäessä laulujen teemasanoja näkyviin. Sanoja saa kuvittaa myös itse, niiden avulla voi oivaltaa sanoitusta ja olla mukana lauluissa pienelläkin kielitaidolla. <br> <br>Hetkien vetäjinä ovat muusikko Mari Kätkä ja kuvittaja Sari Airola, jotka ovat pitkänlinjan toimijoita yhteisöllisissä taidehetkissä, jotka yhdistävät elävän musiikin ja kuvituksen.</p><p>Tilaisuudessa mehutarjoilu.</p><p>Esiintyjien verkkosivut ja some-tilit<br>www.marikatka.fi ja IG: @mari.katka<br>www.sariairola.com ja IG: @illustrationairola</p>"
            },
            "short_description": {
                "fi": "Perheille suunnatut tapaamiset, jossa musiikin ja kuvan kautta jaetaan kokemuksia suomen kielestä ja kulttuurista sekä tutustutaan vuorovaikutteisesti suomalaiseen kulttuuriin."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Maksuttomat maanantait: Tuu laulamaan suomeksi",
                "sv": "Maksuttomat maanantait: Tuu laulamaan suomeksi",
                "en": "Maksuttomat maanantait: Tuu laulamaan suomeksi"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68382/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67972",
            "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/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4054707",
                        "sv": "https://www.lippu.fi/eventseries/name-4054707",
                        "en": "https://www.lippu.fi/eventseries/name-4054707"
                    },
                    "price": {
                        "fi": "15 €",
                        "sv": "15 €",
                        "en": "15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494662,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-28T13:13:15.525082Z",
                    "last_modified_time": "2026-01-28T13:13:15.525095Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777529.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494662/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-28T13:13:15.351825Z",
            "last_modified_time": "2026-04-08T09:13:46.349008Z",
            "date_published": null,
            "start_time": "2026-04-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/D4852ABC264EA1D278E1DF3951F859B5/Hilja_Gronfors_Trio",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D4852ABC264EA1D278E1DF3951F859B5/Hilja_Gronfors_Trio",
                "en": "http://www.vuotalo.fi/en/events/event/D4852ABC264EA1D278E1DF3951F859B5/Hilja_Gronfors_Trio"
            },
            "provider": null,
            "description": {
                "fi": "<p>Hilja Grönfors on nimi, johon nykypäivänä henkilöityy Suomen romanimusiikki.</p><p>Hän on maamme kansanmusiikin kentällä ainutlaatuinen laulujen aarreaitta, joka asiantuntijana tuntee tarkkaan esittämänsä lauluston tyylipiirteet ja kulttuuriset taustat. Hän on elänyt ja hengittänyt yhteisönsä musiikkia lapsesta saakka aikana, jolloin romanikulttuuriin kuului jatkuva liikkuminen kärryillä, ja laulut kuuluivat elämäntapaan erottamattomasti.<br> <br>Hilja Grönfors syntyi vuonna 1952 Pohjois-Karjalan Juuassa perinteiseen romaniperheeseen, joka 60-luvulle asti hankki elantonsa kiertelemällä talosta taloon kausitöiden ja hevostalouden taitajina. Perhe arvosti koulutusta, ja Hilja kävi kansakoulunsa isovanhempiensa kotoa käsin alusta loppuun. 70-luvulla koko perhe muutti Ruotsiin, jossa Hilja asui 15 vuotta.<br> <br>Suomeen palattuaan Hilja perusti ensimmäisen oman yhtyeensä 90-luvun lopussa ja levytti esikoisalbuminsa ” Phurano Mirits ” Maailman musiikin keskuksen tuottamana. Hänen toinen levynsä ” Kai tu Dzaha? ” palkittiin Etno-Emmalla. Kaikkiaan kolme pitkäsoittoa julkaissut Hilja esittää nykyään perinteistä romanimusiikkia niin suomalaisilla kuin kansainvälisilläkin maailmanmusiikin festivaaleilla.<br> <br>Kotimaan lisäksi hän on esiintynyt Ruotsissa, Alankomaissa, Ranskassa, Saksassa, Tsekissä, Unkarissa ja Yhdysvalloissa.<br> Pohjois-Karjalaan, Savoon, Pohjanmaalle ja Keski-Suomeen tekemillään perinteenkeruumatkoilla Hilja on tallettanut runsaat kolmesataa romanilaulua. Hänen sitkeä työnsä jo miltei katoamassa olleen perinteen elvyttämiseksi on palkittu valtion Suomi-palkinnolla 2014.<br> <br>Hilja Grönforsin pyyteetön työ sai Suomessa korkeimman akateemisen tunnustuksen vuonna 2024 kun hänet vihittiin kunniatohtoriksi, ja hän sai samana vuonna akateemikon arvonimen. Kansainvälisestikin harvinainen tunnustus on saajalleen ansaittu, ja merkittävä koko suomalaiselle romaniyhteisölle ja -kulttuurille!<br>Kesto: 2 t sis. väliajan.</p><p>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa.</p>",
                "sv": "<p>Hilja Grönfors är ett namn som i dag personifierar den romska musiken i Finland.</p><p>Hon är en unik skattkammare av sånger från folkmusikfältet i vårt land, och i egenskap av expert känner hon till stildragen och de kulturella bakgrunderna hos de sånger hon framför. Hon har levt och andats musiken i sin gemenskap sedan barndomen under en tid när det hörde till den romska kulturen att ständigt vara i rörelse i vagnar, och sångerna var en oskiljbar del av livsstilen.<br> <br>Hilja Grönfors föddes 1952 i Juga i Norra Karelen i en traditionell romsk familj, som fram till 60-talet försörjde sig genom att resa runt från gård till gård och arbeta med säsongsarbete och hästskötsel. Familjen värdesatte utbildning, och Hilja kunde gå hela folkskolan genom att bo hos släktingar. På 70-talet flyttade hela familjen till Sverige, där Hilja bodde i 15 år.<br> <br>Efter återkomsten till Finland grundade Hilja i slutet av 90-talet sitt första band och spelade in sitt första album Phurano Mirits, som producerades av Maailman musiikin keskus. Hennes andra skiva, Kai tu Dzaha, belönades med en Etno-Emma. Hilja har numera gett ut sammanlagt tre album och uppträder med traditionell romsk musik på både finländska och internationella festivaler för världsmusik.<br> <br>Förutom i Finland har hon uppträtt i Sverige, Nederländerna, Frankrike, Tyskland, Tjeckien, Ungern och USA. Hilja har också rest runt i Norra Karelen, Savolax, Österbotten och Mellersta Finland för att samla in traditioner, och har spelat in drygt trehundra romska sånger. För sitt ihärdiga arbete för att återuppliva en nästan utdöd tradition belönades hon med statens Finlandspris 2014.<br> <br>Hilja Grönfors uppoffrande arbete fick det högsta akademiska erkännandet i Finland år 2024, då hon utsågs till hedersdoktor, och samma år fick hon hederstiteln akademiker. Detta erkännande, som är sällsynt även internationellt, var mycket välförtjänt och betydande för hela den romska gemenskapen och kulturen i Finland.<br>Längd: 2 h inklusive paus</p>",
                "en": "<p>Hilja Grönfors is a name synonymous with contemporary Finnish Roma music.</p><p>She draws on her unique treasure trove of songs in the Finnish folk music genre and is well-versed in the stylistic characteristics and cultural background of the songs that she performs. She has been living and breathing the music of her community since she was born in a time when the Roma culture was associated with transient lifestyles, and songs were an inseparable part of life.<br> <br>Hilja Grönfors was born in 1952 in Juuka in North Karelia to a traditional Roma family, who made their living in the traditional way by moving from house to house doing seasonal and horse and stable management work until the 1960s. The family valued education, and Hilja completed primary school while living with her grandparents. In the 1970s, the family moved to Sweden, where Hilja lived for 15 years.<br> <br>After returning to Finland, Hilja started her first band in the late 90s and recorded her debut album Phurano Mirits produced by the Global Music Centre. Her second album Kai tu Dzaha? won the Etno-Emma award. Hilja, who has published three long play albums, now performs traditional Roma music at both Finnish and international world music festivals.<br> <br>In addition to Finland, she has performed in Sweden, the Netherlands, France, Germany, the Czech Republic, Hungary and the United States. During her folklore collection trips in North Karelia, Savonia, Ostrobothnia and Central Finland, Hilja has recorded some 300 Roma songs. Her tenacious work to revive the nearly extinct tradition was recognised by the Ministry of Education and Culture with the Finland Prize in 2014.<br> <br>Hilja Grönfors’s selfless work was given the most distinguished academic honour in Finland in 2024 when she was made honorary doctor and when she was given the honorary title of Academician of Arts that same year. This well-deserved honour is exceptional even on a global scale, and it is very significant in terms of the Roma community and culture in Finland at large!<br>Duration: 2 h, incl. intermission</p>"
            },
            "short_description": {
                "fi": "Hilja Grönfors on nimi, johon nykypäivänä henkilöityy Suomen romanimusiikki.",
                "sv": "Hilja Grönfors är ett namn som i dag personifierar den romska musiken i Finland.",
                "en": "Hilja Grönfors is a name synonymous with contemporary Finnish Roma music."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Hilja Grönfors Trio – Klubi-ilta",
                "sv": "Hilja Grönfors Trio – Klubi-ilta",
                "en": "Hilja Grönfors Trio – Klubi-ilta"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67972/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhteua",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15355/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824125,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-07T08:57:30.806715Z",
                    "last_modified_time": "2026-04-07T08:57:30.806730Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e0c54a3c-617e-4caf-9757-3b674c962a4c.jpg",
                    "name": "",
                    "cropping": "236,0,844,608",
                    "photographer_name": "Laura H.",
                    "alt_text": "Välkky kirjastoauto sisältä, kuvassa aurinko paistaa kirjoihin, jotka on laitettu esille seinätelineisiin.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824125/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-04-07T08:59:29.072489Z",
            "last_modified_time": "2026-04-08T09:06:40.896789Z",
            "date_published": "2026-04-07T08:46:00Z",
            "start_time": "2026-04-12T07:00:00Z",
            "end_time": "2026-04-12T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": {
                "fi": "Kilonpuiston koulu",
                "sv": "Kilonpuiston koulu",
                "en": "Kilonpuiston koulu"
            },
            "description": {
                "fi": "<p>Espoon kirjasto- ja kulttuuriauto Välkky on mukana Kilonpuiston Aprilliriehassa!</p><p>Tervetuloa lainaamaan ja palauttamaan kirjoja, tai ihan vain lueskelemaan, tai tutustumaan vähän erilaiseen kirjastoon!</p><p>Voit lainata aineistoa Helmet-kirjastokortilla ja palauttaa kirjat mihin tahansa Helmet-kirjastoon. Jos sinulla ei ole vielä kirjastokorttia, teemme sen sinulle. Ota henkkarit mukaan.</p>",
                "sv": "<p>Välkommen att låna och återlämna böcker, eller bara läsa, eller utforska ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och återlämna böcker till vilket Helmet-bibliotek som helst. Om du inte har ett bibliotekskort än, så gör vi ett åt dig. Ta med din legitimation.</p>",
                "en": "<p>Welcome to borrow and return books, or just read, or explore a slightly different library!</p><p>You can borrow materials with your Helmet library card and return books to any Helmet library. If you don't have a library card yet, we will make one for you. Bring your ID.</p>"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Välkky Kilonpuiston aprilliriehassa",
                "sv": "Välkky på Kilonpuiston aprillirieha",
                "en": "Välkky at Kilonpuiston aprillirieha"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhteua/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjj3vy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj6bm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-01-07T12:23:09.006114Z",
            "last_modified_time": "2026-04-08T09:01:56.545693Z",
            "date_published": null,
            "start_time": "2026-04-17T10:00:00Z",
            "end_time": "2026-04-17T11:15: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://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä perjantaina klo 13 - 14:15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "sv": "<p>Välkky kör till Karakallios invånarpark! En gång i månaden kl. 13.00 - 14.15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "en": "<p>Välkky arrives at the Karakallio residents' park! Once a month at 13:00 - 14:15.</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "name": {
                "fi": "Välkky Karakallion asukaspuistossa",
                "sv": "Välkky på Karakallios invånarpark",
                "en": "Välkky at Karakallio residents' park"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj3vy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjj3a4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj6bm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-01-07T12:23:09.185188Z",
            "last_modified_time": "2026-04-08T09:01:56.507051Z",
            "date_published": null,
            "start_time": "2026-05-15T10:00:00Z",
            "end_time": "2026-05-15T11:15: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://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä perjantaina klo 13 - 14:15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "sv": "<p>Välkky kör till Karakallios invånarpark! En gång i månaden kl. 13.00 - 14.15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "en": "<p>Välkky arrives at the Karakallio residents' park! Once a month at 13:00 - 14:15.</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "name": {
                "fi": "Välkky Karakallion asukaspuistossa",
                "sv": "Välkky på Karakallios invånarpark",
                "en": "Välkky at Karakallio residents' park"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj3a4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjj6bm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj3a4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj3vy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj4im/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj43e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj5oq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-01-07T12:23:07.300657Z",
            "last_modified_time": "2026-04-08T09:01:56.080395Z",
            "date_published": null,
            "start_time": "2026-01-09T11:00:00Z",
            "end_time": "2026-05-15T11: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": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä perjantaina klo 13 - 14:15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "sv": "<p>Välkky kör till Karakallios invånarpark! En gång i månaden kl. 13.00 - 14.15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "en": "<p>Välkky arrives at the Karakallio residents' park! Once a month at 13:00 - 14:15.</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "name": {
                "fi": "Välkky Karakallion asukaspuistossa",
                "sv": "Välkky på Karakallios invånarpark",
                "en": "Välkky at Karakallio residents' park"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj6bm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjjx7a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj2oi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-01-07T12:25:44.982873Z",
            "last_modified_time": "2026-04-08T09:00:53.964132Z",
            "date_published": null,
            "start_time": "2026-04-13T10:00:00Z",
            "end_time": "2026-04-13T11:15: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://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle viitenä maanantaina klo 13:00 - 14:15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.00 - 14.15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:00 - 14:15.</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "name": {
                "fi": "Välkky Hiirisuon asukaspuistossa",
                "sv": "Välkky på Mössenkärrs invånarpark",
                "en": "Välkky at Hiirisuo residents' park"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjx7a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjjxh4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj2oi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-01-07T12:25:45.436371Z",
            "last_modified_time": "2026-04-08T09:00:53.911159Z",
            "date_published": null,
            "start_time": "2026-05-11T10:00:00Z",
            "end_time": "2026-05-11T11:15: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://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle viitenä maanantaina klo 13:00 - 14:15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.00 - 14.15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:00 - 14:15.</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "name": {
                "fi": "Välkky Hiirisuon asukaspuistossa",
                "sv": "Välkky på Mössenkärrs invånarpark",
                "en": "Välkky at Hiirisuo residents' park"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjxh4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjj2oi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjxh4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjx7a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjysi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjzh4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjz24/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-01-07T12:25:42.568663Z",
            "last_modified_time": "2026-04-08T09:00:53.416159Z",
            "date_published": null,
            "start_time": "2026-01-12T11:00:00Z",
            "end_time": "2026-05-11T11: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": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle viitenä maanantaina klo 13:00 - 14:15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.00 - 14.15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:00 - 14:15.</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "name": {
                "fi": "Välkky Hiirisuon asukaspuistossa",
                "sv": "Välkky på Mössenkärrs invånarpark",
                "en": "Välkky at Hiirisuo residents' park"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj2oi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtfnm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/osoite:liisankuja_3_espoo/?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: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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824125,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-07T08:57:30.806715Z",
                    "last_modified_time": "2026-04-07T08:57:30.806730Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e0c54a3c-617e-4caf-9757-3b674c962a4c.jpg",
                    "name": "",
                    "cropping": "236,0,844,608",
                    "photographer_name": "Laura H.",
                    "alt_text": "Välkky kirjastoauto sisältä, kuvassa aurinko paistaa kirjoihin, jotka on laitettu esille seinätelineisiin.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824125/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-04-07T09:05:30.250783Z",
            "last_modified_time": "2026-04-08T08:58:08.794528Z",
            "date_published": "2026-04-07T09:00:00Z",
            "start_time": "2026-05-01T07:00:00Z",
            "end_time": "2026-05-01T09: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": {
                "fi": "https://www.espoonseurakunnat.fi/tapahtumat/2026-05-01/matinvappu",
                "sv": "https://www.espoonseurakunnat.fi/tapahtumat/2026-05-01/matinvappu",
                "en": "https://www.espoonseurakunnat.fi/tapahtumat/2026-05-01/matinvappu"
            },
            "provider": {
                "fi": "Olarin seurakunta",
                "sv": "Olarin seurakunta",
                "en": "Olarin seurakunta"
            },
            "description": {
                "fi": "<p>Espoon kirjasto- ja kulttuuriauto Välkky on mukana Matinkylän kappelin Matinvapussa!</p><p>Tervetuloa lainaamaan ja palauttamaan kirjoja, tai ihan vain lueskelemaan, tai tutustumaan vähän erilaiseen kirjastoon!</p><p>Voit lainata aineistoa Helmet-kirjastokortilla ja palauttaa kirjat mihin tahansa Helmet-kirjastoon. Jos sinulla ei ole vielä kirjastokorttia, teemme sen sinulle. Ota henkkarit mukaan.</p>",
                "sv": "<p>Välkommen att låna och återlämna böcker, eller bara läsa, eller utforska ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och återlämna böcker till vilket Helmet-bibliotek som helst. Om du inte har ett bibliotekskort än, så gör vi ett åt dig. Ta med din legitimation.</p>",
                "en": "<p>Welcome to borrow and return books, or just read, or explore a slightly different library!</p><p>You can borrow materials with your Helmet library card and return books to any Helmet library. If you don't have a library card yet, we will make one for you. Bring your ID.</p>"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "location_extra_info": {
                "fi": "Matinkappeli",
                "sv": "Matinkappeli",
                "en": "Matinkappeli"
            },
            "name": {
                "fi": "Välkky Matinvapussa",
                "sv": "Välkky på Matinvappu",
                "en": "Välkky at Matinvappu"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtfnm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtf2y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15335/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824125,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-07T08:57:30.806715Z",
                    "last_modified_time": "2026-04-07T08:57:30.806730Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e0c54a3c-617e-4caf-9757-3b674c962a4c.jpg",
                    "name": "",
                    "cropping": "236,0,844,608",
                    "photographer_name": "Laura H.",
                    "alt_text": "Välkky kirjastoauto sisältä, kuvassa aurinko paistaa kirjoihin, jotka on laitettu esille seinätelineisiin.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824125/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-04-07T09:09:49.812876Z",
            "last_modified_time": "2026-04-08T08:57:35.865482Z",
            "date_published": "2026-04-07T09:05:00Z",
            "start_time": "2026-05-23T07:00:00Z",
            "end_time": "2026-05-23T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": {
                "fi": "Vanttilan koulun vanhempainyhdistys ry",
                "sv": "Vanttilan koulun vanhempainyhdistys ry",
                "en": "Vanttilan koulun vanhempainyhdistys ry"
            },
            "description": {
                "fi": "<p><strong>Espoon kirjasto- ja kulttuuriauto Välkky on mukana Vanttilan kevättempauksessa klo 10-12:00!</strong></p><p>Tervetuloa lainaamaan ja palauttamaan kirjoja, tai ihan vain lueskelemaan, tai tutustumaan vähän erilaiseen kirjastoon!</p><p>Voit lainata aineistoa Helmet-kirjastokortilla ja palauttaa kirjat mihin tahansa Helmet-kirjastoon. Jos sinulla ei ole vielä kirjastokorttia, teemme sen sinulle. Ota henkkarit mukaan.</p>",
                "sv": "<p>Välkommen att låna och återlämna böcker, eller bara läsa, eller utforska ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och återlämna böcker till vilket Helmet-bibliotek som helst. Om du inte har ett bibliotekskort än, så gör vi ett åt dig. Ta med din legitimation.</p>",
                "en": "<p>Welcome to borrow and return books, or just read, or explore a slightly different library!</p><p>You can borrow materials with your Helmet library card and return books to any Helmet library. If you don't have a library card yet, we will make one for you. Bring your ID.</p>"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Välkky Vanttilan kevättempauksessa",
                "sv": "Välkky på Vanttilan kevättempaus",
                "en": "Välkky at Vanttilan kevättempaus"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtf2y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtgii",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15396/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824125,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-07T08:57:30.806715Z",
                    "last_modified_time": "2026-04-07T08:57:30.806730Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e0c54a3c-617e-4caf-9757-3b674c962a4c.jpg",
                    "name": "",
                    "cropping": "236,0,844,608",
                    "photographer_name": "Laura H.",
                    "alt_text": "Välkky kirjastoauto sisältä, kuvassa aurinko paistaa kirjoihin, jotka on laitettu esille seinätelineisiin.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824125/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-04-07T09:12:01.467345Z",
            "last_modified_time": "2026-04-08T08:57:00.597509Z",
            "date_published": "2026-04-07T09:09:00Z",
            "start_time": "2026-05-23T09:30:00Z",
            "end_time": "2026-05-23T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": null,
            "description": {
                "fi": "<p><strong>Espoon kirjasto- ja kulttuuriauto Välkky on mukana Nöykkiöpäivässä klo 12:30-15:30!</strong></p><p>Ohjelmassa mm. pinssiaskartelua!</p><p>Tervetuloa myös lainaamaan ja palauttamaan kirjoja, tai ihan vain lueskelemaan, tai tutustumaan vähän erilaiseen kirjastoon!</p><p>Voit lainata aineistoa Helmet-kirjastokortilla ja palauttaa kirjat mihin tahansa Helmet-kirjastoon. Jos sinulla ei ole vielä kirjastokorttia, teemme sen sinulle. Ota henkkarit mukaan.</p>",
                "sv": "<p>Välkommen att låna och återlämna böcker, eller bara läsa, eller utforska ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och återlämna böcker till vilket Helmet-bibliotek som helst. Om du inte har ett bibliotekskort än, så gör vi ett åt dig. Ta med din legitimation.</p>",
                "en": "<p>Welcome to borrow and return books, or just read, or explore a slightly different library!</p><p>You can borrow materials with your Helmet library card and return books to any Helmet library. If you don't have a library card yet, we will make one for you. Bring your ID.</p>"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Välkky Nöykkiöpäivässä",
                "sv": "Välkky på Nöykkiöpäivä",
                "en": "Välkky at Nöykkiöpäivä"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtgii/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtgwq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20267/?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: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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824125,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-07T08:57:30.806715Z",
                    "last_modified_time": "2026-04-07T08:57:30.806730Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e0c54a3c-617e-4caf-9757-3b674c962a4c.jpg",
                    "name": "",
                    "cropping": "236,0,844,608",
                    "photographer_name": "Laura H.",
                    "alt_text": "Välkky kirjastoauto sisältä, kuvassa aurinko paistaa kirjoihin, jotka on laitettu esille seinätelineisiin.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824125/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-04-07T10:04:20.214405Z",
            "last_modified_time": "2026-04-08T08:56:21.563231Z",
            "date_published": "2026-04-07T10:01:00Z",
            "start_time": "2026-05-26T12:00:00Z",
            "end_time": "2026-05-26T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": {
                "fi": "Monitoimiset-verkosto",
                "sv": "Monitoimiset-verkosto",
                "en": "Monitoimiset-verkosto"
            },
            "description": {
                "fi": "<p><strong>Espoon kirjasto- ja kulttuuriauto Välkky on mukana Matinraitin kyläkarnevaaleilla!</strong></p><p>Ohjelmassa askartelua!</p><p>Tervetuloa myös lainaamaan ja palauttamaan kirjoja, tai ihan vain lueskelemaan, tai tutustumaan vähän erilaiseen kirjastoon!</p><p>Voit lainata aineistoa Helmet-kirjastokortilla ja palauttaa kirjat mihin tahansa Helmet-kirjastoon. Jos sinulla ei ole vielä kirjastokorttia, teemme sen sinulle. Ota henkkarit mukaan.</p>",
                "sv": "<p>Välkommen att låna och återlämna böcker, eller bara läsa, eller utforska ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och återlämna böcker till vilket Helmet-bibliotek som helst. Om du inte har ett bibliotekskort än, så gör vi ett åt dig. Ta med din legitimation.</p>",
                "en": "<p>Welcome to borrow and return books, or just read, or explore a slightly different library!</p><p>You can borrow materials with your Helmet library card and return books to any Helmet library. If you don't have a library card yet, we will make one for you. Bring your ID.</p>"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Välkky Matinraitin kyläkarnevaaleilla",
                "sv": "Välkky på Matinraitin kyläkarnevaali",
                "en": "Välkky at Matinraitin kyläkarnevaali"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtgwq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtheu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:59857/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agozxhq5sm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "{'fi': 'Messualueelle pääseminen edellyttää lippua. Kirjastoautossa vierailu on maksutonta.', 'sv': 'Biljett krävs för att komma in på mässområdet. Det är gratis att besöka biblioteksbilen.', 'en': 'A ticket is required to enter the fairgrounds. Visiting the libry bus is free of charge.'}"
                    },
                    "info_url": {
                        "fi": "{'fi': 'https://shop.messukeskus.com/fi/tapahtuma/lapsimessut-lemmikkimessut-2026-356/?pk_vid=c865443e44c99897177555771270e909', 'sv': 'https://shop.messukeskus.com/fi/tapahtuma/lapsimessut-lemmikkimessut-2026-356/?pk_vid=c865443e44c99897177555771270e909', 'en': 'https://shop.messukeskus.com/fi/tapahtuma/lapsimessut-lemmikkimessut-2026-356/?pk_vid=c865443e44c99897177555771270e909'}"
                    },
                    "price": {
                        "fi": "{'fi': 'Aikuiset 19€,  Erityisryhmät 13€, Lapset (4-6 v) 6€', 'sv': 'Aikuiset 19€,  Erityisryhmät 13€, Lapset (4-6 v) 6€', 'en': 'Aikuiset 19€,  Erityisryhmät 13€, Lapset (4-6 v) 6€'}"
                    }
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824126,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-07T10:22:23.808405Z",
                    "last_modified_time": "2026-04-07T10:22:23.808425Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/bae8d314-a7ca-45d0-a94c-721223e5b2bb.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Laura H.",
                    "alt_text": "Kirjastoauton takaosa sisältä, värikkäitä koristeita, säkkituoleja ja kirjoja.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824126/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-04-07T10:31:07.774748Z",
            "last_modified_time": "2026-04-08T08:55:42.773086Z",
            "date_published": null,
            "start_time": "2026-04-24T06:00:00Z",
            "end_time": "2026-04-26T14: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": "https://lapsimessut.messukeskus.com/",
                "sv": "https://lapsimessut.messukeskus.com/",
                "en": "https://lapsimessut.messukeskus.com/en/"
            },
            "provider": {
                "fi": "Messukeskus",
                "sv": "Messukeskus",
                "en": "Messukeskus"
            },
            "description": {
                "fi": "<p>Espoon kirjasto- ja kulttuuriauto Välkky on mukana Lapsimessuilla Helsingin messukeskuksessa!</p><p>Tervetuloa lainaamaan ja palauttamaan kirjoja, tai ihan vain lueskelemaan, tai tutustumaan vähän erilaiseen kirjastoon!</p><p>Voit lainata aineistoa Helmet-kirjastokortilla ja palauttaa kirjat mihin tahansa Helmet-kirjastoon. Jos sinulla ei ole vielä kirjastokorttia, teemme sen sinulle. Ota henkkarit mukaan.</p><p><strong>Aukioloajat</strong>:</p><ul><li>pe 24.4. klo 9-18</li><li>la 25.4. klo 9-18</li><li>su 26.4. klo 9-17</li></ul>",
                "sv": "<p>Välkommen att låna och återlämna böcker, eller bara läsa, eller utforska ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och återlämna böcker till vilket Helmet-bibliotek som helst. Om du inte har ett bibliotekskort än, så gör vi ett åt dig. Ta med din legitimation.</p><p><strong>Öppettider</strong></p><ul><li>Fredag 24.4. kl. 9-18</li><li>Lördag 25.4. kl. 9-18</li><li>Söndag 26.4. kl. 9-17</li></ul>",
                "en": "<p>Welcome to borrow and return books, or just read, or explore a slightly different library!</p><p>You can borrow materials with your Helmet library card and return books to any Helmet library. If you don't have a library card yet, we will make one for you. Bring your ID.</p><p><strong>Openin hours</strong></p><ul><li>Friday 9-18</li><li>Saturday 9-18</li><li>Sunday 9-17</li></ul>"
            },
            "short_description": {
                "fi": "Löydät Espoon kirjasto- ja kulttuuriauton Lapsimessuilta Helsingin messukeskuksesta.",
                "sv": "Välkommen att låna och återlämna böcker, eller bara läsa, eller utforska ett lite annorlunda bibliotek!",
                "en": "Welcome to borrow and return books, or just read, or explore a slightly different library!"
            },
            "location_extra_info": {
                "fi": "Messuosasto: 7e129"
            },
            "name": {
                "fi": "Välkky Lapsimessuilla",
                "sv": "Välkky på Lapsimessut",
                "en": "Välkky at Child fair"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtheu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhthza",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/osoite:tapiontori_1_espoo/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824125,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-07T08:57:30.806715Z",
                    "last_modified_time": "2026-04-07T08:57:30.806730Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e0c54a3c-617e-4caf-9757-3b674c962a4c.jpg",
                    "name": "",
                    "cropping": "236,0,844,608",
                    "photographer_name": "Laura H.",
                    "alt_text": "Välkky kirjastoauto sisältä, kuvassa aurinko paistaa kirjoihin, jotka on laitettu esille seinätelineisiin.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824125/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-04-07T10:59:51.026542Z",
            "last_modified_time": "2026-04-08T08:51:52.817173Z",
            "date_published": "2026-04-07T10:55:00Z",
            "start_time": "2026-04-30T12:00:00Z",
            "end_time": "2026-04-30T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider": {
                "fi": "Tapiolan Kilta ry",
                "sv": "Tapiolan Kilta ry",
                "en": "Tapiolan Kilta ry"
            },
            "description": {
                "fi": "<p><strong>Espoon kirjasto- ja kulttuuriauto Välkky on mukana Tapiolan vapun avauksessa!</strong></p><p>Tule hakemaan itsellesi kirjaston poistokirja!</p><p>Tervetuloa myös lainaamaan ja palauttamaan kirjoja, tai ihan vain lueskelemaan, tai tutustumaan vähän erilaiseen kirjastoon!</p><p>Voit lainata aineistoa Helmet-kirjastokortilla ja palauttaa kirjat mihin tahansa Helmet-kirjastoon. Jos sinulla ei ole vielä kirjastokorttia, teemme sen sinulle. Ota henkkarit mukaan.</p>",
                "sv": "<p>Välkommen att låna och återlämna böcker, eller bara läsa, eller utforska ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och återlämna böcker till vilket Helmet-bibliotek som helst. Om du inte har ett bibliotekskort än, så gör vi ett åt dig. Ta med din legitimation.</p>",
                "en": "<p>Welcome to borrow and return books, or just read, or explore a slightly different library!</p><p>You can borrow materials with your Helmet library card and return books to any Helmet library. If you don't have a library card yet, we will make one for you. Bring your ID.</p>"
            },
            "short_description": {
                "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "location_extra_info": {
                "fi": "Heikki von Hertzenin aukio",
                "sv": "Heikki von Hertzenin aukio",
                "en": "Heikki von Hertzenin aukio"
            },
            "name": {
                "fi": "Välkky Tapiolan vapun avauksessa",
                "sv": "Välkky på Tapiolan vapun avaus",
                "en": "Välkky at Tapiolan vapun avaus"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhthza/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68349",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/21506420"
                    },
                    "price": {
                        "fi": "32,80-36 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1801561,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-07T11:13:12.903309Z",
                    "last_modified_time": "2026-04-07T11:13:12.903325Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787758.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1801561/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-07T06:13:01.214591Z",
            "last_modified_time": "2026-04-08T08:14:10.128700Z",
            "date_published": null,
            "start_time": "2026-12-03T17: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.savoyteatteri.fi/fi/tapahtumat/event/72CAF919E68597B10880BBEE1866BBEC/Dave_Lindholm_Pepe_Ahlqvist_Walkin_Blues-tour"
            },
            "provider": {
                "fi": "Sunborn Events Oy"
            },
            "description": {
                "fi": "<p>Dave Lindholmin ja Pepe Ahlqvistin ainutlaatuinen, ensimmäinen yhteinen konserttikiertue tuo lavalle kaksi kotimaisen bluesinlegendaa.</p><p>Ohjelmisto rakentuu kokonaisuudessaan bluesmusiikinympärille – luvassa on juurevaa soittoa ja vahvaa tulkintaa.</p><p>Dave Lindholm – kitara ja laulu<br>Pepe Ahlqvist – kitara, laulu ja huuliharppu</p><p>Ikäsuositus: K12</p><p>Kesto n. 2 h, sisältää väliajan<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "short_description": {
                "fi": "Dave Lindholmin ja Pepe Ahlqvistin ainutlaatuinen, ensimmäinen yhteinen konserttikiertue tuo lavalle kaksi kotimaisen bluesinlegendaa."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Dave Lindholm & Pepe Ahlqvist: Walkin’ Blues-tour"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68349/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68160",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1498836,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-02T14:14:26.790457Z",
                    "last_modified_time": "2026-03-02T14:14:26.790475Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785931.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1498836/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-02T14:14:26.614055Z",
            "last_modified_time": "2026-04-08T08:13:53.622582Z",
            "date_published": null,
            "start_time": "2026-04-16T13:00:00Z",
            "end_time": "2026-04-16T16: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.kanneltalo.fi/fi/tapahtumat/event/98D4ED21EBE8C6A7D34AE9DDB31AA12A/Kaikkien_Kantsu_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/98D4ED21EBE8C6A7D34AE9DDB31AA12A/Gamlasgard_for_alla",
                "en": "http://www.kanneltalo.fi/en/events/event/98D4ED21EBE8C6A7D34AE9DDB31AA12A/Our_Kantsu"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa tutustumaan Kanneltalon palveluihin ja kurkistamaan kulisseihin sekä tapaamaan alueen toimijoita!</p><p>Tervetuloa tutustumaan Kanneltalon palveluihin ja kurkistamaan kulisseihin sekä tapaamaan alueen toimijoita!</p><p>- Mitä kaikkea Kannelmäessä voi tehdä?</p><p>- Etsitkö inspiroivaa harrastusta lapselle, nuorelle tai itsellesi – tai kivaa tekemistä koko perheelle?</p><p>- Oletko koskaan käynyt Kanneltalossa – vai kuljetko aina vain ohi?</p><p>- Tiesitkö, että Kanneltalon katon alta löytyy neljä eri palvelua: nuorisotalo, kirjasto, työväenopisto sekä kulttuuripalvelut?</p><p>- Haluaisitko kurkistaa Kanneltalon kulissien taakse ja nähdä tiloja, joihin et yleensä pääse?</p><p>- Kiinnostaako tavata Kanneltalon väkeä ja jutella alueen kuulumisista muiden toimijoiden kanssa?</p><p>Näihin ja muihin kysymyksiin voit saada vastauksen torstaina 16.4., kun Kanneltalossa vietetään avointen ovien iltapäivää Kaikkien Kantsu-tapahtuman yhteydessä.<br>Tervetuloa koko perheen voimin tapaamaan alueen toimijoita ja tutustumaan Kanneltalon palveluihin ja kurkistamaan kulisseihin! Tapahtuma on suunnattu kaikille kannelmäkeläisille ja lähialueiden asukkaille.</p><p>Tapahtuman aikana esitellään Kanneltalon lisäksi myös muita alueen palveluita, kuten harrastus- ja kesätoimintaa sekä tavataan yhteistyökumppaneita ja alueella toimivia tahoja.<br>Kanneltalossa toimii nuorisotalo, kirjasto, kulttuuripalvelut sekä työväenopisto ja avointen ovien iltapäivässä pääset kuulemaan näiden palveluiden toiminnasta sekä tutustumaan henkilökuntaan. Iltapäivän aikana pääset kurkkaamaan Kanneltalon kulisseihin ja takakäytäviin sekä näkemään, mitä työväenopiston kursseilla oikeasti tehdään.</p><p>Kahvilan stagella kuullaan tietoiskut palveluista klo 16 ja klo 17 ja lähdöt talokierroksille ovat klo 16.30 ja 17.30.</p><p>Työväenopiston Kanneltalon kamariorkesterin avoimiin harjoituksiin pääset tutustumaan auditoriossa klo 18-18.30 ja tämän jälkeen on luvassa pieni kevätkonsertti klo 18.30–19 (Orkesterin johto: Lenkiewicz Albert)</p><p>Kaikille avoin naapurustopaneeli järjestetään Kahvilan stagella klo 18–18.45.<br>Paneelissa mukana Kanneltalon palveluiden johto sekä alueella toimivia tahoja. Paneelin fasilitoi yhdyskuntatyöntekijä Tuija Salovaara.</p><p>Lapsille on omaa ohjelmaa sekä lapsiparkki kirjaston monitoimitila Tempossa klo 16–19.</p><p>Tule mukaan tutustumaan Kanneltaloon sekä kysymään ja keskustelemaan alueen ajankohtaisista asioista.</p><p>Nähdään Kanneltalossa!</p><p>Ohjelma<br>Klo 16–19 Palveluiden ja alueen toimijoiden esittelypisteet ja keskustelua kävijöiden kanssa</p><p>Klo 16–19 Harrastus- ja kesätoiminnan esittelyä</p><p>Klo 16–19 Lasten omaa ohjelmaa ja lapsiparkki kirjaston monitoimitila Tempossa</p><p>Klo 16 Tietoisku Kanneltalon palveluista Kahvilan stagella klo 16 ja klo 17</p><p>Klo 16.30 Ohjattu talokierros (myös kulissien taakse) lähtö aulasta</p><p>Klo 17 Tietoisku Kanneltalon palveluista Kahvilan stagella klo 16 ja klo 17</p><p>Klo 17.30 Ohjattu talokierros (myös kulissien taakse) lähtö aulasta</p><p>Klo 18–18.45 Naapurustopaneeli Kahvilan stagella</p><p>Klo 18–18.30 Työväenopiston Kanneltalon kamariorkesterin avoimet harjoitukset ja pieni kevätkonsertti klo 18.30–19 (Orkesterin johto: Lenkiewicz Albert)</p>",
                "sv": "<p>Välkommen att bekanta dig med Gamlasgårdens tjänster, titta in bakom kulisserna och träffa aktörer i området!</p><p>– Har du någon gång besökt Gamlasgården – eller brukar du bara gå förbi?</p><p>– Är Gamlasgården en trygg plats dit alla får komma?</p><p>– Visste du att där finns fyra olika tjänster under ett och samma tak: en ungdomsgård, ett bibliotek, ett arbetarinstitut och kulturtjänster?</p><p>– Vill du ta en titt bakom kulisserna och se utrymmen som du normalt inte har tillgång till?</p><p>– Letar du efter en inspirerande hobby för ett barn, en ung person eller dig själv – eller något roligt för hela familjen?</p><p>– Vill du träffa personalen i huset och diskutera aktuella frågor i området med andra aktörer?</p><p>Dessa och andra frågor kan du få svar på torsdagen den 16 april, när Gamlasgården håller öppet hus under eftermiddagen.</p><p>Öppet hus-evenemanget riktar sig till alla i Gamlas.</p><p>I Gamlasgården finns en ungdomsgård, ett bibliotek, kulturtjänster och ett arbetarinstitut, och under öppet hus-eftermiddagen får du höra om dessa tjänster och träffa personalen.</p><p>Under eftermiddagen får du kika in bakom kulisserna och backstage på Gamlasgården och se vad man egentligen gör på arbetarinstitutets kurser.</p><p>Under evenemanget presenteras förutom Gamlasgården även andra tjänster i området, till exempel fritids- och sommarverksamhet, och man får träffa samarbetspartner.</p><p>Information om tjänsterna ges på kaféscenen kl. 16 och 17, och rundturer i huset startar 16.30 och 17.30.</p><p>En grannskapspanel som är öppen för alla ordnas på kaféscenen kl. 18–18.45.<br>I panelen medverkar ledningen för Gamlasgårdens tjänster och aktörer som är verksamma i området. Panelen faciliteras av Tuija Salovaara, som arbetar med samhällsfrågor.</p><p>För barnen ordnas eget program och barnparkering i bibliotekets allaktivitetsrum Tempo kl. 16–19.</p><p>Kom med för att utforska Gamlasgården, ställa frågor och diskutera sådant som är aktuellt i området.</p><p>Vi ses på Gamlasgården!</p><p>Program<br>Kl. 16–19 Tjänster och aktörer i området presenterar sig och diskuterar med besökarna</p><p>Kl. 16–19 Presentation av fritids- och sommarverksamhet</p><p>Kl. 16–19 Program för barnen och barnparkering i bibliotekets allaktivitetsrum Tempo</p><p>Kl. 16 Information om Gamlasgårdens tjänster på kaféscenen kl. 16 och kl. 17</p><p>Kl. 16.30 Guidad rundtur i huset (även bakom kulisserna), startar från entrén</p><p>Kl. 17 Information om Gamlasgårdens tjänster på kaféscenen kl. 16 och kl. 17</p><p>Kl. 17.30 Guidad rundtur i huset (även bakom kulisserna), startar från entrén</p><p>18–18.45 Grannskapspanel på kaféscenen</p>",
                "en": "<p>Welcome to Kanneltalo to take a peek behind the scenes and meet local operators!</p><p>- Have you ever been to Kanneltalo – or do you always just pass it by?</p><p>- Is Kanneltalo a safe place where everyone can come?</p><p>- Did you know that there are four different services under one roof: a youth centre, a library, an adult education centre and cultural services?</p><p>- Would you like to take a peek behind the scenes and visit places you would normally not get to see?</p><p>- Looking for an inspiring hobby for a child, a young person or yourself – or fun activities for the whole family?</p><p>- Are you interested in meeting the people of the centre and talking about neighbourhood events with other operators?</p><p>You can get answers to these and other questions on Thursday 16 April, when Kanneltalo hosts an open house afternoon.</p><p>The Open House event is open to all residents of Kannelmäki.</p><p>Kanneltalo is home to a youth centre, a library, cultural services and an adult education centre, and the open house afternoon will give you the chance to learn more about the activities of these services and meet the staff.</p><p>During the afternoon, you can take a peek behind the scenes and backstage at Kanneltalo and see what really goes on at adult education centre courses.</p><p>In addition to Kanneltalo itself, local services, such as hobby and summer activities, will be presented during the event and you can meet cooperation partners.</p><p>The Café Stage will host information sessions on services at 16.00 and 17.00 and house tours will start at 16.30 and 17.30.</p><p>The neighbourhood panel, open to all, will take place on the Café Stage from 18.00 to 18.45.<br>Kanneltalo service management and local operators will participate in the panel. The panel will be moderated by community worker Tuija Salovaara.</p><p>There are activities for children and a dedicated room for children to stay in in the library's multifunctional space Tempo from 16.00 to 19.00.</p><p>Join us in exploring Kanneltalo and asking questions and discussing current issues in the neighbourhood.</p><p>See you at Kanneltalo!</p><p>Programme<br>16.00–19.00 Presentation of services and local operators and discussion with visitors</p><p>16.00–19.00 Presentation of hobby and summer activities</p><p>16.00–19.00 Children's programme and children's room in the library's multifunctional space Tempo</p><p>16.00 Information session on services at Kanneltalo on the Café Stage at 16.00 and 17.00</p><p>16.30 Guided house tour (including behind-the-scenes areas) starting from the lobby</p><p>17.00 Information session on services at Kanneltalo on the Café Stage at 16.00 and 17.00</p><p>17.30 Guided house tour (including behind-the-scenes areas) starting from the lobby</p><p>18.00–18.45 Neighbourhood panel on the Café Stage</p>"
            },
            "short_description": {
                "fi": "Tervetuloa tutustumaan Kanneltalon palveluihin ja kurkistamaan kulisseihin sekä tapaamaan alueen toimijoita!",
                "sv": "Välkommen att bekanta dig med Gamlasgårdens tjänster, titta in bakom kulisserna och träffa aktörer i området!",
                "en": "Welcome to Kanneltalo to take a peek behind the scenes and meet local operators!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kaikkien Kantsu",
                "sv": "Gamlasgård för alla",
                "en": "Our Kantsu"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68160/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}