Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

{
    "meta": {
        "count": 27966,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=52&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=50&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "lippupiste:19999907",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849160/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sutinaa-ja-saeaetoeae-helsingin-kaupunginteatteri-19999907/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/sutinaa-ja-saeaetoeae-helsingin-kaupunginteatteri-19999907/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/sutinaa-ja-saeaetoeae-helsingin-kaupunginteatteri-19999907/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360032,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:20.766941Z",
                    "last_modified_time": "2025-03-17T22:17:20.766955Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/a1/8c/sutinaa222-tickets_369148_3117437_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360032/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:24.672623Z",
            "last_modified_time": "2025-09-19T22:14:53.746529Z",
            "date_published": null,
            "start_time": "2025-09-19T15: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,
            "description": {
                "fi": "<p>Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni kynnet sinisinä, mutta samalla hypätään päätä pahkaa syvään päätyyn niin riemukkaasti, että katsojan onnellinen osa on nauraa vedet silmissä mukana!</p><p>Sylvia (Pihla Penttinen) ja hänen salarakkaansa Beau (Sauli Suonpää) ovat saapuneet jokavuotiselle syntiselle huvilatapaamiselleen. Tällä kertaa Sylvia pudottaa Beaulle todellisen uutispommin, ja kertoo jättäneensä miehensä. Sähkeellä!</p><p>Tämä on vasta alkua, sillä seuraavaksi kaksikon puolisot (Emilia Sinisalo ja Heikki Ranta) pelmahtavat samalle huvilalle! Todellinen salaisuuksien Pandoran lipas revähtää auki ja niin henkilöiden identiteetit kuin avioliittokäsitykset joutuvat kiivaasti kieppuvaan myllyyn.</p><p>Broadwaylla ensi-iltansa vuonna 2023 saanut Sutinaa ja säätöä sijoittuu herkullisesti 1920-luvun Englantiin, mutta sen käänteet ja käänteissä kärvistelevät ihmiset ovat täyttä tätä päivää, tunnistettavia ja samaistuttavia, kaikessa hullunkurisuudessaan rakastettavia ja pakahduttavan hauskoja.</p><p>Sutinaa ja säätöä on uusi ja raikas farssikomedia parisuhteista. Kuumana kuplivaa sutinaa ja sysipimeitä salaisuuksia pulppuava parituntinen, jonka aikana katsoja tulee yllätetyksi monta kertaa – aivan kuten komedian henkilötkin.</p><p>Rooleissa: Pihla Penttinen, Sauli Suonpää, Emilia Sinisalo, Heikki Ranta, Ella Lymi ja Mikko Virtanen</p><p>Suomentaja: Reita Lounatvuori<br>Ohjaus: Sari Siikander<br>Lavastus: Peter Ahlqvist<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Äänisuunnittelu: Eero Niemi<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Dramaturgi: Ari-Pekka Lahti</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner</p>",
                "en": "<p>Sandy Rustin<br><strong>SUTINAA JA SÄÄTÖÄ</strong></p>"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=en"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Sandy Rustin SUTINAA JA SÄÄTÖÄ Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni"
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Sutinaa Ja Säätöä"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999907/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19506295",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506295/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506295/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506295/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.124713Z",
                    "last_modified_time": "2025-02-17T11:16:42.124728Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:21.392071Z",
            "last_modified_time": "2025-09-19T22:14:53.608612Z",
            "date_published": null,
            "start_time": "2025-09-19T15: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,
            "description": {
                "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Wilhelm Blomberg, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>",
                "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin,"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Moulin Rouge! Musikaali"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19506295/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66407",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi",
                        "sv": "https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi",
                        "en": "https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490846,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-19T14:13:26.404781Z",
                    "last_modified_time": "2025-09-19T14:13:26.404795Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774088.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490846/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-18T07:13:20.798132Z",
            "last_modified_time": "2025-09-19T14:13:26.655005Z",
            "date_published": null,
            "start_time": "2025-11-04T16: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,
            "description": {
                "fi": "<p>Strömsö on hilpeä esitys kaikesta siitä, mikä on pielessä – elämässä, yhteiskunnassa ja fiktiossa.</p><p>Mutta ei syytä huoleen! Nyt eskapismista tehdään taidetta: tarinoiden onnettomat loput korjataan, tuloksena uusi, uljas maailma, jossa kaikki menee niin kuin Strömsössä! Vai meneekö? Voidaanko taiteella todella muuttaa maailmaa, ja mikä oikeastaan saa kaipaamaan Maahan jota ei ole (Södergran).</p><p>Palkittu Red Nose Company on yksi Suomen arvostetuimmista kiertueteattereista, joka tekee nyt ensimmäisen ruotsinkielisen ensi-iltansa. Ohjauksesta vastaa Marielle Eklund-Vasama, jonka edellinen klovniesitys Babylon oli viiden tähden hitti.</p><p>Lavalla nähdään upeasti laulava duo Stella Laine – Marika Westerling, jotka debytoivat Red Nose Companyn riveissä. Musiikin on säveltänyt ja sovittanut Petri Tiainen, joka myös soittaa esityksissä. Käsikirjoitus lainaa vapaasti useammastakin tunnetusta klassikosta, ja ensimmäistä kertaa Red Nose Companyn 20-vuotisessa historiassa tullaan kuulemaan myös oopperaa laulavia klovneja!</p><p>Loppu hyvin – kaikki hyvin!</p><p><b>HUOM!</b> Esitys on maksuton, mutta siihen täytyy varata liput etukäteen. Varaa liput täältä: https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi<br> <br><b>TYÖRYHMÄ</b><br> Ohjaus Marielle Eklund-Vasama<br> Näyttelijät Stella Laine ja Marika Westerling<br> Sävellys, sovitus ja livemuusikko Petri Tiainen<br> Käsikirjoitus Marielle Eklund-Vasama<br> Poikkeamat tekstistä Työryhmä<br> Skenografia ja puvut Reija Laine<br> Valokuvat Cata Portin<br> Tuotanto Red Nose Company<br> <br>Ensi-ilta 13.5.2025 Lilla Teaternissa<br> <br>Esityksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Konstsamfundet, Stiftelsen Tre Smeder, Svenska kulturfonden, Thurings Stiftelse sekä Understödsstiftelsen för Arbetets Vänner</p><p>Esityskieli on ruotsi. Esitys tekstitetään suomeksi.</p><p>Kesto: 2 t 15 min<br>Ikäsuositus +13</p><p>Maksuton, liput varattava etukäteen tästä linkistä: <br>https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi</p>",
                "sv": "<p>Strömsö är en munter föreställning om allt som är fel – i livet, samhället och fiktionen.</p><p>Men oroa dig inte! Nu förvandlas eskapism till konst: berättelsernas olyckliga slut fixas, vilket resulterar i en imposant ny värld där allt går som på Strömsö! Eller går det? Kan konst verkligen förändra världen, och vad får en egentligen att längta till landet som icke är (Södergran)?</p><p>Prisbelönta Red Nose Company är en av Finlands mest uppskattade turnerande teatrar, som nu gör sin första premiär på svenska. För regin svarar Marielle Eklund-Vasama, vars tidigare clownföreställning Babylon var en femstjärnig hit.</p><p>På scenen står den underbara sångduon Stella Laine – Marika Westerling, som debuterar med Red Nose Company. Musiken är komponerad och arrangerad av Petri Tiainen, som också spelar i föreställningarna. Manuset lånar fritt från ett antal välkända klassiker, och för första gången i Red Nose Companys 20-åriga historia kommer vi att få höra clowner som sjunger opera!</p><p>Slutet gott – allting gott!<br> <br><b>OBS!</b>Avgiftsfritt, biljetterna ska bokas i förväg:<br>https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi</p><p><b>ARBETSGRUPP</b><br> Regi: Marielle Eklund-Vasama<br> Skådespelare: Stella Laine och Marika Westerling<br> Komposition, arrangemang och livemusiker: Petri Tiainen<br> Manus: Marielle Eklund-Vasama<br> Avvikelser från texten: Arbetsgruppen<br> Scenografi och kostymer: Reija Laine<br> Foton: Cata Portin<br> Produktion: Red Nose Company<br> Premiär: 13.5.2025 på Lilla Teatern<br> Produktionen har fått stöd av Alfred Kordelins Stiftelse, Konstsamfundet, Stiftelsen Tre Smeder, Svenska kulturfonden, Thurings Stiftelse och Understödsstiftelsen för Arbetets Vänner</p><p>Föreställningen är på svenska. Föreställningen textas på finska.</p><p>Längd: 2 timmar 15 minuter</p>",
                "en": "<p>Strömsö is a hilarious representation of everything that is wrong – in life, society and fiction.</p><p>But not to worry! Now escapism is turned into art: the unhappy endings of the stories are fixed, resulting in a brave new world where everything goes according to plan! Or will it? Can art really change the world, and what exactly makes one long for The Land which Is Not (Södergran).</p><p>The award-winning Red Nose Company is one of Finland's most acclaimed touring theatres, now making its first Swedish-language premiere. The performance is directed by Marielle Eklund-Vasama, whose previous clown show Babylon was a five-star hit.<br>On stage, you will see the fantastic singing duo Stella Laine and Marika Westerling, making their debut with the Red Nose Company. The music is composed and arranged by Petri Tiainen, who also performs in the shows. The script freely borrows from several well-known classics, and for the first time in Red Nose Company's 20-year history, you will also hear clowns singing opera!</p><p>All is well that ends well!<br> <br><b>Please note!</b>Free of charge; tickets must be booked in advance.<br>https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi</p><p><b>WORKING GROUP</b><br> Director: Marielle Eklund-Vasama<br> Actors: Stella Laine and Marika Westerling<br> Composition, arrangement and live music: Petri Tiainen<br> Script: Marielle Eklund-Vasama<br> Deviations from the text: Working group<br> Scenography and costumes: Reija Laine<br> Photos: Cata Portin<br> Production: Red Nose Company<br> Premiere: 13 May 2025 at Lilla Teatern<br> The production has been supported by the Alfred Kordelin Foundation, Konstsamfundet, the Tre Smeder Foundation, the Swedish Cultural Foundation in Finland, Thurings Stiftelse and Understödsstiftelsen för Arbetets Vänner</p><p>The performance language is Swedish. The show will be subtitled in Finnish.</p><p>Duration: 2 hours 15 min</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/314CDA932927E0A266E1BDFFD12F31C5/Red_Nose_Company_Stromso",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/314CDA932927E0A266E1BDFFD12F31C5/Red_Nose_Company_Stromso",
                "en": "http://www.malmitalo.fi/en/events/event/314CDA932927E0A266E1BDFFD12F31C5/Red_Nose_Company_Stromso"
            },
            "provider": null,
            "short_description": {
                "fi": "Strömsö on hilpeä esitys kaikesta siitä, mikä on pielessä – elämässä, yhteiskunnassa ja fiktiossa.",
                "sv": "Strömsö är en munter föreställning om allt som är fel – i livet, samhället och fiktionen.",
                "en": "Strömsö is a hilarious representation of everything that is wrong – in life, society and fiction."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Red Nose Company: Strömsö",
                "sv": "Red Nose Company: Strömsö",
                "en": "Red Nose Company: Strömsö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66407/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwdovl7i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20355/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4878/?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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490844,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-19T10:36:58.798556Z",
                    "last_modified_time": "2025-09-19T10:36:58.798571Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/baa8ba71-49d1-4cbe-9fb9-7b9272ccf852.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Tausta: Elena Photo",
                    "alt_text": "Piirroskuva kirjastoauto Välkystä syksyisellä metsätiellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490844/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-19T10:38:09.311368Z",
            "last_modified_time": "2025-09-19T11:39:08.264093Z",
            "date_published": "2025-09-19T10:26:00Z",
            "start_time": "2025-10-13T07:00:00Z",
            "end_time": "2025-10-13T08: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,
            "description": {
                "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025.&nbsp;</p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!&nbsp;</p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>",
                "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "info_url": {
                "fi": "http://www.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,
            "short_description": {
                "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! "
            },
            "location_extra_info": {
                "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky",
                "sv": "Esbos bok- och kultur bus Välkky",
                "en": "Espoos' book and culture bus Välkky"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Syysdösä Välkky Soukan asukaspuistossa",
                "sv": "Syysdösä Välkky: Sökö invånarpark",
                "en": "Syysdösä Välkky: Soukka residents' park"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovl7i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwdovlrm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:28401/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?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:p2771/?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:p4878/?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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490844,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-19T10:36:58.798556Z",
                    "last_modified_time": "2025-09-19T10:36:58.798571Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/baa8ba71-49d1-4cbe-9fb9-7b9272ccf852.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Tausta: Elena Photo",
                    "alt_text": "Piirroskuva kirjastoauto Välkystä syksyisellä metsätiellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490844/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-19T10:40:26.500681Z",
            "last_modified_time": "2025-09-19T11:38:57.641709Z",
            "date_published": "2025-09-19T10:39:00Z",
            "start_time": "2025-10-16T10:00:00Z",
            "end_time": "2025-10-16T11: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,
            "description": {
                "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025.&nbsp;</p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!&nbsp;</p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>",
                "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "info_url": {
                "fi": "http://www.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,
            "short_description": {
                "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! "
            },
            "location_extra_info": {
                "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky",
                "sv": "Esbos bok- och kultur bus Välkky",
                "en": "Espoos' book and culture bus Välkky"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Syysdösä Välkky Suomen luontokeskus Haltiassa",
                "sv": "Syysdösä Välkky: Finlands naturcentrum Haltia",
                "en": "Syysdösä Välkky: The Finnish Nature Centre Haltia"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovlrm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwdovk7i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:28401/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?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:p2771/?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:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490844,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-19T10:36:58.798556Z",
                    "last_modified_time": "2025-09-19T10:36:58.798571Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/baa8ba71-49d1-4cbe-9fb9-7b9272ccf852.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Tausta: Elena Photo",
                    "alt_text": "Piirroskuva kirjastoauto Välkystä syksyisellä metsätiellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490844/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-19T10:39:49.066348Z",
            "last_modified_time": "2025-09-19T11:38:45.906209Z",
            "date_published": "2025-09-19T10:40:00Z",
            "start_time": "2025-10-13T08:00:00Z",
            "end_time": "2025-10-13T11: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,
            "description": {
                "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025.&nbsp;</p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!&nbsp;</p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>",
                "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "info_url": {
                "fi": "http://www.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,
            "short_description": {
                "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! "
            },
            "location_extra_info": {
                "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky",
                "sv": "Esbos bok- och kultur bus Välkky",
                "en": "Espoos' book and culture bus Välkky"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Syysdösä Välkky Suomen luontokeskus Haltiassa",
                "sv": "Syysdösä Välkky: Finlands naturcentrum Haltia",
                "en": "Syysdösä Välkky: The Finnish Nature Centre Haltia"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovk7i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwdovkm4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74810/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4878/?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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490844,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-19T10:36:58.798556Z",
                    "last_modified_time": "2025-09-19T10:36:58.798571Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/baa8ba71-49d1-4cbe-9fb9-7b9272ccf852.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Tausta: Elena Photo",
                    "alt_text": "Piirroskuva kirjastoauto Välkystä syksyisellä metsätiellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490844/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-19T10:42:35.927654Z",
            "last_modified_time": "2025-09-19T11:38:31.716112Z",
            "date_published": "2025-09-19T10:41:00Z",
            "start_time": "2025-10-14T08:00:00Z",
            "end_time": "2025-10-14T11: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,
            "description": {
                "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025.&nbsp;</p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!&nbsp;</p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>",
                "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "info_url": {
                "fi": "http://www.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,
            "short_description": {
                "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! "
            },
            "location_extra_info": {
                "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky",
                "sv": "Esbos bok- och kultur bus Välkky",
                "en": "Espoos' book and culture bus Välkky"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Syysdösä Välkky Syvänsalmenpuiston leikkipaikalla",
                "sv": "Syysdösä Välkky: Djupsundsparken lekplats",
                "en": "Syysdösä Välkky: Syvänsalmi Park Playground"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovkm4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwdovjz4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/osoite:m%C3%A4enalus_2_espoo/?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:agggfz67ta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4878/?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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490844,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-19T10:36:58.798556Z",
                    "last_modified_time": "2025-09-19T10:36:58.798571Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/baa8ba71-49d1-4cbe-9fb9-7b9272ccf852.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Tausta: Elena Photo",
                    "alt_text": "Piirroskuva kirjastoauto Välkystä syksyisellä metsätiellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490844/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-19T10:46:32.725904Z",
            "last_modified_time": "2025-09-19T11:38:20.071808Z",
            "date_published": "2025-09-19T10:42:00Z",
            "start_time": "2025-10-15T08:00:00Z",
            "end_time": "2025-10-15T11: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,
            "description": {
                "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025.&nbsp;</p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!&nbsp;</p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>",
                "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "info_url": {
                "fi": "http://www.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,
            "short_description": {
                "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! "
            },
            "location_extra_info": {
                "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky",
                "sv": "Esbos bok- och kultur bus Välkky",
                "en": "Espoos' book and culture bus Välkky"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Syysdösä Välkky Lakisto / Rinnekoti",
                "sv": "Syysdösä Välkky: Lakisto / Rinnekoti",
                "en": "Syysdösä Välkky: Lakisto / Rinnekoti"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovjz4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwdovjlm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20268/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4878/?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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490844,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-19T10:36:58.798556Z",
                    "last_modified_time": "2025-09-19T10:36:58.798571Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/baa8ba71-49d1-4cbe-9fb9-7b9272ccf852.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Tausta: Elena Photo",
                    "alt_text": "Piirroskuva kirjastoauto Välkystä syksyisellä metsätiellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490844/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-19T10:51:38.329471Z",
            "last_modified_time": "2025-09-19T11:38:06.186655Z",
            "date_published": "2025-09-19T10:50:00Z",
            "start_time": "2025-10-14T07:00:00Z",
            "end_time": "2025-10-14T08: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,
            "description": {
                "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025.&nbsp;</p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!&nbsp;</p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>",
                "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "info_url": {
                "fi": "http://www.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,
            "short_description": {
                "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! "
            },
            "location_extra_info": {
                "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky",
                "sv": "Esbos bok- och kultur bus Välkky",
                "en": "Espoos' book and culture bus Välkky"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Syysdösä Välkky Olarin asukaspuistossa",
                "sv": "Syysdösä Välkky: Olars invånarpark",
                "en": "Syysdösä Välkky: OIari residents' park"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovjlm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwdovi2m",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46348/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4878/?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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490844,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-19T10:36:58.798556Z",
                    "last_modified_time": "2025-09-19T10:36:58.798571Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/baa8ba71-49d1-4cbe-9fb9-7b9272ccf852.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Tausta: Elena Photo",
                    "alt_text": "Piirroskuva kirjastoauto Välkystä syksyisellä metsätiellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490844/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-19T10:50:04.301604Z",
            "last_modified_time": "2025-09-19T11:37:50.122249Z",
            "date_published": "2025-09-19T10:46:00Z",
            "start_time": "2025-10-17T08:00:00Z",
            "end_time": "2025-10-17T11: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,
            "description": {
                "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025.&nbsp;</p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!&nbsp;</p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>",
                "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "info_url": {
                "fi": "http://www.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,
            "short_description": {
                "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! "
            },
            "location_extra_info": {
                "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky",
                "sv": "Esbos bok- och kultur bus Välkky",
                "en": "Espoos' book and culture bus Välkky"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Syysdösä Välkky Leppävaaran Angry Birds -puistossa",
                "sv": "Syysdösä Välkky: Angry Birds-parken i Alberga",
                "en": "Syysdösä Välkky: Angry Birds Park in Leppävaara"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovi2m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwdovijq",
            "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:p10727/?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:p2771/?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:p4878/?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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490844,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-19T10:36:58.798556Z",
                    "last_modified_time": "2025-09-19T10:36:58.798571Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/baa8ba71-49d1-4cbe-9fb9-7b9272ccf852.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Tausta: Elena Photo",
                    "alt_text": "Piirroskuva kirjastoauto Välkystä syksyisellä metsätiellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490844/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-19T10:53:29.062806Z",
            "last_modified_time": "2025-09-19T11:37:29.804009Z",
            "date_published": "2025-09-19T10:52:00Z",
            "start_time": "2025-10-15T07:00:00Z",
            "end_time": "2025-10-15T08: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,
            "description": {
                "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025.&nbsp;</p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!&nbsp;</p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>",
                "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "info_url": {
                "fi": "http://www.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,
            "short_description": {
                "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! "
            },
            "location_extra_info": {
                "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky",
                "sv": "Esbos bok- och kultur bus Välkky",
                "en": "Espoos' book and culture bus Välkky"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Syysdösä Välkky Hiirisuon asukaspuistossa",
                "sv": "Syysdösä Välkky: Mösskärrs invånarpark",
                "en": "Syysdösä Välkky: Hiirisuo residents' park"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovijq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwdovhxu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20351/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?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:p2771/?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:p4878/?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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490844,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-19T10:36:58.798556Z",
                    "last_modified_time": "2025-09-19T10:36:58.798571Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/baa8ba71-49d1-4cbe-9fb9-7b9272ccf852.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Tausta: Elena Photo",
                    "alt_text": "Piirroskuva kirjastoauto Välkystä syksyisellä metsätiellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490844/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-19T10:54:55.330246Z",
            "last_modified_time": "2025-09-19T11:37:13.354868Z",
            "date_published": "2025-09-19T10:53:00Z",
            "start_time": "2025-10-16T07:00:00Z",
            "end_time": "2025-10-16T08: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,
            "description": {
                "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025.&nbsp;</p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!&nbsp;</p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>",
                "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "info_url": {
                "fi": "http://www.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,
            "short_description": {
                "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! "
            },
            "location_extra_info": {
                "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky",
                "sv": "Esbos bok- och kultur bus Välkky",
                "en": "Espoos' book and culture bus Välkky"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Syysdösä Välkky Latokasken asukaspuistossa",
                "sv": "Syysdösä Välkky: Ladusveds invånarpark",
                "en": "Syysdösä Välkky: Latokaski residents' park"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovhxu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwdovg6a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64123/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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:p4878/?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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490844,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-19T10:36:58.798556Z",
                    "last_modified_time": "2025-09-19T10:36:58.798571Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/baa8ba71-49d1-4cbe-9fb9-7b9272ccf852.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Tausta: Elena Photo",
                    "alt_text": "Piirroskuva kirjastoauto Välkystä syksyisellä metsätiellä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490844/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-19T10:56:13.379595Z",
            "last_modified_time": "2025-09-19T11:36:50.417775Z",
            "date_published": "2025-09-19T10:54:00Z",
            "start_time": "2025-10-17T07:00:00Z",
            "end_time": "2025-10-17T08: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,
            "description": {
                "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025.&nbsp;</p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!&nbsp;</p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>",
                "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "info_url": {
                "fi": "http://www.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,
            "short_description": {
                "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! "
            },
            "location_extra_info": {
                "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky",
                "sv": "Esbos bok- och kultur bus Välkky",
                "en": "Espoos' book and culture bus Välkky"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Syysdösä Välkky Järvenperän asukaspuistossa",
                "sv": "Syysdösä Välkky: Träskända invånarpark",
                "en": "Syysdösä Välkky: Järvenperä residents' park"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovg6a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66305",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:669/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1163427,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-02T11:12:24.371184Z",
                    "last_modified_time": "2025-07-02T11:12:24.371196Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773310.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1163427/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-02T11:12:24.308844Z",
            "last_modified_time": "2025-09-19T11:12:48.034921Z",
            "date_published": null,
            "start_time": "2025-09-27T08:00:00Z",
            "end_time": "2025-09-27T14: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,
            "description": {
                "fi": "<p>Kolibri Festivaali palaa Annantalolle juhlimaan 10-vuotista taivaltaan hauskan tapahtumapäivän merkeissä! Päivä on täynnä mieleenpainuvaa tekemistä kaikille perheille.</p><p>Luvassa on monipuolista ohjelmaa: taidetyöpajoja, satuhetkiä, tanssia ja lastenkirjallisuuteen tutustumista. Tapahtuma päättyy KAÔS-ryhmän konserttiin.</p><p>Juhlavuoden teemana on toiveet. Ympäri pääkaupunkiseutua järjestettävä festivaali huipentuu Annantalolle, jossa pääset oppimaan kieliä, tutustumaan uusiin kulttuureihin ja tapaamaan ihmisiä eri puolilta maailmaa.</p><p>Tapahtuma on maksuton ja kaikki ovat tervetulleita.</p><p>Tapahtuman tuottavat yhteistyössä Kulttuurikeskus Ninho ry ja Annantalo.<br> <br> <br><b>Ohjelma:</b></p><p><b>Juoiggas Mánážan! – Joikaa lapseni! – Musiikkityöpaja</b> <br>klo 11 (kesto 45 min)  <br>Saamelainen taiteilija Petra Biret Magga-Vars järjestää ainutkertaisen musiikillisen työpajan, jossa tutustutaan perinteiseen saamelaisjoikuun.<br>Kaikenikäisille <br>englanti, suomi, pohjoissaame - Davvisámegiella <br> <br><b>Unelmien Helsinki - Lego-työpaja</b> <br>klo 11–13 & 14–16, nonstop <br>Mikä tekisi Helsingistä paremman kaupungin meille kaikille? Työpajassa rakennetaan legoista omanlainen idea.<br>+4-vuotiaat  <br>englanti, suomi</p><p><b>Leikitään ja maalataan! -työpaja</b> <br>klo 11 & 14 (kesto 45 min)  <br>Gustin työpajassa tutkailemme yhdessä värejä, mielikuvitusta, musiikkia ja leikkimistä.<br>+4-vuotiaat <br>englanti, espanja</p><p><b>Kolibrí Pin -työpaja</b> <br>klo 11–16 <br>Kanna Kolibri lähellä sydäntäsi! Työpajassa askarellaan oma rintakoru.  <br>Kaikenikäisille <br>englanti, espanja, suomi</p><p><b> Missä toiveet asuvat? -työpaja</b> <br>klo 12–15, nonstop <br>Laura Zubillagan ja Daniela Alatorren työpaja on luova kokemus, jossa voit kuvitella, rakentaa, koristella ja leikkiä käyttäen erilaisia puuosia.  <br>+1-vuotiaat  <br>englanti, espanja, portugali <br> <br><b> Yhteisen elämän rytmit -musiikkityöpaja</b> <br>klo 12 (kesto 45 min) <br>Delado Duon työpaja on hauska musiikkimatka eri soittimien  maailmaan. <br>+2-vuotiaat <br>englanti, espanja, suomi, ruotsi</p><p><b> Tanssivat halaukset -tanssityöpaja </b> <br>klo 12 & 13 (kesto 45 min)  <br>Vahvista sidettä vauvaasi tanssin, kosketuksen ja sydämellisten latinalaisamerikkalaisten laulujen kautta. <br>vauvat <br>englanti, espanja</p><p><b> Toivon helmet -korutyöpaja</b> <br>klo 13–14 <br>Tule mukaan tekemään sinun näköisiäsi rannekoruja kierrätetyistä aikakausi- ja sanomalehdistä.  <br>4–8-vuotiaat <br>englanti, tagalog</p><p><b> ŠIELLA – amulettityöpaja </b> <br>klo 13–16 <br>Työpajassa tehdään poronsarvesta ja puuhelmistä oma onnen amuletti suojaksi ja muistutukseksi luonnon tärkeydestä ja ihmisten yhteisöllisyydestä.  <br>4–14-vuotiaat <br>englanti, suomi, pohjoissaame – Davvisámegiella</p><p><b> Tanssivat toiveet -työpaja</b> <br>klo 14–15: 4–8-vuotiaille <br>klo 15–16: 1–3-vuotiaille <br>Vera Lapitskayan työpajassa toiveet heräävät eloon liikkeen, leikin ja jaetun luovuuden kautta.  <br>englanti, espanja, suomi, venäjä</p><p><b>Värikkäitä toiveita, suuria unelmia -työpaja</b> <br>klo 15–16 <br>Vivita Kaupereen työpajassa pääset herättämään värikkäimmät toiveesi henkiin ja maalaamaan lastesi kanssa luonnon elementeillä. <br>+2 vuotta <br>englanti, suomi, latvia</p><p><b> Lastenkirjamessut 2025 </b> <br>klo 11–16 <br>Nyt saat mahdollisuuden hankkia lastenkirjallisuutta espanjaksi ja portugaliksi.<br>Gusti signeeraa kirjojaan messuillamme klo 12.30–13.00 & 15.30–16.00 <br>kaikenikäisille <br>englanti, espanja, suomi</p><p><b> Leponurkkaus </b> <br>klo 11–16  <br>Turvallinen ja rauhallinen tila niille, jotka tarvitsevat mukavan levähdyspaikan aisteilleen.</p><p><b>Päätöskonsertti KAOS-yhtyeen kanssa </b>  <br>klo 16–17  <br>Monikulttuurinen KAÔS-ryhmä vie musiikilliselle matkalle Euroopasta Lähi-itään ja Aasiaan. Ohjelmistossa kehtolauluja ja kauniita kansanlauluja portugaliksi, japaniksi ja farsiksi. <br>kaikenikäisille <br>englanti, espanja, portugali, persia, japani</p><p>Kulttuurin kummilapset -pisteellä pääset kuulemaan lisää palvelusta ja maistamaan Green Planet Astronautsin välipaloja.</p><p>Ohjelmakartan ja festivaalin nettisivut löydät osoitteesta: https://www.kolibrifestivaali.org/fi/</p><p>Nähdään Annantalolla!</p>",
                "sv": "<p>Kolibri-festivalen återvänder till Annegården för sitt 10-årsjubileum! Evenemangsdagen är fylld av roliga aktiviteter för hela familjen.</p><p>Vi vill fira tillsammans med just dig, dina nära och kära. Och när vi säger fira menar vi det. Därför har vi lagt ner stor möda och mycken glädje på att fixa till ett mångsidigt och mångkulturellt program för hela familjen; hela dagen lång bjuder vi er på inspirerande konstverkstäder, spännande sagostunder, sprittande dans och medryckande barnlitteratur.</p><p>Den här gången satsar vi på konstverkstäder på en massa olika språk som det kan vara roligt att bekanta sig med också för svenskspråkiga helsingforsfamiljer. Nu har ni chansen att bekanta er med till exempel engelska, spanska, portugisiska, lettiska, persiska, japanska, tagalog, nordsamiska – Davvisámegiella – samt ryska.</p><p>Evenemanget är gratis och alla är välkomna.</p><p>Annegården och Kulturcentret Ninho rf producerar festivalen tillsammans.</p><p><b> Program: </b></p><p><b>Juoiggas Mánážan! – Joika mitt barn! – Musikverkstad </b> <br>kl. 11 (längd 45 min) <br>Den samiska konstnären Petra Biret Magga-Vars håller en unik musikverkstad där ni får bekanta er med den traditionella samiska jojken. <br>För alla åldrar <br>engelska, finska, nordsamiska – Davvisámegiella</p><p><b>Drömmarnas Helsingfors – Legoverkstad </b> <br>kl. 11–13 & 14–16, nonstop <br>Vad skulle göra Helsingfors till en ännu bättre stad för oss alla? I verkstaden har ni möjlighet att förverkliga ni idéer genom att bygga dem med legoklossar.  <br>Från 4 år <br>engelska, finska</p><p><b>Leka och måla! – verkstad </b> <br>kl. 11 & 14 (45 min) <br>I Gustis verkstad utforskar vi tillsammans färger, fantasi, musik och lek. <br>Från 4 år <br>engelska, spanska</p><p><b>Kolibrí Pin – verkstad </b> <br>kl. 11–16 <br>Bär Kolibrí nära hjärtat! I verkstaden får ni tillverka era egna märken . <br>För alla åldrar <br>engelska, spanska, finska</p><p><b>Var bor önskningarna? – verkstad </b> <br>kl. 12–15, nonstop <br>Laura Zubillagas och Daniela Alatorres verkstad är en kreativ upplevelse där ni kan drömma er bort, bygga, dekorera och leka med olika trädelar. <br>Från 1 år <br>engelska, spanska, portugisiska</p><p><b>Livets gemensamma rytmer – musikverkstad </b> <br>kl. 12 (45 min) <br>Delado Duo bjuder på en rolig musikresa i instrumentens värld.<br>Från 2 år <br>engelska, spanska, finska, svenska</p><p><b>Dansande kramar – dansverkstad </b> <br>kl. 12 & 13 (45 min) <br>Stärk bandet till din baby genom dans, beröring och hjärtliga latinamerikanska sånger. <br>Bebisar <br>engelska, spanska</p><p><b>Hoppets pärlor – smyckesverkstad </b> <br>kl. 13–14 <br>Kom och gör ditt eget armband av återvunna tidskrifter och tidningar. <br>4–8 år <br>engelska, tagalog</p><p><b>ŠIELLA – amulettverkstad </b> <br>kl. 13–16 <br>I verkstaden tillverkar vi en egen lyckobringare av renhorn och träpärlor – som skydd och påminnelse om naturens betydelse och människors gemenskap. <br>4–14 år <br>engelska, finska, nordsamiska – Davvisámegiella</p><p><b>Dansande önskningar – verkstad </b> <br>kl. 14–15: för barn 4–8 år <br>kl. 15–16: för barn 1–3 år <br>I Vera Lapitskayas verkstad väcker vi våra önskningar till liv genom rörelse, lek och delad kreativitet. <br>engelska, spanska, finska, ryska</p><p><b>Färgglada önskningar, stora drömmar – verkstad </b> <br>kl. 15–16 <br>I Vivita Kauperes verkstad väcker vi våra mest färgglada önskningar till livs och målar tillsammans med dina barn med naturens element. <br>Från 2 år <br>engelska, finska, lettiska</p><p><b>Barnboksmässan 2025 </b> <br>kl. 11–16 <br>Nu har du möjlighet att skaffa barnlitteratur på spanska och portugisiska.<br>Gusti signerar sina böcker kl. 12.30–13.00 & 15.30–16.00. <br>För alla åldrar <br>engelska, spanska, finska</p><p><b>Vilohörna </b> <br>kl. 11–16 <br>En trygg och lugn plats för dem som behöver en skön paus för sina sinnen.</p><p><b>Avslutningskonsert med KAÔS-ensemblen </b> <br>kl. 16–17 <br>Den mångkulturella gruppen KAÔS tar med publiken på en musikalisk resa från Europa till Mellanöstern och Asien.<br>För alla åldrar <br>engelska, spanska, portugisiska, persiska, japanska</p><p>Programkartan hittar du på: www.kolibrifestivaali.org</p><p>Det blir roligt att ses!</p>",
                "en": "<p>Kolibri Festival returns to Annantalo to celebrate its 10th anniversary with a fun-filled event day! The day will be packed with exciting activities for the whole family!</p><p>The day offers a diverse program: art workshops, storytelling sessions, dance, and encounters with children’s literature. The celebration concludes with a concert by the KAÔS ensemble.</p><p>The anniversary theme is wishes. Held across the Helsinki metropolitan area, the festival culminates at Annantalo, where you can learn languages, explore new cultures, and meet people from around the world.</p><p>The event is free of charge and everyone is welcome.</p><p>Produced in collaboration with Kulttuurikeskus Ninho ry and Annantalo.</p><p><b>Program:</b></p><p><b>Kolibri Pin – workshop</b><br>11:00–16:00, nonstop <br>Carry your Kolibrí close to your heart! In this workshop, you can craft your own brooch. <br>For all ages <br>English, Spanish, Finnish</p><p><b>Dream Helsinki – LEGO Workshop</b><br>11:00–13:00 & 14:00–16:00, nonstop <br>What would make Helsinki a better city for all of us? Build your own idea with LEGO bricks and place it on a city map. <br>Ages 4+ <br>English, Finnish</p><p><b>Juoiggas Mánážan! – Joikaa lapseni! – Music Workshop</b><br>11:00 (duration 45 min) <br>Artist Petra Biret Magga-Vars and her daughter lead a unique music workshop introducing traditional Sámi joik. Together, we will joik animals, people, and learn simple phrases in North Sámi. <br>For all ages <br>English, Finnish, North Sámi (Davvisámegiella)</p><p><b>Let’s Play and Paint! – workshop</b><br>11:00 & 14:00 (45 min) <br>To paint while playing, or to play while painting? Why not both! In Gusti’s workshop you’ll enjoy, create, and freely express yourself through colors, imagination, music, and play. <br>Ages 4+ <br>English, Spanish</p><p><b>Where Do Wishes Live? – workshop</b><br>12:00–15:00, nonstop <br>Laura Zubillaga’s and Daniela Alatorre’s will host a workshop where you can imagine, build, decorate, and play with wooden pieces. <br>Ages 1+ <br>English, Spanish, Portuguese</p><p><b>Rhythms of Life Together – Music workshop</b><br>12:00 (duration 45 min) <br>Rodrigo Rodríguez and Sanna Karlsson-Sutisna will host a fun musical journey into the world of instruments such as the cajón, djembe, dundun, and pan flutes. <br>Ages 2+ <br>English, Spanish, Finnish, Swedish</p><p><b>Dancing Hugs – Dance workshop</b><br>12:00 & 13:00 (duration 45 min) <br>Strengthen your bond with your baby through dance, touch, and heartfelt Latin American songs. <br>For babies <br>English, Spanish</p><p><b>Beads of Hope – Bracelet workshop</b><br>13:00–14:00  <br>Learn to make bracelets from recycled magazines and newspapers. Explore creative recycling, share your hopes for the future, and turn them into colorful creations.  <br>Ages 4–8 <br>English, Tagalog</p><p><b>ŠIELLA – Amulet workshop</b><br>13:00–16:00 <br>Craft your own protective amulet from reindeer antler and wooden beads — a reminder of the importance of nature and community. <br>Ages 4–14 <br>English, Finnish, North Sámi (Davvisámegiella)</p><p><b>Dancing Wishes – Workshop</b> <br>14:00–15:00: Ages 4–8 <br>15:00–16:00: Ages 1–3 <br>In Vera Lapitskaya’s workshop wishes come alive through movement, play, and shared creativity. <br>English, Spanish, Finnish, Russian</p><p><b>Colorful Wishes, Big Dreams – Workshop</b> <br>15:00–16:00 <br>In Vivita Kaupere’s workshop families bring their most colorful wishes to life and learn to paint with natural elements.  <br>Ages 2+ <br>English, Finnish, Latvian</p><p><b>Serenity Corner</b><br>11:00–16:00 <br>A safe and calm space for those who need a cozy place to rest their senses.</p><p><b>Children’s Book Fair</b><br>11-16 <br>Children’s Book Fair offers the opportunity to discover children’s literature in Spanish and Portuguese. Gusti will be signing his books at our fair from 12:30–13:00 & 15:30–16:00. <br>For all ages <br>Languages: English, Spanish, Finnish</p><p><b>Closing Concert with KAÔS Band</b><br>16:00–17:00 <br>Includes lullabies and beautiful folk songs in Portuguese, Japanese, and Farsi. <br>For all ages <br>English, Spanish, Portuguese, Persian, Japanese</p><p>At the Culture Kids stand, you can learn more about the service and enjoy Green Planet Astronauts snacks.</p><p>You can find the schedule m</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CBE0E843FA12554621C2FCE5A301F09E/Kolibri_Festivaalin_loppuhuipennus",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CBE0E843FA12554621C2FCE5A301F09E/Kolibri-festivalen_kulminerar",
                "en": "http://www.annantalo.fi/en/events/event/CBE0E843FA12554621C2FCE5A301F09E/Kolibri_Festival_Finale_"
            },
            "provider": null,
            "short_description": {
                "fi": "Kolibri Festivaali palaa Annantalolle juhlimaan 10-vuotista taivaltaan hauskan tapahtumapäivän merkeissä! Päivä on täynnä mieleenpainuvaa tekemistä kaikille perheille.",
                "sv": "Kolibri-festivalen återvänder till Annegården för sitt 10-årsjubileum! Evenemangsdagen är fylld av roliga aktiviteter för hela familjen.",
                "en": "Kolibri Festival returns to Annantalo to celebrate its 10th anniversary with a fun-filled event day! The day will be packed with exciting activities for the whole family!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Kolibri Festivaalin loppuhuipennus – Monikulttuurinen tapahtumapäivä kaikille",
                "sv": "Kolibri-festivalen kulminerar – En mångkulturell festdag för alla",
                "en": "Kolibri Festival Finale – A multicultural event day for all"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66305/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66183",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?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/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 892919,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-30T07:12:48.337714Z",
                    "last_modified_time": "2025-05-30T07:12:48.337728Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772445.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/892919/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-30T07:12:48.284097Z",
            "last_modified_time": "2025-09-19T11:12:47.025359Z",
            "date_published": null,
            "start_time": "2025-09-25T13:00:00Z",
            "end_time": "2025-09-25T16: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,
            "description": {
                "fi": "<p>Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!</p><p>Tapahtumassa tuoreet kaupunkilaiset pääsevät tutustumaan oman asuinalueensa palveluihin, harrastuksiin ja vapaa-ajan tarjontaan.</p><p>Welcome Day tarjoaa hyödyllisen tiedon lisäksi hauskaa, inspiroivaa ja yhteisöllistä ohjelmaa kaikenikäisille. Ohjelma huipentuu Suistamon Sähkö -yhtyeen vauhdikkaaseen konserttiin.</p><p>Welcome Dayssa puhumme englantia, minkä lisäksi tarjoamme tulkkausta tarpeen mukaan. Tapahtuma on maksuton, mutta vaatii ennakkoilmoittautumisen. <br><u><a href=\"https://link.webropolsurveys.com/EP/65ECB10FDE606661\">Ilmoittaudu mukaan!</a></u></p><p>Tapahtumassa osallistujat pääsevät nauttimaan myös pullasta ja kahvista kuten suomalaiseen perinteeseen kuuluu.</p><p><b>Welcome Dayn aikataulu</b></p><p>klo 16–18.45 Palvelujen ja harrastustoiminnan esittely Malmitalon aulassa <br>klo 16.30–18.30 Työpajoja ja osallistavaa toimintaa <br>klo 18.30–19.30 Ohjelmaa Malmisalissa</p><p><b>klo 16–18.45 Palvelujen ja harrastustoiminnan esittely Malmitalon aulassa</b> <br>Aulaan saapuu 20 kaupungin palvelujen ja yhdistystoiminnan edustajaa esittelemään toimintaansa.</p><p><b>klo 16.30–18.30 Työpajoja ja osallistavaa toimintaa</b></p><p>Stories about integration art workshop, AFAES ry <br>Keskustelua ja kohtaamisia sisältävä taidepaja, jossa paalataan T-paitoja.  <br>Paikka: Kirjaston monitoimitila</p><p>Seikkailutaidekoulun luonnonmaalipalettipaja <br>Maalausta luonnonmateriaalitekniikoilla ohjaajien opastuksessa. <br>Sijainti: Kirjasto, lasten osaston ja varaushyllyjen välinen tila</p><p>Nuorisopalvelujen korutyöpaja lapsille <br>Tehdään yhdessä koruja nuorisopalvelujen opastuksella! <br>Sijainti: Kirjasto, Lasten osaston satunurkkaus</p><p>Sirkus Magentan temppuilupaja lapsille<br>Tule mukaan kokeilemaan sirkusta!</p><p>Speed Friending -työpaja klo 17–18.30<br>Sijainti: Kokoushuone 2</p><p><b>klo 18.30–19.30 Ohjelmaa Malmisalissa</b> <br>Juontajan puhe: Yasin Omer Nur kertoo kokemuksistaan Helsingissä asumisesta/työskentelystä (MakeSomeNoise-verkosto) klo 18.30.</p><p><b>Suistamon sähkön musiikkiesitys 18.40-19.30</b></p><p><b>Suistamon Sähkö</b><br>Suistamon Sähkö on riehakasta reivimeininkiä, syntetisaattorin surinaa, räppijulistusta ja neuvostovalmisteista paljepeliä suosiva genrehybridi. Yhtyeen primitiivisen alkuvoimainen rytmimaailma liikkuu ennakkoluulottomasti etnoteknon ja hiphopin maailmoissa tuottaen yleisölleen vallatonta ja kokeellista tanssimusiikkia.</p>",
                "sv": "<p>Welcome Day hälsar invånare som nyligen flyttat till Finland välkomna till Helsingfors!</p><p>Under evenemanget får de nya stadsborna möjlighet att bekanta sig med tjänster, hobbyer och fritidsaktiviteter inom det egna bostadsområdet.</p><p>Welcome Day erbjuder förutom nyttig information även ett roligt, inspirerande och gemenskapligt program för personer i alla åldrar. Programmet kulminerar i en fartfylld konsert med Suistamon Sähkö.</p><p>På Welcome Day talar vi engelska, och dessutom erbjuder vi tolkning enligt behov. Evenemanget är avgiftsfritt men förutsätter förhandsanmälan. <br><u><a href=\"https://link.webropolsurveys.com/EP/65ECB10FDE606661\">Anmäl dig!</a></u></p><p>Under evenemanget får deltagarna även njuta av kaffe och bulle enligt finländsk tradition.</p><p>Suistamon Sähkö<br>Suistamon Sähkö är en genrehybrid med högljutt reverb, synthesizersurr, rapmanifest och bälgspel tillverkat i Sovjetunionen. Bandets rytmvärld med primitiv kraft rör sig fördomsfritt i etnoteknos och hiphopens världar och producerar vild och experimentell dansmusik för sin publik.</p><p>Fritt inträde!</p><p>Längd: 4 timmar</p>",
                "en": "<p>Cultural Centre Malmitalo welcomes the recently arrived international residents to Helsinki!</p><p>In this event new residents will get to know the services, hobbies and other leisure time activities available to them in their neighborhoods.</p><p>In addition to providing useful information, the Welcome Day program includes fun, inspiring and communal activities for people of all ages. The program culminates in a high-energy concert by Suistamo Sähkö.</p><p>We speak English at Welcome Day. Additionally, interpreters will be present at the event. The event is free to attend, but sign-ups are required. <br><u><a href=\"https://link.webropolsurveys.com/EP/65ECB10FDE606661\">Sign up!</a></u></p><p>Traditional Finnish “pulla” (pastries) and coffee will also be served.</p><p><b>The program for Welcome Day Malmitalo</b><br> <br><b>16.00</b>: The services of the City of Helsinki, local art schools and NGOs present their activities in the lobby of Malmitalo. This part of the program will end at 18.45.<br> <br><b>16.30–18.30: Fun activities for people of all ages</b></p><p><b>Speed Friending (Meeting Room 2, 2nd floor)</b><br>17.00-18.30<br>Meet new people by taking part in the speedy process!<br>Organizer: Tyypit tyypit kollektiivi</p><p><b>Circus for kids! (Small Auditorium / Pieni sali)</b><br>Organizer: Sirkus Magenta</p><p><b>Stories about integration art workshop (Library)</b><br>Organizer: Africans and African European Association</p><p><b>Nature Palette (Library)</b><br>Painting with natural colors!<br>Organizer: Seikkailutaidekoulu</p><p><b>Make your own Jewelry! (Library)</b><br>Organizer: Youth Services</p><p><b>Lego Building: My Dream Helsinki (Library)</b><br>Organizer: Stadiluotsi Kirsti Kallansalo</p><p><b>18.30: The host of the evening, Yasin Omer Nur, will share his experiences on living/working in Helsinki.</b> (Malmisali)</p><p><b>18:40–19:30 Suistamon Sähkö will perform</b> (Malmisali)<br>Suistamon Sähkö gains momentum gig by gig and cheerfully moves through ethno techno and smoke shack sounds to the world of hip hop like the genre hybrid they are. The group favours a boisterous rave atmosphere, synthesizer buzz, rap declarations and a Soviet-made accordion and makes the audience jiggle and the cottage floor shake. The Suistamon Sähkö rhythm universe is a rambunctious mix of primitive primordial force and experimental dance music.</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1BBA2AFEDFC9B0F731B5418BF9A4E60A/Welcome_Day_Malmitalo",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1BBA2AFEDFC9B0F731B5418BF9A4E60A/Welcome_Day_Malmitalo",
                "en": "http://www.malmitalo.fi/en/events/event/1BBA2AFEDFC9B0F731B5418BF9A4E60A/Welcome_Day_Malmitalo"
            },
            "provider": null,
            "short_description": {
                "fi": "Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!",
                "sv": "Welcome Day hälsar invånare som nyligen flyttat till Finland välkomna till Helsingfors!",
                "en": "Cultural Centre Malmitalo welcomes the recently arrived international residents to Helsinki!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "name": {
                "fi": "Welcome Day Malmitalo",
                "sv": "Welcome Day Malmitalo",
                "en": "Welcome Day Malmitalo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66183/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwcfqnyi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490814,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-17T12:35:20.451450Z",
                    "last_modified_time": "2025-09-17T12:35:20.451466Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f84ad736-a974-4111-b504-9468d0d433f7.png",
                    "cropping": "56,0,433,376",
                    "photographer_name": "",
                    "alt_text": "Piirretty kuva kahdesta lapsesta harrastamassa capoeiraa leveissä vaaleissa housuissa ja turkoosissa paidassa. Teksti: Lasten avoin ja maksuton Capoeira työpaja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490814/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-09-19T07:49:33.463050Z",
            "last_modified_time": "2025-09-19T07:49:33.463069Z",
            "date_published": null,
            "start_time": "2025-10-12T10:00:00Z",
            "end_time": "2025-10-12T12: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,
            "description": {
                "fi": "<p>Lapsille järjestetty tapahtuma, jossa lapset voivat kokea liikunnan riemua capoeiran avulla. Opetellaan capoeiran perusliikkeitä ja tehdään yhteistoiminnallisia leikkejä.</p><p>Lapset tutustuvat myös perinteisiin afrobrasilialaisiin soittimiin, kuten rumpu ja tamburiini.</p><p>Ohjauksesta vastaavat kaksi kokenutta opettajaa, joilla on erityisosaamista kulttuurisensitiivisestä lasten toiminnasta. Toiminta on maksutonta ja kaikki tarvittavat välineet tarjotaan.</p>",
                "sv": "<p>Ett evenemang för barn, där de kan uppleva rörelsens glädje genom Capoeira. Grundläggande Capoeira-rörelser lärs ut och samarbetsspel genomförs.</p><p>Barnen får även bekanta sig med traditionella afrobrasilianska instrument, såsom trummor och tamburin.</p><p>Aktiviteterna leds av två erfarna instruktörer med särskild kompetens inom kultursensitivt arbete med barn. Deltagandet är kostnadsfritt och all nödvändig utrustning tillhandahålls.</p>",
                "en": "<p>An event organized for children, where they can experience the joy of movement through Capoeira. Basic Capoeira movements are taught, and cooperative games are played.</p><p>Children also get to explore traditional Afro-Brazilian instruments, such as drums and tambourines.</p><p>The activities are led by two experienced instructors with special expertise in culturally sensitive work with children. Participation is free, and all necessary equipment is provided.</p>"
            },
            "info_url": null,
            "provider": {
                "fi": "Kulttuuriyhdistys Tamborvivo ry",
                "sv": "Kulttuuriyhdistys Tamborvivo ry",
                "en": "Kulttuuriyhdistys Tamborvivo ry"
            },
            "short_description": {
                "fi": "Musiikkia ja liikuntaa ",
                "sv": "Musik och motion",
                "en": "Music and exercise"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Lasten avoin ja maksuton Capoeira-työpaja",
                "sv": "Barnens öppna och kostnadsfria Capoeira-workshop",
                "en": "Children’s open and free Capoeira workshop "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwcfqnyi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwcfqome",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwcfquyq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490843,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-19T07:04:30.747892Z",
                    "last_modified_time": "2025-09-19T07:04:30.747907Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3498ce6b-2a7d-4e14-8883-c3b087621a9c.png",
                    "cropping": "185,0,658,473",
                    "photographer_name": "",
                    "alt_text": "Senioreita jumppaamassa tuoleilla istuen",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490843/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-19T07:30:08.437949Z",
            "last_modified_time": "2025-09-19T07:30:08.437966Z",
            "date_published": null,
            "start_time": "2025-12-10T08:30:00Z",
            "end_time": "2025-12-10T09:35: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,
            "description": {
                "fi": "<p>Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>Ke klo 10.30-11.00 Tuolijumppa</p><p>Ke klo 11.00-11.35 Kehonhuolto &amp;tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p><p><br></p><p>Tuolijumppa Ison Omenan kirjastossa myös joka maanantai 10:00-11:05</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Stolgymnastik, kroppsvård och balans varje onsdag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>Ons 10.30-11.00 Stolgymnastik</p><p>Ons 11.05-11.35 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p><p><br></p><p>Stolgympa på Ison Omenas bibliotek även varje måndagen kl. 10.00–11.05</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>Chair gymnastics, streching and balance every Wednesday. (no instruction during public holidays)</p><p>Schedule:</p><p>Wed 10.30-11.00 Chair exercises</p><p>Wed 11.05-11.35 Body care &amp; balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p><p><br></p><p>Chair exercise at Iso Omena Library also every Monday from 10:o0 AM to 11:05 AM</p><p><br></p><p>#helloespoo</p>"
            },
            "info_url": null,
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Esbo stads idrottstjänster",
                "en": "Espoo City Sport Services"
            },
            "short_description": {
                "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä) Tervetuloa!",
                "sv": "Stolgymnastik, kroppsvård och balans varje måndag. (ingen undervisning under helgdagar) Välkommen!",
                "en": "Chair gymnastics, streching and balance every Monday. (no instruction during public holidays) Welcome!"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Tuolijumppa + kehonhuolto ja tasapaino Ison Omenan kirjastossa",
                "sv": "Stolgymnastik + kroppsvård och balans på Ison Omenas bibliotek",
                "en": "Chair exercise + body care and balance at Iso Omena Library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwcfqome/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwcfqo6i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwcfquyq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490843,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-19T07:04:30.747892Z",
                    "last_modified_time": "2025-09-19T07:04:30.747907Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3498ce6b-2a7d-4e14-8883-c3b087621a9c.png",
                    "cropping": "185,0,658,473",
                    "photographer_name": "",
                    "alt_text": "Senioreita jumppaamassa tuoleilla istuen",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490843/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-19T07:30:08.057413Z",
            "last_modified_time": "2025-09-19T07:30:08.057431Z",
            "date_published": null,
            "start_time": "2025-12-03T08:30:00Z",
            "end_time": "2025-12-03T09:35: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,
            "description": {
                "fi": "<p>Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>Ke klo 10.30-11.00 Tuolijumppa</p><p>Ke klo 11.00-11.35 Kehonhuolto &amp;tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p><p><br></p><p>Tuolijumppa Ison Omenan kirjastossa myös joka maanantai 10:00-11:05</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Stolgymnastik, kroppsvård och balans varje onsdag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>Ons 10.30-11.00 Stolgymnastik</p><p>Ons 11.05-11.35 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p><p><br></p><p>Stolgympa på Ison Omenas bibliotek även varje måndagen kl. 10.00–11.05</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>Chair gymnastics, streching and balance every Wednesday. (no instruction during public holidays)</p><p>Schedule:</p><p>Wed 10.30-11.00 Chair exercises</p><p>Wed 11.05-11.35 Body care &amp; balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p><p><br></p><p>Chair exercise at Iso Omena Library also every Monday from 10:o0 AM to 11:05 AM</p><p><br></p><p>#helloespoo</p>"
            },
            "info_url": null,
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Esbo stads idrottstjänster",
                "en": "Espoo City Sport Services"
            },
            "short_description": {
                "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä) Tervetuloa!",
                "sv": "Stolgymnastik, kroppsvård och balans varje måndag. (ingen undervisning under helgdagar) Välkommen!",
                "en": "Chair gymnastics, streching and balance every Monday. (no instruction during public holidays) Welcome!"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Tuolijumppa + kehonhuolto ja tasapaino Ison Omenan kirjastossa",
                "sv": "Stolgymnastik + kroppsvård och balans på Ison Omenas bibliotek",
                "en": "Chair exercise + body care and balance at Iso Omena Library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwcfqo6i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwcfqppq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwcfquyq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490843,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-19T07:04:30.747892Z",
                    "last_modified_time": "2025-09-19T07:04:30.747907Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3498ce6b-2a7d-4e14-8883-c3b087621a9c.png",
                    "cropping": "185,0,658,473",
                    "photographer_name": "",
                    "alt_text": "Senioreita jumppaamassa tuoleilla istuen",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490843/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-19T07:30:07.887246Z",
            "last_modified_time": "2025-09-19T07:30:07.887264Z",
            "date_published": null,
            "start_time": "2025-11-26T08:30:00Z",
            "end_time": "2025-11-26T09:35: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,
            "description": {
                "fi": "<p>Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>Ke klo 10.30-11.00 Tuolijumppa</p><p>Ke klo 11.00-11.35 Kehonhuolto &amp;tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p><p><br></p><p>Tuolijumppa Ison Omenan kirjastossa myös joka maanantai 10:00-11:05</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Stolgymnastik, kroppsvård och balans varje onsdag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>Ons 10.30-11.00 Stolgymnastik</p><p>Ons 11.05-11.35 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p><p><br></p><p>Stolgympa på Ison Omenas bibliotek även varje måndagen kl. 10.00–11.05</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>Chair gymnastics, streching and balance every Wednesday. (no instruction during public holidays)</p><p>Schedule:</p><p>Wed 10.30-11.00 Chair exercises</p><p>Wed 11.05-11.35 Body care &amp; balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p><p><br></p><p>Chair exercise at Iso Omena Library also every Monday from 10:o0 AM to 11:05 AM</p><p><br></p><p>#helloespoo</p>"
            },
            "info_url": null,
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Esbo stads idrottstjänster",
                "en": "Espoo City Sport Services"
            },
            "short_description": {
                "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä) Tervetuloa!",
                "sv": "Stolgymnastik, kroppsvård och balans varje måndag. (ingen undervisning under helgdagar) Välkommen!",
                "en": "Chair gymnastics, streching and balance every Monday. (no instruction during public holidays) Welcome!"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Tuolijumppa + kehonhuolto ja tasapaino Ison Omenan kirjastossa",
                "sv": "Stolgymnastik + kroppsvård och balans på Ison Omenas bibliotek",
                "en": "Chair exercise + body care and balance at Iso Omena Library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwcfqppq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwcfqqaa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwcfquyq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490843,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-19T07:04:30.747892Z",
                    "last_modified_time": "2025-09-19T07:04:30.747907Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3498ce6b-2a7d-4e14-8883-c3b087621a9c.png",
                    "cropping": "185,0,658,473",
                    "photographer_name": "",
                    "alt_text": "Senioreita jumppaamassa tuoleilla istuen",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490843/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-19T07:30:07.713417Z",
            "last_modified_time": "2025-09-19T07:30:07.713434Z",
            "date_published": null,
            "start_time": "2025-11-19T08:30:00Z",
            "end_time": "2025-11-19T09:35: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,
            "description": {
                "fi": "<p>Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>Ke klo 10.30-11.00 Tuolijumppa</p><p>Ke klo 11.00-11.35 Kehonhuolto &amp;tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p><p><br></p><p>Tuolijumppa Ison Omenan kirjastossa myös joka maanantai 10:00-11:05</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Stolgymnastik, kroppsvård och balans varje onsdag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>Ons 10.30-11.00 Stolgymnastik</p><p>Ons 11.05-11.35 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p><p><br></p><p>Stolgympa på Ison Omenas bibliotek även varje måndagen kl. 10.00–11.05</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>Chair gymnastics, streching and balance every Wednesday. (no instruction during public holidays)</p><p>Schedule:</p><p>Wed 10.30-11.00 Chair exercises</p><p>Wed 11.05-11.35 Body care &amp; balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p><p><br></p><p>Chair exercise at Iso Omena Library also every Monday from 10:o0 AM to 11:05 AM</p><p><br></p><p>#helloespoo</p>"
            },
            "info_url": null,
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Esbo stads idrottstjänster",
                "en": "Espoo City Sport Services"
            },
            "short_description": {
                "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä) Tervetuloa!",
                "sv": "Stolgymnastik, kroppsvård och balans varje måndag. (ingen undervisning under helgdagar) Välkommen!",
                "en": "Chair gymnastics, streching and balance every Monday. (no instruction during public holidays) Welcome!"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Tuolijumppa + kehonhuolto ja tasapaino Ison Omenan kirjastossa",
                "sv": "Stolgymnastik + kroppsvård och balans på Ison Omenas bibliotek",
                "en": "Chair exercise + body care and balance at Iso Omena Library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwcfqqaa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}