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

{
    "meta": {
        "count": 30710,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=55",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=53"
    },
    "data": [
        {
            "id": "kulke:68601",
            "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/kulke:755/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385026,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T13:14:13.380690Z",
                    "last_modified_time": "2026-06-09T13:14:13.380705Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791149.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385026/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-30T07:13:51.334400Z",
            "last_modified_time": "2026-07-02T10:14:31.912370Z",
            "date_published": null,
            "start_time": "2026-11-13T10:30:00Z",
            "end_time": "2026-11-13T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Gratis konstklubb för grundskolebarn",
                "en": "Free-of-charge art club for primary school children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!",
                "sv": "Välkommen till en gratis konstklubb på Gamlasgården!",
                "en": "Come and join Kanneltalo’s free art club!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F64BFDFDFF77487DA3B9E58199CFDA0B/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F64BFDFDFF77487DA3B9E58199CFDA0B/Gratis_konstklubb_for_grundskolebarn_",
                "en": "http://www.kanneltalo.fi/en/events/event/F64BFDFDFF77487DA3B9E58199CFDA0B/Free-of-charge_art_club_for_primary_school_children_"
            },
            "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>",
                "sv": "<p>Välkommen till en gratis konstklubb på Gamlasgården!</p><p>Konstklubben hålls på fredagar mellan den 28 augusti och den 18 december kl. 12.30–14.30 i bibliotekets Tempo-rum.</p><p>Konstklubben riktar sig till barn i grundskoleåldern; yngre barn är välkomna i sällskap med en vuxen. På klubben får du lära dig olika bildkonsttekniker under ledning av en lärare. Du behöver inte anmäla dig till konstklubben i förväg. <br> <br>Lärare för konstklubben är bildkonstnären Karo Tapiovaara.</p><p>Fritt inträde. <br>Plats: Allaktivitetsrummet Tempo, Gamlas bibliotek</p>",
                "en": "<p>Come and join Kanneltalo’s free art club!</p><p>The art club takes place on Fridays from 28 August to 18 December at 12.30–14.30 in the Tempo room of the library.</p><p>The art club is aimed at primary school children, but younger children are also welcome if accompanied by an adult. In the club, you get to explore various visual art techniques under the guidance of a teacher. No advance registration is required.</p><p>The art club is taught by visual artist Karo Tapiovaara.</p><p>Free entry. <br>Place: Multi-purpose room Tempo, Kannelmäki Library</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68601/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68600",
            "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/kulke:755/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385025,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T13:14:12.536340Z",
                    "last_modified_time": "2026-06-09T13:14:12.536356Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791148.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385025/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-30T07:13:51.060934Z",
            "last_modified_time": "2026-07-02T10:14:31.157471Z",
            "date_published": null,
            "start_time": "2026-11-06T10:30:00Z",
            "end_time": "2026-11-06T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Gratis konstklubb för grundskolebarn",
                "en": "Free-of-charge art club for primary school children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!",
                "sv": "Välkommen till en gratis konstklubb på Gamlasgården!",
                "en": "Come and join Kanneltalo’s free art club!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8BD47B3F70139ECEEB5940625E09A9E7/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8BD47B3F70139ECEEB5940625E09A9E7/Gratis_konstklubb_for_grundskolebarn_",
                "en": "http://www.kanneltalo.fi/en/events/event/8BD47B3F70139ECEEB5940625E09A9E7/Free-of-charge_art_club_for_primary_school_children_"
            },
            "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>",
                "sv": "<p>Välkommen till en gratis konstklubb på Gamlasgården!</p><p>Konstklubben hålls på fredagar mellan den 28 augusti och den 18 december kl. 12.30–14.30 i bibliotekets Tempo-rum.</p><p>Konstklubben riktar sig till barn i grundskoleåldern; yngre barn är välkomna i sällskap med en vuxen. På klubben får du lära dig olika bildkonsttekniker under ledning av en lärare. Du behöver inte anmäla dig till konstklubben i förväg. <br> <br>Lärare för konstklubben är bildkonstnären Karo Tapiovaara.</p><p>Fritt inträde. <br>Plats: Allaktivitetsrummet Tempo, Gamlas bibliotek</p>",
                "en": "<p>Come and join Kanneltalo’s free art club!</p><p>The art club takes place on Fridays from 28 August to 18 December at 12.30–14.30 in the Tempo room of the library.</p><p>The art club is aimed at primary school children, but younger children are also welcome if accompanied by an adult. In the club, you get to explore various visual art techniques under the guidance of a teacher. No advance registration is required.</p><p>The art club is taught by visual artist Karo Tapiovaara.</p><p>Free entry. <br>Place: Multi-purpose room Tempo, Kannelmäki Library</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68600/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68599",
            "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/kulke:755/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385024,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T13:14:11.752173Z",
                    "last_modified_time": "2026-06-09T13:14:11.752188Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791147.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385024/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-30T07:13:50.619042Z",
            "last_modified_time": "2026-07-02T10:14:30.243372Z",
            "date_published": null,
            "start_time": "2026-10-30T10:30:00Z",
            "end_time": "2026-10-30T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Gratis konstklubb för grundskolebarn",
                "en": "Free-of-charge art club for primary school children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!",
                "sv": "Välkommen till en gratis konstklubb på Gamlasgården!",
                "en": "Come and join Kanneltalo’s free art club!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/03BDCBDFC75E7AE741CD6B3538FB0095/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/03BDCBDFC75E7AE741CD6B3538FB0095/Gratis_konstklubb_for_grundskolebarn_",
                "en": "http://www.kanneltalo.fi/en/events/event/03BDCBDFC75E7AE741CD6B3538FB0095/Free-of-charge_art_club_for_primary_school_children_"
            },
            "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>",
                "sv": "<p>Välkommen till en gratis konstklubb på Gamlasgården!</p><p>Konstklubben hålls på fredagar mellan den 28 augusti och den 18 december kl. 12.30–14.30 i bibliotekets Tempo-rum.</p><p>Konstklubben riktar sig till barn i grundskoleåldern; yngre barn är välkomna i sällskap med en vuxen. På klubben får du lära dig olika bildkonsttekniker under ledning av en lärare. Du behöver inte anmäla dig till konstklubben i förväg. <br> <br>Lärare för konstklubben är bildkonstnären Karo Tapiovaara.</p><p>Fritt inträde. <br>Plats: Allaktivitetsrummet Tempo, Gamlas bibliotek</p>",
                "en": "<p>Come and join Kanneltalo’s free art club!</p><p>The art club takes place on Fridays from 28 August to 18 December at 12.30–14.30 in the Tempo room of the library.</p><p>The art club is aimed at primary school children, but younger children are also welcome if accompanied by an adult. In the club, you get to explore various visual art techniques under the guidance of a teacher. No advance registration is required.</p><p>The art club is taught by visual artist Karo Tapiovaara.</p><p>Free entry. <br>Place: Multi-purpose room Tempo, Kannelmäki Library</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68599/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68598",
            "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/kulke:755/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385022,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T13:14:10.434145Z",
                    "last_modified_time": "2026-06-09T13:14:10.434162Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791146.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385022/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-30T07:13:50.313345Z",
            "last_modified_time": "2026-07-02T10:14:28.452908Z",
            "date_published": null,
            "start_time": "2026-10-23T09:30:00Z",
            "end_time": "2026-10-23T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Gratis konstklubb för grundskolebarn",
                "en": "Free-of-charge art club for primary school children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!",
                "sv": "Välkommen till en gratis konstklubb på Gamlasgården!",
                "en": "Come and join Kanneltalo’s free art club!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/AFEF41AB93CFBB899D2DFCC1C125DA0B/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/AFEF41AB93CFBB899D2DFCC1C125DA0B/Gratis_konstklubb_for_grundskolebarn_",
                "en": "http://www.kanneltalo.fi/en/events/event/AFEF41AB93CFBB899D2DFCC1C125DA0B/Free-of-charge_art_club_for_primary_school_children_"
            },
            "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>",
                "sv": "<p>Välkommen till en gratis konstklubb på Gamlasgården!</p><p>Konstklubben hålls på fredagar mellan den 28 augusti och den 18 december kl. 12.30–14.30 i bibliotekets Tempo-rum.</p><p>Konstklubben riktar sig till barn i grundskoleåldern; yngre barn är välkomna i sällskap med en vuxen. På klubben får du lära dig olika bildkonsttekniker under ledning av en lärare. Du behöver inte anmäla dig till konstklubben i förväg. <br> <br>Lärare för konstklubben är bildkonstnären Karo Tapiovaara.</p><p>Fritt inträde. <br>Plats: Allaktivitetsrummet Tempo, Gamlas bibliotek</p>",
                "en": "<p>Come and join Kanneltalo’s free art club!</p><p>The art club takes place on Fridays from 28 August to 18 December at 12.30–14.30 in the Tempo room of the library.</p><p>The art club is aimed at primary school children, but younger children are also welcome if accompanied by an adult. In the club, you get to explore various visual art techniques under the guidance of a teacher. No advance registration is required.</p><p>The art club is taught by visual artist Karo Tapiovaara.</p><p>Free entry. <br>Place: Multi-purpose room Tempo, Kannelmäki Library</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68598/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68597",
            "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/kulke:755/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385021,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T13:14:09.567827Z",
                    "last_modified_time": "2026-06-09T13:14:09.567842Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791145.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385021/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-30T07:13:49.743920Z",
            "last_modified_time": "2026-07-02T10:14:27.234695Z",
            "date_published": null,
            "start_time": "2026-10-16T09:30:00Z",
            "end_time": "2026-10-16T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Gratis konstklubb för grundskolebarn",
                "en": "Free-of-charge art club for primary school children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!",
                "sv": "Välkommen till en gratis konstklubb på Gamlasgården!",
                "en": "Come and join Kanneltalo’s free art club!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/722E45CBB3448229D9DA441CB3C9932A/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/722E45CBB3448229D9DA441CB3C9932A/Gratis_konstklubb_for_grundskolebarn_",
                "en": "http://www.kanneltalo.fi/en/events/event/722E45CBB3448229D9DA441CB3C9932A/Free-of-charge_art_club_for_primary_school_children_"
            },
            "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>",
                "sv": "<p>Välkommen till en gratis konstklubb på Gamlasgården!</p><p>Konstklubben hålls på fredagar mellan den 28 augusti och den 18 december kl. 12.30–14.30 i bibliotekets Tempo-rum.</p><p>Konstklubben riktar sig till barn i grundskoleåldern; yngre barn är välkomna i sällskap med en vuxen. På klubben får du lära dig olika bildkonsttekniker under ledning av en lärare. Du behöver inte anmäla dig till konstklubben i förväg. <br> <br>Lärare för konstklubben är bildkonstnären Karo Tapiovaara.</p><p>Fritt inträde. <br>Plats: Allaktivitetsrummet Tempo, Gamlas bibliotek</p>",
                "en": "<p>Come and join Kanneltalo’s free art club!</p><p>The art club takes place on Fridays from 28 August to 18 December at 12.30–14.30 in the Tempo room of the library.</p><p>The art club is aimed at primary school children, but younger children are also welcome if accompanied by an adult. In the club, you get to explore various visual art techniques under the guidance of a teacher. No advance registration is required.</p><p>The art club is taught by visual artist Karo Tapiovaara.</p><p>Free entry. <br>Place: Multi-purpose room Tempo, Kannelmäki Library</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68597/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68596",
            "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/kulke:755/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385020,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T13:14:09.135206Z",
                    "last_modified_time": "2026-06-09T13:14:09.135224Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791144.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385020/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-30T07:13:49.282788Z",
            "last_modified_time": "2026-07-02T10:14:26.162598Z",
            "date_published": null,
            "start_time": "2026-10-09T09:30:00Z",
            "end_time": "2026-10-09T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Gratis konstklubb för grundskolebarn",
                "en": "Free-of-charge art club for primary school children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!",
                "sv": "Välkommen till en gratis konstklubb på Gamlasgården!",
                "en": "Come and join Kanneltalo’s free art club!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9E74000AEF33C9BF154CAB27666E1589/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9E74000AEF33C9BF154CAB27666E1589/Gratis_konstklubb_for_grundskolebarn_",
                "en": "http://www.kanneltalo.fi/en/events/event/9E74000AEF33C9BF154CAB27666E1589/Free-of-charge_art_club_for_primary_school_children_"
            },
            "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>",
                "sv": "<p>Välkommen till en gratis konstklubb på Gamlasgården!</p><p>Konstklubben hålls på fredagar mellan den 28 augusti och den 18 december kl. 12.30–14.30 i bibliotekets Tempo-rum.</p><p>Konstklubben riktar sig till barn i grundskoleåldern; yngre barn är välkomna i sällskap med en vuxen. På klubben får du lära dig olika bildkonsttekniker under ledning av en lärare. Du behöver inte anmäla dig till konstklubben i förväg. <br> <br>Lärare för konstklubben är bildkonstnären Karo Tapiovaara.</p><p>Fritt inträde. <br>Plats: Allaktivitetsrummet Tempo, Gamlas bibliotek</p>",
                "en": "<p>Come and join Kanneltalo’s free art club!</p><p>The art club takes place on Fridays from 28 August to 18 December at 12.30–14.30 in the Tempo room of the library.</p><p>The art club is aimed at primary school children, but younger children are also welcome if accompanied by an adult. In the club, you get to explore various visual art techniques under the guidance of a teacher. No advance registration is required.</p><p>The art club is taught by visual artist Karo Tapiovaara.</p><p>Free entry. <br>Place: Multi-purpose room Tempo, Kannelmäki Library</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68596/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68595",
            "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/kulke:755/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385019,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T13:14:08.247842Z",
                    "last_modified_time": "2026-06-09T13:14:08.247858Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791143.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385019/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-30T07:13:48.905542Z",
            "last_modified_time": "2026-07-02T10:14:24.462390Z",
            "date_published": null,
            "start_time": "2026-10-02T09:30:00Z",
            "end_time": "2026-10-02T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Gratis konstklubb för grundskolebarn",
                "en": "Free-of-charge art club for primary school children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!",
                "sv": "Välkommen till en gratis konstklubb på Gamlasgården!",
                "en": "Come and join Kanneltalo’s free art club!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/78FC061C170B2BFA19C74F8A476C02E4/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/78FC061C170B2BFA19C74F8A476C02E4/Gratis_konstklubb_for_grundskolebarn_",
                "en": "http://www.kanneltalo.fi/en/events/event/78FC061C170B2BFA19C74F8A476C02E4/Free-of-charge_art_club_for_primary_school_children_"
            },
            "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>",
                "sv": "<p>Välkommen till en gratis konstklubb på Gamlasgården!</p><p>Konstklubben hålls på fredagar mellan den 28 augusti och den 18 december kl. 12.30–14.30 i bibliotekets Tempo-rum.</p><p>Konstklubben riktar sig till barn i grundskoleåldern; yngre barn är välkomna i sällskap med en vuxen. På klubben får du lära dig olika bildkonsttekniker under ledning av en lärare. Du behöver inte anmäla dig till konstklubben i förväg. <br> <br>Lärare för konstklubben är bildkonstnären Karo Tapiovaara.</p><p>Fritt inträde. <br>Plats: Allaktivitetsrummet Tempo, Gamlas bibliotek</p>",
                "en": "<p>Come and join Kanneltalo’s free art club!</p><p>The art club takes place on Fridays from 28 August to 18 December at 12.30–14.30 in the Tempo room of the library.</p><p>The art club is aimed at primary school children, but younger children are also welcome if accompanied by an adult. In the club, you get to explore various visual art techniques under the guidance of a teacher. No advance registration is required.</p><p>The art club is taught by visual artist Karo Tapiovaara.</p><p>Free entry. <br>Place: Multi-purpose room Tempo, Kannelmäki Library</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68595/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68594",
            "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/kulke:755/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385018,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T13:14:07.384315Z",
                    "last_modified_time": "2026-06-09T13:14:07.384331Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791142.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385018/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-30T07:13:48.612811Z",
            "last_modified_time": "2026-07-02T10:14:23.108437Z",
            "date_published": null,
            "start_time": "2026-09-25T09:30:00Z",
            "end_time": "2026-09-25T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Gratis konstklubb för grundskolebarn",
                "en": "Free-of-charge art club for primary school children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!",
                "sv": "Välkommen till en gratis konstklubb på Gamlasgården!",
                "en": "Come and join Kanneltalo’s free art club!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/710A7910A889346AD39DBE118490E819/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/710A7910A889346AD39DBE118490E819/Gratis_konstklubb_for_grundskolebarn_",
                "en": "http://www.kanneltalo.fi/en/events/event/710A7910A889346AD39DBE118490E819/Free-of-charge_art_club_for_primary_school_children_"
            },
            "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>",
                "sv": "<p>Välkommen till en gratis konstklubb på Gamlasgården!</p><p>Konstklubben hålls på fredagar mellan den 28 augusti och den 18 december kl. 12.30–14.30 i bibliotekets Tempo-rum.</p><p>Konstklubben riktar sig till barn i grundskoleåldern; yngre barn är välkomna i sällskap med en vuxen. På klubben får du lära dig olika bildkonsttekniker under ledning av en lärare. Du behöver inte anmäla dig till konstklubben i förväg. <br> <br>Lärare för konstklubben är bildkonstnären Karo Tapiovaara.</p><p>Fritt inträde. <br>Plats: Allaktivitetsrummet Tempo, Gamlas bibliotek</p>",
                "en": "<p>Come and join Kanneltalo’s free art club!</p><p>The art club takes place on Fridays from 28 August to 18 December at 12.30–14.30 in the Tempo room of the library.</p><p>The art club is aimed at primary school children, but younger children are also welcome if accompanied by an adult. In the club, you get to explore various visual art techniques under the guidance of a teacher. No advance registration is required.</p><p>The art club is taught by visual artist Karo Tapiovaara.</p><p>Free entry. <br>Place: Multi-purpose room Tempo, Kannelmäki Library</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68594/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68593",
            "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/kulke:755/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385017,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T13:14:06.344443Z",
                    "last_modified_time": "2026-06-09T13:14:06.344460Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791141.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385017/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-30T07:13:48.214502Z",
            "last_modified_time": "2026-07-02T10:14:21.111692Z",
            "date_published": null,
            "start_time": "2026-09-18T09:30:00Z",
            "end_time": "2026-09-18T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Gratis konstklubb för grundskolebarn",
                "en": "Free-of-charge art club for primary school children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!",
                "sv": "Välkommen till en gratis konstklubb på Gamlasgården!",
                "en": "Come and join Kanneltalo’s free art club!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5852D83ED50D420C6395566B0F28D06A/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5852D83ED50D420C6395566B0F28D06A/Gratis_konstklubb_for_grundskolebarn_",
                "en": "http://www.kanneltalo.fi/en/events/event/5852D83ED50D420C6395566B0F28D06A/Free-of-charge_art_club_for_primary_school_children_"
            },
            "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>",
                "sv": "<p>Välkommen till en gratis konstklubb på Gamlasgården!</p><p>Konstklubben hålls på fredagar mellan den 28 augusti och den 18 december kl. 12.30–14.30 i bibliotekets Tempo-rum.</p><p>Konstklubben riktar sig till barn i grundskoleåldern; yngre barn är välkomna i sällskap med en vuxen. På klubben får du lära dig olika bildkonsttekniker under ledning av en lärare. Du behöver inte anmäla dig till konstklubben i förväg. <br> <br>Lärare för konstklubben är bildkonstnären Karo Tapiovaara.</p><p>Fritt inträde. <br>Plats: Allaktivitetsrummet Tempo, Gamlas bibliotek</p>",
                "en": "<p>Come and join Kanneltalo’s free art club!</p><p>The art club takes place on Fridays from 28 August to 18 December at 12.30–14.30 in the Tempo room of the library.</p><p>The art club is aimed at primary school children, but younger children are also welcome if accompanied by an adult. In the club, you get to explore various visual art techniques under the guidance of a teacher. No advance registration is required.</p><p>The art club is taught by visual artist Karo Tapiovaara.</p><p>Free entry. <br>Place: Multi-purpose room Tempo, Kannelmäki Library</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68593/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68592",
            "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/kulke:755/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385016,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T13:14:05.413830Z",
                    "last_modified_time": "2026-06-09T13:14:05.413846Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791140.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385016/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-30T07:13:47.668415Z",
            "last_modified_time": "2026-07-02T10:14:19.175246Z",
            "date_published": null,
            "start_time": "2026-09-11T09:30:00Z",
            "end_time": "2026-09-11T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Gratis konstklubb för grundskolebarn",
                "en": "Free-of-charge art club for primary school children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!",
                "sv": "Välkommen till en gratis konstklubb på Gamlasgården!",
                "en": "Come and join Kanneltalo’s free art club!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/DA9F253F36C6661C59FE7185063A5B22/Lasten_maksuton_taidekerho_kirjaston_monitoimitila_Tempossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/DA9F253F36C6661C59FE7185063A5B22/Gratis_konstklubb_for_grundskolebarn_",
                "en": "http://www.kanneltalo.fi/en/events/event/DA9F253F36C6661C59FE7185063A5B22/Free-of-charge_art_club_for_primary_school_children_"
            },
            "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>",
                "sv": "<p>Välkommen till en gratis konstklubb på Gamlasgården!</p><p>Konstklubben hålls på fredagar mellan den 28 augusti och den 18 december kl. 12.30–14.30 i bibliotekets Tempo-rum.</p><p>Konstklubben riktar sig till barn i grundskoleåldern; yngre barn är välkomna i sällskap med en vuxen. På klubben får du lära dig olika bildkonsttekniker under ledning av en lärare. Du behöver inte anmäla dig till konstklubben i förväg. <br> <br>Lärare för konstklubben är bildkonstnären Karo Tapiovaara.</p><p>Fritt inträde. <br>Plats: Allaktivitetsrummet Tempo, Gamlas bibliotek</p>",
                "en": "<p>Come and join Kanneltalo’s free art club!</p><p>The art club takes place on Fridays from 28 August to 18 December at 12.30–14.30 in the Tempo room of the library.</p><p>The art club is aimed at primary school children, but younger children are also welcome if accompanied by an adult. In the club, you get to explore various visual art techniques under the guidance of a teacher. No advance registration is required.</p><p>The art club is taught by visual artist Karo Tapiovaara.</p><p>Free entry. <br>Place: Multi-purpose room Tempo, Kannelmäki Library</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68592/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "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/kulke:755/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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-07-02T10:14:17.018934Z",
            "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,
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Gratis konstklubb för grundskolebarn",
                "en": "Free-of-charge art club for primary school children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!",
                "sv": "Välkommen till en gratis konstklubb på Gamlasgården!",
                "en": "Come and join Kanneltalo’s free art club!"
            },
            "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/Gratis_konstklubb_for_grundskolebarn_",
                "en": "http://www.kanneltalo.fi/en/events/event/0D8C8AA26EB78AA3FD6B97E4BF49F41B/Free-of-charge_art_club_for_primary_school_children_"
            },
            "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>",
                "sv": "<p>Välkommen till en gratis konstklubb på Gamlasgården!</p><p>Konstklubben hålls på fredagar mellan den 28 augusti och den 18 december kl. 12.30–14.30 i bibliotekets Tempo-rum.</p><p>Konstklubben riktar sig till barn i grundskoleåldern; yngre barn är välkomna i sällskap med en vuxen. På klubben får du lära dig olika bildkonsttekniker under ledning av en lärare. Du behöver inte anmäla dig till konstklubben i förväg. <br> <br>Lärare för konstklubben är bildkonstnären Karo Tapiovaara.</p><p>Fritt inträde. <br>Plats: Allaktivitetsrummet Tempo, Gamlas bibliotek</p>",
                "en": "<p>Come and join Kanneltalo’s free art club!</p><p>The art club takes place on Fridays from 28 August to 18 December at 12.30–14.30 in the Tempo room of the library.</p><p>The art club is aimed at primary school children, but younger children are also welcome if accompanied by an adult. In the club, you get to explore various visual art techniques under the guidance of a teacher. No advance registration is required.</p><p>The art club is taught by visual artist Karo Tapiovaara.</p><p>Free entry. <br>Place: Multi-purpose room Tempo, Kannelmäki Library</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68591/?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/kulke:755/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": 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-07-02T10:14:13.628649Z",
            "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,
            "name": {
                "fi": "Lasten maksuton taidekerho kirjaston monitoimitila Tempossa",
                "sv": "Gratis konstklubb för grundskolebarn",
                "en": "Free-of-charge art club for primary school children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Kanneltalon maksuttomaan taidekerhoon!",
                "sv": "Välkommen till en gratis konstklubb på Gamlasgården!",
                "en": "Come and join Kanneltalo’s free art club!"
            },
            "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/Gratis_konstklubb_for_grundskolebarn_",
                "en": "http://www.kanneltalo.fi/en/events/event/9CF3A16F143F9F2FA6AAA0DA8F602C64/Free-of-charge_art_club_for_primary_school_children_"
            },
            "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>",
                "sv": "<p>Välkommen till en gratis konstklubb på Gamlasgården!</p><p>Konstklubben hålls på fredagar mellan den 28 augusti och den 18 december kl. 12.30–14.30 i bibliotekets Tempo-rum.</p><p>Konstklubben riktar sig till barn i grundskoleåldern; yngre barn är välkomna i sällskap med en vuxen. På klubben får du lära dig olika bildkonsttekniker under ledning av en lärare. Du behöver inte anmäla dig till konstklubben i förväg. <br> <br>Lärare för konstklubben är bildkonstnären Karo Tapiovaara.</p><p>Fritt inträde. <br>Plats: Allaktivitetsrummet Tempo, Gamlas bibliotek</p>",
                "en": "<p>Come and join Kanneltalo’s free art club!</p><p>The art club takes place on Fridays from 28 August to 18 December at 12.30–14.30 in the Tempo room of the library.</p><p>The art club is aimed at primary school children, but younger children are also welcome if accompanied by an adult. In the club, you get to explore various visual art techniques under the guidance of a teacher. No advance registration is required.</p><p>The art club is taught by visual artist Karo Tapiovaara.</p><p>Free entry. <br>Place: Multi-purpose room Tempo, Kannelmäki Library</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68587/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69457",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385255,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T11:13:39.990793Z",
                    "last_modified_time": "2026-06-18T11:13:39.990812Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793952.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385255/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T11:13:39.883590Z",
            "last_modified_time": "2026-07-02T09:14:04.932376Z",
            "date_published": null,
            "start_time": "2026-08-23T12:00:00Z",
            "end_time": "2026-08-23T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Poetiikkakonferenssi – Kirjallisuusfestivaali Runokuu",
                "sv": "Poetiikkakonferenssi – Poesikonferens – Litteraturfestivalen Runokuu",
                "en": "Poetiikkakonferenssi – Runokuu / Poetry Moon Literature Festival"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Poetiikkakonferenssi on seminaarimainen tilaisuus runoilijoille, kirjailijoille, kirjallisuudentutkijoille ja kaikille poetiikan kysymyksistä kiinnostuneille.",
                "sv": "Poesikonferensen är ett seminarieliknande evenemang för poeter, författare, litteraturforskare och alla som är intresserade av poetiska frågor.",
                "en": "Helsinki Poetics Conference is an open, seminar-style event aimed at poets, writers, and literary scholars, as well as anyone interested in questions of poetics."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/4E26FF6CC440CBE39119339F8B6C45A5/Poetiikkakonferenssi",
                "sv": "http://www.caisa.fi/sv/evenemang/event/4E26FF6CC440CBE39119339F8B6C45A5/Poetiikkakonferenssi_Poesikonferens",
                "en": "http://www.caisa.fi/en/events/event/4E26FF6CC440CBE39119339F8B6C45A5/Poetiikkakonferenssi"
            },
            "description": {
                "fi": "<p>Poetiikkakonferenssi on seminaarimainen tilaisuus runoilijoille, kirjailijoille, kirjallisuudentutkijoille ja kaikille poetiikan kysymyksistä kiinnostuneille.</p><p>Kaikille avoin konferenssi jatkaa Runokuun rinnakkaistapahtumaksi 20 vuotta sitten perustetun Helsingin Poetiikkakonferenssin perinnettä, jota järjestettiin eri muodoissa ja monenlaisissa erilaisissa puitteissa vuosina 2005–2012. Poetiikkakonferenssin tarkoitus on ylläpitää keskustelua tutkijoiden, runoilijoiden, muiden alojen taiteilijoiden ja yleisön välillä. Yleisöä rohkaistaan käymään keskustelua ei vain esitelmöijien kanssa vaan myös keskenään.</p><p>Konferenssin puhujat ovat <b>Jonis Hartman, A. V. Marraccini, Merima Dizdarević, Antti Salminen</b> ja <b>Berta García Faet</b>.</p><p>Keskustelun kieli: englanti ja suomi</p><p><u><a> href=\"https://runokuu.fi/\">Lue lisää festivaalista ja sen ohjelmasta</u></a>.</p>",
                "sv": "<p>Poesikonferensen är ett seminarieliknande evenemang för poeter, författare, litteraturforskare och alla som är intresserade av poetiska frågor.</p><p>Konferensen är öppen för alla och en fortsättning på traditionen från Helsingfors poetikkonferens, som grundades för 20 år sedan som ett parallellarrangemang till Runokuu och som ordnades i olika former och många olika sammanhang under åren 2005–2012.</p><p>Syftet med poesikonferensen är att upprätthålla en dialog mellan forskare, poeter, konstnärer från andra områden och publiken. Publiken uppmuntras att diskutera inte bara med föreläsarna utan också med varandra.</p><p>Talare på konferensen är <b>Jonis Hartman, A. V. Marraccini, Merima Dizdarević, Antti Salminen</b> och <b>Berta García Faet</b>. <br> <br> <br>Diskussionens språk: engelska och finska</p><p><u><a href=\"https://runokuu.fi/\">Läs mer om festivalen och programmet (sidan finns på finska och engelska)</u></a>.</p>",
                "en": "<p>Helsinki Poetics Conference is an open, seminar-style event aimed at poets, writers, and literary scholars, as well as anyone interested in questions of poetics.</p><p>The conference continues the tradition of the Helsinki Poetics Conference, founded 20 years ago as a parallel event to Runokuu (Poetry Moon) and held in various forms and venues between 2005 and 2012. The aim of the Poetics Conference is to foster dialogue between researchers, poets, artists from other fields, and the public.</p><p>The theme of the 2026 Poetry Moon Poetics Conference is <b>breath</b>. The theme opens up perspectives on the rhythm and language of poetry, as well as more broadly on experiences of being, embodiment, and shared space. Breath can be understood as a biological, political, and aesthetic phenomenon: a continuous exchange in and out, between the individual and the environment.</p><p>The speakers are <b>Jonis Hartman, A. V. Marraccini, Merima Dizdarević, Antti Salminen</b> and <b>Berta García Faet</b>.</p><p>The languages of the event are English and Finnish.<br>Free admission.<br>The events assume an adult audience but have no age restriction.<br>In collaboration with: Caisa, Versopolis, Goethe-Institut Finnland.</p><p><u><a> href=\"https://runokuu.fi/en/\">Read more about the festival and programme</u></a>.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69457/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69456",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385254,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T11:13:37.896215Z",
                    "last_modified_time": "2026-06-18T11:13:37.896228Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791953.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385254/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T11:13:37.783648Z",
            "last_modified_time": "2026-07-02T09:14:03.187832Z",
            "date_published": null,
            "start_time": "2026-08-19T15:30:00Z",
            "end_time": "2026-08-19T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Caisa Poetry Night – Kirjallisuusfestivaali Runokuu",
                "sv": "Caisa Poetry Night – Litteraturfestivalen Runokuu",
                "en": "Caisa Poetry Night – Runokuu / Poetry Moon Literature Festival"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Runokuu-festivaali tuo Caisan salin lavalle joukon kansainvälisiä runoilijoita.",
                "sv": "Festivalen Runokuu samlar en rad internationella poeter på scenen i Salen i Caisa.",
                "en": "Poetry Moon Literature Festival brings international poets to the stage of Caisa on 19 August 2026."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/EA25862F4C5B799639E6FA996DA4E3D6/Caisa_Poetry_Night",
                "sv": "http://www.caisa.fi/sv/evenemang/event/EA25862F4C5B799639E6FA996DA4E3D6/Caisa_Poetry_Night",
                "en": "http://www.caisa.fi/en/events/event/EA25862F4C5B799639E6FA996DA4E3D6/Caisa_Poetry_Night"
            },
            "description": {
                "fi": "<p>Runokuu-festivaali tuo Caisan salin lavalle joukon kansainvälisiä runoilijoita.</p><p>Runojaan lausuvat <b>Molly Ripatti, DC Restaino, Iona Carmine Roisin</b> sekä <b>Jonis Hartman</b>.</p><p>Tapahtuma on englanninkielinen.</p><p><u><a> href=\"https://runokuu.fi/\">Lue lisää festivaalista ja sen ohjelmasta</u></a>.</p><p><b>Tapahtuman esittely englanniksi:</b></p><p>Poetry Moon Literature Festival brings international poets to the stage of Caisa on 19 August 2026.</p><p>Poetry Moon delights poetry lovers in Helsinki and its outskirts every August. International Poetry Night at Cultural Centre Caisa 19th of August 2026 brings together a vibrant and diverse array of voices from around the world.</p><p>The evening features performances by <b>Molly Ripatti, DC Restaino, Iona Carmine Roisin</b> and <b>Jonis Hartman</b>.</p><p>The language of the event is English.<br>Free entrance.<br>The events assume an adult audience but have no age restriction.<br>In Collaboration with: Caisa, Goethe-Institut Finnland.</p>",
                "sv": "<p>Festivalen Runokuu samlar en rad internationella poeter på scenen i Salen i Caisa.</p><p><b>Molly Ripatti, DC Restaino, Iona Carmine Roisin</b> och <b>Jonis Hartman</b> läser upp sina dikter. <br> <br>Evenemanget är på engelska. <br> <br><u><a href=\"https://runokuu.fi/\">Läs mer om festivalen och programmet (sidan finns på finska och engelska)</u></a>.</p><p><b>Evenemanget presenteras på engelska.</p>",
                "en": "<p>Poetry Moon Literature Festival brings international poets to the stage of Caisa on 19 August 2026.</p><p>Poetry Moon delights poetry lovers in Helsinki and its outskirts every August. International Poetry Night at Cultural Centre Caisa 19th of August 2026 brings together a vibrant and diverse array of voices from around the world.</p><p>The evening features performances by <b>Molly Ripatti, DC Restaino, Iona Carmine Roisin</b> and <b>Jonis Hartman</b>.</p><p>The language of the event is English.<br>Free entrance.<br>The events assume an adult audience but have no age restriction.<br>In Collaboration with: Caisa, Goethe-Institut Finnland.</p><p><u><a > href=\"https://runokuu.fi/en/\">Read more about the festival and programme</u></a>.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69456/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69455",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385253,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-18T11:13:37.387308Z",
                    "last_modified_time": "2026-06-18T11:13:37.387326Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791952.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385253/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-18T11:13:37.237688Z",
            "last_modified_time": "2026-07-02T09:14:02.929648Z",
            "date_published": null,
            "start_time": "2026-08-19T14:00:00Z",
            "end_time": "2026-08-19T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Poetry in a Time of Crisis – Kirjallisuusfestivaali Runokuu",
                "sv": "Poetry in a Time of Crisis – Litteraturfestivalen Runokuu",
                "en": "Poetry in a Time of Crisis – Runokuu / Poetry Moon Literature Festival"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Englanninkielisessä paneelikeskustelussa pureudutaan runouden mahdollisuuksiin ja rajoitteisiin kriisien merkkaamassa ajassa.",
                "sv": "I paneldiskussionen på engelska diskuteras poesins möjligheter och begränsningar i en tid präglad av kriser.",
                "en": "Poetry has always been bound to moments of crisis, bearing witness to histories of loss, war, and cruelty."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/0656E378130721289AB56FDEBB6C47BD/Poetry_in_a_Time_of_Crisis",
                "sv": "http://www.caisa.fi/sv/evenemang/event/0656E378130721289AB56FDEBB6C47BD/Poetry_in_a_Time_of_Crisis",
                "en": "http://www.caisa.fi/en/events/event/0656E378130721289AB56FDEBB6C47BD/Poetry_in_a_Time_of_Crisis"
            },
            "description": {
                "fi": "<p>Englanninkielisessä paneelikeskustelussa pureudutaan runouden mahdollisuuksiin ja rajoitteisiin kriisien merkkaamassa ajassa.</p><p><u><a> href=\"https://runokuu.fi/\">Lue lisää festivaalista ja sen ohjelmasta</u></a>.</p><p><b>Keskustelun esittely englanniksi:</b></p><p>Poetry has always been bound to moments of crisis, bearing witness to histories of loss, war, and cruelty. Living in a time with no shortage of atrocities, we are confronted with a question: How is poetry actually able to survive, let alone thrive, in such conditions?</p><p>Powerful global superpowers continue to shape the conditions in which current conflicts unfold, and in which they are being narrated. At the same time, artists, activists, and communities face increasing pressure through surveillance, censorship, and repression.</p><p>The terrain is fraught and uncertain for anyone working in the literary field today. Can poetry still intervene meaningfully in the present? What space remains for dissent, for ambiguity, for care? The discussion will reflect on the possibilities and limits of poetry in a time of crisis: what it means to write, and read, under the pressures of today.</p><p>This discussion brings together three writers working across different geographies and practices: <b>Molly Ripatti</b>, writer and coordinator currently studying at Trinity College Dublin; <b>DC Restaino</b>, a London-based writer originally from Texas; and <b>A.V. Marraccini</b>, a New York–based critic, writer, and historian of art. The conversation will be moderated by <b>Kimmo Kallio</b>. Readings by Ripatti and Restaino will also take place later the same evening as part of Caisa Poetry Night.</p><p>The language of the discussion is English.</p><p>We assume an adult audience, but the Runokuu / Poetry Moon events have no age restriction.</p>",
                "sv": "<p>I paneldiskussionen på engelska diskuteras poesins möjligheter och begränsningar i en tid präglad av kriser.</p><p><u><a href=\"https://runokuu.fi/\">Läs mer om festivalen och programmet (sidan finns på finska och engelska)</u></a>.</p><p><b>Diskussionen presenteras på engelska.</p>",
                "en": "<p>Poetry has always been bound to moments of crisis, bearing witness to histories of loss, war, and cruelty.</p><p>Living in a time with no shortage of atrocities, we are confronted with a question: How is poetry actually able to survive, let alone thrive, in such conditions?</p><p>Powerful global superpowers continue to shape the conditions in which current conflicts unfold, and in which they are being narrated. At the same time, artists, activists, and communities face increasing pressure through surveillance, censorship, and repression.</p><p>The terrain is fraught and uncertain for anyone working in the literary field today. Can poetry still intervene meaningfully in the present? What space remains for dissent, for ambiguity, for care? The discussion will reflect on the possibilities and limits of poetry in a time of crisis: what it means to write, and read, under the pressures of today.</p><p>This discussion brings together three writers working across different geographies and practices: <b>Molly Ripatti</b>, writer and coordinator currently studying at Trinity College Dublin; <b>DC Restaino</b>, a London-based writer originally from Texas; and <b>A.V. Marraccini</b>, a New York–based critic, writer, and historian of art. The conversation will be moderated by <b>Kimmo Kallio</b>. Readings by Ripatti and Restaino will also take place later the same evening as part of Caisa Poetry Night.</p><p>The language of the discussion is English.</p><p>We assume an adult audience, but the Runokuu / Poetry Moon events have no age restriction.</p><p><u><a> href=\"https://runokuu.fi/en/\">Read more about the festival and programme</u></a>.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69455/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69448",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385230,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-17T10:14:14.094650Z",
                    "last_modified_time": "2026-06-17T10:14:14.094665Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794392.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385230/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-17T10:14:14.018098Z",
            "last_modified_time": "2026-07-02T08:14:04.863399Z",
            "date_published": null,
            "start_time": "2026-08-20T17:00:00Z",
            "end_time": "2026-08-20T18:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Shaghayegh Ansari: Borrowed Cities",
                "sv": "Shaghayegh Ansari: Borrowed Cities",
                "en": "Shaghayegh Ansari: Borrowed Cities"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Borrowed Cities (\"lainakaupungit\") on paikkasidonnainen audiokävely, joka johdattaa yleisönsä opastetulle kierrokselle Helsinkiin.",
                "sv": "Borrowed Cities (Lånade städer) är en platsspecifik ljudvandring som tar publiken med på en guidad tur genom Helsingfors.",
                "en": "Borrowed Cities is a site-specific audio-walk that leads audiences on a guided tour through Helsinki."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/67FF6EB1D677442235E3DE59AD3163A1/Shaghayegh_Ansari_Borrowed_Cities_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/67FF6EB1D677442235E3DE59AD3163A1/Shaghayegh_Ansari_Borrowed_Cities_",
                "en": "http://www.caisa.fi/en/events/event/67FF6EB1D677442235E3DE59AD3163A1/Shaghayegh_Ansari_Borrowed_Cities_"
            },
            "description": {
                "fi": "<p>Borrowed Cities (\"lainakaupungit\") on paikkasidonnainen audiokävely, joka johdattaa yleisönsä opastetulle kierrokselle Helsinkiin.</p><p>Esitys lähtee Kulttuurikeskus Caisasta, Leipätehtaan sisäpihalta osoitteessa Kaikukatu 4 B.</p><p>Teos käyttää itse kaupunkia näyttämönä, jolla se tutkii, kuinka ekologinen menetys ja muuttoliike horjuttavat tilakokemustamme. Heijastamalla uhanalaisten kaupunkien katkelmia Helsingin kaduille teos kyseenalaistaa ajatuksen, että kriisit kuuluisivat vain niiden syntypaikkoihin, ja esittää, kuinka kaupungit imevät itseensä tarinoita, suruja ja tulevaisuuksia myös pitkien matkojen takaa.</p><p>Kävelyä ohjaavat niiden kertomukset, joiden elämää ekologinen trauma on muokannut: paikallisten yhteisöjen, maahanmuuttajien ja muiden, joilla on omakohtaista kokemusta ympäristön epävakaudesta. Helsinki näyttäytyy heidän näkökulmastaan. Yhdessä kävelemällä teos pyrkii luomaan yhteisen tilan kuuntelemiselle, välittämiselle ja kulttuurienväliselle ymmärrykselle.</p><p>Mitä tarkoittaa kantaa useita alueita yhdessä ruumiissa? Miten muisti voi paljastaa ilmastoepäoikeudenmukaisuuden eriarvoiset todellisuudet?</p><p>Ohjaus: Shaghayegh Ansari, Aref Houshmandnia <br>Käsikirjoitus: Aref Houshmandnia <br>Esiintyjä: Shaghayegh Ansari <br>Äänisuunnittelu: Maija Suominen</p><p>Taiteiden yönä 20.8. järjestetään kaksi maksutonta kävelyä klo 17 ja 20: ilmoittaudu sähköpostilla osoitteeseen caisa.tiedotus@hel.fi. Kullekin Taiteiden yön kävelylle otetaan mukaan 10 osallistujaa / kävely.</p><p>Esityksen kieli: englanti / farsi<br>Esityksen kesto: n. 1,5 t <br>Ikärajasuositus: 16-v. ja sitä vanhemmat</p>",
                "sv": "<p>Borrowed Cities (Lånade städer) är en platsspecifik ljudvandring som tar publiken med på en guidad tur genom Helsingfors.</p><p>Verket använder staden själv som scen för att utforska hur ekologiska förluster och migration rubbar vår känsla av tillhörighet. Genom att projicera fragment av hotade städer på Helsingfors gator ifrågasätter verket uppfattningen att kriser bara berör de platser där de inträffar och antyder att städer tar till sig berättelser, sorger och framtider från fjärran platser.</p><p>Berättelserna från dem vars liv har präglats av ekologiska trauman – lokalsamhällen, invandrare och andra som har upplevt miljöförändringar – styr vandringen och låter oss se Helsingfors ur deras perspektiv. Genom den gemensamma vandringen vill verket skapa ett delat rum av lyssnande, omsorg och förståelse över kulturgränserna. Vad innebär det att bära flera geografier i en och samma kropp? Hur kan minnen belysa de ojämlika realiteterna i klimatorättvisan?</p><p>Regissör: Shaghayegh Ansari, Aref Houshmandnia</p><p>Författare: Aref Houshmandnia</p><p>Artist: Shaghayegh Ansari</p><p>Ljuddesigner: Maija Suominen</p><p>Under Konstens natt den 20 augusti ordnar vi två avgiftsfria vandringar kl. 17.00 och 20.00. Biljetter till de övriga vandringarna kostar 10 euro.</p><p>Föreställningens språk: Engelska</p><p>Föreställningen startar vid kulturcentret Caisa, på innergården på Ekogatan 4 B.</p>",
                "en": "<p>Borrowed Cities is a site-specific audio-walk that leads audiences on a guided tour through Helsinki.</p><p>The performance sets off from Cultural Centre Caisa on the courtyard of Kaikukatu 4 B.</p><p>The work uses the city itself as the stage for exploring how ecological loss and migration unsettle our sense of place. By projecting fragments of endangered cities onto the streets of Helsinki, the piece challenges the idea that crises belong only to their locations and suggests that cities absorb stories, griefs, and futures from far away.</p><p>The narratives of the ones whose lives have been shaped by ecological trauma – local communities, immigrants, and others with lived experience of environmental instability, guide the walk and allow Helsinki to be seen through their perspective. By walking together, the work tries to create a shared space of listening, care, and cross-cultural understanding.</p><p>What does it mean to carry multiple geographies within one body? How can memory reveal the uneven realities of climate injustice?</p><p>Director: Shaghayegh Ansari, Aref Houshmandnia <br>Writer: Aref Houshmandnia <br>Performer: Shaghayegh Ansari <br>Sound designer: Maija Suominen</p><p>On the Night of the Arts, two free-of-charge walks are held at 17.00 and 20.00: register via email at caisa.tiedotus@hel.fi. There is room for 10 participants per walk.</p><p>Performance language: English / Farsi<br>Age recommendation:  16 and older<br>Performance duration: 1.5 h</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69448/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69447",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385229,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-17T10:14:13.821749Z",
                    "last_modified_time": "2026-06-17T10:14:13.821764Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794391.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385229/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-17T10:14:13.745678Z",
            "last_modified_time": "2026-07-02T08:14:04.403033Z",
            "date_published": null,
            "start_time": "2026-08-20T14:00:00Z",
            "end_time": "2026-08-20T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Shaghayegh Ansari: Borrowed Cities",
                "sv": "Shaghayegh Ansari: Borrowed Cities",
                "en": "Shaghayegh Ansari: Borrowed Cities"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Borrowed Cities (\"lainakaupungit\") on paikkasidonnainen audiokävely, joka johdattaa yleisönsä opastetulle kierrokselle Helsinkiin.",
                "sv": "Borrowed Cities (Lånade städer) är en platsspecifik ljudvandring som tar publiken med på en guidad tur genom Helsingfors.",
                "en": "Borrowed Cities is a site-specific audio-walk that leads audiences on a guided tour through Helsinki."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/B3712ECCE82757F70161146612A3CE6B/Shaghayegh_Ansari_Borrowed_Cities_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/B3712ECCE82757F70161146612A3CE6B/Shaghayegh_Ansari_Borrowed_Cities_",
                "en": "http://www.caisa.fi/en/events/event/B3712ECCE82757F70161146612A3CE6B/Shaghayegh_Ansari_Borrowed_Cities_"
            },
            "description": {
                "fi": "<p>Borrowed Cities (\"lainakaupungit\") on paikkasidonnainen audiokävely, joka johdattaa yleisönsä opastetulle kierrokselle Helsinkiin.</p><p>Esitys lähtee Kulttuurikeskus Caisasta, Leipätehtaan sisäpihalta osoitteessa Kaikukatu 4 B.</p><p>Teos käyttää itse kaupunkia näyttämönä, jolla se tutkii, kuinka ekologinen menetys ja muuttoliike horjuttavat tilakokemustamme. Heijastamalla uhanalaisten kaupunkien katkelmia Helsingin kaduille teos kyseenalaistaa ajatuksen, että kriisit kuuluisivat vain niiden syntypaikkoihin, ja esittää, kuinka kaupungit imevät itseensä tarinoita, suruja ja tulevaisuuksia myös pitkien matkojen takaa.</p><p>Kävelyä ohjaavat niiden kertomukset, joiden elämää ekologinen trauma on muokannut: paikallisten yhteisöjen, maahanmuuttajien ja muiden, joilla on omakohtaista kokemusta ympäristön epävakaudesta. Helsinki näyttäytyy heidän näkökulmastaan. Yhdessä kävelemällä teos pyrkii luomaan yhteisen tilan kuuntelemiselle, välittämiselle ja kulttuurienväliselle ymmärrykselle.</p><p>Mitä tarkoittaa kantaa useita alueita yhdessä ruumiissa? Miten muisti voi paljastaa ilmastoepäoikeudenmukaisuuden eriarvoiset todellisuudet?</p><p>Ohjaus: Shaghayegh Ansari, Aref Houshmandnia <br>Käsikirjoitus: Aref Houshmandnia <br>Esiintyjä: Shaghayegh Ansari <br>Äänisuunnittelu: Maija Suominen</p><p>Taiteiden yönä 20.8. järjestetään kaksi maksutonta kävelyä klo 17 ja 20: ilmoittaudu sähköpostilla osoitteeseen caisa.tiedotus@hel.fi. Kullekin Taiteiden yön kävelylle otetaan mukaan 10 osallistujaa / kävely.</p><p>Esityksen kieli: englanti / farsi<br>Esityksen kesto: n. 1,5 t <br>Ikärajasuositus: 16-v. ja sitä vanhemmat</p>",
                "sv": "<p>Borrowed Cities (Lånade städer) är en platsspecifik ljudvandring som tar publiken med på en guidad tur genom Helsingfors.</p><p>Verket använder staden själv som scen för att utforska hur ekologiska förluster och migration rubbar vår känsla av tillhörighet. Genom att projicera fragment av hotade städer på Helsingfors gator ifrågasätter verket uppfattningen att kriser bara berör de platser där de inträffar och antyder att städer tar till sig berättelser, sorger och framtider från fjärran platser.</p><p>Berättelserna från dem vars liv har präglats av ekologiska trauman – lokalsamhällen, invandrare och andra som har upplevt miljöförändringar – styr vandringen och låter oss se Helsingfors ur deras perspektiv. Genom den gemensamma vandringen vill verket skapa ett delat rum av lyssnande, omsorg och förståelse över kulturgränserna. Vad innebär det att bära flera geografier i en och samma kropp? Hur kan minnen belysa de ojämlika realiteterna i klimatorättvisan?</p><p>Regissör: Shaghayegh Ansari, Aref Houshmandnia</p><p>Författare: Aref Houshmandnia</p><p>Artist: Shaghayegh Ansari</p><p>Ljuddesigner: Maija Suominen</p><p>Under Konstens natt den 20 augusti ordnar vi två avgiftsfria vandringar kl. 17.00 och 20.00. Biljetter till de övriga vandringarna kostar 10 euro.</p><p>Föreställningens språk: Engelska</p><p>Föreställningen startar vid kulturcentret Caisa, på innergården på Ekogatan 4 B.</p>",
                "en": "<p>Borrowed Cities is a site-specific audio-walk that leads audiences on a guided tour through Helsinki.</p><p>The performance sets off from Cultural Centre Caisa on the courtyard of Kaikukatu 4 B.</p><p>The work uses the city itself as the stage for exploring how ecological loss and migration unsettle our sense of place. By projecting fragments of endangered cities onto the streets of Helsinki, the piece challenges the idea that crises belong only to their locations and suggests that cities absorb stories, griefs, and futures from far away.</p><p>The narratives of the ones whose lives have been shaped by ecological trauma – local communities, immigrants, and others with lived experience of environmental instability, guide the walk and allow Helsinki to be seen through their perspective. By walking together, the work tries to create a shared space of listening, care, and cross-cultural understanding.</p><p>What does it mean to carry multiple geographies within one body? How can memory reveal the uneven realities of climate injustice?</p><p>Director: Shaghayegh Ansari, Aref Houshmandnia <br>Writer: Aref Houshmandnia <br>Performer: Shaghayegh Ansari <br>Sound designer: Maija Suominen</p><p>On the Night of the Arts, two free-of-charge walks are held at 17.00 and 20.00: register via email at caisa.tiedotus@hel.fi. There is room for 10 participants per walk.</p><p>Performance language: English / Farsi<br>Age recommendation:  16 and older<br>Performance duration: 1.5 h</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69447/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68670",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1857082,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-04T18:13:09.383664Z",
                    "last_modified_time": "2026-05-04T18:13:09.383763Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791531.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1857082/?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-05-04T18:13:09.299788Z",
            "last_modified_time": "2026-07-02T07:14:10.243993Z",
            "date_published": null,
            "start_time": "2026-08-29T08:00:00Z",
            "end_time": "2026-08-29T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Annantalon taidelauantai: Bois – Puut",
                "sv": "Annegårdens konstlördag: Bois – Träd",
                "en": "Annantalo Art Saturday: Bois – Woods"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i verkstäder som är öppna för alla och där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A574D96B484AA70D46AC69AE6FC59D61/Annantalon_taidelauantai_Bois_Puut_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/A574D96B484AA70D46AC69AE6FC59D61/Annegardens_konstlordag_Bois_Trad_",
                "en": "http://www.annantalo.fi/en/events/event/A574D96B484AA70D46AC69AE6FC59D61/Annantalo_Art_Saturday_Bois_Woods_"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b></b><br>SAMPO Festivaalin vieras Puzzle Theatre Kanadasta kutsuu tekemään hahmoja ja tarinoita oksista ja puun kappaleista. Työpaja liittyy ryhmän esitykseen: Bois – Puut. Esityksen katsominen ei ole edellytys työpajasta nauttimiseen.</p><p>Ohjauskielet: englanti, ranska. Työpajassa voi työskennellä myös näytettyä esimerkkiä seuraamalla, jolloin ohjauskielen ymmärtäminen ei ole välttämätöntä.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös rauhallinen tila. Annantalon taidelauantai on maksuton.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i verkstäder som är öppna för alla och där man kan stanna en kortare eller längre stund.</p><p>Puzzle Théâtre från Kanada som gästar SAMPO-festivalen bjuder in deltagarna att skapa figurer och berättelser av kvistar och träbitar. Verkstaden anknyter till gruppens föreställning: Bois – Träd. Det är inte nödvändigt att ha sett föreställningen för att kunna delta i verkstaden. <br> <br>Arbetsspråk: engelska och franska. Under verkstaden kan man också arbeta genom att följa det visade exemplet, vilket innebär att det inte är nödvändigt att förstå arbetsspråket.</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p>Puzzle Théâtre, a guest from Canada performing at the SAMPO Festival, invites you to create characters and stories from branches and pieces of wood. The workshop is linked to the group’s performance: Bois – Woods. Having seen the performance is not a prerequisite for enjoying the workshop. <br> <br>Instruction languages: English and French. In the workshop, you can also work by following the example shown, in which case you don't need to understand the instruction language.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68670/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpr3i7twm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2385463,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-01T09:58:16.810037Z",
                    "last_modified_time": "2026-07-01T09:58:16.810057Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2ff5ffdf-3e03-484e-ac5f-ae6ffd105cbc.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Kuvassa Espoon historiasta luennoiva Mari Anthoni",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385463/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2026-07-01T12:06:40.687630Z",
            "last_modified_time": "2026-07-01T12:06:40.687648Z",
            "date_published": null,
            "start_time": "2026-09-30T11:00:00Z",
            "end_time": "2026-09-30T11:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kulttuuriketju - Tarinoita Espoosta ja espoolaisista – Mari Anthonin historiallinen tarinatuokio ",
                "sv": "Kulturkedjan - Berättelser om Esbo och Esbobor – en historisk berättelsestund med Mari Anthoni ",
                "en": "Cultural Chain - Stories about Espoo and Espoo residents – Mari Anthon’s historical storytelling session"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": {
                "fi": "Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut",
                "sv": "Evenemangen genomförs i Espoo City Cultural Services",
                "en": "The events are carried out in Espoo City Cultural Services"
            },
            "short_description": {
                "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.",
                "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.",
                "en": "The Culture Chain service offers art and culture services to elderly people. Performances are also organised in libraries."
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/tapahtumat-espoossa",
                "sv": "https://www.espoo.fi/sv/evenemang-i-esbo",
                "en": "https://www.espoo.fi/en/events-espoo"
            },
            "description": {
                "fi": "Tarinoita Espoosta ja espoolaisista – Mari Anthonin historiallinen tarinatuokio&nbsp;<p><strong>Keskiviikko 30.9.2026 klo 14.00 Lippulaivan kirjasto (Salonki)&nbsp;&nbsp;</strong></p><p>Espoon historiaan perehtynyt palkittu luennoitsija Mari Anthoni kertoo tarinoita Espoosta ja espoolaisista, merkittävistä kohteista, henkilöistä ja tapahtumista.</p><p>Esityksiä elävöitetään runsaalla kuvamateriaalilla.</p><p>Tapahtumat ovat keskustelevia ja osallistujat saavat mielellään kertoa omia ajatuksiaan ja muistojaan.</p><p><a href=\"www.manoris.fi \">www.manoris.fi </a></p><p><a href=\"https://www.facebook.com/ManorisTravel\">Facebook</a></p><p>--</p><p>Espoon kaupungin Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa. Esityksiä järjestetään syksyn puolella syyskuusta marraskuulle.</p><p>Kirjastoihin Kulttuuriketju tuo upeat 36 esitystä. Esitykset rantautuvat isoimpien tapahtumakirjastojen lisäksi myös Pohjois-Espooseen.</p><p>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.</p><p>Tervetuloa nauttimaan kulttuurista!</p>",
                "sv": "Berättelser om Esbo och Esbobor – en historisk berättelsestund med Mari Anthoni&nbsp;<p><strong>Onsdag 30.9.2026 kl. 14.00 Lippulaivas bibliotek (Salonki)&nbsp;</strong></p><p>Den prisbelönta föreläsaren Mari Anthoni, som är insatt i Esbos historia, berättar historier om Esbo och dess invånare, viktiga platser, personer och händelser.</p><p>Föreställningarna livas upp med rikligt med bildmaterial.</p><p>Evenemangen är diskussionsbaserade och deltagarna får gärna berätta sina egna tankar och minnen. Evenemanget hålls på finska.</p><p><a href=\"www.manoris.fi \">www.manoris.fi </a></p><p><a href=\"https://www.facebook.com/ManorisTravel\">Facebook</a></p><p>--</p><p>Esbo stads kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek. Föreställningar arrangeras under hösten från september till november.</p><p>Kulturkedjan bjuder på fantastiska 36 föreställningar till biblioteken. Föreställningar kommer att ordnas på de stora evenemangsbiblioteken och dessutom även i Norra Esbo.</p><p>Alla evenemang är öppna för alla och gratis.</p><p>Välkommen att njuta av kultur!</p>",
                "en": "Stories about Espoo and Espoo residents – Mari Anthon’s historical storytelling session<p><strong>Wednesday 30.9.2026 at 2:00 p.m., Lippulaiva Library (Salonki)&nbsp;&nbsp;&nbsp;</strong></p><p>Award-winning lecturer Mari Anthoni, who is well-versed in Espoo’s history, tells stories about Espoo and Espoo residents, significant sites, people and events.</p><p>The presentations are enlivened with a wealth of visual material.</p><p>The events are interactive and participants are welcome to share their own thoughts and memories. The event is in Finnish.</p><p><a href=\"www.manoris.fi \">www.manoris.fi </a></p><p><a href=\"https://www.facebook.com/ManorisTravel\">Facebook</a></p><p>--</p><p>Espoo City Culture Chain offers art and culture services to elderly people. Performances are also organised in libraries. Performances are organized in the fall, from September through November.</p><p>The Cultural Chain brings an impressive 36 performances to libraries.Performances will be held at the largest event libraries as well as in Northern Espoo.</p><p>All events are open to everyone and free of charge.</p><p>Welcome to enjoy the culture!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpr3i7twm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpr3i7u2m",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2385463,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-01T09:58:16.810037Z",
                    "last_modified_time": "2026-07-01T09:58:16.810057Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2ff5ffdf-3e03-484e-ac5f-ae6ffd105cbc.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Kuvassa Espoon historiasta luennoiva Mari Anthoni",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385463/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2026-07-01T11:35:41.207782Z",
            "last_modified_time": "2026-07-01T11:35:41.207798Z",
            "date_published": null,
            "start_time": "2026-10-01T11:00:00Z",
            "end_time": "2026-10-01T11:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kulttuuriketju - Tarinoita Espoosta ja espoolaisista – Mari Anthonin historiallinen tarinatuokio ",
                "sv": "Kulturkedjan - Berättelser om Esbo och Esbobor – en historisk berättelsestund med Mari Anthoni ",
                "en": "Cultural Chain - Stories about Espoo and Espoo residents – Mari Anthon’s historical storytelling session"
            },
            "location_extra_info": {
                "fi": "Estradi",
                "sv": "Estradi",
                "en": "Estradi"
            },
            "provider": {
                "fi": "Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut",
                "sv": "Evenemangen genomförs i Espoo City Cultural Services",
                "en": "The events are carried out in Espoo City Cultural Services"
            },
            "short_description": {
                "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.",
                "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.",
                "en": "The Culture Chain service offers art and culture services to elderly people. Performances are also organised in libraries."
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/tapahtumat-espoossa",
                "sv": "https://www.espoo.fi/sv/evenemang-i-esbo",
                "en": "https://www.espoo.fi/en/events-espoo"
            },
            "description": {
                "fi": "Tarinoita Espoosta ja espoolaisista – Mari Anthonin historiallinen tarinatuokio&nbsp;<p><strong>Torstai 1.10.2026 klo 14.00 Entressen kirjasto (Estradi)&nbsp;&nbsp;</strong></p><p>Espoon historiaan perehtynyt palkittu luennoitsija Mari Anthoni kertoo tarinoita Espoosta ja espoolaisista, merkittävistä kohteista, henkilöistä ja tapahtumista.</p><p>Esityksiä elävöitetään runsaalla kuvamateriaalilla.</p><p>Tapahtumat ovat keskustelevia ja osallistujat saavat mielellään kertoa omia ajatuksiaan ja muistojaan.</p><p><a href=\"www.manoris.fi \">www.manoris.fi </a></p><p><a href=\"https://www.facebook.com/ManorisTravel\">Facebook</a></p><p>--</p><p>Espoon kaupungin Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa. Esityksiä järjestetään syksyn puolella syyskuusta marraskuulle.</p><p>Kirjastoihin Kulttuuriketju tuo upeat 36 esitystä. Esitykset rantautuvat isoimpien tapahtumakirjastojen lisäksi myös Pohjois-Espooseen.</p><p>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.</p><p>Tervetuloa nauttimaan kulttuurista!</p>",
                "sv": "Berättelser om Esbo och Esbobor – en historisk berättelsestund med Mari Anthoni&nbsp;<p><strong>Torsdag 1.10.2026 kl. 14.00 Entresses bibliotek (Estradi)&nbsp;</strong></p><p>Den prisbelönta föreläsaren Mari Anthoni, som är insatt i Esbos historia, berättar historier om Esbo och dess invånare, viktiga platser, personer och händelser.</p><p>Föreställningarna livas upp med rikligt med bildmaterial.</p><p>Evenemangen är diskussionsbaserade och deltagarna får gärna berätta sina egna tankar och minnen. Evenemanget hålls på finska.</p><p><a href=\"www.manoris.fi \">www.manoris.fi </a></p><p><a href=\"https://www.facebook.com/ManorisTravel\">Facebook</a></p><p>--</p><p>Esbo stads kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek. Föreställningar arrangeras under hösten från september till november.</p><p>Kulturkedjan bjuder på fantastiska 36 föreställningar till biblioteken. Föreställningar kommer att ordnas på de stora evenemangsbiblioteken och dessutom även i Norra Esbo.</p><p>Alla evenemang är öppna för alla och gratis.</p><p>Välkommen att njuta av kultur!</p>",
                "en": "Stories about Espoo and Espoo residents – Mari Anthon’s historical storytelling session<p><strong>Thursday 1.10.2026 at 2:00 p.m., Entresse Library (Estradi)&nbsp;&nbsp;</strong></p><p>Award-winning lecturer Mari Anthoni, who is well-versed in Espoo’s history, tells stories about Espoo and Espoo residents, significant sites, people and events.</p><p>The presentations are enlivened with a wealth of visual material.</p><p>The events are interactive and participants are welcome to share their own thoughts and memories. The event is in Finnish.</p><p><a href=\"www.manoris.fi \">www.manoris.fi </a></p><p><a href=\"https://www.facebook.com/ManorisTravel\">Facebook</a></p><p>--</p><p>Espoo City Culture Chain offers art and culture services to elderly people. Performances are also organised in libraries. Performances are organized in the fall, from September through November.</p><p>The Cultural Chain brings an impressive 36 performances to libraries.Performances will be held at the largest event libraries as well as in Northern Espoo.</p><p>All events are open to everyone and free of charge.</p><p>Welcome to enjoy the culture!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpr3i7u2m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}