Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 27763,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=178",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=176"
    },
    "data": [
        {
            "id": "kulke:67083",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:755/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490948,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-30T09:13:50.733927Z",
                    "last_modified_time": "2025-09-30T09:13:50.733941Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777792.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490948/?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-09-30T09:13:50.609426Z",
            "last_modified_time": "2025-10-17T07:13:52.066128Z",
            "date_published": null,
            "start_time": "2025-11-15T10: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,
            "short_description": {
                "fi": "Hopi hopi! Kaikki lapset ja lapsenmieliset ovat lämpimästi tervetulleita Kanneltalon Lasten lauantaihin.",
                "sv": "Hopi hopi. Alla barn och barnasinnade är varmt välkomna till Barnens lördag på Gamlasgården.",
                "en": "Chop chop! All children and like-minded adults are warmly welcome to Kanneltalo’s Children's Saturday."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/13B29EF9119C3229B66CD0D08CD4BFF4/Lasten_lauantai",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/13B29EF9119C3229B66CD0D08CD4BFF4/Barnens_lordag",
                "en": "http://www.kanneltalo.fi/en/events/event/13B29EF9119C3229B66CD0D08CD4BFF4/Children_s_Saturday"
            },
            "description": {
                "fi": "<p>Hopi hopi! Kaikki lapset ja lapsenmieliset ovat lämpimästi tervetulleita Kanneltalon Lasten lauantaihin.</p><p>Klovni Marttakin on kutsuttu mukaan vapaapäivän viettoon! Maksutonta ohjelmaa ja tekemistä löydät galleriasta ja kirjastosta.</p><p>AULA</p><p>klo 12-15 Klovni Martta (Taina Mäki-Iso) on tosi innoissaan, koska hänet on kutsuttu Lasten lauantai -tapahtumaan! Marttaa kyllä vähän ihmetyttää, miten lapsen voi tunnistaa. Mikä oikein tekee lapsesta lapsen? Ja voiko aikuisessa - tai robotissa - olla lasta tai lapsenmieltä? Martan voi tavata joko hänen ihmettelytoimipisteellään tai kiertelemässä lasten seassa tapahtumapaikalla.</p><p>GALLERIA</p><p>klo 12-14 Työpajassa askarrellaan ennennäkemättömiä robotteja kuvakirjataiteilija Linda Bondestamin kanssa. Käytämme erilaisia kiehtovia materiaaleja näiden persoonallisten tyyppien valmistamiseen.<br>klo 12-15 Linda Bondestamin näyttely: Hopi hopi – toivoa paremmasta maailmasta  <br>Linda Bondestam: Hopi hopi - toivoa paremmasta maailmasta<br> <br>KIRJASTO<br>klo 12.30-13 Satutuokio (Rotunda) <br>klo 13.30-15 Bee botit matkaavat ympäri maailmaa -koodausleikkituokio (Rotunda)<br>klo 12-15 Legotyöpaja: Tulevaisuuden kaupunki (Tempo)<br> <br>KONSERTTISALI<br>klo 14-14.40 Pikku Papun Orkesteri & Liisa Kallio (kieli suomi, liput 6 € myynnissä Lippu.fi)<br>Pikku Papu Orkesteri & Liisa Kallio</p><p>Aula, galleria, kirjasto (vapaa pääsy)<br>Konsertti maksullinen</p>",
                "sv": "<p>Hopi hopi. Alla barn och barnasinnade är varmt välkomna till Barnens lördag på Gamlasgården.</p><p>Clownen Martta har också bjudits in för att delta i firandet! Kostnadsfritt program och upplevelser hittar du på galleriet och i biblioteket.</p><p>AULAN</p><p>12–15 Clownen Martta (Taina Mäki-Iso) är mycket glad över att ha fått en inbjudan till evenemanget Barnens lördag! Men Martta funderar nog lite på hur man kan känna igen ett barn. Vad är det egentligen som gör ett barn till ett barn? Och kan en vuxen – eller en robot – vara ett barn eller ha ett barnasinne? Du kan träffa Marta antingen vid hennes funderingsställe eller när hon vandrar runt i lokalen bland barnen.</p><p>GALLERIET</p><p>kl. 12–14 En verkstad där du får göra helt nya robotar tillsammans med illustratören Linda Bondestam. Vi använder en mängd olika fascinerande material för att skapa dessa personliga typer.<br>kl. 12–15 Linda Bondestams utställning: Hopi hopi - med hopp om en bättre värld<br>Linda Bondestam: Hopi hopi - med hopp om en bättre värld</p><p>BIBLIOTEKET<br>kl. 12.30–13.00 Sagostund (Rotundan)<br>kl. 13.30–15 Bee botarna reser runt i världen, kodningslekstund (Rotunda)<br>12-15 Legoverkstad: Framtidens stad (Tempo)</p><p>KONSERTSALEN<br>kl. 14-14.40 Pikku Papun Orkesteri & Liisa Kallio (på finska, biljetter 6 € till salu på Lippu.fi)<br>Pikku Papu Orkesteri & Liisa Kallio</p><p>Aulan, galleriet, biblioteket (gratis inträde)<br>Avgiftsbelagd konsert</p>",
                "en": "<p>Chop chop! All children and like-minded adults are warmly welcome to Kanneltalo’s Children's Saturday.</p><p>Clown Martta has also been invited to join the fun! Be sure to also visit the gallery and library for a variety of free-of-charge activities.</p><p>LOBBY</p><p>12.00–15.00 Clown Martta (Taina Mäki-Iso) is very excited to have been invited to the Children's Saturday event! But Martta is a little puzzled as to how you can identify a child. What exactly makes a child a child? And can an adult – or a robot – be like a child or have a childlike mind? You can meet Martta either at her wonder station or walking around the venue among the children.</p><p>GALLERY</p><p>12.00–14.00 Workshop for making never-before-seen robots with illustrator Linda Bondestam. We will be using a variety of fascinating materials to create these distinctive guys.<br>12.00–15.00 Linda Bondestam's exhibition: Chop chop – Hope for a Better World<br>Linda Bondestam: Chop chop – Hope for a Better World</p><p>LIBRARY<br>12.30–13.00 Story time (Rotunda)<br>13.30–15.00 Bee bots travel around the world - coding play session (Rotunda)<br>12.00–15.00 Lego workshop: City of the future (Tempo)</p><p>CONCERT HALL<br>14.00–14.40 Pikku Papun Orkesteri & Liisa Kallio (language: Finnish, tickets €6 available at Lippu.fi)<br>Pikku Papu Orkesteri & Liisa Kallio</p><p>Lobby, gallery, library (free entry)<br>The concert is subject to a charge.</p>"
            },
            "name": {
                "fi": "Lasten lauantai",
                "sv": "Barnens lördag",
                "en": "Children’s Saturday"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67083/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67113",
            "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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491023,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T11:14:23.853238Z",
                    "last_modified_time": "2025-10-06T11:14:23.853256Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778074.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491023/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T11:14:23.709362Z",
            "last_modified_time": "2025-10-17T07:13:39.113415Z",
            "date_published": null,
            "start_time": "2025-10-08",
            "end_time": "2025-11-08",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Se mikä jää piiloon, ei katoa.",
                "sv": "Det som förblir dolt försvinner inte.",
                "en": "What remains hidden does not disappear."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5EF92D05C2B7A5A940B2675620F64AEC/Pois_leikatut_-valokuvanayttely",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5EF92D05C2B7A5A940B2675620F64AEC/Pois_leikatut_Fotoutstallningen",
                "en": "http://www.malmitalo.fi/en/events/event/5EF92D05C2B7A5A940B2675620F64AEC/Pois_leikatut_photo_exhibition"
            },
            "description": {
                "fi": "<p>Se mikä jää piiloon, ei katoa.</p><p>Poliittiset päätökset tehdään usein kaukana arjesta, ja niiden vaikutukset jäävät kylmien numeroiden taakse. Tämän näyttelyn kuvat ja tarinat avaavat oven maailmaan, jossa leikkausten jäljet näkyvät: nuorten aikuisten elämään, ulkopuolisuuden tunteisiin ja mielenterveyden kamppailuihin. <br> <br>Tämä näyttely korostaa, kuinka tärkeää yhteisöllisyyden kaipuu voi olla: yksi ystävä tai hyväksyvä yhteisö voi muuttaa elämän suunnan. Samalla nousee esille, miten leikkaukset kohdistuvat kipeimmin heihin, joilla on kaikkein vähiten. Yhteiskunta tuntuu etäiseltä juuri silloin, kun apua tarvitaan eniten. <br> <br>Pois leikatut kutsuu pysähtymään, katsomaan ja kuuntelemaan – kohtaamaan ihmisiä, joiden ääni ansaitsee tulla kuulluksi.Tämä on tarina selviytymisestä ja nähdyksi tulemisen tärkeydestä. <br> <br><b>Valokuvaajat:</b> Sylvia Huppunen, Jasmin Ristolainen, Maija Brunfeldt, Kasper Viita, Max Hovi. <br><b>Kuratoinut:</b> kuvataiteilija Emmi Kähkönen <br> <br>Näyttely on nähty viimeiseksi Tekstin Talossa Helsingissä ja keväällä 2025 Tampere-talossa. Sen on tuottanut Kohtaus ry, jolla on epäkaupallinen nuorten aikuisten kaupunkiolohuone Helsingin Malmilla ja Vallilassa.  <br> <br><u><a href=\"https://www.kohtaus.info\">www.kohtaus.info</b></u>.  <br><u><a href=\"https://www.instagram.com/kohtaus\">Kohtaus Instagramissa</b></u>.</p>",
                "sv": "<p>Det som förblir dolt försvinner inte.</p><p>Politiska beslut fattas ofta långt från vardagen och deras effekter förblir gömda bakom kalla siffror. Bilderna och berättelserna i den här utställningen öppnar dörren till en värld där spåren efter nedskärningarna är synliga: unga vuxnas liv, känslor av utanförskap och psykiska problem.</p><p>Den här utställningen visar hur viktig längtan efter gemenskap kan vara: en vän eller en accepterande gemenskap kan ändra riktningen på ett liv. Den visar också hur nedskärningarna slår hårdast mot dem som har minst. Samhället verkar avlägset just när hjälpen behövs som mest.</p><p>Pois leikatut bjuder in dig att stanna upp, titta och lyssna – att möta människor vars röster förtjänar att höras. Det här är en berättelse om överlevnad och vikten av att bli sedd.</p><p>Fotografer: Sylvia Huppunen, Jasmin Ristolainen, Maija Brunfeldt, Kasper Viita, Max Hovi.<br>Kurator: bildkonstnären Emmi Kähkönen</p><p>Utställningen förevisades senast på Tekstin talo i Helsingfors och våren 2025 på Tammerforshuset. Den produceras av Kohtaus ry, som driver ett icke-kommersiellt stadsvardagsrum för unga vuxna i Malm och Vallgård i Helsingfors.</p>",
                "en": "<p>What remains hidden does not disappear.</p><p>Political decisions are often made far from everyday life, and their effects are concealed behind the cold numbers. The images and stories in this exhibition open a door to a world where the traces of the economic cuts become visible: in the lives of young adults, in feelings of exclusion, and in struggles with mental health.<br> <br>This exhibition highlights how vital the need for community can be: one friend or an accepting group can change the direction of a life. At the same time, it shows how cuts strike hardest at those who have the very least. Society can feel most distant precisely when help is most needed.<br> <br>Pois leikatut invites you to pause, look, and listen – to encounter people whose voices deserve to be heard. This is a story of survival and of the importance of being seen.<br> <br><b>Photographers:</b> Sylvia Huppunen, Jasmin Ristolainen, Maija Brunfeldt, Kasper Viita, Max Hovi.<br><br><b>Curated by:</b> visual artist Emmi Kähkönen<br><br><br> <br>The exhibition was most recently shown at Tekstin Talo in Helsinki and in spring 2025 at Tampere Hall. It is produced by Kohtaus ry, a non-commercial urban living room for young adults in Malmi and Vallila, Helsinki.<br><br><br> <br><u><a href=\"https://www.kohtaus.info\">www.kohtaus.info</a></u><br>  <br><u><a href=\"https://www.instagram.com/kohtaus\">Kohtaus on Instagram</a></u></p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Pois leikatut -valokuvanäyttely",
                "sv": "Pois leikatut Fotoutställningen",
                "en": "Pois leikatut photo exhibition"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67113/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66901",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:733/?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:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490753,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-12T08:12:57.063144Z",
                    "last_modified_time": "2025-09-12T08:12:57.063159Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776795.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490753/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-12T08:12:56.956950Z",
            "last_modified_time": "2025-10-17T06:13:51.895124Z",
            "date_published": null,
            "start_time": "2025-11-07",
            "end_time": "2025-11-16",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia Liikkeellä marraskuussa -festivaalin taiteilijoiden kanssa.",
                "sv": "Soup Talks är en serie samtal och möten med konstnärer från festivalen Liikkeellä marraskuussa.",
                "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the Moving in November festival."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/72DF881B21422303D4E6E0438030250E/Liikkeella_marraskuussa_Soup_Talks",
                "sv": "http://www.caisa.fi/sv/evenemang/event/72DF881B21422303D4E6E0438030250E/Liikkeella_marraskuussa_Soup_Talks",
                "en": "http://www.caisa.fi/en/events/event/72DF881B21422303D4E6E0438030250E/Moving_in_November_Soup_Talks"
            },
            "description": {
                "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia Liikkeellä marraskuussa -festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle.</p><p>Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi paikallinen taiteilija.</p><p>Soup talk –tilaisuudet ovat maksuttomia, mutta niihin on ennakkoilmoittautuminen: https://fienta.com/fi/moving-in-november-soup-talk-145815</p><p><b>7.11.2025 klo 12–13:30</b><br>Teos: Work Body<br>Vieras: Michael Turinsky<br> <br><b>8.11.2025 klo 12–13:30</b><br>Teos: Don’t thank for the food<br>Vieras: Antonia Atarah<br> <br><b>9.11.2025 klo 13–14:30</b><br>Teos: Maze<br>Vieras: Marie Topp, Julia Giertz<br>HUOM! Eri aikaan kuin muut Soup Talk-tilaisuudet.</p><p><b>10.11.2025 klo 12–13:30</b><br>Teos: MANUAL<br>Vieras: Adam Kinner, Christopher Willes<br> <br><b>11.11.2025 klo 12–13:30</b><br>Teos: FRANK<br>Vieras: Cherish Menzo</p><p><b>12.11.2025 klo 12–13:30</b><br>Teos: Mother Tongue<br>Vieras: Lucía García Pullés<br> <br><b>13.11.2025 klo 12–13:30</b><br>Teos: La Gouineraie<br>Vieras: Rébecca Chaillon, Sandra Calderan <br> <br><b>14.11.2025 klo 12–13:30</b><br>Soup Talk Panel<br> <br><b>Liikkeellä marraskuussa</b> on pääkaupunkiseudulla vuosittain järjestettävä nykytanssifestivaali. <br>Caisa on yksi Liikkeellä marraskuussa -festivaalin esityspaikoista. Vuoden 2025 festivaali järjestetään 6.–16. marraskuuta. Lue lisää festivaalista: https://liikkeellamarraskuussa.fi/</p>",
                "sv": "<p>Soup Talks är en serie samtal och möten med konstnärer från festivalen Liikkeellä marraskuussa.</p><p>Diskussionsserien kommer att pågå under hela festivalen och sammanför människorna. Välkomna med kring det stora bordet där vi serverar varm soppa.</p><p>Vi bjuder in allmänheten att delta, lyssna, ställa frågor och diskutera. Varje diskussion modereras av en lokal konstnär.</p><p>Soup Talk-evenemangen är kostnadsfria, men kräver förhandsanmälan: https://fienta.com/fi/moving-in-november-soup-talk-145815</p><p>7.11.2025 kl. 12–13:30<br>Verk: Work Body<br>Gäst: Michael Turinsky</p><p>8.11.2025 kl. 12–13:30<br>Verk: Don’t thank for the food<br>Gäst: Antonia Atarah</p><p>9.11.2025 kl. 13:00–14:30<br>Verk: Maze<br>Gäst: Marie Topp, Julia Giertz<br>OBS! Annat klockslag än för andra Soup Talk-evenemang.</p><p>10.11.2025 kl. 12–13:30<br>Verk: MANUAL<br>Gäst: Adam Kinner, Christopher Willes</p><p>11.11.2025 kl. 12–13:30<br>Verk: FRANK<br>Gäst: Cherish Menzo</p><p>12.11.2025 kl. 12–13:30<br>Verk: Mother Tongue<br>Gäst: Lucía García Pullés</p><p>13.11.2025 kl. 12–13:30<br>Verk: La Gouineraie<br>Gäst: Rébecca Chaillon, Sandra Calderan</p><p>14.11.2025 kl. 12–13:30<br>Soup Talk Panel</p><p>Liikkeellä marraskuussa är en festival för modern dans som ordnas varje år i huvudstadsregionen.<br>Caisa är en av platserna där festivalen Liikkeellä marraskuussa ordnas. Festivalen 2025 ordnas den 6–16 november. Läs mer om festivalen: https://liikkeellamarraskuussa.fi</p>",
                "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the Moving in November festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup.</p><p>Everybody is invited to join in, listen, pose questions, and take part in the discussions.</p><p>Each of the talks will be hosted by a local artist.<br>Register to Soup Talks: https://fienta.com/moving-in-november-soup-talk-145815</p><p>November 7, 2025 at 12:00–1:30 PM<br>Performance: Work Body<br>Guest: Michael Turinsky<br> <br>November 8, 2025 at 12:00–1:30 PM<br>Performance: Don’t thank for the food<br>Guest: Antonia Atarah<br> <br>November 9, 2025 at 13:00–14:30 PM <br>Performance: Maze<br>Guest: Marie Topp, Julia Giertz<br> <br>November 10, 2025 at 12:00–1:30 PM<br>Performance: MANUAL<br>Guest: Adam Kinner, Christopher Willes<br> <br>November 11, 2025 at 12:00–1:30 PM<br>Performance: FRANK<br>Guest: Cherish Menzo<br> <br>November 12, 2025 at 12:00–1:30 PM<br>Performance: Mother Tongue<br>Guest: Lucía García Pullés<br> <br>November 13, 2025 at 12:00–1:30 PM<br>Performance: La Gouineraie<br>Guest: Rébecca Chaillon, Sandra Calderan<br> <br>November 14, 2025 at 12:00–1:30 PM<br>Soup Talk Panel</p><p><b>Liikkeellä marraskuussa – Moving in November</b> is an annual contemporary dance festival held in the Helsinki Metropolitan Area. Caisa is one of the venues of the Moving in November festival. The 2025 Festival will take place from 6 to 16 November. Read more about Moving in November.</p>"
            },
            "name": {
                "fi": "Liikkeellä marraskuussa: Soup Talks",
                "sv": "Liikkeellä marraskuussa – Soup Talks",
                "en": "Moving in November – Soup Talks"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66901/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agn6w6m6lq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6w6iawq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:koha",
            "sub_events": [],
            "images": [
                {
                    "id": 151452,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2022-07-01T06:28:47.191453Z",
                    "last_modified_time": "2022-08-31T05:56:25.773787Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg",
                    "name": "",
                    "cropping": "194,0,1006,813",
                    "photographer_name": "",
                    "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-07T07:13:14.295104Z",
            "last_modified_time": "2025-10-17T05:24:52.401371Z",
            "date_published": null,
            "start_time": "2025-12-04T12:30:00Z",
            "end_time": "2025-12-04T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.",
                "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.",
                "en": "The service advisors of Espoo Info bring digital support and service advice closer to you."
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info",
                "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info",
                "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info"
            },
            "description": {
                "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p><p>Mukana on myös Hello Espoo -info, joka tarjoaa neuvontaa espoolaisille, jotka ovat muuttaneet Suomeen ulkomailta vähän aikaa sitten.</p><p><strong>Palvelemme helpolla suomen kielellä, englanniksi ja puhelintulkin välityksellä.</strong></p><p>Tervetuloa!</p><ul><li><a href=\"https://www.espoo.fi/fi/hello-espoo-infon-tiedot-useilla-eri-kielilla\">Lue lisää Hello Espoo -infosta useilla kielillä.</a></li></ul><p>#HelloEspoo</p>",
                "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn.</p><p>Hello Espoo-info kommer också att delta i evenemanget. Hello Espoo-info erbjuder råd särskilt till Esbobor som nyligen har flyttat till Finland från utlandet.</p><p><strong>Vi betjänar på lätt finska, engelska och via telefontolk.</strong></p><p>Välkommen!</p><ul><li><a href=\"https://www.espoo.fi/sv/hello-espoo-info-information-pa-olika-sprak\">Läs mer om Hello Espoo-info på olika språk.</a></li></ul><p>#HelloEspoo</p>",
                "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services.</p><p>Hello Espoo Info will also be participating in the event. Hello Espoo Info offers advice especially to Espoo residents who have recently moved to Finland from abroad.</p><p><strong>We serve in easy Finnish, English and via telephone interpreter.</strong></p><p>Welcome!</p><ul><li><a href=\"https://www.espoo.fi/en/hello-espoo-info-information-several-languages\">Read more about Hello Espoo Info in different languages.</a></li></ul><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "Hello Espoo -info ja Liikkuva Espoo-info Entressen kirjastossa",
                "sv": "Hello Espoo-info och Mobila Esbo-info i Entressebiblioteket",
                "en": "Hello Espoo Info and Mobile Espoo Info at Entresse Library"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Konsernihallinto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6w6m6lq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agn6w6m6xi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6w6iawq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:koha",
            "sub_events": [],
            "images": [
                {
                    "id": 151452,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2022-07-01T06:28:47.191453Z",
                    "last_modified_time": "2022-08-31T05:56:25.773787Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg",
                    "name": "",
                    "cropping": "194,0,1006,813",
                    "photographer_name": "",
                    "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-07T07:13:13.631780Z",
            "last_modified_time": "2025-10-17T05:24:14.259632Z",
            "date_published": null,
            "start_time": "2025-11-06T12:30:00Z",
            "end_time": "2025-11-06T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.",
                "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.",
                "en": "The service advisors of Espoo Info bring digital support and service advice closer to you."
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info",
                "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info",
                "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info"
            },
            "description": {
                "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p><p>Mukana on myös Hello Espoo -info, joka tarjoaa neuvontaa espoolaisille, jotka ovat muuttaneet Suomeen ulkomailta vähän aikaa sitten.</p><p><strong>Palvelemme helpolla suomen kielellä, englanniksi ja puhelintulkin välityksellä.</strong></p><p>Tervetuloa!</p><ul><li><a href=\"https://www.espoo.fi/fi/hello-espoo-infon-tiedot-useilla-eri-kielilla\">Lue lisää Hello Espoo -infosta useilla kielillä.</a></li></ul><p>#HelloEspoo</p>",
                "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn.</p><p>Hello Espoo-info kommer också att delta i evenemanget. Hello Espoo-info erbjuder råd särskilt till Esbobor som nyligen har flyttat till Finland från utlandet.</p><p><strong>Vi betjänar på lätt finska, engelska och via telefontolk.</strong></p><p>Välkommen!</p><ul><li><a href=\"https://www.espoo.fi/sv/hello-espoo-info-information-pa-olika-sprak\">Läs mer om Hello Espoo-info på olika språk.</a></li></ul><p>#HelloEspoo</p>",
                "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services.</p><p>Hello Espoo Info will also be participating in the event. Hello Espoo Info offers advice especially to Espoo residents who have recently moved to Finland from abroad.</p><p><strong>We serve in easy Finnish, English and via telephone interpreter.</strong></p><p>Welcome!</p><ul><li><a href=\"https://www.espoo.fi/en/hello-espoo-info-information-several-languages\">Read more about Hello Espoo Info in different languages.</a></li></ul><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "Hello Espoo -info ja Liikkuva Espoo-info Entressen kirjastossa",
                "sv": "Hello Espoo-info och Mobila Esbo-info i Entressebiblioteket",
                "en": "Hello Espoo Info and Mobile Espoo Info at Entresse Library"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Konsernihallinto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6w6m6xi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67156",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491098,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-14T14:13:46.638885Z",
                    "last_modified_time": "2025-10-14T14:13:46.638899Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778242.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491098/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-14T14:13:46.501844Z",
            "last_modified_time": "2025-10-16T16:13:48.152535Z",
            "date_published": null,
            "start_time": "2025-11-07",
            "end_time": "2025-11-27",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Työväenopiston kuvataideryhmät esittäytyvät Vuotalon käytävägalleriassa 7.11.–27.11.2025."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C2766712BB24F5C8876ACDA14E6DB458/Matkalla",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C2766712BB24F5C8876ACDA14E6DB458/Matkalla",
                "en": "http://www.vuotalo.fi/en/events/event/C2766712BB24F5C8876ACDA14E6DB458/Matkalla"
            },
            "description": {
                "fi": "<p>Työväenopiston kuvataideryhmät esittäytyvät Vuotalon käytävägalleriassa 7.11.–27.11.2025.</p><p>Mukana piirustuksen-, maalauksen- ja keramiikan kurssien syksyn satoa.</p><p>Työväenopiston vuoden teema, Matka, näkyy näyttelytöissä eri näkökulmista. Matka voi olla konkreettinen siirtymä paikasta toiseen, haave tai muisto jostain reissusta. Se voi myös olla matka omaan luovuuteen, taiteelliseen prosessiin tai itsetuntemukseen.</p><p>PAIKKA: Vuotalon vitriinikäytävä, 2 kerros</p>"
            },
            "name": {
                "fi": "Matkalla – Työväenopiston kuvataideryhmien näyttely",
                "sv": "Matkalla – Työväenopiston kuvataideryhmien näyttely",
                "en": "Matkalla – Työväenopiston kuvataideryhmien näyttely"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67156/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67073",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490881,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-24T07:13:25.461694Z",
                    "last_modified_time": "2025-09-24T07:13:25.461706Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772440.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490881/?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-09-24T07:13:25.339744Z",
            "last_modified_time": "2025-10-16T12:14:13.687996Z",
            "date_published": null,
            "start_time": "2025-12-17T07:15: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,
            "short_description": {
                "fi": "Astrid Lindgrenin joulutarinoita vie katsojansa seikkailulle Astrid Lindgrenin rakastetuimpien hahmojen matkassa ja luo joulutunnelmaa kaikenikäisille.",
                "sv": "Astrid Lindgrens julberättelser tar dig med på ett äventyr tillsammans med Astrid Lindgrens mest älskade karaktärer och skapar julstämning för alla åldrar.",
                "en": "Christmas with Astrid Lindgren takes you on an adventure with some of Astrid Lindgren's most beloved characters, creating a Christmas atmosphere for all ages."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C3EB5719A980CC49EB11DDCD23E02D11/Astrid_Lindgrenin_joulutarinoita",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C3EB5719A980CC49EB11DDCD23E02D11/Astrid_Lindgrenin_joulutarinoita",
                "en": "http://www.vuotalo.fi/en/events/event/C3EB5719A980CC49EB11DDCD23E02D11/Astrid_Lindgrenin_joulutarinoita"
            },
            "description": {
                "fi": "<p>Astrid Lindgrenin joulutarinoita vie katsojansa seikkailulle Astrid Lindgrenin rakastetuimpien hahmojen matkassa ja luo joulutunnelmaa kaikenikäisille.</p><p>Qvisten Animationin uutuus sopii mainiosti pienimpien ensielokuvaksi. Elokuvassa on neljä animaatiotarinaa, jotka käkikellon Kello-käki näyttää joulua odottaville lapsille. Tapaamme Vaahteramäen Eemelin, Pekka Peukaloisen, ketun ja tontun sekä Taina Tomeran. Elokuva vie seikkailuun Astrid Lindgrenin tarinoiden maailmaan ja luo joulutunnelmaa niin nuorille kuin vanhoillekin. Elokuva on dubattu suomeksi ja tekstitetty ruotsiksi.</p><p>Ensi-ilta: 05.12.2024<br>Ikäraja: Sallittu<br>Pituus: 52 min.<br>Kieli: suomi<br>Tekstitys: ruotsi</p><p>Ryhmille pakollinen ilmoittautuminen osoitteessa: kultus.hel.fi</p>",
                "sv": "<p>Astrid Lindgrens julberättelser tar dig med på ett äventyr tillsammans med Astrid Lindgrens mest älskade karaktärer och skapar julstämning för alla åldrar.</p><p>Den här nya filmen från Qvisten Animation är perfekt som första film för de minsta. Filmen innehåller fyra animerade berättelser som gökurets gök visar för barn som väntar på julen. Vi får träffa Emil i Lönneberga, Nils Karlsson Pyssling, Tomten och Räven samt Kajsa Kavat. Filmen för tittarna ut på ett äventyr i Astrid Lindgrens sagovärld och skapar julstämning för både stora och små. Filmen är dubbad på finska och textad på svenska.</p><p>Premiär: 05.12.2024<br>Åldersgräns: Tillåten<br>Längd: 52 min.<br>Språk: finska<br>Textning: svenska</p><p>Obligatorisk registrering för grupper på: kultus.hel.fi</p>",
                "en": "<p>Christmas with Astrid Lindgren takes you on an adventure with some of Astrid Lindgren's most beloved characters, creating a Christmas atmosphere for all ages.</p><p>This new film from Qvisten Animation is a perfect first film for small children. The film features four animated stories that the cuckoo in the cuckoo clock shows to children waiting for Christmas. These stories introduce us to Emil, Simon Small, Brenda Brave and Tomten and the Fox. The film takes you on an adventure in the world of Astrid Lindgren's stories, creating a Christmas atmosphere for both young and older viewers. The film is dubbed in Finnish and subtitled in Swedish.</p><p>Premiere: 15 December 2024<br>Age limit: suitable for all ages<br>Duration: 52 min<br>Language: Finnish<br>Subtitles: Swedish</p><p>Mandatory registration for groups at kultus.hel.fi</p>"
            },
            "name": {
                "fi": "Astrid Lindgrenin joulutarinoita – Jouluinen skidikino",
                "sv": "Astrid Lindgrenin joulutarinoita – Jouluinen skidikino",
                "en": "Astrid Lindgrenin joulutarinoita – Jouluinen skidikino"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67073/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm6zrojii",
            "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:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-16T10:40:36.976850Z",
            "last_modified_time": "2025-10-16T10:40:36.976868Z",
            "date_published": null,
            "start_time": "2025-10-17T15:50:00Z",
            "end_time": "2025-10-17T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa nuoren räppärin Cevin Officialin keikalle Lippulaivan kirjastoon 17.10 noin kello 18.50 alkaen! Tapahtuma on kaikille avoin ja maksuton. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa nuoren räppärin Cevin Officialin keikalle Lippulaivan kirjastoon 17.10 noin kello 18.50 alkaen! Luvassa mahtavaa sanataidetta. Tapahtuma on kaikille avoin ja maksuton. </p>"
            },
            "name": {
                "fi": "Cevin Officialin räppikeikka"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6zrojii/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm7biulfq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-16T10:40:28.440803Z",
            "last_modified_time": "2025-10-16T10:40:28.440822Z",
            "date_published": "2025-10-17T05:00:00Z",
            "start_time": "2025-10-31T13:00:00Z",
            "end_time": "2025-10-31T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Ison Omenan kirjaston halloween pakohuone lapsille ja nuorille.",
                "sv": "Halloween-escape room för barn och unga på Iso Omena bibliotek.",
                "en": "Iso Omena library's halloween escaperoom for children and youth. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Lapsille ja nuorille suunnattu Halloween-teemainen pakohuone kirjaston VOX tilassa klo 15-17. Pakohuoneeseen voi tulla yksin tai yhdessä kavereiden kanssa!</p>",
                "sv": "<p>Ett Halloween-tematiskt escape room för barn och unga i bibliotekets VOX-utrymme kl. 15–17. Du kan komma till escape roomet ensam eller tillsammans med vänner!</p>",
                "en": "<p>A Halloween-themed escape room for children and youth in the library’s VOX space from 3 to 5 p.m. You can come to the escape room alone or with friends!</p>"
            },
            "name": {
                "fi": "Halloween pakohuone",
                "sv": "Halloween Escape room",
                "en": "Halloween Escape room"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "VOX",
                "sv": "VOX",
                "en": "VOX"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7biulfq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2z5ibi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5avy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5bgq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22bfuy/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-11T11:17:23.868946Z",
            "last_modified_time": "2025-10-16T10:31:53.281949Z",
            "date_published": null,
            "start_time": "2025-08-14T13:00:00Z",
            "end_time": "2025-12-11T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule oppimaan ja pelaamaan Ligrettoa.",
                "sv": "Kom och lär dig och spela Ligretto.",
                "en": "Come learn and play the Ligretto."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Haluatko pelata Ligrettoa?</p><p>Tai haluatko oppia pelaamaan Ligrettoa? Ligretto on hauska korttipeli, josta vauhtia ja jännitystä ei puutu.</p><p>Tule pelaamaan Ligrettoa torstaisin klo 16-18 Entressen kirjaston pajaan Ligrettokerhoon!</p>",
                "sv": "<p>Vill du spela Ligretto?</p><p>Eller vill du lära dig spela Ligretto? Ligretto är ett roligt kortspel som är fullt av fart och spänning.</p><p>Kom och spela Ligretto på torsdagar klockan 16-18 på Ligrettoklubben på Entressebiblioteket!</p>",
                "en": "<p>Do you want to play Ligretto?</p><p>Or do you want to learn how to play Ligretto? Ligretto is a fun card game that is full of speed and excitement.</p><p>Come play Ligretto on Thursdays from 4-6pm at the Ligretto Club at the Entresse Library!</p>"
            },
            "name": {
                "fi": "PERUTTU: Ligretto-kerho ",
                "sv": "AVBRUTEN: Ligrettoklubben",
                "en": "CANCELLED: Ligretto Club"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5ibi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67162",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491110,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-16T09:13:28.866535Z",
                    "last_modified_time": "2025-10-16T09:13:28.866548Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778313.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491110/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-16T09:13:28.780136Z",
            "last_modified_time": "2025-10-16T10:13:24.483207Z",
            "date_published": null,
            "start_time": "2025-12-08T15: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,
            "short_description": {
                "fi": "Syyskauden Kino Kuutamossa nähdään yleisön ehdotuksista valitut kolme elokuvaa. Sarjan kolmantena elokuvana nähdään Charlie McDowellin ohjaama Kesäkirja.",
                "sv": "Under höstsäsongen förevisar Kino Kuutamo tre filmer som valts ut på förslag av allmänheten. Den tredje filmen i serien är Sommarboken i regi av Charlie McDowell.",
                "en": "The Kino Kuutamo autumn season will feature three films selected based on audience suggestions. The third film in the series is The Summer Book, directed by Charlie McDowell."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BB3A8616BEF10EF9F97B45F609A25DCF/Kesakirja_S_Kino_Kuutamo",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/BB3A8616BEF10EF9F97B45F609A25DCF/Sommarboken_S_Kino_Kuutamo",
                "en": "http://www.kanneltalo.fi/en/events/event/BB3A8616BEF10EF9F97B45F609A25DCF/Summer_Book_Kino_Kuutamo"
            },
            "description": {
                "fi": "<p>Syyskauden Kino Kuutamossa nähdään yleisön ehdotuksista valitut kolme elokuvaa. Sarjan kolmantena elokuvana nähdään Charlie McDowellin ohjaama Kesäkirja.</p><p>Esitämme Kesäkirja-elokuvasta kaksi näytöstä 8.12 (klo 14 & 18). Elokuvahistorian asiantuntija FT Harri Kilpi luennoi elokuvasta klo 17–17.45.</p><p>Tove Janssonin rakastettuun Kesäkirja-teokseen perustuva elokuva kertoo maagisen ja elämää kohottavan tarinan Sophia-tytön (Emily Matthews) kesästä isoäidin (Glenn Close) kanssa pikkuisella saarella Suomenlahdella. Sophian isän (Anders Danielsen Lie) surressa puolisonsa kuolemaa meren aallot silittävät kalliota, aurinko paistaa ja puut kasvavat.<br>Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa. Elokuvassa Suomen kesä ja saaristoluonto ovat aidoimmillaan ja kauneimmillaan.<br> <br>Ensi-ilta: 31.01.2025<br>Ikäraja: Sallittu<br>Pituus: 95 min.<br>Ohjaus: Charlie McDowell<br>Käsikirjoitus: Robert Jones<br>Näyttelijät: Glenn Close, Emily Matthews, Anders Danielsen Lie, Pekka Strang, Sophia Heikkilä,<br>Ingvar Sigurdsson<br>Genre: Draama</p><p>Perustuu Tove Janssonin Kesäkirja-teokseen.<br> <br>Kansainvälisen yhteistuotannon suomalainen tuotantoyhtiö on Helsinki-filmi, tuottajinaan Aleksi Bardy ja Helen Vinogradov.</p><p><b>Kulttuurikorttelitoive</b><br>Kanneltalon kulttuurikorttelitoiveet ovat syntyneet alueen asukkaiden ja kävijöiden toiveista. Olemme keränneet ideoitanne tapahtumissa ja verkkokyselyissä – ja kuunnelleet tarkasti. Kun tapahtuman yhteydessä näkyy Kulttuurikorttelitoive-merkintä, se kertoo, että ohjelma on toteutettu juuri teidän ehdotustenne pohjalta. Kiitos, että rakennatte kanssamme Kanneltalon kulttuuritarjontaa!</p><p>Yhteistyössä Helsingin työväenopiston kanssa.</p>",
                "sv": "<p>Under höstsäsongen förevisar Kino Kuutamo tre filmer som valts ut på förslag av allmänheten. Den tredje filmen i serien är Sommarboken i regi av Charlie McDowell.</p><p>Det går två visningar av filmen Sommarboken 8.12 (kl. 14 & 18). FD Harri Kilpi, expert på filmhistoria, ger en föreläsning om filmen kl. 17–17.45.</p><p>Filmen som baserar sig på Tove Janssons älskade verk Sommarboken berättar en magisk och livsstigande historia om flickan Sophias (Emily Matthews) sommar tillsammans med mormor (Glenn Close) på en liten ö i Finska viken. När Sophias far (Anders Danielsen Lie) sörjer sin makas död smeker sjövågorna klippan, solen skiner och träden växer.<br>Sommarboken är en beskrivning av en liten flickas och en gammal kvinnas vänskap omgiven av en finländsk sommardröm, nära varandra och nära naturen. I filmen är Finlands sommar och skärgårdsnaturen som mest genuin och vacker.<br> <br>Premiär: 31.1.2025<br>Åldersgräns: Tillåten<br>Längd: 95 min.<br>Regi: Charlie McDowell<br>Manus: Robert Jones<br>På scenen: Glenn Close, Emily Matthews, Anders Danielsen Lie, Pekka Strang, Sophia Heikkilä,<br>Ingvar Sigurdsson<br>Genre: Drama</p><p>Baserar sig på Tove Janssons Sommarboken.<br> <br>Den internationella samproduktionens finländska produktionsbolag är Helsinki-filmi, med Aleksi Bardy och Helen Vinogradov som producenter.</p><p><b>Kulturkortsönskemål</b><br>Gamlasgårdens kulturkortsönskemål har uppstått i önskemål från boende och besökare i området. Vi har samlat in era idéer genom evenemang och online-enkäter – och lyssnat noga. När märket Kulturkortsönskemål visas vid evenemanget betyder det att programmet har skapats med dina förslag i åtanke. Tack för att du bygger Gamlasgårdens kulturutbud tillsammans med oss!</p>",
                "en": "<p>The Kino Kuutamo autumn season will feature three films selected based on audience suggestions. The third film in the series is The Summer Book, directed by Charlie McDowell.</p><p>We will screen The Summer Book twice on 8 December (at 14:00 and 18:00). Film history expert, PhD Harri Kilpi will give a lecture about the film from 17:00 to 17:45.</p><p>Based on Tove Jansson's beloved novel The Summer Book, the film tells a magical and life-enhancing story of a girl named Sophia (Emily Matthews) spending the summer with her grandmother (Glenn Close) on a tiny island in the Gulf of Finland. While Sophia's father (Anders Danielsen Lie) mourns the loss of his spouse, the waves gently caress the rocks, the sun shines and the trees grow.<br>The Summer Book is a depiction of the friendship between a little girl and an old woman surrounded by the Finnish summer dream, close to each other and nature. The film captures the Finnish summer and archipelago nature at their most authentic and beautiful.<br> <br>Premiere: 31 January 2025<br>Age limit: Suitable for all ages<br>Length: 95 min<br>Directed by: Charlie McDowell<br>Script: Robert Jones<br>Cast: Glenn Close, Emily Matthews, Anders Danielsen Lie, Pekka Strang, Sophia Heikkilä and<br>Ingvar Sigurdsson<br>Genre: Drama</p><p>Based on Tove Jansson's Summer Book.<br> <br>The Finnish production company for the international co-production is Helsinki-filmi, with producers Aleksi Bardy and Helen Vinogradov.</p>"
            },
            "name": {
                "fi": "Kesäkirja (S) Kino Kuutamo",
                "sv": "Sommarboken (S) Kino Kuutamo",
                "en": "Summer Book Kino Kuutamo"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67162/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22vqtu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?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:agggfz673u/?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/espoo_le:agggfz7aa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vs6i/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 152115,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-15T06:47:28.191606Z",
                    "last_modified_time": "2024-08-15T06:47:28.191622Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/book-1283865_1920.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Avoin kirja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152115/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-04T12:11:41.990038Z",
            "last_modified_time": "2025-10-16T10:08:12.979296Z",
            "date_published": null,
            "start_time": "2025-12-10T15:30:00Z",
            "end_time": "2025-12-10T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kalajärven kirjaston lukupiiri",
                "sv": "Kalajärvi biblioteks läsecirkel",
                "en": "Kalajärvi Library Reading Circle"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kalajärven kirjaston lukupiiri kokoontuu syyskaudella 2025 seuraavina keskiviikkoina klo 17:30-19:00 / Apaja</p><p>20.8. Sayaka Murata: Lähikaupan nainen, Sun-mi Hwang: Kana joka tahtoi lentää&nbsp;</p><p>17.9.&nbsp;&nbsp;Jane Austen: Arkaileva sydän (Viisasteleva sydän)</p><p>15.10. Nicolas Barreau: Meillä on aina Pariisi</p><p>12.11. Jevhenija Kuznjetsova: \"Tikapuut\"</p><p>10.12. Laura Ingalls Wilder: Pieni talo suuressa metsässä</p><p>Tulevien kokoontumisien kirjat valitaan elokuussa</p>",
                "sv": "<p>Kalajärvi biblioteks läsecirkel på finska</p>",
                "en": "<p>Kalajärvi Library Reading Circle in Finnish</p>"
            },
            "name": {
                "fi": "Kalajärven kirjaston lukupiiri",
                "sv": "Kalajärvi biblioteks läsecirkel",
                "en": "Kalajärvi Library Reading Circle"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Apaja",
                "sv": "Apaja",
                "en": "Apaja"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vqtu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22vrca",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?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:agggfz673u/?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/espoo_le:agggfz7aa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vs6i/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 152115,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-15T06:47:28.191606Z",
                    "last_modified_time": "2024-08-15T06:47:28.191622Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/book-1283865_1920.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Avoin kirja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152115/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-04T12:11:41.887435Z",
            "last_modified_time": "2025-10-16T10:08:12.925013Z",
            "date_published": null,
            "start_time": "2025-11-12T15:30:00Z",
            "end_time": "2025-11-12T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kalajärven kirjaston lukupiiri",
                "sv": "Kalajärvi biblioteks läsecirkel",
                "en": "Kalajärvi Library Reading Circle"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kalajärven kirjaston lukupiiri kokoontuu syyskaudella 2025 seuraavina keskiviikkoina klo 17:30-19:00 / Apaja</p><p>20.8. Sayaka Murata: Lähikaupan nainen, Sun-mi Hwang: Kana joka tahtoi lentää&nbsp;</p><p>17.9.&nbsp;&nbsp;Jane Austen: Arkaileva sydän (Viisasteleva sydän)</p><p>15.10. Nicolas Barreau: Meillä on aina Pariisi</p><p>12.11. Jevhenija Kuznjetsova: \"Tikapuut\"</p><p>10.12. Laura Ingalls Wilder: Pieni talo suuressa metsässä</p><p>Tulevien kokoontumisien kirjat valitaan elokuussa</p>",
                "sv": "<p>Kalajärvi biblioteks läsecirkel på finska</p>",
                "en": "<p>Kalajärvi Library Reading Circle in Finnish</p>"
            },
            "name": {
                "fi": "Kalajärven kirjaston lukupiiri",
                "sv": "Kalajärvi biblioteks läsecirkel",
                "en": "Kalajärvi Library Reading Circle"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Apaja",
                "sv": "Apaja",
                "en": "Apaja"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vrca/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22vs6i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?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:agggfz673u/?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/espoo_le:agggfz7aa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vqtu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vrca/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vrsi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vsbm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vsqa/?format=api"
                }
            ],
            "images": [
                {
                    "id": 152115,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-15T06:47:28.191606Z",
                    "last_modified_time": "2024-08-15T06:47:28.191622Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/book-1283865_1920.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Avoin kirja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152115/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-04T12:11:40.726925Z",
            "last_modified_time": "2025-10-16T10:08:12.313780Z",
            "date_published": null,
            "start_time": "2025-08-20T14:30:00Z",
            "end_time": "2025-12-10T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kalajärven kirjaston lukupiiri",
                "sv": "Kalajärvi biblioteks läsecirkel",
                "en": "Kalajärvi Library Reading Circle"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kalajärven kirjaston lukupiiri kokoontuu syyskaudella 2025 seuraavina keskiviikkoina klo 17:30-19:00 / Apaja</p><p>20.8. Sayaka Murata: Lähikaupan nainen, Sun-mi Hwang: Kana joka tahtoi lentää&nbsp;</p><p>17.9.&nbsp;&nbsp;Jane Austen: Arkaileva sydän (Viisasteleva sydän)</p><p>15.10. Nicolas Barreau: Meillä on aina Pariisi</p><p>12.11. Jevhenija Kuznjetsova: \"Tikapuut\"</p><p>10.12. Laura Ingalls Wilder: Pieni talo suuressa metsässä</p><p>Tulevien kokoontumisien kirjat valitaan elokuussa</p>",
                "sv": "<p>Kalajärvi biblioteks läsecirkel på finska</p>",
                "en": "<p>Kalajärvi Library Reading Circle in Finnish</p>"
            },
            "name": {
                "fi": "Kalajärven kirjaston lukupiiri",
                "sv": "Kalajärvi biblioteks läsecirkel",
                "en": "Kalajärvi Library Reading Circle"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Apaja",
                "sv": "Apaja",
                "en": "Apaja"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vs6i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67158",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491109,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-16T09:13:24.460092Z",
                    "last_modified_time": "2025-10-16T09:13:24.460105Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778311.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491109/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-16T09:13:24.290121Z",
            "last_modified_time": "2025-10-16T09:13:24.654557Z",
            "date_published": null,
            "start_time": "2025-12-08T12: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,
            "short_description": {
                "fi": "Syyskauden Kino Kuutamossa nähdään yleisön ehdotuksista valitut kolme elokuvaa. Sarjan kolmantena elokuvana nähdään Charlie McDowellin ohjaama Kesäkirja.",
                "sv": "Under höstsäsongen förevisar Kino Kuutamo tre filmer som valts ut på förslag av allmänheten. Den tredje filmen i serien är Sommarboken i regi av Charlie McDowell.",
                "en": "The Kino Kuutamo autumn season will feature three films selected based on audience suggestions. The third film in the series is The Summer Book, directed by Charlie McDowell."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2F4E1A59F627FC662439B1C9A0BA7AC1/Kesakirja_S_Kino_Kuutamo",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2F4E1A59F627FC662439B1C9A0BA7AC1/Sommarboken_S_Kino_Kuutamo",
                "en": "http://www.kanneltalo.fi/en/events/event/2F4E1A59F627FC662439B1C9A0BA7AC1/Summer_Book_Kino_Kuutamo"
            },
            "description": {
                "fi": "<p>Syyskauden Kino Kuutamossa nähdään yleisön ehdotuksista valitut kolme elokuvaa. Sarjan kolmantena elokuvana nähdään Charlie McDowellin ohjaama Kesäkirja.</p><p>Esitämme Kesäkirja-elokuvasta kaksi näytöstä 8.12 (klo 14 & 18). Elokuvahistorian asiantuntija FT Harri Kilpi luennoi elokuvasta klo 17–17.45.</p><p>Tove Janssonin rakastettuun Kesäkirja-teokseen perustuva elokuva kertoo maagisen ja elämää kohottavan tarinan Sophia-tytön (Emily Matthews) kesästä isoäidin (Glenn Close) kanssa pikkuisella saarella Suomenlahdella. Sophian isän (Anders Danielsen Lie) surressa puolisonsa kuolemaa meren aallot silittävät kalliota, aurinko paistaa ja puut kasvavat.<br>Kesäkirja on kuvaus pienen tytön ja vanhan naisen ystävyydestä suomalaisen kesäunelman ympäröimänä, lähellä toisiaan ja lähellä luontoa. Elokuvassa Suomen kesä ja saaristoluonto ovat aidoimmillaan ja kauneimmillaan.<br> <br>Ensi-ilta: 31.01.2025<br>Ikäraja: Sallittu<br>Pituus: 95 min.<br>Ohjaus: Charlie McDowell<br>Käsikirjoitus: Robert Jones<br>Näyttelijät: Glenn Close, Emily Matthews, Anders Danielsen Lie, Pekka Strang, Sophia Heikkilä,<br>Ingvar Sigurdsson<br>Genre: Draama</p><p>Perustuu Tove Janssonin Kesäkirja-teokseen.<br> <br>Kansainvälisen yhteistuotannon suomalainen tuotantoyhtiö on Helsinki-filmi, tuottajinaan Aleksi Bardy ja Helen Vinogradov.</p><p><b>Kulttuurikorttelitoive</b><br>Kanneltalon kulttuurikorttelitoiveet ovat syntyneet alueen asukkaiden ja kävijöiden toiveista. Olemme keränneet ideoitanne tapahtumissa ja verkkokyselyissä – ja kuunnelleet tarkasti. Kun tapahtuman yhteydessä näkyy Kulttuurikorttelitoive-merkintä, se kertoo, että ohjelma on toteutettu juuri teidän ehdotustenne pohjalta. Kiitos, että rakennatte kanssamme Kanneltalon kulttuuritarjontaa!</p><p>Yhteistyössä Helsingin työväenopiston kanssa.</p>",
                "sv": "<p>Under höstsäsongen förevisar Kino Kuutamo tre filmer som valts ut på förslag av allmänheten. Den tredje filmen i serien är Sommarboken i regi av Charlie McDowell.</p><p>Det går två visningar av filmen Sommarboken 8.12 (kl. 14 & 18). FD Harri Kilpi, expert på filmhistoria, ger en föreläsning om filmen kl. 17–17.45.</p><p>Filmen som baserar sig på Tove Janssons älskade verk Sommarboken berättar en magisk och livsstigande historia om flickan Sophias (Emily Matthews) sommar tillsammans med mormor (Glenn Close) på en liten ö i Finska viken. När Sophias far (Anders Danielsen Lie) sörjer sin makas död smeker sjövågorna klippan, solen skiner och träden växer.<br>Sommarboken är en beskrivning av en liten flickas och en gammal kvinnas vänskap omgiven av en finländsk sommardröm, nära varandra och nära naturen. I filmen är Finlands sommar och skärgårdsnaturen som mest genuin och vacker.<br> <br>Premiär: 31.1.2025<br>Åldersgräns: Tillåten<br>Längd: 95 min.<br>Regi: Charlie McDowell<br>Manus: Robert Jones<br>På scenen: Glenn Close, Emily Matthews, Anders Danielsen Lie, Pekka Strang, Sophia Heikkilä,<br>Ingvar Sigurdsson<br>Genre: Drama</p><p>Baserar sig på Tove Janssons Sommarboken.<br> <br>Den internationella samproduktionens finländska produktionsbolag är Helsinki-filmi, med Aleksi Bardy och Helen Vinogradov som producenter.</p><p><b>Kulturkortsönskemål</b><br>Gamlasgårdens kulturkortsönskemål har uppstått i önskemål från boende och besökare i området. Vi har samlat in era idéer genom evenemang och online-enkäter – och lyssnat noga. När märket Kulturkortsönskemål visas vid evenemanget betyder det att programmet har skapats med dina förslag i åtanke. Tack för att du bygger Gamlasgårdens kulturutbud tillsammans med oss!</p>",
                "en": "<p>The Kino Kuutamo autumn season will feature three films selected based on audience suggestions. The third film in the series is The Summer Book, directed by Charlie McDowell.</p><p>We will screen The Summer Book twice on 8 December (at 14:00 and 18:00). Film history expert, PhD Harri Kilpi will give a lecture about the film from 17:00 to 17:45.</p><p>Based on Tove Jansson's beloved novel The Summer Book, the film tells a magical and life-enhancing story of a girl named Sophia (Emily Matthews) spending the summer with her grandmother (Glenn Close) on a tiny island in the Gulf of Finland. While Sophia's father (Anders Danielsen Lie) mourns the loss of his spouse, the waves gently caress the rocks, the sun shines and the trees grow.<br>The Summer Book is a depiction of the friendship between a little girl and an old woman surrounded by the Finnish summer dream, close to each other and nature. The film captures the Finnish summer and archipelago nature at their most authentic and beautiful.<br> <br>Premiere: 31 January 2025<br>Age limit: Suitable for all ages<br>Length: 95 min<br>Directed by: Charlie McDowell<br>Script: Robert Jones<br>Cast: Glenn Close, Emily Matthews, Anders Danielsen Lie, Pekka Strang, Sophia Heikkilä and<br>Ingvar Sigurdsson<br>Genre: Drama</p><p>Based on Tove Jansson's Summer Book.<br> <br>The Finnish production company for the international co-production is Helsinki-filmi, with producers Aleksi Bardy and Helen Vinogradov.</p>"
            },
            "name": {
                "fi": "Kesäkirja (S) Kino Kuutamo",
                "sv": "Sommarboken (S) Kino Kuutamo",
                "en": "Summer Book Kino Kuutamo"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67158/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmrr7f53i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmrr7f6hu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-05T07:51:14.330099Z",
            "last_modified_time": "2025-10-16T07:21:45.154578Z",
            "date_published": null,
            "start_time": "2025-10-16T15:00:00Z",
            "end_time": "2025-10-16T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa tutustumaan uskontojen maailmaan kirjallisuuden kautta! "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa tutustumaan uskontojen maailmaan kirjallisuuden kautta! Illoissa tutustutaan uskontoaiheiseen kirjallisuuteen ja keskustellaan sen herättämistä ajatuksista. Mitään ei tarvitse lukea etukäteen, vaan teoksiin tutustutaan yhdessä paikan päällä.</p><p>&nbsp;</p><p>to 16.10. klo 18 Kajuutta - Uskonnoista lempeästi: uskonnollista pohdintaa kaunokirjallisuudessa - PERUTTU sairastapauksen vuoksi</p><p>to 30.10. klo 18 Salonki - Uskontolukutaidon jäljillä: viimeaikaista tietokirjallisuutta uskonnoista</p><p>to 13.11. klo 18 Kajuutta - Satuttava uskonto: kuvauksia uskonnon kanssa kipuilusta kirjallisuudessa</p><p>to 27.11. klo 18 Kajuutta - Talmudista Daodejingiin: uskontojen klassikkotekstejä</p><p>&nbsp;</p><p>Kirjallisuuteen johdattelee kirjaston työntekijä Atte Hokkanen. Asiantuntijan näkökulman teemaan esittää vaihtuva uskonnonopettaja. Illat järjestetään yhteistyössä Suomen uskonnonopettajain liitto (SUOL) ry:n kanssa.</p>"
            },
            "name": {
                "fi": "PERUTTU: Näkökulmia uskontoon - keskustelevat kirjallisuusillat"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmrr7f53i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm6ph2rwq",
            "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:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-15T10:34:58.009436Z",
            "last_modified_time": "2025-10-15T10:34:58.009459Z",
            "date_published": "2025-10-15T10:33:52.573000Z",
            "start_time": "2025-11-08T13:30:00Z",
            "end_time": "2025-11-08T14:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Perinteinen Svenska veckan konsertti.",
                "sv": "Traditionell Svenska veckan konsert."
            },
            "info_url": {
                "fi": "https://espoonpelimannit.fi/",
                "sv": "https://espoonpelimannit.fi/"
            },
            "description": {
                "fi": "<p>Jo usean vuoden ajan Espoon pelimannit ovat juhlistaneet Svenska veckania perinteisellä kirjastokiertueella. Näin myös tänä vuonna!</p><p><br></p><p>Konsertti on osa virallista Svenska veckan -ohjelmaa ja sen tarjoaa meille Folktinget.</p><p><br></p><p>Espoon pelimannit on toiminut koko 50-vuotisen olemassaolonsa ajan Esbo Arbiksen opintoryhmänä. Tällä hetkellä yhtyeessä on ennätykselliset 31 soittajaa. Vuodesta 1997 lähtien musiikin maisteri Pekka Pentikäinen on toiminut orkesterin taiteellisena johtajana ja vastannut orkesterin ohjaamisesta ja musiikkikappaleiden sovittamisesta.</p><p>Espoon pelimannit elävöittää, edistää ja esittää pelimanni- ja tanssimusiikkia ahkerasti niin Uudellamaalla kuin muuallakin Suomessa: vuositasolla esiintymisiä kertyy parikymmentä. Pääkaupunkiseudun lisäksi orkesterin tapaa kesäisin Kaustisen kansanmusiikkifestivaalilla, onpa vierailuja tehty myös Ruotsiin! Orkesterin ohjelmisto on monipuolista, mitä todistaa sekin, että orkesteri on säestänyt Viherlaakson lukion Vanhojen tansseja vuodesta 1991 alkaen.</p>",
                "sv": "<p>I flera års tid har Esbo spelmanslag tagit oss med på en bibliteksturné i samband med Svenska veckan. Så även i år!</p><p><br></p><p>Konserten är en del av det officiella Svenska veckan programmet och bekostas av Folktinget.</p><p><br></p><p>Esbo spelmanslag har allt sedan starten år 1975 fungerat under Esbo Arbis. För närvarande har orkestern rekordantalet musiker, 31 personer; dragspel, fiol, flöjt, klarinett, mandolin, gitarr och kontrabas.</p><p>Allt sedan 1997 fungerar Pekka Pentikäinen (magister i musik) som orkesterns konstnärliga ledare. Förutom att han ansvarar för orkesterns ledning, gör han alla arrangemangen.</p><p>Esbo spelmanslag livar upp, främjar och framför aktivt spelmanna- och dansmusik både i Nyland och på andra håll i Finland. På årsnivå blir det ett tjugotal konserter. Förutom spelningarna i Nyland är bl.a. Kaustbyfestivalen en&nbsp;</p><p>årlig tradition. Dessutom har orkestern gästspelat i Sverige. Orkesterns repertoar är mångsidig; allt från spelmannamusik till salongsdanser. Allt sedan år 1991 har orkestern ackompanjerat Viherlaakson lukios gamlas danser.</p><p>Esbo spelmanslag har spelat in tre skivor:</p><p>Tanssitaanko? – Får jag lov? (2005)</p><p>Brunskärs toner (2018)</p><p>Esbo spelmän förr och nu – Espoon pelimanneja ennen ja nyt (2022)</p>"
            },
            "name": {
                "fi": "Espoon pelimannit X Lippulaiva kirjasto",
                "sv": "Esbo spelmanslag X Lippulaiva bibliotek"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salongen"
            },
            "provider": {
                "fi": "Esbo Arbis, Vindängensalen ja Folktinget",
                "sv": "Esbo Arbis, Vindängensalen och Folktinget"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6ph2rwq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm6ph2svm",
            "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:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-15T10:33:48.320722Z",
            "last_modified_time": "2025-10-15T10:33:48.320741Z",
            "date_published": "2025-10-15T10:32:20.392000Z",
            "start_time": "2025-11-08T10:45:00Z",
            "end_time": "2025-11-08T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Perinteinen Svenska veckan konsertti.",
                "sv": "Traditionell Svenska veckan konsert."
            },
            "info_url": {
                "fi": "https://espoonpelimannit.fi/",
                "sv": "https://espoonpelimannit.fi/"
            },
            "description": {
                "fi": "<p>Jo usean vuoden ajan Espoon pelimannit ovat juhlistaneet Svenska veckania perinteisellä kirjastokiertueella. Näin myös tänä vuonna!</p><p><br></p><p>Konsertti on osa virallista Svenska veckan -ohjelmaa ja sen tarjoaa meille Folktinget.</p><p><br></p><p>Espoon pelimannit on toiminut koko 50-vuotisen olemassaolonsa ajan Esbo Arbiksen opintoryhmänä. Tällä hetkellä yhtyeessä on ennätykselliset 31 soittajaa. Vuodesta 1997 lähtien musiikin maisteri Pekka Pentikäinen on toiminut orkesterin taiteellisena johtajana ja vastannut orkesterin ohjaamisesta ja musiikkikappaleiden sovittamisesta.</p><p>Espoon pelimannit elävöittää, edistää ja esittää pelimanni- ja tanssimusiikkia ahkerasti niin Uudellamaalla kuin muuallakin Suomessa: vuositasolla esiintymisiä kertyy parikymmentä. Pääkaupunkiseudun lisäksi orkesterin tapaa kesäisin Kaustisen kansanmusiikkifestivaalilla, onpa vierailuja tehty myös Ruotsiin! Orkesterin ohjelmisto on monipuolista, mitä todistaa sekin, että orkesteri on säestänyt Viherlaakson lukion Vanhojen tansseja vuodesta 1991 alkaen.</p>",
                "sv": "<p>I flera års tid har Esbo spelmanslag tagit oss med på en bibliteksturné i samband med Svenska veckan. Så även i år!</p><p><br></p><p>Konserten är en del av det officiella Svenska veckan programmet och bekostas av Folktinget.</p><p><br></p><p>Esbo spelmanslag har allt sedan starten år 1975 fungerat under Esbo Arbis. För närvarande har orkestern rekordantalet musiker, 31 personer; dragspel, fiol, flöjt, klarinett, mandolin, gitarr och kontrabas.</p><p>Allt sedan 1997 fungerar Pekka Pentikäinen (magister i musik) som orkesterns konstnärliga ledare. Förutom att han ansvarar för orkesterns ledning, gör han alla arrangemangen.</p><p>Esbo spelmanslag livar upp, främjar och framför aktivt spelmanna- och dansmusik både i Nyland och på andra håll i Finland. På årsnivå blir det ett tjugotal konserter. Förutom spelningarna i Nyland är bl.a. Kaustbyfestivalen en&nbsp;</p><p>årlig tradition. Dessutom har orkestern gästspelat i Sverige. Orkesterns repertoar är mångsidig; allt från spelmannamusik till salongsdanser. Allt sedan år 1991 har orkestern ackompanjerat Viherlaakson lukios gamlas danser.</p><p>Esbo spelmanslag har spelat in tre skivor:</p><p>Tanssitaanko? – Får jag lov? (2005)</p><p>Brunskärs toner (2018)</p><p>Esbo spelmän förr och nu – Espoon pelimanneja ennen ja nyt (2022)</p>"
            },
            "name": {
                "fi": "Espoon pelimannit X Iso Omena kirjasto",
                "sv": "Esbo spelmanslag X Iso Omena bibliotek"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Esbo Arbis, Vindängensalen ja Folktinget",
                "sv": "Esbo Arbis, Vindängensalen och Folktinget"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6ph2svm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm6ph2tqu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-15T10:31:45.931699Z",
            "last_modified_time": "2025-10-15T10:31:45.931719Z",
            "date_published": "2025-10-15T10:21:52.815000Z",
            "start_time": "2025-11-08T09:00:00Z",
            "end_time": "2025-11-08T09:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Perinteinen Svenska veckan konsertti.",
                "sv": "Traditionell Svenska veckan konsert."
            },
            "info_url": {
                "fi": "https://espoonpelimannit.fi/",
                "sv": "https://espoonpelimannit.fi/"
            },
            "description": {
                "fi": "<p>Jo usean vuoden ajan Espoon pelimannit ovat juhlistaneet Svenska veckania perinteisellä kirjastokiertueella. Näin myös tänä vuonna!</p><p><br></p><p>Konsertti on osa virallista Svenska veckan -ohjelmaa ja sen tarjoaa meille Folktinget.</p><p><br></p><p>Espoon pelimannit on toiminut koko 50-vuotisen olemassaolonsa ajan Esbo Arbiksen opintoryhmänä. Tällä hetkellä yhtyeessä on ennätykselliset 31 soittajaa. Vuodesta 1997 lähtien musiikin maisteri Pekka Pentikäinen on toiminut orkesterin taiteellisena johtajana ja vastannut orkesterin ohjaamisesta ja musiikkikappaleiden sovittamisesta.</p><p>Espoon pelimannit elävöittää, edistää ja esittää pelimanni- ja tanssimusiikkia ahkerasti niin Uudellamaalla kuin muuallakin Suomessa: vuositasolla esiintymisiä kertyy parikymmentä. Pääkaupunkiseudun lisäksi orkesterin tapaa kesäisin Kaustisen kansanmusiikkifestivaalilla, onpa vierailuja tehty myös Ruotsiin! Orkesterin ohjelmisto on monipuolista, mitä todistaa sekin, että orkesteri on säestänyt Viherlaakson lukion Vanhojen tansseja vuodesta 1991 alkaen.</p>",
                "sv": "<p>I flera års tid har Esbo spelmanslag tagit oss med på en bibliteksturné i samband med Svenska veckan. Så även i år!</p><p><br></p><p>Konserten är en del av det officiella Svenska veckan programmet och bekostas av Folktinget.</p><p><br></p><p>Esbo spelmanslag har allt sedan starten år 1975 fungerat under Esbo Arbis. För närvarande har orkestern rekordantalet musiker, 31 personer; dragspel, fiol, flöjt, klarinett, mandolin, gitarr och kontrabas.</p><p>Allt sedan 1997 fungerar Pekka Pentikäinen (magister i musik) som orkesterns konstnärliga ledare. Förutom att han ansvarar för orkesterns ledning, gör han alla arrangemangen.</p><p>Esbo spelmanslag livar upp, främjar och framför aktivt spelmanna- och dansmusik både i Nyland och på andra håll i Finland. På årsnivå blir det ett tjugotal konserter. Förutom spelningarna i Nyland är bl.a. Kaustbyfestivalen en&nbsp;</p><p>årlig tradition. Dessutom har orkestern gästspelat i Sverige. Orkesterns repertoar är mångsidig; allt från spelmannamusik till salongsdanser. Allt sedan år 1991 har orkestern ackompanjerat Viherlaakson lukios gamlas danser.</p><p>Esbo spelmanslag har spelat in tre skivor:</p><p>Tanssitaanko? – Får jag lov? (2005)</p><p>Brunskärs toner (2018)</p><p>Esbo spelmän förr och nu – Espoon pelimanneja ennen ja nyt (2022)</p>"
            },
            "name": {
                "fi": "Espoon pelimannit X Sellon kirjasto",
                "sv": "Esbo spelmanslag X Sello bibliotek"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Esbo Arbis, Vindängensalen ja Folktinget",
                "sv": "Esbo Arbis, Vindängensalen och Folktinget"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6ph2tqu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm6oz4rwa",
            "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:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?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:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-15T10:13:24.279475Z",
            "last_modified_time": "2025-10-15T10:13:24.279494Z",
            "date_published": null,
            "start_time": "2025-10-30T15:00:00Z",
            "end_time": "2025-10-30T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Keskustelutilaisuus",
                "en": "Discussion panel"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Alustukset: </p><p>Uusien Espoolaisten kotoutumisen edistäminen</p><ul><li>Said Aden, erityisasiantuntija, maahanmuutto-palvelualue, Espoo</li><li>Arja Filpus, palveluesihenkilö, Hello Espoo info, Espoo</li></ul><p>Monikieliset espoolaiset järjestötoiminnassa</p><ul><li>Johanna Syren, Espoon monikulttuuriset lapset ja nuoret ry</li></ul><p>Toimintaa ikääntyville vieraskielisille Espoossa</p><ul><li>Dora Puhakka, moninaisuustyön asiantuntija, Jade yhteisö ry</li></ul>",
                "en": "<p>Talking points: </p><ul><li>Promoting the integration of new residents in Espoo</li><li>Multilingual Espoo residents in community organizations</li><li>Activities for senior multilingual residents in Espoo</li></ul>"
            },
            "name": {
                "fi": "Asukastilaisuus: Moninainen yhteinen Espoo",
                "en": "Community meeting: Diverse Espoo "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6oz4rwa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}