Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 24464,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=5",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=3"
    },
    "data": [
        {
            "id": "espoo_le:agmyl7jjhe",
            "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:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:31.718743Z",
            "last_modified_time": "2025-09-26T11:49:31.718761Z",
            "date_published": null,
            "start_time": "2025-10-28T08:00:00Z",
            "end_time": "2025-10-28T09: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,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jjhe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jjrq",
            "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:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:31.574090Z",
            "last_modified_time": "2025-09-26T11:49:31.574109Z",
            "date_published": null,
            "start_time": "2025-10-21T07:00:00Z",
            "end_time": "2025-10-21T08: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,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jjrq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jj3q",
            "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:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jhe4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jhxe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jibe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jiki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jium/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7ji5u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jjhe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jjrq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:30.469615Z",
            "last_modified_time": "2025-09-26T11:49:30.469633Z",
            "date_published": null,
            "start_time": "2025-10-21T07:00:00Z",
            "end_time": "2025-12-09T09: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,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67087",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490922,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-26T10:13:38.447347Z",
                    "last_modified_time": "2025-09-26T10:13:38.447358Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777860.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490922/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-26T10:13:38.349679Z",
            "last_modified_time": "2025-09-26T10:13:38.562666Z",
            "date_published": null,
            "start_time": "2025-11-14T08: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,
            "name": {
                "fi": "Willman Dance Company: Voimaeläin",
                "sv": "Willman Dance Company: Kraftdjur",
                "en": "Willman Dance Company: Voimaeläin – Power animal"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9E4AE230648A7BB622BC328A1614DAE1/Willman_Dance_Company_Voimaelain",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9E4AE230648A7BB622BC328A1614DAE1/Willman_Dance_Company_Kraftdjur",
                "en": "http://www.annantalo.fi/en/events/event/9E4AE230648A7BB622BC328A1614DAE1/Willman_Dance_Company_Voimaelain_Power_animal"
            },
            "description": {
                "fi": "<p>Voimaeläin on vuorovaikutuksellinen ja lapsia osallistava tanssiteatteriesitys.</p><p>Esityksessä seikkailevat hahmot, Kaisla, Kiira ja Tuisku, lukevat faabeleita toisilleen. Faabeli on hyvin vanha kerrontamuoto, yleensä eläinsadun muotoon puettu ja moraalisen opetuksen sisältävä kertomus. Kaisla, Kiira ja Tuisku alkavat faabelien innoittamina etsiä omia voimaeläimiään.<br>Esitys herättää ajatuksia eläimen ja ihmisen arvosta. Mitä eläimen tulisi saada ihmiseltä? Mitä ihminen voi saada eläimeltä? Voimaeläin vahvistaa lapsen itsetuntoa ja toimijuutta yksilönä. Lapsi voi miettiä omia kykyjään ja voimiaan eläinten ominaisuuksien kautta.<br>Willman Dance Company on helsinkiläinen tanssiryhmä, joka koostuu taiteilijoista, joita yhdistää intohimo tanssiin ja näyttämötaiteeseen. Ryhmä valmistaa esityksiä niin aikuis- kuin lapsiyleisölle luoden tanssiteatteri- ja nykytanssiteoksia, joissa liike ja tanssijoiden kehollinen kyky ilmaista ovat esityksen ydin.<br>Koreografia, ohjaus: Marjaterttu Willman<br>Pukusuunnittelu: Aapo Siikala<br>Esiintyjät: Jonna Aaltonen, Kaisa Niemi, Tanja Illukka<br>Kesto: 45 min<br>Ikäsuositus: 1–4 – luokkalaisille<br>Kieli: suomi <br>Maksuton, ilmoittautuminen kultus.fi 1.10. alkaen<br>Vastaava tuottaja: Katariina Metsälampi</p>",
                "sv": "<p>Kraftdjur är en interaktiv dansteaterföreställning där barnen får vara med.</p><p>Kraftdjur är en interaktiv dansteaterföreställning där barnen får vara med. <br>Karaktärerna Kaisla, Kiira och Tuisku berättar fabler för varandra. En fabel är en mycket gammal form av berättelse. Den har ofta formen av en djursaga och innehåller en moralisk lärdom. Kaisla, Kiira och Tuisku inspireras av fablerna och börjar leta efter sina egna kraftdjur.<br>Föreställningen väcker tankar om djurens och människornas värde. Vad borde djuren få av människorna? Vad kan människorna få av djuren? Kraftdjuret stärker barnets självkänsla och aktörskap som individ. Barnet kan fundera på sina egna förmågor och krafter genom djurens egenskaper.<br>Willman Dance Company är en dansgrupp från Helsingfors, som består av konstnärer som förenas av en passion för dans och scenkonst. Gruppen skapar föreställningar för både barn och vuxna med dansteater och modern dans, där rörelsen och dansarnas kroppsliga förmåga att uttrycka sig står i centrum.<br>Koreografi, regi: Marjaterttu Willman<br>Kostym: Aapo Siikala<br>På scenen: Jonna Aaltonen, Kaisa Niemi, Tanja Illukka<br>Längd: 45 min<br>Åldersrekommendation: För barn i årskurs 1–4<br>Språk: finska <br>Avgiftsfritt, anmälan via kultus.fi från 1.10</p>",
                "en": "<p>Voimaeläin is an interactive dance theatre performance that invites the children to participate.</p><p>The characters in the show – Kaisla, Kiira and Tuisku – read fables to each other. A fable is a very old form of storytelling, usually a moral tale that often features animal characters. Inspired by these fables, Kaisla, Kiira and Tuisku start to look for their own power animals.<br>The show brings up thoughts about the value of animals and people. What should animals receive from people? What can people receive from animals? A power animal strengthens a child’s confidence and agency as a person. They can reflect on their own abilities and strengths through the animal’s characteristics.<br>Willman Dance Company is a dance group from Helsinki, comprising artists connected by their passion for dance and stage arts. The group prepares shows for both adult and child audiences, creating dance theatre and contemporary dance performances where the movements and the dancers’ corporal ability to express themselves are at the heart of the show.<br>Choreography, direction: Marjaterttu Willman<br>Costume design: Aapo Siikala<br>Performers: Jonna Aaltonen, Kaisa Niemi, Tanja Illukka<br>Duration: 45 min.<br>Recommended age: Grades 1 through 4<br>Language: Finnish <br>Free of charge, registration via Kultus.fi, starting 1 October</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Voimaeläin on vuorovaikutuksellinen ja lapsia osallistava tanssiteatteriesitys.",
                "sv": "Kraftdjur är en interaktiv dansteaterföreställning där barnen får vara med.",
                "en": "Voimaeläin is an interactive dance theatre performance that invites the children to participate."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67087/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyldwgtq",
            "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:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490923,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-26T09:55:13.553180Z",
                    "last_modified_time": "2025-09-26T09:55:13.553196Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/16bdbd1e-c7f0-46c2-ad7c-d06eeaf90cbf.jpg",
                    "cropping": "350,0,1250,900",
                    "photographer_name": "",
                    "alt_text": "jäätelötikuista, langasta ja pahvista askarreltuja hevosia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490923/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-26T10:09:18.326925Z",
            "last_modified_time": "2025-09-26T10:09:18.326946Z",
            "date_published": null,
            "start_time": "2025-11-01T09:00:00Z",
            "end_time": "2025-11-01T12: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,
            "name": {
                "fi": "Liikkuvat eläinhahmot työpaja",
                "sv": "Arbetsverkstad med rörliga djurfigurer",
                "en": "Workshop with moving animal characters"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Haaraniittien avulla hahmot saavat liikkuvat osat; suu voi aueta, häntä heilua tai siivet liikkua. Työpaja sopii kaikenikäisille ja tarjoaa onnistumisia sekä mahdollisuuden käyttää mielikuvitusta. Lopputuloksena persoonallinen oma eläin tai mielikuvitushahmo. Työpaja on maksuton.</p>",
                "sv": "<p>Med hjälp av jungfruben får figurerna rörliga delar; munnen kan öppnas, svansen vifta eller vingarna röra sig. Verkstaden passar för alla åldrar och bjuder på både lyckade resultat och möjlighet att använda fantasin. Som slutresultat får du ett personligt eget djur eller fantasifigur. Verkstaden är gratis.</p><p><br></p>",
                "en": "<p>With the help of paper fasteners, the characters get moving parts; the mouth can open, the tail can wag, or the wings can move. The workshop is suitable for all ages and offers both a sense of achievement and the chance to use your imagination. The end result is a unique personal animal or fantasy character. The workshop is free of charge.</p>"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": "Käsityö- ja muotoilukoulu Taito",
                "sv": "Käsityö- ja muotoilukoulu Taito",
                "en": "Käsityö- ja muotoilukoulu Taito"
            },
            "short_description": {
                "fi": "Tule mukaan luovaan työpajaan, jossa tehdään hauskoja liikkuvia eläinhahmoja värikkäistä tikuista, napeista ja huovasta. ",
                "sv": "Kom med på en kreativ verkstad där vi gör roliga rörliga djurfigurer av färgglada pinnar, knappar och filt.",
                "en": "Join a creative workshop where we make fun moving animal characters out of colorful sticks, buttons, and felt."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyldwgtq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67086",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490918,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-26T09:13:33.306472Z",
                    "last_modified_time": "2025-09-26T09:13:33.306486Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777857.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490918/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-26T09:13:33.186034Z",
            "last_modified_time": "2025-09-26T09:13:33.446667Z",
            "date_published": null,
            "start_time": "2025-11-13T08:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Willman Dance Company: Voimaeläin",
                "sv": "Willman Dance Company: Kraftdjur",
                "en": "Willman Dance Company: Voimaeläin – Power animal"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CCA6D7A4C2436CEEB278C2DA9F7DD895/Willman_Dance_Company_Voimaelain",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CCA6D7A4C2436CEEB278C2DA9F7DD895/Willman_Dance_Company_Kraftdjur",
                "en": "http://www.annantalo.fi/en/events/event/CCA6D7A4C2436CEEB278C2DA9F7DD895/Willman_Dance_Company_Voimaelain_Power_animal"
            },
            "description": {
                "fi": "<p>Voimaeläin on vuorovaikutuksellinen ja lapsia osallistava tanssiteatteriesitys.</p><p>Esityksessä seikkailevat hahmot, Kaisla, Kiira ja Tuisku, lukevat faabeleita toisilleen. Faabeli on hyvin vanha kerrontamuoto, yleensä eläinsadun muotoon puettu ja moraalisen opetuksen sisältävä kertomus. Kaisla, Kiira ja Tuisku alkavat faabelien innoittamina etsiä omia voimaeläimiään.<br>Esitys herättää ajatuksia eläimen ja ihmisen arvosta. Mitä eläimen tulisi saada ihmiseltä? Mitä ihminen voi saada eläimeltä? Voimaeläin vahvistaa lapsen itsetuntoa ja toimijuutta yksilönä. Lapsi voi miettiä omia kykyjään ja voimiaan eläinten ominaisuuksien kautta.<br>Willman Dance Company on helsinkiläinen tanssiryhmä, joka koostuu taiteilijoista, joita yhdistää intohimo tanssiin ja näyttämötaiteeseen. Ryhmä valmistaa esityksiä niin aikuis- kuin lapsiyleisölle luoden tanssiteatteri- ja nykytanssiteoksia, joissa liike ja tanssijoiden kehollinen kyky ilmaista ovat esityksen ydin.<br>Koreografia, ohjaus: Marjaterttu Willman<br>Pukusuunnittelu: Aapo Siikala<br>Esiintyjät: Jonna Aaltonen, Kaisa Niemi, Tanja Illukka<br>Kesto: 45 min<br>Ikäsuositus: 1–4 – luokkalaisille<br>Kieli: suomi <br>Maksuton, ilmoittautuminen kultus.fi 1.10. alkaen<br>Vastaava tuottaja: Katariina Metsälampi</p>",
                "sv": "<p>Kraftdjur är en interaktiv dansteaterföreställning där barnen får vara med.</p><p>Karaktärerna Kaisla, Kiira och Tuisku berättar fabler för varandra. En fabel är en mycket gammal form av berättelse. Den har ofta formen av en djursaga och innehåller en moralisk lärdom. Kaisla, Kiira och Tuisku inspireras av fablerna och börjar leta efter sina egna kraftdjur.<br>Föreställningen väcker tankar om djurens och människornas värde. Vad borde djuren få av människorna? Vad kan människorna få av djuren? Kraftdjuret stärker barnets självkänsla och aktörskap som individ. Barnet kan fundera på sina egna förmågor och krafter genom djurens egenskaper.<br>Willman Dance Company är en dansgrupp från Helsingfors, som består av konstnärer som förenas av en passion för dans och scenkonst. Gruppen skapar föreställningar för både barn och vuxna med dansteater och modern dans, där rörelsen och dansarnas kroppsliga förmåga att uttrycka sig står i centrum.<br>Koreografi, regi: Marjaterttu Willman<br>Kostym: Aapo Siikala<br>På scenen: Jonna Aaltonen, Kaisa Niemi, Tanja Illukka<br>Längd: 45 min<br>Åldersrekommendation: För barn i årskurs 1–4<br>Språk: finska <br>Avgiftsfritt, anmälan via kultus.fi från 1.10</p>",
                "en": "<p>Voimaeläin is an interactive dance theatre performance that invites the children to participate.</p><p>The characters in the show – Kaisla, Kiira and Tuisku – read fables to each other. A fable is a very old form of storytelling, usually a moral tale that often features animal characters. Inspired by these fables, Kaisla, Kiira and Tuisku start to look for their own power animals.<br>The show brings up thoughts about the value of animals and people. What should animals receive from people? What can people receive from animals? A power animal strengthens a child’s confidence and agency as a person. They can reflect on their own abilities and strengths through the animal’s characteristics.<br>Willman Dance Company is a dance group from Helsinki, comprising artists connected by their passion for dance and stage arts. The group prepares shows for both adult and child audiences, creating dance theatre and contemporary dance performances where the movements and the dancers’ corporal ability to express themselves are at the heart of the show.<br>Choreography, direction: Marjaterttu Willman<br>Costume design: Aapo Siikala<br>Performers: Jonna Aaltonen, Kaisa Niemi, Tanja Illukka<br>Duration: 45 min.<br>Recommended age: Grades 1 through 4<br>Language: Finnish <br>Free of charge, registration via Kultus.fi, starting 1 October</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Voimaeläin on vuorovaikutuksellinen ja lapsia osallistava tanssiteatteriesitys.",
                "sv": "Kraftdjur är en interaktiv dansteaterföreställning där barnen får vara med.",
                "en": "Voimaeläin is an interactive dance theatre performance that invites the children to participate."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67086/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66170",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1169714,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T06:13:53.190737Z",
                    "last_modified_time": "2025-07-03T06:13:53.190753Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772416.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1169714/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-03T06:13:53.071281Z",
            "last_modified_time": "2025-09-26T09:13:27.410362Z",
            "date_published": null,
            "start_time": "2025-10-18T08:00:00Z",
            "end_time": "2025-10-18T11: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,
            "name": {
                "fi": "Annantalon taidelauantai: Yökukkujat",
                "sv": "Annegårdens konstlördag: Nattugglor",
                "en": "Annantalo Art Saturday: Yökukkujat – Night Owls"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9817273C1DB6A9EB2771F705D8728858/Annantalon_taidelauantai_Yokukkujat",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9817273C1DB6A9EB2771F705D8728858/Annegardens_konstlordag_Nattugglor",
                "en": "http://www.annantalo.fi/en/events/event/9817273C1DB6A9EB2771F705D8728858/Annantalo_Art_Saturday_Yokukkujat_Night_Owls"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Yökukkujat</b></p><p>Mitä öisessä metsässä lymyää? Tuntuuko sinusta joskus pimeässä siltä, että jokin kurkistaa kannon takaa tai piilottelee puussa? Voisiko se olla eläin tai mielikuvitusolento? Tässä Annantalon taidelauantain (t)yöpajassa tehdään paperista ja kartongista yllättävästi esiin ponnahtava otus. Kukkuu!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaikenkielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat. <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Nattugglor</b></p><p>Vad döljer sig i den nattliga skogen? Känns det ibland som att någon kikar fram bakom en stubbe eller gömmer sig i ett träd i mörkret? Kan det vara ett djur eller en fantasifigur? I den här workshoppen under Annegårdens konstlördag får du göra en varelse av papper och kartong som överraskande hoppar fram. Tittut!</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. <br>Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Yökukkujat – Night Owls</b></p><p>What is hiding in a forest at night? Do you sometimes feel like someone is peeking behind a tree stump in the dark, or hiding up in a tree? Could it be an animal or some imaginary creature? In this Annantalo Art Saturday workshop, you will get to create a fun pop-up creature from paper and cardstock. Peekaboo!</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66170/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66304",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1210383,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-08T10:14:11.477566Z",
                    "last_modified_time": "2025-07-08T10:14:11.477584Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773307.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1210383/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-08T10:14:11.361782Z",
            "last_modified_time": "2025-09-26T09:13:26.883597Z",
            "date_published": null,
            "start_time": "2025-10-17T13:00: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,
            "name": {
                "fi": "AnnanHouse Disko: Maailman ääriin",
                "sv": "AnnanHouse Disco: Till världens ände",
                "en": "AnnanHouse Disco: To the ends of the earth"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2BFB589B8AE3352EE6BC4AAEEB441256/AnnanHouse_Disko_Maailman_aariin",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/2BFB589B8AE3352EE6BC4AAEEB441256/AnnanHouse_Disco_Till_varldens_ande",
                "en": "http://www.annantalo.fi/en/events/event/2BFB589B8AE3352EE6BC4AAEEB441256/AnnanHouse_Disco_To_the_ends_of_the_earth"
            },
            "description": {
                "fi": "<p>Suuren suosion saavuttanut koko perheen AnnanHouse -diskotapahtuma valtaa jälleen Annantalon!</p><p>AnnanHouse on koko perheen elektronisen tanssimusiikin erikoistapahtuma, joka tutustuttaa kävijät diskokulttuurin tunnelmiin. Tämänkertaisen diskon teemana on maailman ääriin. Tanssimisen ohessa juhlistamme eri kulttuureita ja opimme lisää yhteisestä maailmastamme. Piipahda Annantalon pukulainaamoon ja lainaa upeat diskovaatteet, tai pukeudu oman kulttuurisi mukaisesti ja tuo omat perinteesi tanssilattialle!</p><p>Musiikista vastaa Annantalon oma dj Nicolas Sebastien, joka tarjoilee huippumusiikkia housesta discoon. Diskoillan aikana voit myös hypätä tanssituokioihin, piipahtaa avoimissa teemaan sopivissa taidetyöpajoissa ja tutustua uuteen Piilossa-näyttelyyn.</p><p>klo 16.00 <b>Pukulainaamo TERRA</b> aukeaa ja työpajat käynnistyvät.<br>klo 16.30 Diskon ovet aukeavat.<br>klo 16.45 Fiona Fiouh’n (lausutaan Fiuun) tanssituokio ja kotkottava vieras tanssilattialla<br>klo 17.30 ja 18:15 Breakdance-vieraat B-boy <b> Pluto </b>  ja <b> Ramona </b>  tanssin pyörteissä<br>klo 19.00 Diskon ovet sulkeutuvat ja työpajat päättyvät<br>Diskoillan päätteeksi  <b> Moo-Klovni </b>  johdattelee yhdessä <b> Cheickin </b> djemberummun tahdissa diskokansan Annantalon etupihalle nauttimaan Moon hassuttelusta ja popcornista.<br> <br>Annantalon oma Kahvila Napero palvelee koko tapahtuman ajan!<br> <br><b> Työpajat klo 16–19:</b> <br> Viimeiset osallistujat otetaan sisään työpajoihin klo 18.45.</p><p><b> Natalia Castrillón – Harpun taikatuokio </b> <br>Tule kuuntelemaan, kun Natalia soittaa kaunista harppumusiikkia! Tämä on rauhallinen hetki, jossa suljet silmät ja annat eteläamerikkalaisten sävelten viedä sinut unelmien maailmaan. Harpun lempeät äänet tuntuvat kuin pehmeältä halilta. Istutaan hiljaa, rentoudutaan ja nautitaan musiikin taioista – tämä on just täydellinen paikka rauhoittua ja fiilistellä!<br> <br><b> Cheick Cissokho – Djembe-rumpujen rytmijuhla </b> <br>Hyppää rumpujen maailmaan Cheickin kanssa! Saat oman djemberummun, ja yhdessä ringissä soitetaan iloisia rytmejä ja lauletaan hauskoja lauluja Senegalista. Taputa, tamppaa ja anna rytmin viedä! Cheickin kanssa on niin kivaa, että hymy ei pysy poissa naamalta – täällä kaikki ovat rumpalitähtiä!<br> <br><b> Rosamaria Bolom – Nonstop amulettityöpaja </b><br>Tule askartelemaan oma taika-amulettisi! Muotoilemme suolataikinasta amuletteja, jotka tuovat hyvää mieltä ja iloa. Väritä ja koristele oma amulettisi juuri niin kuin haluat! Rosamarian kanssa jokainen pensselinveto on kuin pieni taikaloitsu. Tuo mielikuvituksesi mukaan ja anna taian loistaa!<br> <br><b> Fabu Pires – Iso kaupunki - Nonstop piirustustyöpaja </b> <br>Lähde seikkailemaan isoon kaupunkiin Fabun kanssa! Tässä työpajassa piirretään värikkäillä tusseilla jättimäinen taideteos, joka on täynnä hauskoja juttuja: taloja, autoja, ihmisiä ja vaikka lentäviä skeittilautoja! Mitä sinä keksit kaupunkiin? Tule piirtämään, unelmoimaan ja nauramaan – täällä kaikki ovat taiteilijoita, oli iso tai pieni!<br> <br><b> Askelten Palo – Kimallusnurkka </b><br>Haluatko olla tiikeri, keiju vai hassu avaruusolio? Kimallusnurkassa saat kasvomaalauksen, joka muuttaa sinut lempihahmoksesi! Lisäksi on kimaltava glitterinurkka ja lasten tatuointeja, joilla loihdit discotunnelman. Tule mukaan värien ja ilon maailmaan – täällä jokainen on discotähti!<br> <br><b> Moo-Klovni – Hassuttelun ilopilkku </b><br>Moo-Klovni tulee ja laittaa kaiken hauskasti sekaisin! Ilmapallot karkaavat, peruukit lentävät ja temput menevät iloisesti pieleen. Moo taikoo ilmapalloista koiria, sydämiä ja kaikkea hassua, ja nauru ei lopu koskaan! Tule mukaan sekoilemaan ja nauramaan vatsasi kipeäksi tämän hulvattoman klovnin kanssa!<br>  <br>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Huomioitavaa: diskossa käytetään teatterisavua ja vilkkuvia valoja. Tarjolla on kuulosuojaimia. <br>Kaikki ovat tervetulleita kielestä ja kielitaidosta riippumatta.</p><p>Mukana tapahtumaa toteuttamassa on Kulttuuriyhdistämö Interkult, jonka tavoitteena on taiteen avulla edistää kulttuurien välistä vuorovaikutusta.</p><p>Nähdään tanssilattialla!</p>",
                "sv": "<p>Det enormt populära discoevenemanget för hela familjen, AnnanHouse, övertar Annegården igen!</p><p>AnnanHouse är ett specialevenemang med elektronisk dansmusik för hela familjen som introducerar besökarna till discokulturens stämningar. Temat för detta disco är Till världens ände. Vid sidan av dansen firar vi olika kulturer och lär oss mer om vår gemensamma värld. Besök Annegårdens kostymutlåning och låna fina discokläder, eller klä dig i enlighet med din egen kultur och ta med dina egna traditioner till dansgolvet!<br>För musiken står Annegårdens egen dj Nicolas Sebastien, som bjuder på allt från house till disco. Under discokvällen kan du också delta i dansstunder, besöka öppna konstworkshoppar som passar temat och delta i en utställningsguidning.</p><p>Kl. 16.00 Kostymutlåningen öppnas och workshopparna inleds. <br>Kl. 16.30 Discot öppnar sina dörrar. Ledda dansstunder under kvällen. <br>Kl. 17.30 Utställningsguidning för hela familjen. <br>Kl. 19.00 Discot stänger sina dörrar.</p><p>Fritt inträde, ingen förhandsanmälan krävs.</p><p>Observera: teaterrök och blinkande lampor används i discot. Hörselskydd finns tillgängliga. <br>Alla är välkomna, oavsett språk och språkkunskaper.</p><p>Evenemanget ordnas av Kulturplattformen Interkult, vars mål är att med hjälp av konst främja interaktionen mellan kulturer.</p><p>Vi ses på dansgolvet!</p>",
                "en": "<p>The highly popular AnnanHouse disco event for the whole family will once again take over Annantalo!</p><p>AnnanHouse is an electronic dance music event for the entire family, which introduces visitors to the wonderful atmosphere that is disco culture. The theme of this year's disco is ‘to the ends of the earth.’ While dancing, we celebrate different cultures and learn more about our shared world. Stop by the Annantalo wardrobe and borrow some great disco gear, or dress according to your own culture and bring your own traditions to the dance floor!<br>Annantalo’s own DJ Nicolas Sebastien will be in charge of the music, spinning top records from house to disco. During the night, you can join dance sessions, pop by open art workshops in the theme of the event and take guided tours of the exhibition.</p><p>16.00 The wardrobe is opened and the workshops start. <br>16.30 The doors to the disco are opened. Guided dance classes during the evening. <br>17.30 Guided tour of the exhibition for the entire family <br>19.00 The doors to the disco are closed</p><p>Free entry, no advance registration.</p><p>Please note: the disco will feature fog machines and flashing lights. Ear defenders will be available. <br>Everyone is welcome, regardless of language and language skills.</p><p>The event is organised by the Interkult culture hub aimed at promoting intercultural interaction through the arts.</p><p>See you on the dance floor!</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Suuren suosion saavuttanut koko perheen AnnanHouse -diskotapahtuma valtaa jälleen Annantalon!",
                "sv": "Det enormt populära discoevenemanget för hela familjen, AnnanHouse, övertar Annegården igen!",
                "en": "The highly popular AnnanHouse disco event for the whole family will once again take over Annantalo!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66304/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67040",
            "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:596/?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:752/?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:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490917,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-26T09:13:26.403937Z",
                    "last_modified_time": "2025-09-26T09:13:26.403951Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773600.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490917/?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-26T09:13:26.296011Z",
            "last_modified_time": "2025-09-26T09:13:26.560616Z",
            "date_published": null,
            "start_time": "2025-10-17T08:00:00Z",
            "end_time": "2025-10-17T12: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,
            "name": {
                "fi": "Kanneltalon maksuton taidekerho lapsille",
                "sv": "Kostnadsfri konstklubb för barn på Gamlasgården",
                "en": "Kanneltalo's free art club for children"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9A6D5AE0EC8779D0254D40153FDF0CE7/Kanneltalon_maksuton_taidekerho_lapsille",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9A6D5AE0EC8779D0254D40153FDF0CE7/Kostnadsfri_konstklubb_for_barn_pa_Gamlasgarden",
                "en": "http://www.kanneltalo.fi/en/events/event/9A6D5AE0EC8779D0254D40153FDF0CE7/Kanneltalo_s_free_art_club_for_children"
            },
            "description": {
                "fi": "<p>Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen.</p><p>Olet tervetullut Kanneltalon taidekerhoon piipahtamaan tai viihtymään pidemmäksikin aikaa. Opettaja esittelee teemat ja tekniikat ja auttaa sinua tarvittaessa. Mukaasi saat oman ainutlaatuisen teoksesi ja myös uudet taidot ja ideat, jotka toivottavasti inspiroivat itsenäiseen työskentelyyn työpajan jälkeenkin.<br> <br>Syksyn ohjelmassa on esimerkiksi pienikokoinen kirja, pressprint-grafiikkaa, huovutettu heijastin, monotypia, värioppia, naamio, tussimaalausta, huovutettu joulukoriste ja paljon muuta kivaa!</p><p>Taidekerhon non-stop-toiminta on suunniteltu alakouluikäisille, nuoremmat lapset ovat tervetulleita osallistumaan yhdessä aikuisen kanssa.<br> <br>Ohjaajana kuvataiteilija Chloé Mahy-Hulkko <br>Opetuskielet suomi, englanti, ranska <br>Paikka: Kirjaston monitoimitila Tempo</p><p>Vapaa pääsy</p>",
                "sv": "<p>Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång. Höstens program innehåller till exempel en liten bok, pressprint-grafik, en tovad reflex, monotypi, färglära, en mask, en tuschmålning, en tovad juldekoration och mycket annat fint!</p><p>Höstens program innehåller till exempel en liten bok, pressprint-grafik, en tovad reflex, monotypi, färglära, en mask, en tuschmålning, en tovad juldekoration och mycket annat fint!</p><p>Konstklubbens non-stop-verksamhet är utformad med tanke på barn i grundskolan, men yngre barn är välkomna i sällskap av en vuxen.</p><p>Handledare är bildkonstnären Chloé Mahy-Hulkko</p><p>Undervisningsspråk finska, engelska, franska</p><p>Fritt inträde<br>Plats: Bibliotekets allaktivitetslokal Tempo</p>",
                "en": "<p>Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday.</p><p>The teacher introduced the used techniques and helps with working whenever needed. You get to keep all the art you create in the non-stop club, and hopefully the new skills and ideas inspire on independent working after the club too.</p><p>The autumn's program includes for example making a small book, press print graphic, felted reflector, monotypia, color theory, mask, marker painting, felted Christmas decoration and many other fun things!</p><p>The non-stop activities of the art club are designed for primary school children. Younger children are welcome together with an adult.</p><p>Directed by visual artist Chloé Mahy-Hulkko<br>Languages of instruction: Finnish, English, French<br>Location: The library's Tempo multifunctional space</p><p>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen.",
                "sv": "Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång. Höstens program innehåller till exempel en liten bok, pressprint-grafik, en tovad reflex, monotypi, färglära, en mask, en tuschmålning, en tovad juldekoration och mycket annat fint!",
                "en": "Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67040/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66349",
            "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:104/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?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:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178361,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T08:12:37.500005Z",
                    "last_modified_time": "2025-07-04T08:12:37.500018Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773474.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178361/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T08:12:37.445641Z",
            "last_modified_time": "2025-09-26T09:13:24.223601Z",
            "date_published": null,
            "start_time": "2025-10-13T15: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,
            "name": {
                "fi": "Kirjailijavieraana Satu Rämö – Kulttuurikorttelitoive",
                "sv": "Författarbesök: Satu Rämö – Kulturkortsönskemål",
                "en": "Visiting Author Satu Rämö – Culture Quarter request"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BA22C86C9FCA490C7435935142041382/Kirjailijavieraana_Satu_Ramo",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/BA22C86C9FCA490C7435935142041382/Forfattarbesok_Satu_Ramo",
                "en": "http://www.kanneltalo.fi/en/events/event/BA22C86C9FCA490C7435935142041382/Visiting_Author_Satu_Ramo"
            },
            "description": {
                "fi": "<p>Yleisön pyynnöstä Kanneltalon saliin saapuu huippusuosittu kirjailija Satu Rämö!</p><p>Tilaisuudessa keskustellaan Rämön menestyksekkäästä Hildur-sarjasta, etenkin viimeisimmästä Rakel-teoksesta (WSOY 2024).</p><p>Rikosetsivä Hildur Rúnarsdóttirin arki on pitkästä aikaa seesteistä, hän on käynyt surffauslomalla Havaijilla ja Länsivuonoilla on ollut rauhallista. Myös Jakob Johanson on tyytyväinen, vaikka Jakobin pojan kotiutuminen Islantiin ei ole sujunut ongelmitta. Hildur käy säännöllisesti vanhainkodissa tapaamassa perhetuttavaansa Helgaa. Vanhoja muistellessa alkaa paljastua uusia, yllättäviä asioita Rakel-äidistä.</p><p>Hildurin lapsuuden kotitalon remontti etenee, kunnes pahin mahdollinen salaisuus paljastuu. Samaan aikaan kesäiseen Ísafjörðuriin saapuva, suuria turistimassoja kuljettava risteilyalus tuo mukanaan ongelmia, jotka koettelevat Hildurin oikeustajua.</p><p>Satu Rämö (s. 1980) on Islannissa asuva kirjailija ja ekonomi. Hildur-sarja on ollut poikkeuksellisen suuri menestys joka mittarilla. Hildurin maailma on laajentunut televisioon ja teatterilavoille, ja sarjan käännösoikeuksia on myyty yli pariin kymmeneen maahan, muun muassa Saksaan, Isoon-Britanniaan, Ranskaan ja kaikkiin Pohjoismaihin.</p><p>Satu Rämöä haastattelee kirjailija, toimittaja Esa Mäkijärvi</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.</p><p>Kiitos, että rakennatte kanssamme Kanneltalon kulttuuritarjontaa!</p><p>Yhteistyössä Helsingin työväenopiston ja Kannelmäen kirjaston kanssa.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Superpopulära författaren Satu Rämö anländer till Gamlasgårdens sal på begäran av allmänheten!</p><p>Vi diskuterar Rämös framgångsrika Hildur-serie, i synnerhet den senaste boken Rakel (WSOY 2024).</p><p>Kriminalinspektör Hildur Rúnarsdóttir har för första gången sedan länge en lugn vardag, hon har varit på surfsemester i Hawaii och det har varit lugnt i hemtrakterna. Även Jakob Johanson är nöjd, även om Jakobs son inte helt problemfritt blivit hemmastadd på Island. Hildur besöker regelbundet ålderdomshemmet för att träffa sin vän Helga. Gamla minnen börjar avslöja nya överraskande saker om mamman Rakel.</p><p>Renoveringen av Hildurs barndomshem framskrider tills den värsta möjliga hemligheten avslöjas. Ett kryssningsfartyg som samtidigt anländer till Ísafjörður med stora turistmassor inför sommaren medför problem som påverkar Hildurs rättskänsla.</p><p>Satu Rämö (f. 1980) är en författare och ekonom bosatt på Island. Hildur-serien har varit en exceptionellt stor framgång med varje mätare mätt. Hildur-världen har utvidgats till tv och teaterscener, och seriens översättningsrättigheter har sålts till över tjugo länder, bland annat Tyskland, Storbritannien, Frankrike och alla nordiska länder.</p><p>Satu Rämö intervjuas av författare, redaktör Esa Mäkijärvi</p><p>I samarbete med Helsingfors finska arbetarinstitut och Gamlas bibliotek.</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.</p><p>När märket Kulturkortsönskemål visas vid evenemanget betyder det att programmet har skapats med dina förslag i åtanke.</p><p>Tack för att du bygger Gamlasgårdens kulturutbud tillsammans med oss!</p>",
                "en": "<p>By popular demand, the hugely popular author Satu Rämö is coming to Kanneltalo's hall!</p><p>The event will feature a discussion about Rämö's successful Hildur series, especially the latest instalment Rakel (WSOY, 2024).</p><p>Detective Hildur Rúnarsdóttir's life has finally settled into a peaceful routine. She has returned from a surfing holiday in Hawaii, and the Westfjords have been calm. Jakob Johanson is also happy, although his son's adjustment to life in Iceland has not been without challenges. Hildur makes regular visits to a retirement home to see her family friend Helga. As they revisit old memories, new and surprising revelations about Rakel, Hildur's mother, begin to surface.</p><p>The renovation of Hildur's childhood home progresses, until the worst possible secret comes to light. Meanwhile, a cruise ship carrying massive crowds of tourists arrives in summery Ísafjörður, bringing problems that put Hildur's sense of justice to the test.</p><p>Satu Rämö (b. 1980) is an Iceland-based author and economist. The Hildur series has been an extraordinary success on every scale. The world of Hildur has expanded to television and theatre stages, and the series' translation rights have been sold to over twenty countries, including Germany, the UK, France and all the Nordic countries.</p><p>Satu Rämö will be interviewed by author and journalist Esa Mäkijärvi.</p><p>In cooperation with Helsinki Adult Education Centre and Kannelmäki Library.</p><p><b>Culture Quarter request</b><br>Kanneltalo Culture Quarter requests have been born out of the wishes of residents and visitors to the area.</p><p>We have collected your ideas through events and online surveys, and listened to them carefully. When you see the Kulttuurikorttelitoive label (‘Culture Quarter Request’) in connection to an event, this means that the programme has been created based on your suggestions.</p><p>Thank you for helping us create Kanneltalo's cultural offering!</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Yleisön pyynnöstä Kanneltalon saliin saapuu huippusuosittu kirjailija Satu Rämö!",
                "sv": "Superpopulära författaren Satu Rämö anländer till Gamlasgårdens sal på begäran av allmänheten!",
                "en": "By popular demand, the hugely popular author Satu Rämö is coming to Kanneltalo's hall!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66349/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22cnja",
            "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:agmk22c2da/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo: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",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg",
                    "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-09-26T09:08:45.274000Z",
            "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,
            "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,
            "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><br></p><p>Mukana on myös Hello Espoo-info joka tarjoaa apua ja tukea vieraskielisille espoolaisille! Tervetuloa!</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><br></p><p>Hello Espoo-info, som erbjuder hjälp och stöd till Esbobor som talar främmande språk kommer också att vara med! Välkommen!</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><br></p><p>Hello Espoo Info, that helps and guides non-finnish speaking customers will also be present. Welcome!</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Konsernihallinto"
            },
            "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."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22cnja/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22ctc4",
            "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:agmk22c2da/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo: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",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg",
                    "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:12.927486Z",
            "last_modified_time": "2025-09-26T09:05:47.940227Z",
            "date_published": null,
            "start_time": "2025-10-09T11:30:00Z",
            "end_time": "2025-10-09T13: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,
            "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,
            "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><br></p><p>Mukana on myös Hello Espoo -info joka tarjoaa apua ja tukea vieraskielisille espoolaisille! Tervetuloa!</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><br></p><p>Hello Espoo-info, som erbjuder hjälp och stöd till Esbobor som talar främmande språk kommer också att vara med! Välkommen!</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><br></p><p>Hello Espoo Info, that helps and guides non-finnish speaking customers will also be present. Welcome!</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Konsernihallinto"
            },
            "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."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ctc4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22cqhq",
            "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:agmk22c2da/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo: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",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg",
                    "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-09-26T09:04:27.364437Z",
            "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,
            "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,
            "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><br></p><p>Mukana on myös Hello Espoo-info joka tarjoaa apua ja tukea vieraskielisille espoolaisille! Tervetuloa!</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><br></p><p>Hello Espoo-info, som erbjuder hjälp och stöd till Esbobor som talar främmande språk kommer också att vara med! Välkommen!</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><br></p><p>Hello Espoo Info, that helps and guides non-finnish speaking customers will also be present. Welcome!</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Konsernihallinto"
            },
            "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."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22cqhq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmykv7hry",
            "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:agggfz66aa/?format=api"
                },
                {
                    "@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:agggfz66ky/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490920,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-26T08:04:44.278227Z",
                    "last_modified_time": "2025-09-26T08:04:44.278244Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/274214f6-03d5-47d2-bef5-b65cbc481a08.png",
                    "cropping": "102,0,670,569",
                    "photographer_name": "",
                    "alt_text": "Tummanpuhuva kuva jossa 8 bändin jäsentä seisovat nuolimuodostelmassa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490920/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-09-26T08:16:58.092296Z",
            "last_modified_time": "2025-09-26T08:16:58.092316Z",
            "date_published": null,
            "start_time": "2025-10-20T15:00:00Z",
            "end_time": "2025-10-20T16: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,
            "name": {
                "fi": "Die Technogruppe Ison Omenan kirjastossa",
                "sv": "Die Technogruppe på Iso Omenas bibliotek",
                "en": "Die Technogruppe at the Iso Omena Library"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Die Technogruppe näyttää että technoa voi soittaa torvella. Tästä hulluudesta ette halua jäädä paitsi, tulkaapa siis tanssimaan ja aloittakaa viikko eins zwei drei tuuban tahtiin.</p><p>Evenemanget ordnas av Hela Helmet läser, ett projekt som sprider läslust och -inspiration bland svenskspråkiga vuxna. Vi ordnar program på Helmet-biblioteken i Helsingfors, Esbo, Grankulla och Vanda.</p><p><br></p>",
                "sv": "<p>&nbsp;Die Technogruppe visar att det går att spela techno på blåsinstrument. Det här är ungefär det underligaste du kan uppleva på ett bibliotek, så ta tillfället i akt och inled din vecka med att fira måndag kväll i takt till eins zwei drei, på horn.</p><p>Die Technogruppe auf Düffeldorff sind die weltbesten cybernetische partybängerspielen trommel-und-blechblasbände aus Düffeldorff, Otnäs. Wir sprechen manchmal Deutch, und haben über ganzen Otnäs und Helßinki Bereich ansteigen machen.</p><p>Evenemanget ordnas av Hela Helmet läser, ett projekt som sprider läslust och -inspiration bland svenskspråkiga vuxna. Vi ordnar program på Helmet-biblioteken i Helsingfors, Esbo, Grankulla och Vanda.</p><p><br></p>",
                "en": "<p>Die Technogruppe will show you that techno can be played with brass instruments. You don’t want to miss this madness – so come dance and start your week eins zwei drei to the rhythm of the tuba!</p><p>Evenemanget ordnas av Hela Helmet läser, ett projekt som sprider läslust och -inspiration bland svenskspråkiga vuxna. Vi ordnar program på Helmet-biblioteken i Helsingfors, Esbo, Grankulla och Vanda.</p><p><br></p>"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "short_description": {
                "fi": "Technoa torvella?  Tule bilettämään suomenruotsalaisen opiskelijayhtyeen Die Technogruppenin tahtiin",
                "sv": "Techno på tuba? Kom och festa loss med studerandekollektivet Die Technogruppe",
                "en": "Brass band techno? Come party to the beats of the studentcollective Die Technogruppe"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmykv7hry/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66179",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178694,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T09:13:57.420870Z",
                    "last_modified_time": "2025-07-04T09:13:57.420886Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772438.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178694/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-04T09:13:57.314936Z",
            "last_modified_time": "2025-09-26T08:13:33.031460Z",
            "date_published": null,
            "start_time": "2025-10-11T10:00:00Z",
            "end_time": "2025-10-11T12: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,
            "name": {
                "fi": "Rusinat pullasta - Älyvapaiden taidepajojen riemua jo 10 vuotta! – Koko perheen taidepäivä",
                "sv": "Russinen ur bullen – De intelligensbefriade: Konstworkshopparna fyller 10 år! – Verkstadsdag för hela familjen",
                "en": "Picking the best bits – Älyvapaat: Joy of art workshops for a decade! – Workshop day for the whole family"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D56BBBC212B789696FA06FBA81E987A2/Rusinat_pullasta_-_Alyvapaiden_taidepajojen_riemua_jo_10_vuotta_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D56BBBC212B789696FA06FBA81E987A2/Russinen_ur_bullen_De_intelligensbefriade_Konstworkshopparna_fyller_10_ar_",
                "en": "http://www.annantalo.fi/en/events/event/D56BBBC212B789696FA06FBA81E987A2/Picking_the_best_bits_Alyvapaat_Joy_of_art_workshops_for_a_decade_"
            },
            "description": {
                "fi": "<p>Nyt poimitaan parhaat päältä! Annantalon työpajapäivässä koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p>Tapahtuman järjestävät yhdessä Annantalo ja vapaaehtoisten Älyvapaa-yhteisö jo kymmenettä kertaa – luvassa siis taidepajojen riemua täyden kympin verran!</p><p>Pajoissa pääset tekemään unelmista asumuksia, osallistumaan Annantalon ajoihin ja kenties käymään myös kuussa! Juhlan kunniaksi tehdään myös omia juhlatamineita, joita voi esitellä muotinäytöksessä!<br> <br>Kaikkiin työpajoihin on vapaa pääsy, ei ennakkoilmoittautumista.<br>Ikäsuositus: kaikenikäisille, lapset alle 8 v. aikuisen kanssa.<br>Työskentelykieli: suomi</p><p>Huom! Pajoihin viimeiset osallistujat otetaan sisään klo 15.00</p><p>_</p><p>Työpajapäivän ohjelma:</p><p><b>Annantalon Suurajot</b> klo 13–15.30 | 2.krs käytävä</p><p>Tule kokemaan kilpa-ajon ja vauhdin hurmaa! Ota mukaasi varikolle parhaat pikkuautosi tai lainaa Annantalon tallista.<br>Selvitätkö haastavan radan mutkaiset kurvit, nousu ja laskut? Lopuksi ajetaan huippunopeiden turboautojen mestaruusluokka ja kilpailujen paras palkitaan ruutulipulla!<br>Kisaa ohjaavat Pirelli-Pirjo ja Imola-Ilkka</p><p><b>Q – Matka kuuhun</b> klo 13–15.30 | Pohjoisgalleria (2. krs)</p><p>Rakennetaan kaupunki kuun uusille asukkaille! Q:ssa on palikoita, joista pääset rakentamaan omaa siirtokuntaa.<br>Nokia vei kännykkäverkon kuuhun. Mutta kuka verkkoja käyttää. Missä he asuvat? Mitä rakennuksia siellä tarvitaan ja miltä ne näyttävät?</p><p><b>Unelmien huone</b> klo 13–15.30 | Kuva 2 luokka</p><p>Tule mukaan rakentamaan Unelmiesi huone!<br>Onko mielessäsi tila, jossa on liukumäkiä, pehmeä pilvilattia tai salainen ovi vaikkapa karkkikaappiin? Rakennamme pajassa pahvista pienoishuoneen - vain mielikuvitus on rajana!</p><p><b>Muotihuone</b> klo 13–15.30 | Kuva 1 luokka</p><p>Muotihuoneessa suunnitellaan ja valmistetaan juhlavaatteita Älyvapaiden 10-vuotisjuhlaan: toppeja, patellavöitä, kellohameita, boleroita, perhosmekkoja – kaiken kirjavia muotiluomuksia!  Materiaalina käytämme papereita, liimaa, teippejä ja värejä. Lopuksi tuotteet esitellään muotinäytöksessä.</p><p>Yhteinen muotinäytös klo 15.45<br>Ikäsuositus: 4+</p><p><b>Kuka taskussa luuraa?</b> klo 13–15.30 | Kuva 3 luokka<br>Pikkuolentojen muotoilupaja<br>Käännä, väännä, leikkaa, liimaa! Pikkuruisten olentojen pajassa tehdään helpolla tekniikalla pehmeistä ja taipuvista materiaaleista taskuun mahtuvia pörheitä peikkoja, hurjia mörköjä tai keijuja ja muita siivekkäitä.</p><p>Ikäsuositus: 4+</p><p><b>Muotinäytös</b> klo 15.45 | ala-aula<br>Yhteinen näytös esittelee pajoissa syntyneitä muotiluomuksia.</p><p><b>Poppareita</b> klo 16.15 | etupiha<br>Tapahtuma päätteeksi tuoretta popcornia tarjolla etupihalla!</p><p>_</p><p>Tapahtuma on osa Annantalon taidelauantai-tapahtumia. Niissä koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Nyt poimitaan parhaat päältä! Annantalon työpajapäivässä koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66179/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22o2vq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490209,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-06-30T09:44:09.169441Z",
                    "last_modified_time": "2025-06-30T09:44:09.169454Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/88e7c9b5-aa05-4668-abc8-4128c24e9e7e.jpg",
                    "cropping": "174,0,1017,842",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on Espoon Kirjafestareiden logo",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490209/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-30T09:44:30.666355Z",
            "last_modified_time": "2025-09-26T08:13:18.332537Z",
            "date_published": null,
            "start_time": "2025-11-15T10:00:00Z",
            "end_time": "2025-11-15T15: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,
            "name": {
                "fi": "Espoon Kirjafestarit",
                "sv": "Esbo bokfestival"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Espoon Kirjafestarit 15.11.2025 </p><p>Lippulaivan kirjasto</p><p>                  </p><p><strong>OHJELMA klo 12–17</strong></p><p>&nbsp;</p><p><strong>SALONKI </strong>&nbsp;</p><p><br></p><p>12.00–12.45 Avajaiset </p><p>T e r v e t u l o a kirjan &amp; teatterin juhlaan!</p><p>&nbsp;</p><p>12.00&nbsp;&nbsp;Sinikka Mäntysalo-Lamppu</p><p>Espoon Kaupunginteatterin Kannatusyhdistys varapj. ja Espoon Kirjailijat hallitus</p><p>Niina Bruun, Lippulaivan kirjasto, Espoon Kirjafestareiden yhteistyökumppani </p><p>&nbsp;</p><p>12.10&nbsp;Espoon musiikkiopiston oppilaiden tervehdys </p><p>laulunopettaja Leena Sainion johdolla</p><p>&nbsp;</p><p>12.20  Espoon ensimmäiset Kirjafestarit avaa</p><p>Kai Mykkänen, kaupunginjohtaja</p><p>&nbsp;</p><p>12.30 Espoon Kirjafestareiden suojelijan julkistaminen &nbsp;</p><p>Anna Maria Mäki, Espoon Kirjailijat pj.</p><p>Teresia Volotinen, Espoon Kaupunginteatterin Kannatusyhdistys pj.&nbsp;</p><p>&nbsp;</p><p>12.40 Pipsa Lonka, näytelmäkirjailijan puheenvuoro</p><p>Kirjailija, dramaturgi ja yksi Suomen käännetyimmistä näytelmäkirjailijoista</p><p>&nbsp;</p><p><strong>Kirjailijakeskustelut</strong></p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>12.45 Näytelmäkirjallisuus </p><p>&nbsp;Näytelmäkirjailijat Pipsa Lonka ja E.L. Karhu</p><p>&nbsp;</p><p>13.05 Kaunokirjallisuus &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Kirjailijat Tiina Katriina Tikkanen ja Joonas Konstig</p><p>\t&nbsp;</p><p><strong>Kirjailijoiden puheenvuorot&nbsp;</strong></p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>13.20 Tietokirjallisuus&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Kirjailija, runoilija, Johanna Venho</p><p>\t&nbsp;</p><p>13.35&nbsp;Tietokirjallisuus</p><p>Kirjailija, kädentaitaja Mirja Heikkilä </p><p>&nbsp;</p><p>13.45 Lyriikka&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Kirjailija, runoilija Riika Helle-Kotka</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>14.00&nbsp; Lastenkirjallisuus&nbsp;</p><p>Lastenkirjailija, tietokirjailija Tuula Pere</p><p><br></p><p>14.15 Muunkieliset </p><p>Kirjailija, runoilija Shashank Mane&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>14.30 &nbsp;Kirja &amp; äänikirja – näkökulmia avaamassa kirjallisuusihminen, kirjoittaja, kokenut kirjan ammattilainen Anna-Riikka Carlson</p><p>14.50 TUA – Teatterin Uusi Alkukirjasto, teatteri- ja tanssikriitikko Maria Säkö</p><p>15.10 &amp; Espoon teatteri, keskustelu Peter asui talossa -esityksestä &amp;Teatterissa kevät– 2026&nbsp;&nbsp;</p><p>15.30–&nbsp;15.50 Katse Espooseen -runokilpailun avaus, Elina Pulli, Espoon kaupungin kulttuuripalvelut&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>16.00 Kirjafestareiden yleisön oma open mic – jouluinen lavarunotapahtuma</p><p>juontajana Räppäri Vaara, kirjailija Sanna Vaara </p><p>&nbsp;</p><p>16.45-17 Espoon Kirjafestareiden päätös yhteisöllisesti luodun runorullan säkein ja kanteletaiteilija Zipora Ogolan Kirjafestareille säveltämin sävelin </p><p>\t&nbsp;</p><p>Osallistavaa ja ohjattua ohjelmaa eri puolilla kirjastoa 12.45–16.30 &nbsp;</p><p>&nbsp;</p><p><strong>Perhealue </strong></p><p>&nbsp;</p><p>Lasten satu- ja runonurkka </p><p>&nbsp;</p><p>12.45–13.00 &nbsp;Sanna Vaara, kirjailija, lastenkirjailija </p><p>13.05–13.25 &nbsp;Leena Sainio, kirjailija, musiikinopettaja, runokirjasta Rapuooppera&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>14.15–14.35 &nbsp;Elina Pulli, kirjailija ja lastenkirjailija, Runopullapaja </p><p>14.40–15.00 &nbsp;Tuula Pere, lastenkirjailija, tietokirjailija&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;</p><p>Lasten- ja nuorten teatterin iloa</p><p>&nbsp;</p><p>15.00–15.30 Espoon sirkus- ja teatterikoulu ESKO </p><p>15.30–16.00 Unga Teatern, Suomen vanhin lasten- ja nuorten teatteri &nbsp;</p><p>16.00–16.30 Teatteri Hyökyvuori, lasten- ja nuorten teatteri ja kesäteatteri </p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Merikontti </strong></p><p>Runoilijan vastaanotto </p><p>Vinski Valos, runoilija</p><p>13.00–14.00 </p><p>15.00–16.00</p><p>Tilausrunoilija Vinski Valos kirjoittaa runomuotokuvia aiheesta kuin aiheesta. </p><p>Teoksen saa mukaansa lausuttuna ja kirjoituskoneella kirjoitettuna. Vapaaehtoinen palkkio</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>&nbsp;Paja</strong> </p><p>&nbsp;</p><p>12.30–15.00 Sanataidetyöpajat</p><p>Tanja Maksimainen kirjailija, sanataideopettaja, Vantaan sanataidekoulu</p><p>&nbsp;</p><p>Tehtäviä lapsille, nuorille ja aikuisille.</p><p>12.30–13.30&nbsp;&nbsp;Lapset ja nuoret 4–16-vuotiaat: Leikitään mielikuvituksella ja ilotellaan kielellä</p><p>13.45–15.00&nbsp;&nbsp;Aikuiset ja nuoret yli 16-vuotiaat: Proosaa ja runoa - herätellään kielenkantoja </p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ja testaillaan omaa kirjoittajaääntä</p><p>&nbsp;</p><p>15.00–16.00 Tämän runon haluat kuulla</p><p>&nbsp;&nbsp;&nbsp;&nbsp;Kohtaa &amp; kuuntele, runoja ja proosaa</p><p>&nbsp;&nbsp;&nbsp;&nbsp;Espoon Kirjailijoiden jäsenet esittävät tekstejä omasta tuotannostaan &nbsp;&nbsp;</p><p>&nbsp;</p><p><strong>Keula </strong></p><p>&nbsp;</p><p>14.00–16.00 Unelmapaja nuorille</p><p>Paula Pulkkinen, johtava kirjastopedagogi </p><p>&nbsp;</p><p>Unelmarunotyöpaja kutsuu! Tule mukaan rakentamaan yhteistä runoa, jossa sinun unelmasi saa äänen. Ei tarvitse olla runoilija – riittää, että uskallat unelmoida ja kirjoittaa vaikka vain yhden sanan!</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Hytti</strong></p><p>12.45–14.15 Riimipaja</p><p>Kasper Salonen, runoilija, kääntäjä, spoken word -artisti</p><p>&nbsp;</p><p>Loppusointu eli riimi on yleinen ja voimakas runouden keino, joka sytyttää mielikuvituksen ja </p><p>luo yllättäviä yhteyksiä. Tule mukaan kirjoittamaan ja löytämään merkitysten rytmejä </p><p>lavarunoilijan ohjauksessa.</p><p>&nbsp;</p><p>&nbsp;</p><p>14.15–15.15 Tekstipalautteen liveklinikka</p><p>Johanna Venho, kirjailija, runoilija </p><p>&nbsp;</p><p>Tuo Tekstipalautteen liveklinikalle yhden sivun mittainen kirjoituksesi, joko runoa tai proosaa. Kokenut kirjoittajaohjaaja &amp; kirjailija kertoo ensivaikutelmat, tulkinnat &amp; mahdolliset muutosehdotukset, jos niitä toivot.</p><p>&nbsp;</p><p>&nbsp;</p><p>15.15–16.00 Haikutyöpaja</p><p>Riika Helle-Kotka, lastenkirjailija, runoilija </p><p>&nbsp;</p><p>Sanataideopettaja Riika Helle-Kotka ohjaa kirjoittamaan haiku-runoja yhtä lailla meille tutuista arkisista asioista kuin elämää suuremmistakin mysteereistä japanilaista runoperinnettä hyödyntäen. Runon voi kirjoittaa paperille tai omaan kännykkään. </p><p>&nbsp;</p><p><strong>Lippulaivan kirjaston aulatila </strong></p><p>Runorulla avoinna aulassa koko päivän </p><p>Runorulla avataan Kirjafestareiden päätösosuudessa</p><p>&nbsp;</p><p>KIRJAILIJOIDEN KOHTAAMINEN JA MYYNTIPÖYDÄT</p><p>12.00–17.00 </p><p>&nbsp;</p><p>&nbsp;</p><p><strong>KAJUUTTA ja kirjaston avoimet tilat </strong></p><p>&nbsp;</p><p>Näytteilleasettajat</p><ul><li>Kirjailijat ja kustantamot&nbsp;&nbsp;</li><li>Espoolaiset kulttuuriyhteisöt </li></ul><p>\t&nbsp;</p><p>&nbsp;</p><p><strong>KIRJASTON SISÄÄNTULOAULA (KAUPPAKESKUSKEN PUOLELLA)</strong></p><ul><li>Kulttuurijärjestöt</li><li>Kirja-alan yhteistyökumppanit, kirjakauppa</li><li>Kirjojen lahjapaketointi – paketointia hoitaa Espoon Tikka Leopardit -futisjoukkue</li></ul><p>&nbsp;</p><p>&nbsp;</p><p><strong>KAHVILATILA</strong></p><p>Yhteisökeittiön edusta</p><ul><li>Espoon Kirjafestareiden kahvila on avoinna koko festaripäivän (klo 12–17) </li><li>Kahvilaa hoitaa paikallinen monikansallinen työryhmä. Maksu MobilePay tai käteinen</li></ul><p>&nbsp;</p><p>Espoon Kirjafestarit järjestää yhteistyössä Espoon Kirjailijat ja Espoon Kaupunginteatterin Kannatusyhdistys. Yhteistyökumppaneina Lippulaivan kirjasto ja Espoonlahden kulttuurihanke.</p><p><br></p><p><strong>Lisätietoja:</strong> espoon.kirjailijat@gmail.com tai <a href=\"https://espoonkirjailijat.fi/espoon-kirjafestarit-15-11-2025/\">Espoon kirjafestareiden kotisivuilta</a>.</p><p><strong>Vastaava tuottaja: </strong>Sinikka Mäntysalo | sinikka.mantysalo@gmail.com</p>",
                "sv": "<p><strong>Berättelsernas magi, förtrollande litteratur och hjärtevärmande levande kultur i Lippulaivabiblioteket</strong></p><p>&nbsp;</p><p>Esbo bokfestival ordnas av Esbo författare rf och Espoon kaupunginteatterin kannatusyhdistys. Festivalen bjuder in alla litteratur- och kultursinnade till en helt ny evenemangshelhet. Festivalen ordnas för första gången och samlar författare, läsare, åskådare och upplevare på ett och samma ställe.</p><p>&nbsp;</p><p><strong>Program:</strong></p><p><br></p><p><strong>Allaktivitetsrummet Salonki:</strong></p><p>Festivalen öppnas kl. 12.00–12.30</p><p>Författardiskussioner kl. 12.30–14.30</p><p>Diskussion om böcker och ljudböcker samt frågor från publiken kl. 14.30</p><p>Förlaget TUA Teatterin uusi alkukirjasto – Maria Säkö och Heidi Backström kl. 14.50</p><p>Anförande av Esbo teater och presentation av repertoar kl. 15.10</p><p>Öppning av dikttävlingen Katse Espooseen – Elina Pulli, Esbo stads kulturtjänster kl. 15.30</p><p>Open mic – estradpoesievenemang med jultema kl. 16.00–16.45</p><p>Avslutning av Esbos första bokfestival – Tack och musikföreställning kl. 16.45–17.00</p><p>&nbsp;</p><p><strong>Program i de andra lokalerna kl. 12.45–15.45:</strong></p><p>Inkluderande och ledda programpunkter på olika håll i biblioteket. Verkstädernas och programpunkternas ledare publiceras i september.</p><p>&nbsp;</p><p><strong>Mötesrummet Hytti:</strong></p><p>Haikuverkstad</p><p>Liveklinik om textrespons</p><p>Drömhörna, framtidsverkstad för unga</p><p>&nbsp;</p><p><strong>Arbetsrummet Merikontti:</strong></p><p>Vinski Valos poesiklinik</p><p>&nbsp;</p><p><strong>Verkstaden Paja:</strong></p><p>Rimverkstad</p><p>Mad lips,&nbsp;cut up, kylskåpspoesi</p><p>&nbsp;</p><p><strong>Familjeområdet:</strong></p><p>Demoföreställning av Esbo cirkus- och teaterskola Esko</p><p>Sago- och dikthörna för barn</p><p>Program från diktboken Rapuooppera</p><p>&nbsp;</p><p><strong>Entréhallen:</strong></p><p>Diktrullen är öppen hela dagen i entréhallen</p><p>Möte med författare samt försäljningsbord i mötesrummet Kajuutta och utanför allaktivitetsrummet Salonki kl. 12.30–16.45</p><p>* Författarna publiceras i september</p><p>&nbsp;</p><p>Presentpaketering av böcker erbjuds av fotbollslaget Espoon Tikka Leopardit</p><p>&nbsp;</p><p>Under hela festivalen finns det ett kafé i det gemensamma köket Kapyysi kl. 12.00–17.00.</p><p>* Kaféet sköts av en lokal multinationell arbetsgrupp</p><p>&nbsp;</p><p><strong>Evenemanget är på finska</strong></p><p><br></p><p><strong>Mer information: </strong>espoon.kirjailijat@gmail.com</p><p>&nbsp;</p><p><strong>Ansvarig producent:</strong> Sinikka Mäntysalo | sinikka.mantysalo@gmail.com</p><p>&nbsp;</p><p><strong>I samarbete med Lippulaivabiblioteket</strong></p>"
            },
            "location_extra_info": {
                "fi": "Salonki, Kajuutta, Paja ja Hytti",
                "sv": "Salonki, Kajuutta, Paja ja Hytti"
            },
            "provider": {
                "fi": "Espoon kirjailijat ja Espoon Kaupunginteatterin Kannatusyhdistys "
            },
            "short_description": {
                "fi": "Tarinoiden taikaa, kirjallisuuden lumoa ja sydäntä lämmittävää elävää kulttuuria Espoon ytimessä Lippulaivan kirjastossa lauantaina 15.11. klo 12-17",
                "sv": "Berättelsernas magi, förtrollande litteratur och hjärtevärmande levande kultur i Lippulaivabiblioteket"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22o2vq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmykijmcm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmykijq3u/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490912,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-09T12:34:10.220320Z",
                    "last_modified_time": "2025-09-09T12:34:10.220338Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/842ec280-5040-4ce3-af7e-045b24662fa8.png",
                    "cropping": "0,46,1414,1460",
                    "photographer_name": "",
                    "alt_text": "Nuorten perjantai Voxissa: konsoliohjain.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490912/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-09-26T07:29:21.851304Z",
            "last_modified_time": "2025-09-26T07:29:21.851322Z",
            "date_published": null,
            "start_time": "2025-12-19T12:30:00Z",
            "end_time": "2025-12-19T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Nuorten perjantai Voxissa",
                "sv": "Ungdomarnas fredag i Vox! ",
                "en": "Youth Friday at Vox! "
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Nuorten perjantaissa VOXiin ovat tervetulleet yläkouluikäiset ja sitä vanhemmat pelaamaan ja viettämään mukavaa aikaa.&nbsp;</p><p>Tilassa on mahdollista pelata konsoli- ja tietokonepelejä, lautapelejä, biljardia ja pöytätennistä.&nbsp;</p>",
                "sv": "<p>På fredagar är ungdomar från högstadiet och uppåt välkomna till VOX för att spela och ha kul.&nbsp;</p><p>Här finns konsol- och datorspel, brädspel, biljard och bordtennis.&nbsp;</p>",
                "en": "<p>In the Youth Friday at VOX, lower secondary school-aged youth and older are welcome to play and have a good time.&nbsp;</p><p>The space offers the opportunity to play console and computer games, board games, billiards and table tennis.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "VOX",
                "sv": "VOX",
                "en": "VOX"
            },
            "provider": null,
            "short_description": {
                "fi": "Voxissa järjestetään joka perjantai tapahtuma yläkouluikäisille ja sitä vanhemmille nuorille klo 14:30-18:00. ",
                "sv": "På Vox ordnas varje fredag ett evenemang för ungdomar i högstadieåldern och äldre kl. 14.30–18.00. ",
                "en": "Every Friday, an event is organized at Vox for lower secondary school-aged youth and older, from 2:30 PM to 6:00 PM. "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmykijmcm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmykijmye",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmykijq3u/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490912,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-09T12:34:10.220320Z",
                    "last_modified_time": "2025-09-09T12:34:10.220338Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/842ec280-5040-4ce3-af7e-045b24662fa8.png",
                    "cropping": "0,46,1414,1460",
                    "photographer_name": "",
                    "alt_text": "Nuorten perjantai Voxissa: konsoliohjain.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490912/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-09-26T07:29:21.748672Z",
            "last_modified_time": "2025-09-26T07:29:21.748691Z",
            "date_published": null,
            "start_time": "2025-12-12T12:30:00Z",
            "end_time": "2025-12-12T16: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,
            "name": {
                "fi": "Nuorten perjantai Voxissa",
                "sv": "Ungdomarnas fredag i Vox! ",
                "en": "Youth Friday at Vox! "
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Nuorten perjantaissa VOXiin ovat tervetulleet yläkouluikäiset ja sitä vanhemmat pelaamaan ja viettämään mukavaa aikaa.&nbsp;</p><p>Tilassa on mahdollista pelata konsoli- ja tietokonepelejä, lautapelejä, biljardia ja pöytätennistä.&nbsp;</p>",
                "sv": "<p>På fredagar är ungdomar från högstadiet och uppåt välkomna till VOX för att spela och ha kul.&nbsp;</p><p>Här finns konsol- och datorspel, brädspel, biljard och bordtennis.&nbsp;</p>",
                "en": "<p>In the Youth Friday at VOX, lower secondary school-aged youth and older are welcome to play and have a good time.&nbsp;</p><p>The space offers the opportunity to play console and computer games, board games, billiards and table tennis.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "VOX",
                "sv": "VOX",
                "en": "VOX"
            },
            "provider": null,
            "short_description": {
                "fi": "Voxissa järjestetään joka perjantai tapahtuma yläkouluikäisille ja sitä vanhemmille nuorille klo 14:30-18:00. ",
                "sv": "På Vox ordnas varje fredag ett evenemang för ungdomar i högstadieåldern och äldre kl. 14.30–18.00. ",
                "en": "Every Friday, an event is organized at Vox for lower secondary school-aged youth and older, from 2:30 PM to 6:00 PM. "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmykijmye/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmykijnde",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmykijq3u/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490912,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-09T12:34:10.220320Z",
                    "last_modified_time": "2025-09-09T12:34:10.220338Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/842ec280-5040-4ce3-af7e-045b24662fa8.png",
                    "cropping": "0,46,1414,1460",
                    "photographer_name": "",
                    "alt_text": "Nuorten perjantai Voxissa: konsoliohjain.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490912/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-09-26T07:29:21.651256Z",
            "last_modified_time": "2025-09-26T07:29:21.651275Z",
            "date_published": null,
            "start_time": "2025-12-05T12:30:00Z",
            "end_time": "2025-12-05T16: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,
            "name": {
                "fi": "Nuorten perjantai Voxissa",
                "sv": "Ungdomarnas fredag i Vox! ",
                "en": "Youth Friday at Vox! "
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Nuorten perjantaissa VOXiin ovat tervetulleet yläkouluikäiset ja sitä vanhemmat pelaamaan ja viettämään mukavaa aikaa.&nbsp;</p><p>Tilassa on mahdollista pelata konsoli- ja tietokonepelejä, lautapelejä, biljardia ja pöytätennistä.&nbsp;</p>",
                "sv": "<p>På fredagar är ungdomar från högstadiet och uppåt välkomna till VOX för att spela och ha kul.&nbsp;</p><p>Här finns konsol- och datorspel, brädspel, biljard och bordtennis.&nbsp;</p>",
                "en": "<p>In the Youth Friday at VOX, lower secondary school-aged youth and older are welcome to play and have a good time.&nbsp;</p><p>The space offers the opportunity to play console and computer games, board games, billiards and table tennis.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "VOX",
                "sv": "VOX",
                "en": "VOX"
            },
            "provider": null,
            "short_description": {
                "fi": "Voxissa järjestetään joka perjantai tapahtuma yläkouluikäisille ja sitä vanhemmille nuorille klo 14:30-18:00. ",
                "sv": "På Vox ordnas varje fredag ett evenemang för ungdomar i högstadieåldern och äldre kl. 14.30–18.00. ",
                "en": "Every Friday, an event is organized at Vox for lower secondary school-aged youth and older, from 2:30 PM to 6:00 PM. "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmykijnde/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmykijnoq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmykijq3u/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490912,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-09T12:34:10.220320Z",
                    "last_modified_time": "2025-09-09T12:34:10.220338Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/842ec280-5040-4ce3-af7e-045b24662fa8.png",
                    "cropping": "0,46,1414,1460",
                    "photographer_name": "",
                    "alt_text": "Nuorten perjantai Voxissa: konsoliohjain.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490912/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-09-26T07:29:21.557826Z",
            "last_modified_time": "2025-09-26T07:29:21.557843Z",
            "date_published": null,
            "start_time": "2025-11-28T12:30:00Z",
            "end_time": "2025-11-28T16: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,
            "name": {
                "fi": "Nuorten perjantai Voxissa",
                "sv": "Ungdomarnas fredag i Vox! ",
                "en": "Youth Friday at Vox! "
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Nuorten perjantaissa VOXiin ovat tervetulleet yläkouluikäiset ja sitä vanhemmat pelaamaan ja viettämään mukavaa aikaa.&nbsp;</p><p>Tilassa on mahdollista pelata konsoli- ja tietokonepelejä, lautapelejä, biljardia ja pöytätennistä.&nbsp;</p>",
                "sv": "<p>På fredagar är ungdomar från högstadiet och uppåt välkomna till VOX för att spela och ha kul.&nbsp;</p><p>Här finns konsol- och datorspel, brädspel, biljard och bordtennis.&nbsp;</p>",
                "en": "<p>In the Youth Friday at VOX, lower secondary school-aged youth and older are welcome to play and have a good time.&nbsp;</p><p>The space offers the opportunity to play console and computer games, board games, billiards and table tennis.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "VOX",
                "sv": "VOX",
                "en": "VOX"
            },
            "provider": null,
            "short_description": {
                "fi": "Voxissa järjestetään joka perjantai tapahtuma yläkouluikäisille ja sitä vanhemmille nuorille klo 14:30-18:00. ",
                "sv": "På Vox ordnas varje fredag ett evenemang för ungdomar i högstadieåldern och äldre kl. 14.30–18.00. ",
                "en": "Every Friday, an event is organized at Vox for lower secondary school-aged youth and older, from 2:30 PM to 6:00 PM. "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmykijnoq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}