Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 29091,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=3",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true"
    },
    "data": [
        {
            "id": "kulke:68591",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385014,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T12:14:11.414534Z",
                    "last_modified_time": "2026-06-09T12:14:11.414548Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791139.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385014/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-30T07:13:47.019504Z",
            "last_modified_time": "2026-06-09T12:14:11.655945Z",
            "date_published": null,
            "start_time": "2026-09-04T09:30:00Z",
            "end_time": "2026-09-04T11: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,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>"
            },
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0D8C8AA26EB78AA3FD6B97E4BF49F41B/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0D8C8AA26EB78AA3FD6B97E4BF49F41B/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "en": "http://www.kanneltalo.fi/en/events/event/0D8C8AA26EB78AA3FD6B97E4BF49F41B/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68591/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68544",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385013,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T12:14:10.709591Z",
                    "last_modified_time": "2026-06-09T12:14:10.709609Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790962.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385013/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-09T12:14:10.596569Z",
            "last_modified_time": "2026-06-09T12:14:10.877587Z",
            "date_published": null,
            "start_time": "2026-08-31T15: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,
            "provider": null,
            "description": {
                "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko <b>Mari Kätkä</b>.</p><p><i>Maksuttomat maanantait</i> ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.</p><p>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Paikka: Kanneltalon kahvilan stage</p><p>Kesto: 1 t</p>",
                "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. <b>Mari Kätkä</b> leder allsången.</p><p><i>Kostnadsfria måndagar</i> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p><p>Längd: 1 t.</p>",
                "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by <b>Mari Kätkä</b>.</p><p><i>Free Mondays</i> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p><p>Duration: 1 h</p>"
            },
            "name": {
                "fi": "Nyt lauletaan! – Maksuttomat maanantait",
                "sv": "Nu sjunger vi! – Kostnadsfria måndagar",
                "en": "Let us sing! – Free Mondays"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!",
                "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!",
                "en": "Nothing is more fun than singing – except for singing together!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/87062524740A9FF3355568B8D0FADDF2/Nyt_lauletaan_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/87062524740A9FF3355568B8D0FADDF2/Nu_sjunger_vi_",
                "en": "http://www.kanneltalo.fi/en/events/event/87062524740A9FF3355568B8D0FADDF2/Let_us_sing_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68544/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68587",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385012,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T12:14:09.776192Z",
                    "last_modified_time": "2026-06-09T12:14:09.776209Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791129.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385012/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-09T12:14:09.629343Z",
            "last_modified_time": "2026-06-09T12:14:09.990440Z",
            "date_published": null,
            "start_time": "2026-08-28T09:30:00Z",
            "end_time": "2026-08-28T11: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,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!</p><p>Taidekerho järjestetään perjantaisin ajalla 28.8.–18.12. klo 12.30–14.30 kirjaston Tempo-tilassa.</p><p>Taidekerho on suunnattu alakouluikäisille, nuoremmat lapset ovat tervetulleita aikuisen kanssa. Kerhossa pääset tutustumaan erilaisiin kuvatadetekniikoihin opettajan johdolla. Taidekerhoon ei tarvitse ilmoittautua etukäteen.</p><p>Taidekerhon opettajana toimii kuvataiteilija Karo Tapiovaara.</p><p>Vapaa pääsy.</p>"
            },
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "en": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9CF3A16F143F9F2FA6AAA0DA8F602C64/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9CF3A16F143F9F2FA6AAA0DA8F602C64/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "en": "http://www.kanneltalo.fi/en/events/event/9CF3A16F143F9F2FA6AAA0DA8F602C64/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68587/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68281",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:755/?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:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1722082,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-24T13:14:02.943891Z",
                    "last_modified_time": "2026-03-24T13:14:02.943908Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786645.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1722082/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-24T13:14:02.752434Z",
            "last_modified_time": "2026-06-09T12:14:05.506358Z",
            "date_published": null,
            "start_time": "2026-08-14",
            "end_time": "2026-08-29",
            "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,
            "provider": null,
            "description": {
                "fi": "<p>Metsän suojassa on moniaistinen näyttely- ja tapahtumakokonaisuus, joka kutsuu pohtimaan metsän tulevaisuutta taiteen, tieteen ja osallistumisen kautta.</p><p>Metsän suojassa on elävä ja moniaistinen näyttelykokonaisuus, joka yhdistää visuaalisen taiteen, äänen, liikkeen ja osallistavat kokemukset. Näyttely kutsuu pohtimaan metsän arvoja ja merkityksiä sekä tarkastelemaan omaa metsäsuhdetta eri näkökulmista. Kokonaisuus on Koneen Säätiön rahoittaman kaksivuotisen Metsäkissa2044-hankkeen loppuhuipennus.</p><p>Kuvataiteilija ja biologi Susu Rytteri rakentaa Kanneltalon galleriaan monumentaalisen teoksen ”Utopia metsästä”, jossa savilaastilla rapatun taustan halki lentää suuri parvi kevyitä pihlajaperhosia. Teoksen rinnalla nähdään sadan piirroksen sarja ”Elämän puu” sekä liikkuvaa kuvaa.</p><p>Muusikko Katja Luhtala luo näyttelyyn ääniteoksen ”Metsän kieli”, joka rakentaa tilaan metsän mystisen ja moniulotteisen tunnelman.</p><p>Yleisö pääsee kokemaan metsän tunnelman sen eliöiden ja olentojen näkökulmasta sekä osallistumaan työpajoihin ja keskusteluihin. Taiteiden yönä 20.8. yleisö saa rakentaa savirapatuista levyistä yhteisötaideteoksen Metsänpohja, ja tuolloin on mahdollista myös silittää Metsäkissaa. Koko näyttelyn ajan voi tutustua Metsäkissa2044-hankkeen taiteellisiin ja journalistisiin sisältöihin osoitteessa www.metsakissa.fi.</p><p>Näyttelyssä ovat esillä myös hankkeen muut osa-alueet: Legioonateatterin metsäteatterikollektiivi Virpi Koskelan johdolla, Luhtalan yhteisötaiteelliset ääniteokset, Antti Rajalan ja Aki Saariahon utopiapedagogiikka sekä Jukka Ilmosen improdialogi.</p><p>Oheisohjelmatiedot täydentyvät toukokuussa.</p><p><b>Oheistapahtumat<br>lauantai 15.8. </b><br>klo 13-15<br>Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia</p><p><b>Torstai 20.8.Taiteiden yö</b><br>klo 17-17.30 Metsä M – liikkeellinen ja runollinen ääniteos (Katja Luhtala & kollektiivi)<br>klo 17.30-20 Metsänpohja-yhteisötaideteos (Susu Rytteri)<br>Lisäksi mahdollisuus silittää Metsäkissaa!</p><p><b>Perjantai 21.8. </b><br>klo 17-18 (auditorio)<br>Metsähaikutyöpaja (Katja Luhtala)</p><p><b>Lauantai 22.8. </b><br>klo 13-15 Improvisaatiodialogi (Jukka Ilmonen)<br>klo 15-15.30 Taiteilijatapaaminen: Susu Rytteri</p><p><b>Torstai 27.8. </b><br>klo 17 Luontoyhteystyöpaja (Virpi Koskela)</p><p><b>Perjantai 28.8. </b><br>klo 16-17.30 Utopiapedagogiikka: Antti Rajalan ja Aki Saariahon luento<br>klo 18-19.30 Metsäteatteriesitys metsässä (paikka tarkentuu; lähtö Kanneltalon aulasta klo 18) <br>Ohjaaja ja työryhmä kertovat prosessista</p><p><b>Lauantai 29.8. Suomen luonnon päivä (galleria)</b><br>klo 13-15 Pyöreän pöydän keskustelu (Jaana Kanninen, mukana mm. Anni Kytömäki)<br>klo 15-15.30 Metsäsydän – oodi lähimetsälle (Katja Luhtala & kollektiivi)</p><p>Näyttely ja tapahtumat ovat osa Helsingin kaupungin kulttuuripalveluiden ympäristöohjelmaa. <u><a href=\"https://kanneltalo.fi/fi/talonesittely#Ymp%C3%A4rist%C3%B6vastuu\">Lue lisää ympäristöohjelmasta</u></a>.</p><p>Näyttelyyn ja tapahtumiin on vapaa pääsy.</p>",
                "sv": "<p>Metsän suojassa är en multisensorisk utställning och evenemangshelhet som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande.</p><p>Metsän suojassa är en levande och multisensorisk utställningshelhet som kombinerar visuell konst, ljud, rörelse och inkluderande upplevelser. Utställningen bjuder in oss att reflektera över skogens värden och betydelser och att granska vår egen relation till skogen ur olika perspektiv. Projektet är kulmen på det tvååriga projektet Metsäkissa2044, som finansierats av Konestiftelsen.</p><p>I Gamlasgårdens galleri bygger bildkonstnären och biologen Susu Rytteri det monumentala verket ”Utopia metsästä” (utopi av skog), där en stor flock lätta hagtornsfjärilar flyger genom en bakgrund rappad med lera. Vid sidan av verket ser vi serien ”Elämän puu” (livets träd) av hundra teckningar samt rörlig bild.</p><p>Till utställningen skapar också musikern Katja Luhtala ljudverket Metsän kieli (Skogens språk), som bygger upp en mystisk och flerdimensionell stämning i rummet.</p><p>Publiken får uppleva stämningen i skogen genom dess organismer och varelser och delta i verkstäder och diskussioner. Under konstens natt den 20 augusti får publiken bygga gemenskapkonstverket Metsänpohja (skogsmatta) av lerrappade skivor, och samtidigt får man också klappa Skogskatten. Under hela utställningstiden kan man bekanta sig med Metsäkissa2044-projektets konstnärliga och journalistiska mål på www.metsakissa.fi.</p><p>I utställningen ingår också andra delområden av projektet: Legioonateatteris skogsteaterkollektiv under ledning av Virpi Koskela, Luhtalas gemenskapkonstnärliga ljudverk, Antti Rajalas och Aki Saariahos utopipedagogik och Jukka Ilmonens improdialog.</p><p><b>Kringevenemang<br>lördag 15.8 </b><br>kl. 13-15<br>Jukka Ilmonen presenterar resultaten av projektet Metsäkissa2044</p><p><b>Torsdag 20.8 Konstens natt</b><br>klo 17-17.30 Metsä M – ett ljudverk med rörelse och poesi (Katja Luhtala & kollektiv)<br>klo 17.30-20 Metsänpohja – gemenskapkonstverk (Susu Rytteri)<br>Även möjlighet att klappa Skogskatten!</p><p><b>Fredag 21.8 </b><br>kl. 17-18<br>Skogshaikuverkstad (Katja Luhtala)</p><p><b>Lördag 22.8 </b><br>kl. 13-15 <br>Improviserad dialog (Jukka Ilmonen)<br>kl. 15-15.30 Konstnärsträff: Susu Rytteri</p><p><b>Torsdag 27.8 </b><br>kl. 17-18.30 Natursamarbetsworkshop (Virpi Koskela)</p><p><b>Fredag 28.8 </b><br>kl. 16-17.30 Antti Rajala och Aki Saariaho: Utopipedagogik <br>kl. 18-19.30 Skogsteaterföreställning i skogen (platsen preciseras senare) <br>Regissören och arbetsgruppen berättar om processen</p><p><b>Lördag 29.8 Finska naturens dag</b><br>kl. 13-15 Rundabordssamtal (Jaana Kanninen, med Anni Kytömäki m.fl.)<br>kl. 15-15.30 Metsäsydän – ode till närskogen (Katja Luhtala & kollektiv)</p><p>Utställningen och evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram.</p><p>Inträdet till utställningen och evenemanget är fritt.</p>",
                "en": "<p>In the Shelter of the Forest is a multi-sensory exhibition and event that invites you to reflect on the future of the forest through art, science and participation.</p><p>In the Shelter of the Forest is a living and multi-sensory exhibition that combines visual art, sound, movement and participatory experiences. The exhibition invites you to reflect on the values and meanings of the forest, and to examine your own relationship with the forest from different perspectives. The project is the culmination of the two-year Metsäkissa2044 project funded by the Kone Foundation.</p><p>Visual artist and biologist Susu Rytteri will build a monumental work entitled Utopia metsästä (‘Utopia of a Forest’) in the Kanneltalo gallery, in which a swarm of lightweight black-veined white butterflies fly through a background plastered with clay. The work will be accompanied by a series of 100 drawings entitled Elämän puu (‘The Tree of Life’) and moving images.</p><p>Musician Katja Luhtala will create an audio piece for the exhibition entitled Metsän kieli (‘Language of the Forest‘), building a mystical and multidimensional forest atmosphere.</p><p>The audience will have an opportunity to experience the atmosphere of the forest from the point of view of its creatures and organisms, and take part in workshops and discussions. On the Night of the Arts on 20 August, the audience will get to build a community artwork entitled Metsänpohja (‘Forest Floor’) from clay-plastered panels and have an opportunity to pet the Forest Cat. Throughout the exhibition, you can check out the artistic and journalistic content of the Metsäkissa2044 project at www.metsakissa.fi.</p><p>Other aspects of the project will also be on display in the exhibition: Legioonateatteri’s forest theatre collective led by Virpi Koskela, Luhtala’s community-based sound art performances, Antti Rajala´s and Aki Saariaho´s utopian pedagogy and Jukka Ilmonen’s improvisational dialogue.</p><p><b>Side events<br>Saturday 15 August </b><br>13.00-15.00<br>Jukka Ilmonen will present the results of the Metsäkissa2044 project</p><p><b>Thursday 20 August: Night of the Arts</b><br>17.00-17.30: Metsä M – a movement-based and poetic sound art performance (Katja Luhtala & collective)<br>17.30-20.00: Metsänpohja (‘Forest Floor’) – community artwork (Susu Rytteri)<br>The audience can also pet the Forest Cat!</p><p><b>Friday 21 August </b><br>17.00-18.00<br>Forest haiku workshop (Katja Luhtala)</p><p><b>Saturday 22 August </b><br>13.00-15.00 <br>Improvisation dialogue (Jukka Ilmonen)<br>15.00-15.30: Artist meeting: Susu Rytteri</p><p><b>Thursday 27 August </b><br>17.00-18.30: Nature connection workshop (Virpi Koskela)</p><p><b>Friday 28 August</b> <br>16-17.30 Antti Rajala and Aki Saariaho: Utopian pedagogy <br>18.00-19.30: Forest theatre performance in the woods (location to be specified later) <br>The director and the creative team will talk about the process</p><p><b>Saturday 29 August: Finnish Nature Day</b><br>13.00-15.00: Roundtable discussion (Jaana Kanninen, featuring Anni Kytömäki and others)<br>15.0-15.30: Metsäsydän (‘Forest Heart’) – an ode to the local forest (Katja Luhtala & collective)</p><p>The exhibition and events are part of the environmental programme of the City of Helsinki Cultural Services.</p><p>The exhibition and events are free of charge.</p>"
            },
            "name": {
                "fi": "Susu Rytteri ja ryhmä Metsäkissa2044: Metsän suojassa – Moniaistinen näyttely- ja tapahtumakokonaisuus",
                "sv": "Susu Rytteri och gruppen Metsäkissa2044: Metsän suojassa (i skydd av skogen) – Multisensorisk utställnings- och evenemangsenhet",
                "en": "Susu Rytteri and the Metsäkissa2044 group: Metsän suojassa – In the Shelter of the Forest – Multi-sensory exhibition and event series"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Metsän suojassa on moniaistinen näyttely- ja tapahtumakokonaisuus, joka kutsuu pohtimaan metsän tulevaisuutta taiteen, tieteen ja osallistumisen kautta.",
                "sv": "Metsän suojassa är en multisensorisk utställning och evenemangshelhet som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande.",
                "en": "In the Shelter of the Forest is a multi-sensory exhibition and event that invites you to reflect on the future of the forest through art, science and participation."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhma_Metsakissa2044_Metsan_suojassa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_och_gruppen_Metsakissa2044_Metsan_suojassa_i_skydd_av_skogen_",
                "en": "http://www.kanneltalo.fi/en/events/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_and_the_Metsakissa2044_group_Metsan_suojassa_In_the_Shelter_of_the_Forest"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68281/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67800",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1710075,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T07:13:04.493461Z",
                    "last_modified_time": "2026-03-23T07:13:04.493475Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782883.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710075/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-23T07:13:04.410454Z",
            "last_modified_time": "2026-06-09T11:13:51.605652Z",
            "date_published": null,
            "start_time": "2026-06-15T14: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,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa pysähtymään hetkeksi arjen keskellä! Karhukallion lähimetsässä rentoudumme riippumatoissa kuunnellen runoja, elävää musiikkia ja metsän ääniä.</p><p>Metsään laskeutuminen on rentouttava ja helposti lähestyttävä taide-elämys ulkoilmassa. Tapahtuma on kaikille avoin ja maksuton. Paikalla on valmiina riippumatot – sinun tarvitsee vain saapua, asettua mukavasti ja antaa rauhallisen elävän musiikin virrata. Akustinen soitto ja runonlausunta sekoittuu luonnon ääniin, muodostaen levollisen äänimaiseman, jossa mieli saa levätä. Tapahtuma sopii kaikenikäisille: alle 10-vuotiaat voivat osallistua aikuisen seurassa.<br> <br>Tämä ei ole konsertti perinteisessä mielessä, sillä täällä ei tarvitse jaksaa keskittyä tai taputtaa oikeassa kohdassa. Voit kuunnella, lepäillä, olla hiljaa tai vaikka torkahtaa hetkeksi. Metsään laskeutuminen on hetki sinulle – keskellä kaupunkia ja puiden huminaa.</p><p>Tuokion ohjaus: Verna Kuntsi ja Satu Sipilä / Seikkailutaidekoulu. <br>Instrumentit: viulu, jouhikko ja koshi.</p><p>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.</p><p>Tapahtumalla on säävaraus. Kovalla sateella tai myrskyn sattuessa tuokiota ei voida järjestää. Ilmoittautuneille ilmoitetaan mahdollisesta peruutuksesta samana päivänä.</p><p>Kesto: 60 min  <br>Kieli: suomi</p><p>Vapaa pääsy, varmista paikkasi ja ilmoittaudu mukaan: hanna.westerholm@hel.fi</p><p>HUOM! Voit myös tulla paikalle tiedustelemaan vapaita paikkoja.</p>"
            },
            "name": {
                "fi": "Metsään laskeutuminen Karhukalliolla",
                "sv": "Metsään laskeutuminen Karhukalliolla",
                "en": "Metsään laskeutuminen Karhukalliolla"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa pysähtymään hetkeksi arjen keskellä! Karhukallion lähimetsässä rentoudumme riippumatoissa kuunnellen runoja, elävää musiikkia ja metsän ääniä."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/0DFEAB0EA78C256294EA5E9C46151C92/Metsaan_laskeutuminen_Karhukalliolla_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/0DFEAB0EA78C256294EA5E9C46151C92/Metsaan_laskeutuminen_Karhukalliolla_",
                "en": "http://www.stoa.fi/en/events/event/0DFEAB0EA78C256294EA5E9C46151C92/Metsaan_laskeutuminen_Karhukalliolla_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67800/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68750",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?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"
                },
                {
                    "@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": 2000491,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-06T12:13:18.498115Z",
                    "last_modified_time": "2026-05-06T12:13:18.498132Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775787.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2000491/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-06T12:13:18.305537Z",
            "last_modified_time": "2026-06-09T11:13:50.453842Z",
            "date_published": null,
            "start_time": "2026-06-12T08:00:00Z",
            "end_time": "2026-06-12T18: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,
            "provider": null,
            "description": {
                "fi": "<p>Vietä Helsinki-päivä Espan lavalla! Luvassa on stadin slangia ja sambaa.</p><p>Espan lavan Helsinki-päivän ohjelma kuljettaa kaupunkilaiset Stadin hengestä aina sambakarnevaalien väriloistoon.</p><p>Tule kuuntelemaan, miten stadin slangi taipuu kuoromusiikiksi ja oppimaan samban askeleet! Kaupungin tervehdyksen esittää Helsingin pormestari Daniel Sazonov.</p><p>Aiemmin ilmoitettu MIL-Espa-konsertti on valitettavasti jouduttu perumaan. Sotilasmusiikista pääsee Espan lavalla kuitenkin nauttimaan läpi kesän: <u><a href=\"https://www.espanlava.fi/fi/tapahtumat/?q=mil-espa\">katso kaikki MIL-Espa-konsertit tapahtumakalenteristamme.</u></a></p><p>Kaikki ohjelma on avointa ja maksutonta.</p><p><b>Ohjelma ja aikataulu</b></p><p><b>Klo 11.00–12.20 | Stadin Slangi ry:n Helsinki-päivä</b><br>Päivä käynnistyy Stadin Slangi ry:n tilaisuudella, jossa julkistetaan vuoden 2026 Stadin Friidu ja Kundi.</p><p>Lavalla kuullaan stadin slangia musiikin ja tarinoiden muodossa Antti Reinin, Slangikuoron sekä useiden stadilaisen kulttuurin vaikuttajien esittämänä. Tsilari-lehden 30-vuotista historiaa ja slangin syntyä avataan haastatteluin, ja kaupungin tervehdyksen esittää pormestari Daniel Sazonov. Tilaisuus tulkataan suomalaiselle viittomakielelle.</p><p><b>Klo 17.30–21.00 | Helsinki Samba Carnaval – Avajaiset</b><br>Illalla Espan lava täyttyy karnevaalitunnelmasta, kun Helsinki Samba Carnaval 2026 käynnistyy näyttävillä avajaisilla.</p><p>Ohjelmassa mm.:<br>- Helsinki-tanssitunti - lanteet liikkeelle, kaikki mukaan tunnelmaan!<br>- Säkenöiviä sambaesityksiä ympäri Suomen - mukana suloiset minisambistat ja kokeneet tähdet<br>- Fantasiapukukilpailu - näe lauantain loistokkaimmat puvut läheltä ja tule äänestämään suosikkiasi!</p>",
                "sv": "<p>Tillbringa Helsingforsdagen vid Esplanadestraden! På programmet står Helsingforsslang och samba.</p><p>Helsingforsdagens program på Esplanadestraden bjuder stadsborna på stadens anda och sambakarnevalens färgglans.</p><p>Kom och lyssna på körmusik på Helsingforsslang och lär dig sambasteg! Helsingfors borgmästare Daniel Sazonov framför stadens hälsning.</p><p>Den tidigare annonserade MIL-Espa-konserten har tyvärr tvingats ställas in. Du kan dock njuta av militärmusik på Espas scen hela sommaren: <u><a href=\"https://www.espanlava.fi/sv/evenemangen/?q=mil-espa\">se alla MIL-Espa-konserter i vår evenemangskalender.</u></a></p><p>Allt program är öppet och avgiftsfritt.</p><p><b>Program och tidtabell</b></p><p><b>Kl. 11.00–12.20 | Helsingforsdagen med Stadin Slangi ry</b><br>Dagen inleds med Stadin Slangi ry:s tillställning där Stadin Friidu och Kundi 2026 offentliggörs.</p><p>På estraden hörs Helsingforsslang i form av musik och berättelser, då Antti Reini, Slangikuoro och flera andra influerare inom stadens kultur uppträder. Tsilari-tidningens 30-åriga historia och slangens uppkomst presenteras genom intervjuer, och borgmästaren Daniel Sazonov framför stadens hälsning. Evenemanget tolkas till finskt teckenspråk.</p><p><b>Kl. 17.30–21.00 | Helsinki Samba Carnaval-öppningsfest</b><br>På kvällen fylls Esplanadestraden med karnevalstämning då Helsinki Samba Carnaval 2026 inleds med en imponerande öppningsfest.</p><p>Programmet består bland annat av:<br>- Helsingfors-danslektion – vicka på höfterna, alla med i stämningen!<br>- Sprakande sambaföreställningar runtom i Finland – med söta minisambistas och erfarna stjärnor.<br>- Fantasidräkttävling – se lördagens glansfullaste dräkter på nära håll och rösta på din favorit!</p>",
                "en": "<p>Celebrate Helsinki Day at the Espa stage! You can look forward to Helsinki slang and samba.</p><p>The Helsinki Day programme at the Espa stage will take Helsinki residents from the spirit of Helsinki through military music to the colourful splendour of samba carnivals. Come and listen to how Helsinki slang lends itself to choir music and learn the steps of samba! Mayor of Helsinki Daniel Sazonov will deliver a greeting from the City.</p><p>The previously advertised MIL-Espa concert has unfortunately been cancelled. Friends of military music need not worry, however, as MIL-Espa concerts are held on the Espa Stage throughout the summer: <u><a href=\"https://www.espanlava.fi/en/events/?q=mil-espa\">see all MIL-Espa dates in our event calendar</u></a>.</p><p>The entire programme is open to all and free of charge.</p><p><b>Programme and schedule</b></p><p><b>11.00–12.20 | Stadin Slangi ry’s Helsinki Day</b><br>The day will kick off with an event where the local heritage association Stadin Slangi ry will announce the 2026 Stadin Friidu and Stadin Kundi (Helsinki’s Gal and Guy). The event will feature Helsinki slang in the form of music and stories performed by Antti Reini, the slang choir Slangikuoro and several cultural figures from Helsinki. The 30-year history of the Tsilari magazine and the birth of slang will be discussed through interviews, and Mayor Daniel Sazonov will deliver a greeting from the City. The event will be interpreted into Finnish Sign Language.</p><p><b>17.30–21.00 | Helsinki Samba Carnaval – opening ceremony</b><br>In the evening, a carnival atmosphere will descend on the Espa stage with Helsinki Samba Carnaval 2026 kicking off with a spectacular opening ceremony. <br>Here are some programme highlights:<br>- Helsinki dance lesson – get your hips moving and enjoy the atmosphere!<br>- Scintillating samba performances all over Finland – featuring loveable young samba performers and experienced stars<br>- Fantasy costume contest – see Saturday’s most glamorous costumes up close and vote for your favourite!</p>"
            },
            "name": {
                "fi": "Helsinki-päivä Espan lavalla",
                "sv": "Helsingforsdagen på Esplanadestraden",
                "en": "Helsinki Day at the Espa stage"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Vietä Helsinki-päivä Espan lavalla! Luvassa on stadin slangia ja sambaa.",
                "sv": "Tillbringa Helsingforsdagen vid Esplanadestraden! På programmet står Helsingforsslang och samba.",
                "en": "Celebrate Helsinki Day at the Espa stage! You can look forward to Helsinki slang and samba."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/23812AFC3811CE31DC194DEEACC3190F/Helsinki-paiva_Espan_lavalla",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/23812AFC3811CE31DC194DEEACC3190F/Helsingforsdagen_pa_Esplanadestraden",
                "en": "http://www.espanlava.fi/en/events/event/23812AFC3811CE31DC194DEEACC3190F/Helsinki_Day_at_the_Espa_stage"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68750/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agpkx4zxzy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45928/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null,
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api"
                }
            ],
            "created_time": "2026-06-09T10:35:04.066152Z",
            "last_modified_time": "2026-06-09T10:39:20.914703Z",
            "date_published": null,
            "start_time": "2026-06-09T10:39:20.401000Z",
            "end_time": "2026-06-28T10: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": "2026-06-18T12:00:00+03:00",
            "enrolment_end_time": "2026-06-27T12:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Test event</p>\n",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Test event",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Test event",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agpkx4zxzy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69291",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39924/?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": 2385011,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T10:13:25.430621Z",
                    "last_modified_time": "2026-06-09T10:13:25.430635Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791106.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385011/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-09T10:13:25.345995Z",
            "last_modified_time": "2026-06-09T10:13:25.547562Z",
            "date_published": null,
            "start_time": "2026-12-16T14:00:00Z",
            "end_time": "2026-12-16T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.</p><p>Järjestämme eriteemaisia taidepajoja Vuotalon aulassa kerran kuussa keskiviikkoisin. Taidepajat sopivat lapsille ja aikuisille. Saat tarvittavat materiaalit paikan päältä.</p><p>Työpajoja ohjaa taiteilija Chloé Mahy-Hulkko. Ohjauskielet ovat suomi, englanti ja ranska.</p><p>Työpajoihin on vapaa pääsy!</p><p><b>Syksyn ohjelma <br>ke 16.12. klo 16–18 | Huovutettu joulukoriste</b><br>Pehmeä, värikäs, tuoksuva… Rauhoitu hetkeksi huovuttamaan. Huovutus on moniaistinen prosessi, joka vaatii kärsivällisyyttä. Se sopii mainiosti joulukuun kiireiseen arkeen. Koristeen saat kotiin tai voit lahjoittaa jollekulle.</p>"
            },
            "name": {
                "fi": "Luova hetki – Avoin taidepaja",
                "sv": "Luova hetki",
                "en": "Luova hetki"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/ADD598CD6A93EC84AA5264475F4FB61A/Luova_hetki",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/ADD598CD6A93EC84AA5264475F4FB61A/Luova_hetki",
                "en": "http://www.vuotalo.fi/en/events/event/ADD598CD6A93EC84AA5264475F4FB61A/Luova_hetki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69291/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69290",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39924/?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": 2385010,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T10:13:23.316588Z",
                    "last_modified_time": "2026-06-09T10:13:23.316606Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791105.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385010/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-09T10:13:23.210015Z",
            "last_modified_time": "2026-06-09T10:13:23.468742Z",
            "date_published": null,
            "start_time": "2026-11-25T14:00:00Z",
            "end_time": "2026-11-25T16: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,
            "provider": null,
            "description": {
                "fi": "<p>Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.</p><p>Järjestämme eriteemaisia taidepajoja Vuotalon aulassa kerran kuussa keskiviikkoisin. Taidepajat sopivat lapsille ja aikuisille. Saat tarvittavat materiaalit paikan päältä.</p><p>Työpajoja ohjaa taiteilija Chloé Mahy-Hulkko. Ohjauskielet ovat suomi, englanti ja ranska.</p><p>Työpajoihin on vapaa pääsy!</p><p><b>Syksyn ohjelma <br>ke 25.11. klo 16–18 | Monenlaisia tähtiä</b><br>Langasta ja värikartongista teemme kauniita tähtikoristeita vuoden pimeintä aikaa ilostuttamaan.</p><p><b>ke 16.12. klo 16–18 | Huovutettu joulukoriste</b><br>Pehmeä, värikäs, tuoksuva… Rauhoitu hetkeksi huovuttamaan. Huovutus on moniaistinen prosessi, joka vaatii kärsivällisyyttä. Se sopii mainiosti joulukuun kiireiseen arkeen. Koristeen saat kotiin tai voit lahjoittaa jollekulle.</p>"
            },
            "name": {
                "fi": "Luova hetki – Avoin taidepaja",
                "sv": "Luova hetki",
                "en": "Luova hetki"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C3BD1A8D77263078EFD5960B0978D2BF/Luova_hetki",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C3BD1A8D77263078EFD5960B0978D2BF/Luova_hetki",
                "en": "http://www.vuotalo.fi/en/events/event/C3BD1A8D77263078EFD5960B0978D2BF/Luova_hetki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69290/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68686",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1910443,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T09:13:24.878253Z",
                    "last_modified_time": "2026-05-05T09:13:24.878269Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777573.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1910443/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T09:13:24.723676Z",
            "last_modified_time": "2026-06-09T10:13:06.601681Z",
            "date_published": null,
            "start_time": "2026-06-12T12:00:00Z",
            "end_time": "2026-06-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,
            "provider": null,
            "description": {
                "fi": "<p>Tule juhlimaan Helsinki-päivää Vuotorille! Päivä alkaa koko perheen konsertilla ja huipentuu Stigin keikkaan.</p><p>Vuoden 2026 Helsinki-päivä alkaa Vuotorilla koko perheen konsertilla, kun lavalle nousee monikielinen ja tanssittavaa musiikkia soittava INDABA.</p><p>Klo 15–18 Vuotalon alapihalla Welcome Day -tapahtuma toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin! Tapahtuma tarjoaa yleisölle hyödyllisen tiedon lisäksi Circus Simonin ja Säilättärien innostavat sirkusesitykset.<br> <br>Illalla pääsemme nauttimaan huikean pääesiintyjän Stigin showsta!</p><p>Ohjelma:<br>klo 15 INDABA<br>klo 18 Stig</p><p>Klo 15 INDABA<br>INDABA tarjoaa energisen ja monikielisen show’n, jossa yhdistyvät voimakas laulu, tanssi ja taitavat instrumenttisuoritukset. Kolmen muusikon muodostama ryhmä ammentaa vaikutteita tansanialaisesta perinteestä, hiphopista ja omista tarinoistaan. Yleisön kanssa pohditaan kevyesti identiteettiä ja sitä, miten monta kotia yhteen ihmiseen mahtuu.<br>Musiikki soi suomeksi, englanniksi, espanjaksi, swahiliksi ja sumbwaksi.<br>Esiintyjät: Ayla Brinkmann, Kasheshi Makena ja Yoandy Jimeno.</p><p>Klo 18 Stig<br>Vuotalon Helsinki-päivä huipentuu Stigin konserttiin! STIG tunnetaan lukuisista kulta- ja platinasingleistä sekä hiteistä, kuten Puumaa mä metsästän, Original gigolo ja Roy Orbison. Hän on hurmannut myös Vain elämää -ohjelmassa ja noussut suosioon Kuningaskobra-tulkinnallaan.</p><p>Kaikkiin tapahtumiin vapaa pääsy – nähdään Vuotorilla!</p>",
                "sv": "<p>Kom och fira Helsingforsdagen på Nortorget! Dagen inleds med en konsert för hela familjen och kulminerar med en spelning med Stig.</p><p>Helsingforsdagen 2026 inleds med en konsert för hela familjen på Nortorget, när det flerspråkiga bandet INDABA går upp på scenen med sin dansanta musik.</p><p>Kl. 15–18 Welcome Day på Nordhusets nedre gård välkomnar nya invånare som flyttat till Finland välkomna till Helsingfors! Förutom nyttig information innehåller evenemangsprogrammet också inspirerande cirkusföreställningar av Circus Simon och Säilättäret.<br> <br>På kvällen får vi ta del av den fantastiska huvudartisten Stigs show! <br>Program:<br>kl. 15 Indaba<br>kl. 18 Stig<br> <br>Kl. 15 INDABA<br>INDABA bjuder på en energisk och flerspråkig show som kombinerar kraftfull sång, dans och skickliga instrumentprestationer. Gruppen på tre musiker tar inspiration av tanzanisk tradition, hiphop och sina egna berättelser. De funderar lätt och tillsammans med publiken på identitet och hur många hem som ryms i en människa.<br>Musiken är på finska, engelska, spanska, swahili och sumbwa.<br>På scenen: Ayla Brinkmann, Kasheshi Makena och Yoandy Jimeno.</p><p>kl. 18 Stig<br>Helsingforsdagen på Nordhuset kulminerar i en konsert med Stig! Stig är känd för sina talrika guld- och platinasinglar samt hittar, såsom Puumaa mä metsästän, Original gigolo och Roy Orbison. Han har också förtjust i programmet Vain elämää och blivit populär med sin tolkning av Kuningaskobra.<br>Fritt inträde till alla evenemang – vi ses på Nortorget!</p>",
                "en": "<p>Come and celebrate Helsinki Day at Vuotori Square! The day will start with a concert for the whole family and culminate with a performance by Stig.</p><p>At Vuotori Square, Helsinki Day 2026 will start with a concert for the whole family, as the multilingual INDABA will take to the stage and make everyone dance.</p><p>From 15.00 to 18.00, the Welcome Day event held in the lower courtyard of Vuotalo will welcome new residents to Helsinki! In addition to useful information, visitors can enjoy inspiring circus performances by Circus Simon and Säilättäret at the event.<br> <br>In the evening, we will be able to enjoy a performance by the amazing headliner Stig!<br>Programme:<br>15.00 INDABA<br>18.00 Stig<br> <br>15.00 INDABA<br>INDABA will put on an energetic and multilingual show, combining powerful singing, dancing and skilful instrumental performances. The group of three musicians draws inspiration from Tanzanian tradition, hip hop and their own stories. The performance will feature light-hearted interactive reflection on identity and how many homes can fit into one person.<br>The concert will be performed in Finnish, English, Spanish, Swahili and Sumbwa.<br>Performers: Ayla Brinkmann, Kasheshi Makena and Yoandy Jimeno.</p><p>18.00 Stig<br>Helsinki Day at Vuotalo will culminate in a concert by Stig! STIG is known for numerous gold and platinum singles and hits such as Puumaa mä metsästän, Original gigolo and Roy Orbison. He was also a hit on the TV show Vain elämää and rose to fame with his interpretation of the Kuningascobra evergreen.<br>Free entry to all events – see you at Vuotori Square!</p>"
            },
            "name": {
                "fi": "Helsinki-päivä Vuotalossa",
                "sv": "Helsingforsdagen på Nordhuset",
                "en": "Helsinki Day at Vuosaari House"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule juhlimaan Helsinki-päivää Vuotorille! Päivä alkaa koko perheen konsertilla ja huipentuu Stigin keikkaan.",
                "sv": "Kom och fira Helsingforsdagen på Nortorget! Dagen inleds med en konsert för hela familjen och kulminerar med en spelning med Stig.",
                "en": "Come and celebrate Helsinki Day at Vuotori Square! The day will start with a concert for the whole family and culminate with a performance by Stig."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C54DFFCA8A4188801A6862036C0190FF/Helsinki-paiva_Vuotalossa",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C54DFFCA8A4188801A6862036C0190FF/Helsingforsdagen_pa_Nordhuset",
                "en": "http://www.vuotalo.fi/en/events/event/C54DFFCA8A4188801A6862036C0190FF/Helsinki_Day_at_Vuosaari_House"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68686/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69289",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39924/?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": 2385009,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T09:13:50.824676Z",
                    "last_modified_time": "2026-06-09T09:13:50.824692Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791104.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385009/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-09T09:13:50.718518Z",
            "last_modified_time": "2026-06-09T09:13:50.959536Z",
            "date_published": null,
            "start_time": "2026-10-21T13:00:00Z",
            "end_time": "2026-10-21T15: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,
            "provider": null,
            "description": {
                "fi": "<p>Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.</p><p>Järjestämme eriteemaisia taidepajoja Vuotalon aulassa kerran kuussa keskiviikkoisin. Taidepajat sopivat lapsille ja aikuisille. Saat tarvittavat materiaalit paikan päältä.</p><p>Työpajoja ohjaa taiteilija Chloé Mahy-Hulkko. Ohjauskielet ovat suomi, englanti ja ranska.</p><p>Työpajoihin on vapaa pääsy!</p><p><b>Syksyn ohjelma<br>ke 21.10. klo 16–18 | Syksyn lehdet peilissä</b><br>Tänään piirretään lyijykynällä luonnoksia puunlehdistä. Peilin avulla tutkitaan luonnon symmetriaa.</p><p><b>ke 25.11. klo 16–18 | Monenlaisia tähtiä</b><br>Langasta ja värikartongista teemme kauniita tähtikoristeita vuoden pimeintä aikaa ilostuttamaan.</p><p><b>ke 16.12. klo 16–18 | Huovutettu joulukoriste</b><br>Pehmeä, värikäs, tuoksuva… Rauhoitu hetkeksi huovuttamaan. Huovutus on moniaistinen prosessi, joka vaatii kärsivällisyyttä. Se sopii mainiosti joulukuun kiireiseen arkeen. Koristeen saat kotiin tai voit lahjoittaa jollekulle.</p>"
            },
            "name": {
                "fi": "Luova hetki – Avoin taidepaja",
                "sv": "Luova hetki",
                "en": "Luova hetki"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F89ED1D99D20A7982C6EF2CB09518776/Luova_hetki",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/F89ED1D99D20A7982C6EF2CB09518776/Luova_hetki",
                "en": "http://www.vuotalo.fi/en/events/event/F89ED1D99D20A7982C6EF2CB09518776/Luova_hetki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69289/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69288",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p39924/?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": 2385008,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T09:13:48.195975Z",
                    "last_modified_time": "2026-06-09T09:13:48.195991Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791103.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385008/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-09T09:13:48.078310Z",
            "last_modified_time": "2026-06-09T09:13:48.345671Z",
            "date_published": null,
            "start_time": "2026-09-23T13:00:00Z",
            "end_time": "2026-09-23T15: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,
            "provider": null,
            "description": {
                "fi": "<p>Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.</p><p>Järjestämme eriteemaisia taidepajoja Vuotalon aulassa kerran kuussa keskiviikkoisin. Taidepajat sopivat lapsille ja aikuisille. Saat tarvittavat materiaalit paikan päältä.</p><p>Työpajoja ohjaa taiteilija Chloé Mahy-Hulkko. Ohjauskielet ovat suomi, englanti ja ranska.</p><p>Työpajoihin on vapaa pääsy!</p><p><b>Syksyn ohjelma <br>ke 23.9. klo 16–18 | Pressprint-grafiikka</b><br>Tutustumme yksinkertaiseen ja hauskaan kohopainotekniikkaan. Pressprint-levylle kaiverretaan kätevästi kynällä, telalla levitetään maalia ja kämmenellä vedostetaan.</p><p><b>ke 21.10. klo 16–18 | Syksyn lehdet peilissä</b><br>Tänään piirretään lyijykynällä luonnoksia puunlehdistä. Peilin avulla tutkitaan luonnon symmetriaa.</p><p><b>ke 25.11. klo 16–18 | Monenlaisia tähtiä</b><br>Langasta ja värikartongista teemme kauniita tähtikoristeita vuoden pimeintä aikaa ilostuttamaan.</p><p><b>ke 16.12. klo 16–18 | Huovutettu joulukoriste</b><br>Pehmeä, värikäs, tuoksuva… Rauhoitu hetkeksi huovuttamaan. Huovutus on moniaistinen prosessi, joka vaatii kärsivällisyyttä. Se sopii mainiosti joulukuun kiireiseen arkeen. Koristeen saat kotiin tai voit lahjoittaa jollekulle.</p>"
            },
            "name": {
                "fi": "Luova hetki – Avoin taidepaja",
                "sv": "Luova hetki",
                "en": "Luova hetki"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/046ED1D4F903FDDBA7EA244D3484BF38/Luova_hetki",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/046ED1D4F903FDDBA7EA244D3484BF38/Luova_hetki",
                "en": "http://www.vuotalo.fi/en/events/event/046ED1D4F903FDDBA7EA244D3484BF38/Luova_hetki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69288/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69287",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/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": 2385007,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T09:13:44.153611Z",
                    "last_modified_time": "2026-06-09T09:13:44.153633Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791102.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385007/?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": "2026-06-09T09:13:44.000915Z",
            "last_modified_time": "2026-06-09T09:13:44.545161Z",
            "date_published": null,
            "start_time": "2026-08-26T13:00:00Z",
            "end_time": "2026-08-26T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "description": {
                "fi": "<p>Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.</p><p>Järjestämme eriteemaisia taidepajoja Vuotalon aulassa kerran kuussa keskiviikkoisin. Taidepajat sopivat lapsille ja aikuisille. Saat tarvittavat materiaalit paikan päältä.</p><p>Työpajoja ohjaa taiteilija Chloé Mahy-Hulkko. Ohjauskielet ovat suomi, englanti ja ranska.</p><p>Työpajoihin on vapaa pääsy!</p><p><b>Syksyn ohjelma <br>ke 26.8. klo 16–18 | Kangas, kollaasi ja kirjonta</b><br>Teemme kirjavan kangaskollaasin käyttäen kierrätyskankaita. Kollaasin pohjana käytetään kangaskasseja. Käytämme silitysrautaa kankaiden liimaamiseen. Alle 8-vuotiaat voivat osallistua vain oman aikuisen kanssa. Haluttaessasi voit jatkaa kassin koristelua kirjoen.</p><p><b>ke 23.9. klo 16–18 | Pressprint-grafiikka</b><br>Tutustumme yksinkertaiseen ja hauskaan kohopainotekniikkaan. Pressprint-levylle kaiverretaan kätevästi kynällä, telalla levitetään maalia ja kämmenellä vedostetaan.</p><p><b>ke 21.10. klo 16–18 | Syksyn lehdet peilissä</b><br>Tänään piirretään lyijykynällä luonnoksia puunlehdistä. Peilin avulla tutkitaan luonnon symmetriaa.</p><p><b>ke 25.11. klo 16–18 | Monenlaisia tähtiä</b><br>Langasta ja värikartongista teemme kauniita tähtikoristeita vuoden pimeintä aikaa ilostuttamaan.</p><p><b>ke 16.12. klo 16–18 | Huovutettu joulukoriste</b><br>Pehmeä, värikäs, tuoksuva… Rauhoitu hetkeksi huovuttamaan. Huovutus on moniaistinen prosessi, joka vaatii kärsivällisyyttä. Se sopii mainiosti joulukuun kiireiseen arkeen. Koristeen saat kotiin tai voit lahjoittaa jollekulle.</p>"
            },
            "name": {
                "fi": "Luova hetki – Avoin taidepaja",
                "sv": "Luova hetki",
                "en": "Luova hetki"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D40383DAF6E9062A29335EEDE8A9596C/Luova_hetki",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D40383DAF6E9062A29335EEDE8A9596C/Luova_hetki",
                "en": "http://www.vuotalo.fi/en/events/event/D40383DAF6E9062A29335EEDE8A9596C/Luova_hetki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69287/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69055",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "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": 2201340,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-20T05:12:51.763805Z",
                    "last_modified_time": "2026-05-20T05:12:51.763818Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792602.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201340/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-05-20T05:12:51.612872Z",
            "last_modified_time": "2026-06-09T09:13:33.119768Z",
            "date_published": null,
            "start_time": "2026-06-08",
            "end_time": "2026-06-17",
            "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,
            "provider": null,
            "description": {
                "fi": "<p>Stoa järjestää 9–13-vuotiaille lapsille ja nuorille 8-päiväisen maksuttoman kesäkoulun yhdessä tekstiilisuunnittelija Rosa Tolnov Clausenin kanssa.</p><p>Kesäkoulu keskittyy opettamaan oppilaille tekstiilisuunnittelun perusteita, kuten värejä, kuituja, kuvioita ja sommittelua. Painopisteenä ovat kokeileminen sekä ainutlaatuisen, itse tehdyn lopputuotteen valmistaminen.</p><p>Kesäkoulussa oppilaat työskentelevät japanilaisten pöytäkangaspuiden, ompelukoneiden sekä erilaisten lankojen ja kankaiden parissa tekstiilisuunnittelija Rosa Tolnov Clausenin ohjauksessa.</p><p>Stoa tarjoaa materiaalit. Ota mukaan omat eväät.</p><p>Ajankohta: 8.–17. kesäkuuta arkipäivinä (ei viikonloppuna)<br>Aika: klo 9–14<br>Paikka: Stoa, Turunlinnantie 1, Itäkeskus, 00900 Helsinki<br>Ikäryhmä: 9–13 vuotta<br>Osallistumismaksu: 0 €<br>Paikkoja: 10</p><p>Ohjauskielet: englanti, saksa ja ruotsi. Kesäkouluun voi osallistua joustavasti eri kielitaidoilla.</p><p>Ilmoittautuminen: link.webropol.com/ep/stoasummerschool</p>",
                "sv": "<p>Stoa ordnar tillsammans med Rosa Tolnov Clausen en åtta dagar lång avgiftsfri sommarskola om textildesign för barn och unga i åldern 9–13 år.</p><p>Sommarskolan fokuserar på att lära eleverna grunderna i textildesign, såsom färger, fibrer, mönster och utformning. Fokus ligger på att testa och skapa en unik, egengjord slutprodukt.</p><p>I sommarskolan arbetar eleverna med japanska bordsvävstolar, symaskiner samt olika garn och tyger under ledning av textildesigner Rosa Tolnov Clausen.</p><p>Stoa bjuder på materialet. Ta med egen matsäck!</p><p>Tidpunkt: 8–17 juni på vardagar (inte veckoslut)<br>Tid: kl. 9–14<br>Plats: Stoa, Åbohusvägen 1, Östra centrum, 00900 Helsingfors<br>Åldersgrupp: 9–13 år<br>Deltagaravgift: 0 €<br>Platser: 10</p><p>Språk: engelska, tyska och svenska. Man kan delta i sommarskolan flexibelt med olika språkkunskaper.</p><p>Anmälan: link.webropol.com/ep/stoasummerschool</p>",
                "en": "<p>Together with textile designer Rosa Tolnov Clausen, Stoa is inviting children and youth between 9-13 years of age to a free 8-day textile design summer school.</p><p>The summer school focuses on teaching the students basic textile design skills concerning colours, fibres, patterns and composition. There will be focus on experimentation, as well as the creation of a final unique self-made product.</p><p>In the summer school the students will work with Japanese table looms, sewing machines, and yarn and fabric of different kind under the guidance of Rosa Tolnov Clausen.</p><p>Materials are included. Bring your own lunch.</p><p>Dates: June 8 – June 17 (weekdays only, no weekend sessions)<br>Timing: 9am-2pm<br>Place: Stoa, Turunlinnantie 1, Itäkeskus, 00900 Helsinki<br>Age limit: 9-13 years<br>Participation fee: 0€<br>Places: 10</p><p>Languages of instruction: English, German and Swedish. The summer school is open to participants with varying levels of language proficiency.</p><p>Registration: link.webropol.com/ep/stoasummerschool</p>"
            },
            "name": {
                "fi": "TÄYNNÄ | Stoan tekstiilisuunnittelun kesäkoulu – Haluatko suunnitella ja valmistaa oman tekstiilityösi?",
                "sv": "FULLBOKAT | Stoas sommarskola om textildesign – Vill du designa och tillverka ett eget textilarbete?",
                "en": "FULL | Stoa Textile Design Summer School – Do you want to design and make your own textile?"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Stoa järjestää 9–13-vuotiaille lapsille ja nuorille 8-päiväisen maksuttoman kesäkoulun yhdessä tekstiilisuunnittelija Rosa Tolnov Clausenin kanssa.",
                "sv": "Stoa ordnar tillsammans med Rosa Tolnov Clausen en åtta dagar lång avgiftsfri sommarskola om textildesign för barn och unga i åldern 9–13 år.",
                "en": "Together with textile designer Rosa Tolnov Clausen, Stoa is inviting children and youth between 9-13 years of age to a free 8-day textile design summer school."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/447E4B842CFEA25D63B5FB314B03A240/TAYNNA_Stoan_tekstiilisuunnittelun_kesakoulu",
                "sv": "http://www.stoa.fi/sv/evenemang/event/447E4B842CFEA25D63B5FB314B03A240/FULLBOKAT_Stoas_sommarskola_om_textildesign",
                "en": "http://www.stoa.fi/en/events/event/447E4B842CFEA25D63B5FB314B03A240/FULL_Stoa_Textile_Design_Summer_School"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69055/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmp6re",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?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": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:56.894469Z",
            "last_modified_time": "2026-06-09T08:42:56.894481Z",
            "date_published": null,
            "start_time": "2026-12-14T15:00:00Z",
            "end_time": "2026-12-14T17: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,
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmp6re/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmp7im",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?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": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:56.790371Z",
            "last_modified_time": "2026-06-09T08:42:56.790383Z",
            "date_published": null,
            "start_time": "2026-12-07T15:00:00Z",
            "end_time": "2026-12-07T17: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,
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmp7im/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmp7ye",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?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": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:56.679908Z",
            "last_modified_time": "2026-06-09T08:42:56.679920Z",
            "date_published": null,
            "start_time": "2026-11-30T15:00:00Z",
            "end_time": "2026-11-30T17: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,
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmp7ye/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmqahm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?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": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:56.574955Z",
            "last_modified_time": "2026-06-09T08:42:56.574967Z",
            "date_published": null,
            "start_time": "2026-11-23T15:00:00Z",
            "end_time": "2026-11-23T17: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,
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqahm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmqayi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?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": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:56.466056Z",
            "last_modified_time": "2026-06-09T08:42:56.466069Z",
            "date_published": null,
            "start_time": "2026-11-16T15:00:00Z",
            "end_time": "2026-11-16T17: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,
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqayi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkxmqbia",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqh6y/?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": 1494028,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T11:21:23.720844Z",
                    "last_modified_time": "2025-12-03T11:21:23.720860Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png",
                    "name": "Perhekerho",
                    "cropping": "92,0,544,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa erilaisia perheitä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-09T08:42:56.359254Z",
            "last_modified_time": "2026-06-09T08:42:56.359267Z",
            "date_published": null,
            "start_time": "2026-11-09T15:00:00Z",
            "end_time": "2026-11-09T17: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,
            "provider": {
                "fi": "Suomen maahanmuuttajien liitto ry",
                "sv": "Suomen maahanmuuttajien liitto ry",
                "en": "Suomen maahanmuuttajien liitto ry"
            },
            "description": {
                "fi": "<p>Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "sv": "<p>Familjeklubb på Sello-bibliotekets Lastenmaa måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>",
                "en": "<p>Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry.</p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Perhekerho",
                "sv": "Familjeklubb",
                "en": "Family club"
            },
            "location_extra_info": {
                "fi": "Lastenmaa",
                "sv": "Lastenmaa",
                "en": "Lastenmaa"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 17.00–19.00. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.",
                "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 17.00–19.00. Kom och lek och umgås med andra familjer.",
                "en": "Family club at Sello Library's Lastenmaa on Mondays from 5:00 p.m. to 7:00 p.m. Come play and spend time with other families."
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkxmqbia/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}